
    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_191faf752b3ae2847a3e06a7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;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_d1e983d322193f162eecb0e9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179800;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_191faf752b3ae2847a3e06a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179800;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_d35766f3b64a6c14105c0061.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.150879;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_191faf752b3ae2847a3e06a7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.179800;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_4b23469fdd719aa23b6c9b17.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_468bf3f4e1eeddd5b15c9bf6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.174000;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_c62b972464b1caf804207c6c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.149902;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;}
.mec{transform:matrix(0.243232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243232,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.244191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244191,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.244503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244503,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.244824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244824,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.245574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245574,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245721,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245721,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245721,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245759,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.245862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245862,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246009,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246047,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246165,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246347,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246356,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246629,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246691,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246782,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246809,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246818,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246821,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246847,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246941,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246944,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247044,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247074,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247106,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.247179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247179,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247182,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247188,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247215,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247274,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247279,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247282,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247297,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247388,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247447,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247471,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.m26{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);}
.m10{transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247579,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247703,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247724,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247735,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247741,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247868,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247879,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247924,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247979,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247982,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248082,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248088,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248115,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248132,0.000000,0.000000,0.250000,0,0);}
.m31{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);}
.mf9{transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248185,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248188,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248206,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248229,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248271,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248300,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248376,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248379,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248462,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248526,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248547,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248568,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248662,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248691,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248729,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248759,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248762,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248791,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248865,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248876,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.248897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248897,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248926,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248944,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m49{transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249059,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249062,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249135,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249176,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249238,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249247,0.000000,0.000000,0.250000,0,0);}
.me4{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);}
.m78{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249309,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249371,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249379,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249385,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249397,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249412,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249421,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249441,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249474,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249479,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.mc8{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);}
.m58{transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249574,0.000000,0.000000,0.250000,0,0);}
.m35{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);}
.m19{transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249641,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249665,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249691,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249724,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249732,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249747,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.mb1{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);}
.mb9{transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249797,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249803,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249809,0.000000,0.000000,0.250000,0,0);}
.m9c{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);}
.m92{transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249882,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249921,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249938,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250021,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250026,0.000000,0.000000,0.250000,0,0);}
.m7a{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);}
.md5{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250176,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250185,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250188,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250224,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250238,0.000000,0.000000,0.250000,0,0);}
.m67{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);}
.ma9{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250338,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250353,0.000000,0.000000,0.250000,0,0);}
.med{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);}
.m9e{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250576,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250618,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250635,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250659,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250662,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250685,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250771,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250821,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250847,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250871,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250888,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250903,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250921,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250929,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251029,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251047,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251159,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251162,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251274,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251288,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251347,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251391,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251394,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251403,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251421,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251435,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251450,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251456,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251494,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251497,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251562,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251571,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251594,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251624,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251629,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251706,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251712,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251815,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251826,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251871,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251874,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251915,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251929,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251965,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252165,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252185,0.000000,0.000000,0.250000,0,0);}
.mf4{transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252188,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252203,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252256,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252379,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252494,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252541,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252653,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252876,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.252897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252938,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253038,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253050,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253103,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253124,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.253141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253141,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253156,0.000000,0.000000,0.250000,0,0);}
.mf8{transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253215,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253241,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253247,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253659,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253676,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253809,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253856,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253865,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253871,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253900,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254153,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254259,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254565,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255229,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255268,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256971,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-18.840000px;}
.v3{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.840000px;}
.v5{vertical-align:28.176000px;}
.v4{vertical-align:56.400000px;}
.ls2f{letter-spacing:-1.470000px;}
.ls8{letter-spacing:-1.440000px;}
.ls2d{letter-spacing:-1.326000px;}
.ls1e{letter-spacing:-1.275000px;}
.ls1d{letter-spacing:-1.173000px;}
.ls21{letter-spacing:-1.071000px;}
.ls1f{letter-spacing:-1.020000px;}
.ls20{letter-spacing:-0.969000px;}
.ls2a{letter-spacing:-0.918000px;}
.ls2c{letter-spacing:-0.816000px;}
.ls29{letter-spacing:-0.765000px;}
.ls1c{letter-spacing:-0.714000px;}
.ls28{letter-spacing:-0.663000px;}
.ls24{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.561000px;}
.ls23{letter-spacing:-0.510000px;}
.ls30{letter-spacing:-0.459000px;}
.ls18{letter-spacing:-0.408000px;}
.ls1b{letter-spacing:-0.357000px;}
.ls22{letter-spacing:-0.306000px;}
.ls1a{letter-spacing:-0.255000px;}
.ls9{letter-spacing:-0.204000px;}
.ls13{letter-spacing:-0.153000px;}
.ls14{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.102000px;}
.lsa{letter-spacing:-0.051000px;}
.ls15{letter-spacing:-0.048000px;}
.ls7{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.025500px;}
.ls6{letter-spacing:0.051000px;}
.ls27{letter-spacing:0.076500px;}
.ls0{letter-spacing:0.078000px;}
.lsb{letter-spacing:0.102000px;}
.ls2{letter-spacing:0.111000px;}
.lsc{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls2b{letter-spacing:0.178500px;}
.lsf{letter-spacing:0.192000px;}
.ls17{letter-spacing:0.204000px;}
.ls16{letter-spacing:0.255000px;}
.lsd{letter-spacing:0.306000px;}
.lse{letter-spacing:0.336000px;}
.ls26{letter-spacing:0.357000px;}
.ls31{letter-spacing:0.382500px;}
.ls19{letter-spacing:0.408000px;}
.ls5{letter-spacing:0.540000px;}
.ls32{letter-spacing:0.570000px;}
.ls4{letter-spacing:0.660000px;}
.ls2e{letter-spacing:0.663000px;}
.ls10{letter-spacing:0.840000px;}
.ls3{letter-spacing:5.202000px;}
.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;}
}
.ws17{word-spacing:-19.602000px;}
.ws0{word-spacing:-15.210000px;}
.ws6e{word-spacing:-14.841000px;}
.ws75{word-spacing:-14.331000px;}
.ws4f{word-spacing:-14.178000px;}
.ws4{word-spacing:-13.968000px;}
.ws72{word-spacing:-13.719000px;}
.ws73{word-spacing:-13.668000px;}
.ws38{word-spacing:-12.516000px;}
.ws18{word-spacing:-11.904000px;}
.ws3d{word-spacing:-10.842000px;}
.ws1{word-spacing:-6.772080px;}
.ws6f{word-spacing:-4.947000px;}
.ws3{word-spacing:-3.318000px;}
.ws9{word-spacing:-2.976000px;}
.ws76{word-spacing:-2.805000px;}
.ws71{word-spacing:-2.754000px;}
.ws10{word-spacing:-2.448000px;}
.ws25{word-spacing:-2.193000px;}
.ws1a{word-spacing:-2.142000px;}
.ws26{word-spacing:-2.091000px;}
.ws24{word-spacing:-2.040000px;}
.ws34{word-spacing:-2.016000px;}
.ws59{word-spacing:-1.989000px;}
.ws36{word-spacing:-1.968000px;}
.ws42{word-spacing:-1.938000px;}
.ws33{word-spacing:-1.887000px;}
.ws60{word-spacing:-1.785000px;}
.ws5a{word-spacing:-1.683000px;}
.ws4a{word-spacing:-1.632000px;}
.ws1d{word-spacing:-1.581000px;}
.ws79{word-spacing:-1.530000px;}
.ws2b{word-spacing:-1.479000px;}
.ws46{word-spacing:-1.428000px;}
.ws62{word-spacing:-1.377000px;}
.ws2f{word-spacing:-1.326000px;}
.ws4d{word-spacing:-1.275000px;}
.ws51{word-spacing:-1.224000px;}
.ws69{word-spacing:-1.173000px;}
.ws37{word-spacing:-1.152000px;}
.ws1e{word-spacing:-1.122000px;}
.ws21{word-spacing:-1.071000px;}
.ws3e{word-spacing:-1.020000px;}
.ws30{word-spacing:-0.969000px;}
.ws53{word-spacing:-0.918000px;}
.ws6a{word-spacing:-0.867000px;}
.ws65{word-spacing:-0.816000px;}
.ws45{word-spacing:-0.765000px;}
.ws44{word-spacing:-0.714000px;}
.ws19{word-spacing:-0.663000px;}
.ws1f{word-spacing:-0.612000px;}
.ws5d{word-spacing:-0.561000px;}
.ws2e{word-spacing:-0.459000px;}
.ws78{word-spacing:-0.357000px;}
.ws43{word-spacing:-0.306000px;}
.ws6c{word-spacing:-0.255000px;}
.ws77{word-spacing:-0.204000px;}
.ws1c{word-spacing:-0.153000px;}
.ws56{word-spacing:-0.102000px;}
.ws23{word-spacing:-0.078000px;}
.ws2{word-spacing:0.000000px;}
.ws16{word-spacing:0.048000px;}
.ws58{word-spacing:0.051000px;}
.ws55{word-spacing:0.153000px;}
.ws14{word-spacing:0.192000px;}
.ws50{word-spacing:0.204000px;}
.ws4b{word-spacing:0.255000px;}
.ws11{word-spacing:0.288000px;}
.ws52{word-spacing:0.306000px;}
.ws47{word-spacing:0.357000px;}
.ws27{word-spacing:0.408000px;}
.ws70{word-spacing:0.459000px;}
.ws2c{word-spacing:0.510000px;}
.ws68{word-spacing:0.561000px;}
.ws5f{word-spacing:0.612000px;}
.ws64{word-spacing:0.663000px;}
.wsf{word-spacing:0.672000px;}
.ws41{word-spacing:0.714000px;}
.ws31{word-spacing:0.765000px;}
.ws63{word-spacing:0.816000px;}
.ws67{word-spacing:0.867000px;}
.wsa{word-spacing:0.912000px;}
.ws29{word-spacing:0.918000px;}
.ws49{word-spacing:1.020000px;}
.ws5b{word-spacing:1.071000px;}
.ws32{word-spacing:1.122000px;}
.ws61{word-spacing:1.173000px;}
.ws48{word-spacing:1.224000px;}
.ws2d{word-spacing:1.275000px;}
.ws40{word-spacing:1.326000px;}
.ws54{word-spacing:1.377000px;}
.ws3f{word-spacing:1.428000px;}
.ws74{word-spacing:1.470000px;}
.ws66{word-spacing:1.530000px;}
.ws57{word-spacing:1.581000px;}
.ws4e{word-spacing:1.632000px;}
.ws5c{word-spacing:1.683000px;}
.ws4c{word-spacing:1.734000px;}
.ws28{word-spacing:1.785000px;}
.ws6b{word-spacing:1.836000px;}
.ws5e{word-spacing:1.938000px;}
.ws8{word-spacing:1.968000px;}
.ws35{word-spacing:2.016000px;}
.ws20{word-spacing:2.040000px;}
.ws1b{word-spacing:2.091000px;}
.ws2a{word-spacing:2.142000px;}
.ws6{word-spacing:4.128000px;}
.ws7{word-spacing:4.320000px;}
.wsb{word-spacing:5.232000px;}
.ws5{word-spacing:5.280000px;}
.ws15{word-spacing:5.520000px;}
.wse{word-spacing:5.616000px;}
.ws13{word-spacing:6.144000px;}
.wsd{word-spacing:6.864000px;}
.ws12{word-spacing:7.152000px;}
.wsc{word-spacing:8.256000px;}
.ws7b{word-spacing:507.984000px;}
.ws7c{word-spacing:541.272000px;}
.ws7a{word-spacing:555.009000px;}
.ws3b{word-spacing:687.456000px;}
.ws3c{word-spacing:778.176000px;}
.ws3a{word-spacing:803.952000px;}
.ws39{word-spacing:811.008000px;}
.ws22{word-spacing:1702.083000px;}
.ws6d{word-spacing:1709.021400px;}
._c{margin-left:-17.391000px;}
._19{margin-left:-16.218000px;}
._10{margin-left:-13.344000px;}
._1c{margin-left:-12.258000px;}
._9{margin-left:-11.100000px;}
._1e{margin-left:-9.966000px;}
._5{margin-left:-7.736400px;}
._b{margin-left:-6.612600px;}
._3{margin-left:-5.005200px;}
._1a{margin-left:-4.003500px;}
._0{margin-left:-2.886000px;}
._1{margin-left:-1.017000px;}
._1b{width:1.173000px;}
._1d{width:2.305800px;}
._2{width:5.472000px;}
._4{width:8.496000px;}
._d{width:10.842000px;}
._7{width:11.904000px;}
._1f{width:14.178000px;}
._6{width:19.608600px;}
._8{width:48.132000px;}
._18{width:195.888000px;}
._14{width:262.512000px;}
._17{width:346.032000px;}
._16{width:377.232000px;}
._12{width:381.696000px;}
._15{width:411.024000px;}
._13{width:531.072000px;}
._f{width:626.832000px;}
._a{width:709.605000px;}
._11{width:874.176000px;}
._e{width:1887.380400px;}
._20{width:1891.994400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.y90{bottom:85.039350px;}
.y1e2{bottom:85.041300px;}
.y60{bottom:85.044150px;}
.y21{bottom:88.504350px;}
.y5f{bottom:99.864150px;}
.y8f{bottom:100.026900px;}
.yc7{bottom:100.038600px;}
.y171{bottom:100.043100px;}
.yfb{bottom:100.085400px;}
.y13c{bottom:100.086450px;}
.y1e1{bottom:101.785050px;}
.y5e{bottom:114.688950px;}
.y8e{bottom:115.014450px;}
.yc6{bottom:115.038000px;}
.y170{bottom:115.043700px;}
.y195{bottom:115.046700px;}
.yfa{bottom:115.131450px;}
.y131{bottom:115.133700px;}
.y2d{bottom:117.629850px;}
.y1e0{bottom:118.528800px;}
.y5d{bottom:129.513750px;}
.y8d{bottom:130.014450px;}
.yc5{bottom:130.037250px;}
.y16f{bottom:130.050450px;}
.y11f{bottom:130.177500px;}
.yf9{bottom:130.178700px;}
.y2c{bottom:132.611100px;}
.y1df{bottom:135.272550px;}
.y8c{bottom:144.995700px;}
.yc4{bottom:145.036650px;}
.y194{bottom:145.047900px;}
.y16e{bottom:145.054050px;}
.yf8{bottom:145.223700px;}
.y2b{bottom:147.592350px;}
.y8b{bottom:159.976950px;}
.y1ae{bottom:160.035900px;}
.y16d{bottom:160.045200px;}
.y193{bottom:160.054650px;}
.yc3{bottom:160.057200px;}
.yf7{bottom:160.269750px;}
.y11e{bottom:160.272900px;}
.y5c{bottom:161.346300px;}
.y2a{bottom:162.573600px;}
.y8a{bottom:174.964500px;}
.y1ad{bottom:175.035300px;}
.yc2{bottom:175.051200px;}
.y16c{bottom:175.051950px;}
.y192{bottom:175.061400px;}
.yf6{bottom:175.315800px;}
.y11d{bottom:175.317900px;}
.y5b{bottom:176.171100px;}
.y29{bottom:177.554850px;}
.y89{bottom:189.952050px;}
.y1ac{bottom:190.034550px;}
.yc1{bottom:190.045200px;}
.y16b{bottom:190.058700px;}
.y191{bottom:190.065000px;}
.yf5{bottom:190.361850px;}
.y11c{bottom:190.362900px;}
.y5a{bottom:190.995750px;}
.y28{bottom:192.536100px;}
.y88{bottom:204.939450px;}
.y1ab{bottom:205.033800px;}
.yc0{bottom:205.039200px;}
.y16a{bottom:205.065450px;}
.y190{bottom:205.068600px;}
.yf4{bottom:205.407900px;}
.y1de{bottom:205.900350px;}
.y27{bottom:207.517350px;}
.y87{bottom:219.927000px;}
.ybf{bottom:220.033200px;}
.y169{bottom:220.072200px;}
.yf3{bottom:220.453950px;}
.y1dd{bottom:220.881600px;}
.y26{bottom:222.498600px;}
.y59{bottom:222.828450px;}
.y86{bottom:234.913950px;}
.ybe{bottom:235.032450px;}
.y1aa{bottom:235.037700px;}
.y168{bottom:235.075950px;}
.y11b{bottom:235.500000px;}
.yf2{bottom:235.503150px;}
.y1dc{bottom:235.862850px;}
.y25{bottom:237.479850px;}
.y58{bottom:238.534500px;}
.ybd{bottom:250.031700px;}
.y167{bottom:250.079550px;}
.y11a{bottom:250.546050px;}
.yf1{bottom:250.548150px;}
.y1db{bottom:250.844100px;}
.y24{bottom:252.461100px;}
.y57{bottom:254.240550px;}
.y85{bottom:262.657950px;}
.ybc{bottom:265.030950px;}
.y166{bottom:265.083150px;}
.y119{bottom:265.592100px;}
.yf0{bottom:265.593150px;}
.y1da{bottom:265.825350px;}
.y23{bottom:267.448200px;}
.y56{bottom:269.946450px;}
.ybb{bottom:280.030350px;}
.y165{bottom:280.086900px;}
.yef{bottom:280.638150px;}
.y1d9{bottom:280.806600px;}
.y55{bottom:285.652500px;}
.yba{bottom:295.029600px;}
.y164{bottom:295.090500px;}
.y22{bottom:295.179450px;}
.yee{bottom:295.684350px;}
.y1d8{bottom:295.787850px;}
.y54{bottom:301.356450px;}
.y84{bottom:307.409250px;}
.yb9{bottom:310.029000px;}
.y163{bottom:310.094250px;}
.yed{bottom:310.730400px;}
.y1d7{bottom:310.769100px;}
.y53{bottom:317.064450px;}
.y83{bottom:323.638200px;}
.yb8{bottom:325.028250px;}
.y162{bottom:325.094700px;}
.y18f{bottom:325.097850px;}
.y1d6{bottom:325.750350px;}
.yec{bottom:325.776450px;}
.y52{bottom:332.770500px;}
.y1c{bottom:334.591500px;}
.y82{bottom:337.738200px;}
.yb7{bottom:340.027500px;}
.y161{bottom:340.101450px;}
.y1d5{bottom:340.731600px;}
.y118{bottom:340.822500px;}
.yeb{bottom:340.824600px;}
.y51{bottom:348.472500px;}
.y1b{bottom:353.839500px;}
.yb6{bottom:355.026900px;}
.y160{bottom:355.105200px;}
.y1d4{bottom:355.712850px;}
.y117{bottom:355.868550px;}
.yea{bottom:355.869600px;}
.y81{bottom:358.618200px;}
.y50{bottom:364.180500px;}
.y1a{bottom:368.839500px;}
.yb5{bottom:370.026150px;}
.y18e{bottom:370.102500px;}
.y15f{bottom:370.108800px;}
.y1d3{bottom:370.694100px;}
.ye9{bottom:370.914600px;}
.y80{bottom:379.498200px;}
.y4f{bottom:379.888500px;}
.y19{bottom:383.839500px;}
.y1a9{bottom:385.025550px;}
.yb4{bottom:385.030800px;}
.y18d{bottom:385.109250px;}
.y15e{bottom:385.112400px;}
.y1d2{bottom:385.675350px;}
.ye8{bottom:385.960650px;}
.y7d{bottom:386.554200px;}
.y7f{bottom:393.598200px;}
.y4e{bottom:395.594550px;}
.y116{bottom:398.710200px;}
.y18{bottom:398.839500px;}
.yb3{bottom:400.024800px;}
.y1a8{bottom:400.035450px;}
.y18c{bottom:400.116000px;}
.y7c{bottom:400.654200px;}
.y1d1{bottom:400.656600px;}
.ye7{bottom:401.006700px;}
.y130{bottom:401.010900px;}
.y7e{bottom:407.698200px;}
.y15d{bottom:408.619500px;}
.y4d{bottom:411.298500px;}
.y17{bottom:413.839500px;}
.yb2{bottom:415.024050px;}
.y1a7{bottom:415.029450px;}
.y18b{bottom:415.119750px;}
.y1d0{bottom:415.637850px;}
.y13b{bottom:416.052750px;}
.ye6{bottom:416.053800px;}
.y12f{bottom:416.055900px;}
.y4c{bottom:427.006500px;}
.y7b{bottom:428.578200px;}
.y16{bottom:428.839500px;}
.yb1{bottom:430.023450px;}
.y18a{bottom:430.111050px;}
.y1cf{bottom:430.619100px;}
.ye5{bottom:431.098800px;}
.y12e{bottom:431.100900px;}
.y7a{bottom:442.678200px;}
.y4b{bottom:442.712550px;}
.y115{bottom:443.526450px;}
.y15{bottom:443.839500px;}
.y15c{bottom:444.880500px;}
.yb0{bottom:445.022700px;}
.y189{bottom:445.117800px;}
.y1ce{bottom:445.600350px;}
.ye4{bottom:446.144850px;}
.y12d{bottom:446.145900px;}
.y13a{bottom:446.150250px;}
.y4a{bottom:458.416500px;}
.y114{bottom:458.572500px;}
.y14{bottom:458.839500px;}
.y15b{bottom:459.887250px;}
.yaf{bottom:460.021950px;}
.y188{bottom:460.124550px;}
.y1cd{bottom:460.581600px;}
.ye3{bottom:461.190900px;}
.y139{bottom:461.195250px;}
.y79{bottom:463.558200px;}
.y113{bottom:473.618550px;}
.y13{bottom:473.839500px;}
.y49{bottom:474.124500px;}
.y15a{bottom:474.890850px;}
.y1a6{bottom:475.021200px;}
.yae{bottom:475.031850px;}
.y187{bottom:475.131300px;}
.y1cc{bottom:475.562850px;}
.ye2{bottom:476.236950px;}
.y138{bottom:476.240250px;}
.y78{bottom:484.438200px;}
.y112{bottom:488.664600px;}
.y12{bottom:488.839500px;}
.y48{bottom:489.830550px;}
.y159{bottom:489.894450px;}
.yad{bottom:490.025850px;}
.y186{bottom:490.138050px;}
.y1cb{bottom:490.544100px;}
.y12c{bottom:491.283150px;}
.ye1{bottom:491.284200px;}
.y137{bottom:491.285250px;}
.y77{bottom:498.538200px;}
.y111{bottom:503.713800px;}
.y11{bottom:503.839500px;}
.y158{bottom:504.898200px;}
.yac{bottom:505.019850px;}
.y185{bottom:505.141650px;}
.y1ca{bottom:505.525350px;}
.y47{bottom:505.536600px;}
.ye0{bottom:506.329200px;}
.y136{bottom:506.330250px;}
.y110{bottom:518.758800px;}
.y10{bottom:518.839500px;}
.y76{bottom:519.418200px;}
.y157{bottom:519.901800px;}
.yab{bottom:520.019250px;}
.y184{bottom:520.145250px;}
.y1c9{bottom:520.506600px;}
.ydf{bottom:521.375250px;}
.y10f{bottom:533.803800px;}
.yf{bottom:533.839500px;}
.y46{bottom:533.997750px;}
.y156{bottom:534.905400px;}
.yaa{bottom:535.018500px;}
.y1a5{bottom:535.023750px;}
.y183{bottom:535.136550px;}
.y1c8{bottom:535.487850px;}
.yde{bottom:536.421300px;}
.y75{bottom:540.298200px;}
.y74{bottom:547.354200px;}
.y10e{bottom:548.848800px;}
.y155{bottom:549.902850px;}
.ya9{bottom:550.017750px;}
.y182{bottom:550.143300px;}
.y1c7{bottom:550.469100px;}
.ydd{bottom:551.467350px;}
.ye{bottom:553.087500px;}
.y10d{bottom:563.894850px;}
.y154{bottom:564.909600px;}
.ya8{bottom:565.017150px;}
.y181{bottom:565.150050px;}
.y1c6{bottom:565.450350px;}
.y12b{bottom:566.513400px;}
.ydc{bottom:566.514450px;}
.y73{bottom:575.278200px;}
.y10c{bottom:578.940900px;}
.y45{bottom:579.464250px;}
.y153{bottom:579.916350px;}
.ya7{bottom:580.016400px;}
.y180{bottom:580.156800px;}
.y1c5{bottom:580.431600px;}
.y135{bottom:581.549400px;}
.ydb{bottom:581.559450px;}
.yd{bottom:583.231500px;}
.y10b{bottom:593.992350px;}
.y152{bottom:594.919950px;}
.ya6{bottom:595.015650px;}
.y17f{bottom:595.163550px;}
.y44{bottom:595.172250px;}
.y1c4{bottom:595.412850px;}
.y72{bottom:596.158200px;}
.yda{bottom:596.605500px;}
.yc{bottom:602.479500px;}
.y10a{bottom:609.037350px;}
.y134{bottom:609.357150px;}
.y151{bottom:609.911250px;}
.ya5{bottom:610.015050px;}
.y1a4{bottom:610.041600px;}
.y17e{bottom:610.167150px;}
.y1c3{bottom:610.394100px;}
.y43{bottom:610.880250px;}
.yd9{bottom:611.651550px;}
.y71{bottom:617.038200px;}
.yb{bottom:617.479500px;}
.y109{bottom:624.082350px;}
.y150{bottom:624.918000px;}
.ya4{bottom:625.014300px;}
.y1a3{bottom:625.035600px;}
.y17d{bottom:625.170900px;}
.y1c2{bottom:625.375350px;}
.y42{bottom:626.586300px;}
.yd8{bottom:626.697600px;}
.y70{bottom:631.138200px;}
.ya{bottom:632.479500px;}
.y108{bottom:639.127350px;}
.y14f{bottom:639.924750px;}
.ya3{bottom:640.018950px;}
.y1a2{bottom:640.029600px;}
.y17c{bottom:640.174500px;}
.y1c1{bottom:640.356600px;}
.yd7{bottom:641.743650px;}
.y41{bottom:642.292350px;}
.y9{bottom:647.479500px;}
.y6f{bottom:652.018200px;}
.y107{bottom:654.172350px;}
.y133{bottom:654.173400px;}
.y12a{bottom:654.499650px;}
.y14e{bottom:654.931500px;}
.ya2{bottom:655.012950px;}
.y1a1{bottom:655.023600px;}
.y17b{bottom:655.178250px;}
.y1c0{bottom:655.337850px;}
.yd6{bottom:656.789850px;}
.y40{bottom:657.998250px;}
.y8{bottom:662.479500px;}
.y6e{bottom:666.118200px;}
.y106{bottom:669.217350px;}
.y132{bottom:669.218400px;}
.y14d{bottom:669.938250px;}
.ya1{bottom:670.012200px;}
.y1a0{bottom:670.017600px;}
.y1bf{bottom:670.319100px;}
.yd5{bottom:671.835900px;}
.y3f{bottom:673.704300px;}
.y7{bottom:677.479500px;}
.y17a{bottom:678.682050px;}
.y105{bottom:684.263400px;}
.y14c{bottom:684.942000px;}
.ya0{bottom:685.011600px;}
.y1be{bottom:685.300350px;}
.yd4{bottom:686.881950px;}
.y6d{bottom:686.998200px;}
.y3e{bottom:689.410350px;}
.y6{bottom:692.479500px;}
.y104{bottom:699.309450px;}
.y14b{bottom:699.945600px;}
.y9f{bottom:700.010850px;}
.y1bd{bottom:700.281600px;}
.y6c{bottom:701.098200px;}
.yd3{bottom:701.928000px;}
.y3d{bottom:705.116250px;}
.y5{bottom:707.479500px;}
.y129{bottom:714.355500px;}
.y103{bottom:714.356550px;}
.y179{bottom:714.943050px;}
.y14a{bottom:714.946200px;}
.y9e{bottom:715.010100px;}
.y19f{bottom:715.015500px;}
.y1bc{bottom:715.262850px;}
.yd2{bottom:716.964000px;}
.y3c{bottom:720.822300px;}
.y6b{bottom:721.978200px;}
.y102{bottom:729.401550px;}
.y178{bottom:729.949800px;}
.y149{bottom:729.952950px;}
.y9d{bottom:730.009500px;}
.y1bb{bottom:730.244100px;}
.yd1{bottom:732.009000px;}
.y6a{bottom:736.078200px;}
.y3b{bottom:736.520400px;}
.y101{bottom:744.447600px;}
.y128{bottom:744.448650px;}
.y148{bottom:744.956550px;}
.y9c{bottom:745.008750px;}
.y1ba{bottom:745.225350px;}
.y1f{bottom:747.249900px;}
.y3a{bottom:752.228400px;}
.y69{bottom:756.958200px;}
.y100{bottom:759.493650px;}
.yd0{bottom:759.816750px;}
.y147{bottom:759.960150px;}
.y19e{bottom:760.008000px;}
.y9b{bottom:760.013400px;}
.y1b9{bottom:760.206600px;}
.y1e{bottom:763.449900px;}
.y39{bottom:767.936400px;}
.yff{bottom:774.539850px;}
.y146{bottom:774.963900px;}
.y9a{bottom:775.007400px;}
.y1b8{bottom:775.187850px;}
.y38{bottom:783.644400px;}
.yfe{bottom:789.585900px;}
.y145{bottom:789.952050px;}
.y177{bottom:789.967500px;}
.y99{bottom:790.006650px;}
.y1b7{bottom:790.169100px;}
.y68{bottom:790.329150px;}
.y1d{bottom:791.753700px;}
.y37{bottom:799.352400px;}
.yfd{bottom:804.631950px;}
.ycf{bottom:804.633000px;}
.y127{bottom:804.640350px;}
.y144{bottom:804.958800px;}
.y176{bottom:804.971250px;}
.y19d{bottom:805.027200px;}
.y98{bottom:805.048350px;}
.y1b6{bottom:805.150350px;}
.y36{bottom:815.058450px;}
.yce{bottom:819.678000px;}
.y126{bottom:819.685350px;}
.y143{bottom:819.965550px;}
.y175{bottom:819.974850px;}
.y19c{bottom:820.021200px;}
.y97{bottom:820.042350px;}
.y1b5{bottom:820.131600px;}
.y35{bottom:830.764350px;}
.ycd{bottom:834.724050px;}
.y125{bottom:834.730350px;}
.y142{bottom:834.972300px;}
.y174{bottom:834.978450px;}
.y19b{bottom:835.015200px;}
.y96{bottom:835.036350px;}
.y67{bottom:835.081650px;}
.y1b4{bottom:835.112850px;}
.y34{bottom:846.470400px;}
.y20{bottom:846.952650px;}
.yfc{bottom:849.770100px;}
.ycc{bottom:849.772200px;}
.y124{bottom:849.775350px;}
.y141{bottom:849.979050px;}
.y173{bottom:849.982050px;}
.y19a{bottom:850.009200px;}
.y95{bottom:850.030350px;}
.y66{bottom:850.062900px;}
.y1b3{bottom:850.094100px;}
.y33{bottom:862.176300px;}
.ycb{bottom:864.817200px;}
.y123{bottom:864.820350px;}
.y172{bottom:864.982650px;}
.y140{bottom:864.985800px;}
.y199{bottom:865.003200px;}
.y94{bottom:865.024350px;}
.y65{bottom:865.050300px;}
.y1b2{bottom:865.075350px;}
.y32{bottom:877.882350px;}
.yca{bottom:879.862200px;}
.y122{bottom:879.865350px;}
.y13f{bottom:879.989400px;}
.y198{bottom:880.002450px;}
.y93{bottom:880.018350px;}
.y64{bottom:880.037850px;}
.y1b1{bottom:880.056600px;}
.y4{bottom:888.220350px;}
.y31{bottom:893.588400px;}
.yc9{bottom:894.908250px;}
.y121{bottom:894.910350px;}
.y13e{bottom:894.993000px;}
.y197{bottom:895.001700px;}
.y92{bottom:895.012350px;}
.y63{bottom:895.025400px;}
.y1b0{bottom:895.037850px;}
.y30{bottom:909.292350px;}
.yc8{bottom:909.954300px;}
.y120{bottom:909.955350px;}
.y13d{bottom:909.996750px;}
.y196{bottom:910.001100px;}
.y91{bottom:910.006350px;}
.y62{bottom:910.012800px;}
.y1af{bottom:910.019100px;}
.y2f{bottom:925.000350px;}
.y3{bottom:935.359650px;}
.y2{bottom:947.359650px;}
.y2e{bottom:969.502950px;}
.y61{bottom:969.659250px;}
.ha{height:27.300000px;}
.hf{height:34.913086px;}
.h4{height:35.280000px;}
.h2{height:38.220000px;}
.he{height:40.534800px;}
.hd{height:41.160000px;}
.h6{height:45.867188px;}
.h3{height:46.123200px;}
.h5{height:47.040000px;}
.h12{height:48.684082px;}
.hb{height:48.733887px;}
.hc{height:49.980000px;}
.h9{height:52.920000px;}
.h13{height:55.689000px;}
.h8{height:63.067383px;}
.h11{height:75.216000px;}
.h7{height:82.320000px;}
.h10{height:103.440000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.xa{left:69.490050px;}
.x3{left:76.820550px;}
.x7{left:80.788050px;}
.x9{left:126.406050px;}
.x4{left:207.406050px;}
.x8{left:251.663550px;}
.x6{left:254.316150px;}
.x5{left:260.314200px;}
.xb{left:341.146050px;}
.xc{left:372.259800px;}
.x2{left:422.220450px;}
@media print{
.v2{vertical-align:-16.746667pt;}
.v3{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.746667pt;}
.v5{vertical-align:25.045333pt;}
.v4{vertical-align:50.133333pt;}
.ls2f{letter-spacing:-1.306667pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls2d{letter-spacing:-1.178667pt;}
.ls1e{letter-spacing:-1.133333pt;}
.ls1d{letter-spacing:-1.042667pt;}
.ls21{letter-spacing:-0.952000pt;}
.ls1f{letter-spacing:-0.906667pt;}
.ls20{letter-spacing:-0.861333pt;}
.ls2a{letter-spacing:-0.816000pt;}
.ls2c{letter-spacing:-0.725333pt;}
.ls29{letter-spacing:-0.680000pt;}
.ls1c{letter-spacing:-0.634667pt;}
.ls28{letter-spacing:-0.589333pt;}
.ls24{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.498667pt;}
.ls23{letter-spacing:-0.453333pt;}
.ls30{letter-spacing:-0.408000pt;}
.ls18{letter-spacing:-0.362667pt;}
.ls1b{letter-spacing:-0.317333pt;}
.ls22{letter-spacing:-0.272000pt;}
.ls1a{letter-spacing:-0.226667pt;}
.ls9{letter-spacing:-0.181333pt;}
.ls13{letter-spacing:-0.136000pt;}
.ls14{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.090667pt;}
.lsa{letter-spacing:-0.045333pt;}
.ls15{letter-spacing:-0.042667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.022667pt;}
.ls6{letter-spacing:0.045333pt;}
.ls27{letter-spacing:0.068000pt;}
.ls0{letter-spacing:0.069333pt;}
.lsb{letter-spacing:0.090667pt;}
.ls2{letter-spacing:0.098667pt;}
.lsc{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls2b{letter-spacing:0.158667pt;}
.lsf{letter-spacing:0.170667pt;}
.ls17{letter-spacing:0.181333pt;}
.ls16{letter-spacing:0.226667pt;}
.lsd{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.298667pt;}
.ls26{letter-spacing:0.317333pt;}
.ls31{letter-spacing:0.340000pt;}
.ls19{letter-spacing:0.362667pt;}
.ls5{letter-spacing:0.480000pt;}
.ls32{letter-spacing:0.506667pt;}
.ls4{letter-spacing:0.586667pt;}
.ls2e{letter-spacing:0.589333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls3{letter-spacing:4.624000pt;}
.ws17{word-spacing:-17.424000pt;}
.ws0{word-spacing:-13.520000pt;}
.ws6e{word-spacing:-13.192000pt;}
.ws75{word-spacing:-12.738667pt;}
.ws4f{word-spacing:-12.602667pt;}
.ws4{word-spacing:-12.416000pt;}
.ws72{word-spacing:-12.194667pt;}
.ws73{word-spacing:-12.149333pt;}
.ws38{word-spacing:-11.125333pt;}
.ws18{word-spacing:-10.581333pt;}
.ws3d{word-spacing:-9.637333pt;}
.ws1{word-spacing:-6.019627pt;}
.ws6f{word-spacing:-4.397333pt;}
.ws3{word-spacing:-2.949333pt;}
.ws9{word-spacing:-2.645333pt;}
.ws76{word-spacing:-2.493333pt;}
.ws71{word-spacing:-2.448000pt;}
.ws10{word-spacing:-2.176000pt;}
.ws25{word-spacing:-1.949333pt;}
.ws1a{word-spacing:-1.904000pt;}
.ws26{word-spacing:-1.858667pt;}
.ws24{word-spacing:-1.813333pt;}
.ws34{word-spacing:-1.792000pt;}
.ws59{word-spacing:-1.768000pt;}
.ws36{word-spacing:-1.749333pt;}
.ws42{word-spacing:-1.722667pt;}
.ws33{word-spacing:-1.677333pt;}
.ws60{word-spacing:-1.586667pt;}
.ws5a{word-spacing:-1.496000pt;}
.ws4a{word-spacing:-1.450667pt;}
.ws1d{word-spacing:-1.405333pt;}
.ws79{word-spacing:-1.360000pt;}
.ws2b{word-spacing:-1.314667pt;}
.ws46{word-spacing:-1.269333pt;}
.ws62{word-spacing:-1.224000pt;}
.ws2f{word-spacing:-1.178667pt;}
.ws4d{word-spacing:-1.133333pt;}
.ws51{word-spacing:-1.088000pt;}
.ws69{word-spacing:-1.042667pt;}
.ws37{word-spacing:-1.024000pt;}
.ws1e{word-spacing:-0.997333pt;}
.ws21{word-spacing:-0.952000pt;}
.ws3e{word-spacing:-0.906667pt;}
.ws30{word-spacing:-0.861333pt;}
.ws53{word-spacing:-0.816000pt;}
.ws6a{word-spacing:-0.770667pt;}
.ws65{word-spacing:-0.725333pt;}
.ws45{word-spacing:-0.680000pt;}
.ws44{word-spacing:-0.634667pt;}
.ws19{word-spacing:-0.589333pt;}
.ws1f{word-spacing:-0.544000pt;}
.ws5d{word-spacing:-0.498667pt;}
.ws2e{word-spacing:-0.408000pt;}
.ws78{word-spacing:-0.317333pt;}
.ws43{word-spacing:-0.272000pt;}
.ws6c{word-spacing:-0.226667pt;}
.ws77{word-spacing:-0.181333pt;}
.ws1c{word-spacing:-0.136000pt;}
.ws56{word-spacing:-0.090667pt;}
.ws23{word-spacing:-0.069333pt;}
.ws2{word-spacing:0.000000pt;}
.ws16{word-spacing:0.042667pt;}
.ws58{word-spacing:0.045333pt;}
.ws55{word-spacing:0.136000pt;}
.ws14{word-spacing:0.170667pt;}
.ws50{word-spacing:0.181333pt;}
.ws4b{word-spacing:0.226667pt;}
.ws11{word-spacing:0.256000pt;}
.ws52{word-spacing:0.272000pt;}
.ws47{word-spacing:0.317333pt;}
.ws27{word-spacing:0.362667pt;}
.ws70{word-spacing:0.408000pt;}
.ws2c{word-spacing:0.453333pt;}
.ws68{word-spacing:0.498667pt;}
.ws5f{word-spacing:0.544000pt;}
.ws64{word-spacing:0.589333pt;}
.wsf{word-spacing:0.597333pt;}
.ws41{word-spacing:0.634667pt;}
.ws31{word-spacing:0.680000pt;}
.ws63{word-spacing:0.725333pt;}
.ws67{word-spacing:0.770667pt;}
.wsa{word-spacing:0.810667pt;}
.ws29{word-spacing:0.816000pt;}
.ws49{word-spacing:0.906667pt;}
.ws5b{word-spacing:0.952000pt;}
.ws32{word-spacing:0.997333pt;}
.ws61{word-spacing:1.042667pt;}
.ws48{word-spacing:1.088000pt;}
.ws2d{word-spacing:1.133333pt;}
.ws40{word-spacing:1.178667pt;}
.ws54{word-spacing:1.224000pt;}
.ws3f{word-spacing:1.269333pt;}
.ws74{word-spacing:1.306667pt;}
.ws66{word-spacing:1.360000pt;}
.ws57{word-spacing:1.405333pt;}
.ws4e{word-spacing:1.450667pt;}
.ws5c{word-spacing:1.496000pt;}
.ws4c{word-spacing:1.541333pt;}
.ws28{word-spacing:1.586667pt;}
.ws6b{word-spacing:1.632000pt;}
.ws5e{word-spacing:1.722667pt;}
.ws8{word-spacing:1.749333pt;}
.ws35{word-spacing:1.792000pt;}
.ws20{word-spacing:1.813333pt;}
.ws1b{word-spacing:1.858667pt;}
.ws2a{word-spacing:1.904000pt;}
.ws6{word-spacing:3.669333pt;}
.ws7{word-spacing:3.840000pt;}
.wsb{word-spacing:4.650667pt;}
.ws5{word-spacing:4.693333pt;}
.ws15{word-spacing:4.906667pt;}
.wse{word-spacing:4.992000pt;}
.ws13{word-spacing:5.461333pt;}
.wsd{word-spacing:6.101333pt;}
.ws12{word-spacing:6.357333pt;}
.wsc{word-spacing:7.338667pt;}
.ws7b{word-spacing:451.541333pt;}
.ws7c{word-spacing:481.130667pt;}
.ws7a{word-spacing:493.341333pt;}
.ws3b{word-spacing:611.072000pt;}
.ws3c{word-spacing:691.712000pt;}
.ws3a{word-spacing:714.624000pt;}
.ws39{word-spacing:720.896000pt;}
.ws22{word-spacing:1512.962667pt;}
.ws6d{word-spacing:1519.130133pt;}
._c{margin-left:-15.458667pt;}
._19{margin-left:-14.416000pt;}
._10{margin-left:-11.861333pt;}
._1c{margin-left:-10.896000pt;}
._9{margin-left:-9.866667pt;}
._1e{margin-left:-8.858667pt;}
._5{margin-left:-6.876800pt;}
._b{margin-left:-5.877867pt;}
._3{margin-left:-4.449067pt;}
._1a{margin-left:-3.558667pt;}
._0{margin-left:-2.565333pt;}
._1{margin-left:-0.904000pt;}
._1b{width:1.042667pt;}
._1d{width:2.049600pt;}
._2{width:4.864000pt;}
._4{width:7.552000pt;}
._d{width:9.637333pt;}
._7{width:10.581333pt;}
._1f{width:12.602667pt;}
._6{width:17.429867pt;}
._8{width:42.784000pt;}
._18{width:174.122667pt;}
._14{width:233.344000pt;}
._17{width:307.584000pt;}
._16{width:335.317333pt;}
._12{width:339.285333pt;}
._15{width:365.354667pt;}
._13{width:472.064000pt;}
._f{width:557.184000pt;}
._a{width:630.760000pt;}
._11{width:777.045333pt;}
._e{width:1677.671467pt;}
._20{width:1681.772800pt;}
.fs8{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.y90{bottom:75.590533pt;}
.y1e2{bottom:75.592267pt;}
.y60{bottom:75.594800pt;}
.y21{bottom:78.670533pt;}
.y5f{bottom:88.768133pt;}
.y8f{bottom:88.912800pt;}
.yc7{bottom:88.923200pt;}
.y171{bottom:88.927200pt;}
.yfb{bottom:88.964800pt;}
.y13c{bottom:88.965733pt;}
.y1e1{bottom:90.475600pt;}
.y5e{bottom:101.945733pt;}
.y8e{bottom:102.235067pt;}
.yc6{bottom:102.256000pt;}
.y170{bottom:102.261067pt;}
.y195{bottom:102.263733pt;}
.yfa{bottom:102.339067pt;}
.y131{bottom:102.341067pt;}
.y2d{bottom:104.559867pt;}
.y1e0{bottom:105.358933pt;}
.y5d{bottom:115.123333pt;}
.y8d{bottom:115.568400pt;}
.yc5{bottom:115.588667pt;}
.y16f{bottom:115.600400pt;}
.y11f{bottom:115.713333pt;}
.yf9{bottom:115.714400pt;}
.y2c{bottom:117.876533pt;}
.y1df{bottom:120.242267pt;}
.y8c{bottom:128.885067pt;}
.yc4{bottom:128.921467pt;}
.y194{bottom:128.931467pt;}
.y16e{bottom:128.936933pt;}
.yf8{bottom:129.087733pt;}
.y2b{bottom:131.193200pt;}
.y8b{bottom:142.201733pt;}
.y1ae{bottom:142.254133pt;}
.y16d{bottom:142.262400pt;}
.y193{bottom:142.270800pt;}
.yc3{bottom:142.273067pt;}
.yf7{bottom:142.462000pt;}
.y11e{bottom:142.464800pt;}
.y5c{bottom:143.418933pt;}
.y2a{bottom:144.509867pt;}
.y8a{bottom:155.524000pt;}
.y1ad{bottom:155.586933pt;}
.yc2{bottom:155.601067pt;}
.y16c{bottom:155.601733pt;}
.y192{bottom:155.610133pt;}
.yf6{bottom:155.836267pt;}
.y11d{bottom:155.838133pt;}
.y5b{bottom:156.596533pt;}
.y29{bottom:157.826533pt;}
.y89{bottom:168.846267pt;}
.y1ac{bottom:168.919600pt;}
.yc1{bottom:168.929067pt;}
.y16b{bottom:168.941067pt;}
.y191{bottom:168.946667pt;}
.yf5{bottom:169.210533pt;}
.y11c{bottom:169.211467pt;}
.y5a{bottom:169.774000pt;}
.y28{bottom:171.143200pt;}
.y88{bottom:182.168400pt;}
.y1ab{bottom:182.252267pt;}
.yc0{bottom:182.257067pt;}
.y16a{bottom:182.280400pt;}
.y190{bottom:182.283200pt;}
.yf4{bottom:182.584800pt;}
.y1de{bottom:183.022533pt;}
.y27{bottom:184.459867pt;}
.y87{bottom:195.490667pt;}
.ybf{bottom:195.585067pt;}
.y169{bottom:195.619733pt;}
.yf3{bottom:195.959067pt;}
.y1dd{bottom:196.339200pt;}
.y26{bottom:197.776533pt;}
.y59{bottom:198.069733pt;}
.y86{bottom:208.812400pt;}
.ybe{bottom:208.917733pt;}
.y1aa{bottom:208.922400pt;}
.y168{bottom:208.956400pt;}
.y11b{bottom:209.333333pt;}
.yf2{bottom:209.336133pt;}
.y1dc{bottom:209.655867pt;}
.y25{bottom:211.093200pt;}
.y58{bottom:212.030667pt;}
.ybd{bottom:222.250400pt;}
.y167{bottom:222.292933pt;}
.y11a{bottom:222.707600pt;}
.yf1{bottom:222.709467pt;}
.y1db{bottom:222.972533pt;}
.y24{bottom:224.409867pt;}
.y57{bottom:225.991600pt;}
.y85{bottom:233.473733pt;}
.ybc{bottom:235.583067pt;}
.y166{bottom:235.629467pt;}
.y119{bottom:236.081867pt;}
.yf0{bottom:236.082800pt;}
.y1da{bottom:236.289200pt;}
.y23{bottom:237.731733pt;}
.y56{bottom:239.952400pt;}
.ybb{bottom:248.915867pt;}
.y165{bottom:248.966133pt;}
.yef{bottom:249.456133pt;}
.y1d9{bottom:249.605867pt;}
.y55{bottom:253.913333pt;}
.yba{bottom:262.248533pt;}
.y164{bottom:262.302667pt;}
.y22{bottom:262.381733pt;}
.yee{bottom:262.830533pt;}
.y1d8{bottom:262.922533pt;}
.y54{bottom:267.872400pt;}
.y84{bottom:273.252667pt;}
.yb9{bottom:275.581333pt;}
.y163{bottom:275.639333pt;}
.yed{bottom:276.204800pt;}
.y1d7{bottom:276.239200pt;}
.y53{bottom:281.835067pt;}
.y83{bottom:287.678400pt;}
.yb8{bottom:288.914000pt;}
.y162{bottom:288.973067pt;}
.y18f{bottom:288.975867pt;}
.y1d6{bottom:289.555867pt;}
.yec{bottom:289.579067pt;}
.y52{bottom:295.796000pt;}
.y1c{bottom:297.414667pt;}
.y82{bottom:300.211733pt;}
.yb7{bottom:302.246667pt;}
.y161{bottom:302.312400pt;}
.y1d5{bottom:302.872533pt;}
.y118{bottom:302.953333pt;}
.yeb{bottom:302.955200pt;}
.y51{bottom:309.753333pt;}
.y1b{bottom:314.524000pt;}
.yb6{bottom:315.579467pt;}
.y160{bottom:315.649067pt;}
.y1d4{bottom:316.189200pt;}
.y117{bottom:316.327600pt;}
.yea{bottom:316.328533pt;}
.y81{bottom:318.771733pt;}
.y50{bottom:323.716000pt;}
.y1a{bottom:327.857333pt;}
.yb5{bottom:328.912133pt;}
.y18e{bottom:328.980000pt;}
.y15f{bottom:328.985600pt;}
.y1d3{bottom:329.505867pt;}
.ye9{bottom:329.701867pt;}
.y80{bottom:337.331733pt;}
.y4f{bottom:337.678667pt;}
.y19{bottom:341.190667pt;}
.y1a9{bottom:342.244933pt;}
.yb4{bottom:342.249600pt;}
.y18d{bottom:342.319333pt;}
.y15e{bottom:342.322133pt;}
.y1d2{bottom:342.822533pt;}
.ye8{bottom:343.076133pt;}
.y7d{bottom:343.603733pt;}
.y7f{bottom:349.865067pt;}
.y4e{bottom:351.639600pt;}
.y116{bottom:354.409067pt;}
.y18{bottom:354.524000pt;}
.yb3{bottom:355.577600pt;}
.y1a8{bottom:355.587067pt;}
.y18c{bottom:355.658667pt;}
.y7c{bottom:356.137067pt;}
.y1d1{bottom:356.139200pt;}
.ye7{bottom:356.450400pt;}
.y130{bottom:356.454133pt;}
.y7e{bottom:362.398400pt;}
.y15d{bottom:363.217333pt;}
.y4d{bottom:365.598667pt;}
.y17{bottom:367.857333pt;}
.yb2{bottom:368.910267pt;}
.y1a7{bottom:368.915067pt;}
.y18b{bottom:368.995333pt;}
.y1d0{bottom:369.455867pt;}
.y13b{bottom:369.824667pt;}
.ye6{bottom:369.825600pt;}
.y12f{bottom:369.827467pt;}
.y4c{bottom:379.561333pt;}
.y7b{bottom:380.958400pt;}
.y16{bottom:381.190667pt;}
.yb1{bottom:382.243067pt;}
.y18a{bottom:382.320933pt;}
.y1cf{bottom:382.772533pt;}
.ye5{bottom:383.198933pt;}
.y12e{bottom:383.200800pt;}
.y7a{bottom:393.491733pt;}
.y4b{bottom:393.522267pt;}
.y115{bottom:394.245733pt;}
.y15{bottom:394.524000pt;}
.y15c{bottom:395.449333pt;}
.yb0{bottom:395.575733pt;}
.y189{bottom:395.660267pt;}
.y1ce{bottom:396.089200pt;}
.ye4{bottom:396.573200pt;}
.y12d{bottom:396.574133pt;}
.y13a{bottom:396.578000pt;}
.y4a{bottom:407.481333pt;}
.y114{bottom:407.620000pt;}
.y14{bottom:407.857333pt;}
.y15b{bottom:408.788667pt;}
.yaf{bottom:408.908400pt;}
.y188{bottom:408.999600pt;}
.y1cd{bottom:409.405867pt;}
.ye3{bottom:409.947467pt;}
.y139{bottom:409.951333pt;}
.y79{bottom:412.051733pt;}
.y113{bottom:420.994267pt;}
.y13{bottom:421.190667pt;}
.y49{bottom:421.444000pt;}
.y15a{bottom:422.125200pt;}
.y1a6{bottom:422.241067pt;}
.yae{bottom:422.250533pt;}
.y187{bottom:422.338933pt;}
.y1cc{bottom:422.722533pt;}
.ye2{bottom:423.321733pt;}
.y138{bottom:423.324667pt;}
.y78{bottom:430.611733pt;}
.y112{bottom:434.368533pt;}
.y12{bottom:434.524000pt;}
.y48{bottom:435.404933pt;}
.y159{bottom:435.461733pt;}
.yad{bottom:435.578533pt;}
.y186{bottom:435.678267pt;}
.y1cb{bottom:436.039200pt;}
.y12c{bottom:436.696133pt;}
.ye1{bottom:436.697067pt;}
.y137{bottom:436.698000pt;}
.y77{bottom:443.145067pt;}
.y111{bottom:447.745600pt;}
.y11{bottom:447.857333pt;}
.y158{bottom:448.798400pt;}
.yac{bottom:448.906533pt;}
.y185{bottom:449.014800pt;}
.y1ca{bottom:449.355867pt;}
.y47{bottom:449.365867pt;}
.ye0{bottom:450.070400pt;}
.y136{bottom:450.071333pt;}
.y110{bottom:461.118933pt;}
.y10{bottom:461.190667pt;}
.y76{bottom:461.705067pt;}
.y157{bottom:462.134933pt;}
.yab{bottom:462.239333pt;}
.y184{bottom:462.351333pt;}
.y1c9{bottom:462.672533pt;}
.ydf{bottom:463.444667pt;}
.y10f{bottom:474.492267pt;}
.yf{bottom:474.524000pt;}
.y46{bottom:474.664667pt;}
.y156{bottom:475.471467pt;}
.yaa{bottom:475.572000pt;}
.y1a5{bottom:475.576667pt;}
.y183{bottom:475.676933pt;}
.y1c8{bottom:475.989200pt;}
.yde{bottom:476.818933pt;}
.y75{bottom:480.265067pt;}
.y74{bottom:486.537067pt;}
.y10e{bottom:487.865600pt;}
.y155{bottom:488.802533pt;}
.ya9{bottom:488.904667pt;}
.y182{bottom:489.016267pt;}
.y1c7{bottom:489.305867pt;}
.ydd{bottom:490.193200pt;}
.ye{bottom:491.633333pt;}
.y10d{bottom:501.239867pt;}
.y154{bottom:502.141867pt;}
.ya8{bottom:502.237467pt;}
.y181{bottom:502.355600pt;}
.y1c6{bottom:502.622533pt;}
.y12b{bottom:503.567467pt;}
.ydc{bottom:503.568400pt;}
.y73{bottom:511.358400pt;}
.y10c{bottom:514.614133pt;}
.y45{bottom:515.079333pt;}
.y153{bottom:515.481200pt;}
.ya7{bottom:515.570133pt;}
.y180{bottom:515.694933pt;}
.y1c5{bottom:515.939200pt;}
.y135{bottom:516.932800pt;}
.ydb{bottom:516.941733pt;}
.yd{bottom:518.428000pt;}
.y10b{bottom:527.993200pt;}
.y152{bottom:528.817733pt;}
.ya6{bottom:528.902800pt;}
.y17f{bottom:529.034267pt;}
.y44{bottom:529.042000pt;}
.y1c4{bottom:529.255867pt;}
.y72{bottom:529.918400pt;}
.yda{bottom:530.316000pt;}
.yc{bottom:535.537333pt;}
.y10a{bottom:541.366533pt;}
.y134{bottom:541.650800pt;}
.y151{bottom:542.143333pt;}
.ya5{bottom:542.235600pt;}
.y1a4{bottom:542.259200pt;}
.y17e{bottom:542.370800pt;}
.y1c3{bottom:542.572533pt;}
.y43{bottom:543.004667pt;}
.yd9{bottom:543.690267pt;}
.y71{bottom:548.478400pt;}
.yb{bottom:548.870667pt;}
.y109{bottom:554.739867pt;}
.y150{bottom:555.482667pt;}
.ya4{bottom:555.568267pt;}
.y1a3{bottom:555.587200pt;}
.y17d{bottom:555.707467pt;}
.y1c2{bottom:555.889200pt;}
.y42{bottom:556.965600pt;}
.yd8{bottom:557.064533pt;}
.y70{bottom:561.011733pt;}
.ya{bottom:562.204000pt;}
.y108{bottom:568.113200pt;}
.y14f{bottom:568.822000pt;}
.ya3{bottom:568.905733pt;}
.y1a2{bottom:568.915200pt;}
.y17c{bottom:569.044000pt;}
.y1c1{bottom:569.205867pt;}
.yd7{bottom:570.438800pt;}
.y41{bottom:570.926533pt;}
.y9{bottom:575.537333pt;}
.y6f{bottom:579.571733pt;}
.y107{bottom:581.486533pt;}
.y133{bottom:581.487467pt;}
.y12a{bottom:581.777467pt;}
.y14e{bottom:582.161333pt;}
.ya2{bottom:582.233733pt;}
.y1a1{bottom:582.243200pt;}
.y17b{bottom:582.380667pt;}
.y1c0{bottom:582.522533pt;}
.yd6{bottom:583.813200pt;}
.y40{bottom:584.887333pt;}
.y8{bottom:588.870667pt;}
.y6e{bottom:592.105067pt;}
.y106{bottom:594.859867pt;}
.y132{bottom:594.860800pt;}
.y14d{bottom:595.500667pt;}
.ya1{bottom:595.566400pt;}
.y1a0{bottom:595.571200pt;}
.y1bf{bottom:595.839200pt;}
.yd5{bottom:597.187467pt;}
.y3f{bottom:598.848267pt;}
.y7{bottom:602.204000pt;}
.y17a{bottom:603.272933pt;}
.y105{bottom:608.234133pt;}
.y14c{bottom:608.837333pt;}
.ya0{bottom:608.899200pt;}
.y1be{bottom:609.155867pt;}
.yd4{bottom:610.561733pt;}
.y6d{bottom:610.665067pt;}
.y3e{bottom:612.809200pt;}
.y6{bottom:615.537333pt;}
.y104{bottom:621.608400pt;}
.y14b{bottom:622.173867pt;}
.y9f{bottom:622.231867pt;}
.y1bd{bottom:622.472533pt;}
.y6c{bottom:623.198400pt;}
.yd3{bottom:623.936000pt;}
.y3d{bottom:626.770000pt;}
.y5{bottom:628.870667pt;}
.y129{bottom:634.982667pt;}
.y103{bottom:634.983600pt;}
.y179{bottom:635.504933pt;}
.y14a{bottom:635.507733pt;}
.y9e{bottom:635.564533pt;}
.y19f{bottom:635.569333pt;}
.y1bc{bottom:635.789200pt;}
.yd2{bottom:637.301333pt;}
.y3c{bottom:640.730933pt;}
.y6b{bottom:641.758400pt;}
.y102{bottom:648.356933pt;}
.y178{bottom:648.844267pt;}
.y149{bottom:648.847067pt;}
.y9d{bottom:648.897333pt;}
.y1bb{bottom:649.105867pt;}
.yd1{bottom:650.674667pt;}
.y6a{bottom:654.291733pt;}
.y3b{bottom:654.684800pt;}
.y101{bottom:661.731200pt;}
.y128{bottom:661.732133pt;}
.y148{bottom:662.183600pt;}
.y9c{bottom:662.230000pt;}
.y1ba{bottom:662.422533pt;}
.y1f{bottom:664.222133pt;}
.y3a{bottom:668.647467pt;}
.y69{bottom:672.851733pt;}
.y100{bottom:675.105467pt;}
.yd0{bottom:675.392667pt;}
.y147{bottom:675.520133pt;}
.y19e{bottom:675.562667pt;}
.y9b{bottom:675.567467pt;}
.y1b9{bottom:675.739200pt;}
.y1e{bottom:678.622133pt;}
.y39{bottom:682.610133pt;}
.yff{bottom:688.479867pt;}
.y146{bottom:688.856800pt;}
.y9a{bottom:688.895467pt;}
.y1b8{bottom:689.055867pt;}
.y38{bottom:696.572800pt;}
.yfe{bottom:701.854133pt;}
.y145{bottom:702.179600pt;}
.y177{bottom:702.193333pt;}
.y99{bottom:702.228133pt;}
.y1b7{bottom:702.372533pt;}
.y68{bottom:702.514800pt;}
.y1d{bottom:703.781067pt;}
.y37{bottom:710.535467pt;}
.yfd{bottom:715.228400pt;}
.ycf{bottom:715.229333pt;}
.y127{bottom:715.235867pt;}
.y144{bottom:715.518933pt;}
.y176{bottom:715.530000pt;}
.y19d{bottom:715.579733pt;}
.y98{bottom:715.598533pt;}
.y1b6{bottom:715.689200pt;}
.y36{bottom:724.496400pt;}
.yce{bottom:728.602667pt;}
.y126{bottom:728.609200pt;}
.y143{bottom:728.858267pt;}
.y175{bottom:728.866533pt;}
.y19c{bottom:728.907733pt;}
.y97{bottom:728.926533pt;}
.y1b5{bottom:729.005867pt;}
.y35{bottom:738.457200pt;}
.ycd{bottom:741.976933pt;}
.y125{bottom:741.982533pt;}
.y142{bottom:742.197600pt;}
.y174{bottom:742.203067pt;}
.y19b{bottom:742.235733pt;}
.y96{bottom:742.254533pt;}
.y67{bottom:742.294800pt;}
.y1b4{bottom:742.322533pt;}
.y34{bottom:752.418133pt;}
.y20{bottom:752.846800pt;}
.yfc{bottom:755.351200pt;}
.ycc{bottom:755.353067pt;}
.y124{bottom:755.355867pt;}
.y141{bottom:755.536933pt;}
.y173{bottom:755.539600pt;}
.y19a{bottom:755.563733pt;}
.y95{bottom:755.582533pt;}
.y66{bottom:755.611467pt;}
.y1b3{bottom:755.639200pt;}
.y33{bottom:766.378933pt;}
.ycb{bottom:768.726400pt;}
.y123{bottom:768.729200pt;}
.y172{bottom:768.873467pt;}
.y140{bottom:768.876267pt;}
.y199{bottom:768.891733pt;}
.y94{bottom:768.910533pt;}
.y65{bottom:768.933600pt;}
.y1b2{bottom:768.955867pt;}
.y32{bottom:780.339867pt;}
.yca{bottom:782.099733pt;}
.y122{bottom:782.102533pt;}
.y13f{bottom:782.212800pt;}
.y198{bottom:782.224400pt;}
.y93{bottom:782.238533pt;}
.y64{bottom:782.255867pt;}
.y1b1{bottom:782.272533pt;}
.y4{bottom:789.529200pt;}
.y31{bottom:794.300800pt;}
.yc9{bottom:795.474000pt;}
.y121{bottom:795.475867pt;}
.y13e{bottom:795.549333pt;}
.y197{bottom:795.557067pt;}
.y92{bottom:795.566533pt;}
.y63{bottom:795.578133pt;}
.y1b0{bottom:795.589200pt;}
.y30{bottom:808.259867pt;}
.yc8{bottom:808.848267pt;}
.y120{bottom:808.849200pt;}
.y13d{bottom:808.886000pt;}
.y196{bottom:808.889867pt;}
.y91{bottom:808.894533pt;}
.y62{bottom:808.900267pt;}
.y1af{bottom:808.905867pt;}
.y2f{bottom:822.222533pt;}
.y3{bottom:831.430800pt;}
.y2{bottom:842.097467pt;}
.y2e{bottom:861.780400pt;}
.y61{bottom:861.919333pt;}
.ha{height:24.266667pt;}
.hf{height:31.033854pt;}
.h4{height:31.360000pt;}
.h2{height:33.973333pt;}
.he{height:36.030933pt;}
.hd{height:36.586667pt;}
.h6{height:40.770833pt;}
.h3{height:40.998400pt;}
.h5{height:41.813333pt;}
.h12{height:43.274740pt;}
.hb{height:43.319010pt;}
.hc{height:44.426667pt;}
.h9{height:47.040000pt;}
.h13{height:49.501333pt;}
.h8{height:56.059896pt;}
.h11{height:66.858667pt;}
.h7{height:73.173333pt;}
.h10{height:91.946667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.xa{left:61.768933pt;}
.x3{left:68.284933pt;}
.x7{left:71.811600pt;}
.x9{left:112.360933pt;}
.x4{left:184.360933pt;}
.x8{left:223.700933pt;}
.x6{left:226.058800pt;}
.x5{left:231.390400pt;}
.xb{left:303.240933pt;}
.xc{left:330.897600pt;}
.x2{left:375.307067pt;}
}




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