
    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_8e5b59b965e03912220ddfc9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.091309;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_a6860cd8d1b0bda31933e4b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_c7bf30050777a87224f5b76a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_d640c3af946f63a7c7057b45.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_881b2358f014f7998e229037.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.091309;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_b996dc86cabe2eb3aa11ac87.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_b0bae9fe5ba8cca94fff7b56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_4be6f7bfe78ade54b5ec1404.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.034668;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;}
.mb7{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);}
.m89{transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247627,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247814,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247820,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247834,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247880,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247945,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247971,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247972,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248037,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248039,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248053,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248054,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248079,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m92{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);}
.m25{transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248234,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248252,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248254,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248295,0.000000,0.000000,0.250000,0,0);}
.me1{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);}
.m94{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248355,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248464,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248495,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248580,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248707,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248716,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248808,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248884,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248911,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248923,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248928,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248929,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248943,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248945,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248967,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m7f{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248985,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248986,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248989,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249007,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249014,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249027,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249032,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249052,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249093,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249100,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249132,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249133,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249222,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249223,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249264,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249310,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249318,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249332,0.000000,0.000000,0.250000,0,0);}
.m2f{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);}
.m96{transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249377,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249390,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249393,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249395,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249404,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249418,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249427,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249480,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249485,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249577,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249625,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249640,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249664,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m71{transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249673,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m2c{transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249692,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249693,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249773,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249789,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249791,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249827,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249845,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249868,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249920,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249943,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m49{transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250002,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250007,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250029,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250066,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250068,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250070,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250111,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250141,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250150,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250167,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250177,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250180,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250191,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250252,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250259,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250286,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250298,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250308,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250310,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250316,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250339,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250343,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250355,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250414,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250466,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250473,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250475,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250482,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250499,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250503,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250504,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250535,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250541,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250555,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250561,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250575,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250584,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250600,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250614,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250645,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250647,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250684,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250700,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250723,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250729,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250731,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250741,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250770,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250797,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250805,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250815,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250848,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250850,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250859,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250870,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250880,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250881,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250895,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250897,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250925,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250930,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250932,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250970,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250982,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250993,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251035,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251036,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251067,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251116,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251152,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251205,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251217,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251222,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251225,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251252,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251254,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251275,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251285,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251293,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251295,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251296,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251300,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251328,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251459,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251477,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251490,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251610,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251611,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251668,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.251709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251709,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251718,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251730,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251810,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251918,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252055,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252067,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252198,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252234,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252273,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252290,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252292,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252366,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252490,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v4{vertical-align:-21.978000px;}
.v1{vertical-align:-17.982000px;}
.v3{vertical-align:-5.769600px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.980000px;}
.v2{vertical-align:21.978600px;}
.ls27{letter-spacing:-1.923900px;}
.lsb{letter-spacing:-1.188000px;}
.lsa{letter-spacing:-1.056000px;}
.lsc{letter-spacing:-0.990000px;}
.ls18{letter-spacing:-0.924000px;}
.lsd{letter-spacing:-0.858000px;}
.ls2e{letter-spacing:-0.850014px;}
.lse{letter-spacing:-0.792000px;}
.ls19{letter-spacing:-0.726000px;}
.ls1a{letter-spacing:-0.660000px;}
.ls73{letter-spacing:-0.600000px;}
.ls29{letter-spacing:-0.594000px;}
.ls2a{letter-spacing:-0.528000px;}
.ls1e{letter-spacing:-0.462000px;}
.ls28{letter-spacing:-0.461736px;}
.ls2b{letter-spacing:-0.423258px;}
.ls1f{letter-spacing:-0.384780px;}
.ls9f{letter-spacing:-0.360000px;}
.ls4c{letter-spacing:-0.330000px;}
.ls9e{letter-spacing:-0.300000px;}
.ls4b{letter-spacing:-0.264000px;}
.ls97{letter-spacing:-0.240000px;}
.ls36{letter-spacing:-0.198000px;}
.ls5f{letter-spacing:-0.180000px;}
.ls4d{letter-spacing:-0.153912px;}
.ls2d{letter-spacing:-0.132000px;}
.ls87{letter-spacing:-0.120000px;}
.ls35{letter-spacing:-0.076956px;}
.ls1b{letter-spacing:-0.066000px;}
.ls88{letter-spacing:-0.060000px;}
.ls2c{letter-spacing:-0.038478px;}
.ls8{letter-spacing:0.000000px;}
.ls7a{letter-spacing:0.009000px;}
.ls7c{letter-spacing:0.009600px;}
.ls5a{letter-spacing:0.010200px;}
.ls94{letter-spacing:0.029567px;}
.ls5d{letter-spacing:0.042000px;}
.ls76{letter-spacing:0.054600px;}
.ls5c{letter-spacing:0.055108px;}
.ls75{letter-spacing:0.055307px;}
.ls5e{letter-spacing:0.060000px;}
.ls1d{letter-spacing:0.066000px;}
.ls49{letter-spacing:0.076956px;}
.ls8f{letter-spacing:0.096000px;}
.ls30{letter-spacing:0.099000px;}
.ls8e{letter-spacing:0.105227px;}
.ls39{letter-spacing:0.115434px;}
.ls8b{letter-spacing:0.120000px;}
.ls95{letter-spacing:0.125792px;}
.ls96{letter-spacing:0.126000px;}
.ls89{letter-spacing:0.127430px;}
.ls1c{letter-spacing:0.132000px;}
.ls8a{letter-spacing:0.142800px;}
.ls45{letter-spacing:0.153912px;}
.ls67{letter-spacing:0.168000px;}
.ls68{letter-spacing:0.180000px;}
.ls9b{letter-spacing:0.186000px;}
.ls7b{letter-spacing:0.187218px;}
.ls4a{letter-spacing:0.192390px;}
.ls9a{letter-spacing:0.194684px;}
.ls31{letter-spacing:0.198000px;}
.ls8c{letter-spacing:0.210000px;}
.ls59{letter-spacing:0.240000px;}
.ls41{letter-spacing:0.264000px;}
.ls4f{letter-spacing:0.269346px;}
.ls64{letter-spacing:0.270000px;}
.ls58{letter-spacing:0.276564px;}
.ls71{letter-spacing:0.300000px;}
.ls8d{letter-spacing:0.308167px;}
.ls11{letter-spacing:0.314400px;}
.ls2f{letter-spacing:0.314820px;}
.ls4{letter-spacing:0.315000px;}
.lsf{letter-spacing:0.330000px;}
.ls9c{letter-spacing:0.352227px;}
.ls6f{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.377784px;}
.ls82{letter-spacing:0.379242px;}
.ls20{letter-spacing:0.409266px;}
.ls56{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.432000px;}
.ls6c{letter-spacing:0.433747px;}
.ls3a{letter-spacing:0.440748px;}
.ls6b{letter-spacing:0.444000px;}
.ls70{letter-spacing:0.447921px;}
.ls24{letter-spacing:0.453600px;}
.ls38{letter-spacing:0.462000px;}
.ls46{letter-spacing:0.472230px;}
.ls74{letter-spacing:0.480000px;}
.ls7d{letter-spacing:0.523960px;}
.ls37{letter-spacing:0.528000px;}
.ls32{letter-spacing:0.529200px;}
.ls80{letter-spacing:0.529307px;}
.ls5{letter-spacing:0.531000px;}
.ls10{letter-spacing:0.531600px;}
.ls25{letter-spacing:0.532200px;}
.ls3f{letter-spacing:0.535194px;}
.ls4e{letter-spacing:0.538411px;}
.ls7{letter-spacing:0.539400px;}
.ls6{letter-spacing:0.540000px;}
.ls26{letter-spacing:0.546000px;}
.ls21{letter-spacing:0.547800px;}
.ls13{letter-spacing:0.548400px;}
.ls12{letter-spacing:0.549000px;}
.ls22{letter-spacing:0.549600px;}
.ls5b{letter-spacing:0.582772px;}
.ls93{letter-spacing:0.588000px;}
.ls92{letter-spacing:0.591089px;}
.ls57{letter-spacing:0.600000px;}
.ls3e{letter-spacing:0.621000px;}
.ls7f{letter-spacing:0.625800px;}
.ls7e{letter-spacing:0.629109px;}
.ls65{letter-spacing:0.645149px;}
.ls40{letter-spacing:0.648000px;}
.ls66{letter-spacing:0.651000px;}
.ls43{letter-spacing:0.657227px;}
.ls3b{letter-spacing:0.660000px;}
.ls44{letter-spacing:0.665718px;}
.ls9d{letter-spacing:0.677822px;}
.ls14{letter-spacing:0.702000px;}
.ls48{letter-spacing:0.726000px;}
.ls34{letter-spacing:0.736511px;}
.ls16{letter-spacing:0.743359px;}
.ls33{letter-spacing:0.745659px;}
.ls15{letter-spacing:0.756000px;}
.ls86{letter-spacing:0.780000px;}
.ls42{letter-spacing:0.810000px;}
.ls91{letter-spacing:0.822832px;}
.ls90{letter-spacing:0.833465px;}
.ls85{letter-spacing:0.840000px;}
.ls84{letter-spacing:0.864000px;}
.ls98{letter-spacing:0.867327px;}
.ls83{letter-spacing:0.875050px;}
.ls69{letter-spacing:0.889307px;}
.ls6a{letter-spacing:0.900000px;}
.ls3c{letter-spacing:0.907200px;}
.ls3d{letter-spacing:0.918000px;}
.ls52{letter-spacing:0.957624px;}
.ls55{letter-spacing:0.960000px;}
.ls54{letter-spacing:0.966000px;}
.ls60{letter-spacing:0.993861px;}
.ls61{letter-spacing:0.999600px;}
.ls62{letter-spacing:1.008000px;}
.ls50{letter-spacing:1.017030px;}
.ls72{letter-spacing:1.020000px;}
.ls99{letter-spacing:1.041386px;}
.ls6e{letter-spacing:1.060990px;}
.ls6d{letter-spacing:1.071089px;}
.ls2{letter-spacing:1.080000px;}
.ls78{letter-spacing:1.082376px;}
.ls81{letter-spacing:1.140000px;}
.ls1{letter-spacing:1.200000px;}
.ls0{letter-spacing:1.210200px;}
.ls9{letter-spacing:1.320000px;}
.ls77{letter-spacing:1.380000px;}
.ls17{letter-spacing:1.407997px;}
.ls3{letter-spacing:1.440000px;}
.ls53{letter-spacing:4.185149px;}
.ls63{letter-spacing:4.464356px;}
.ls51{letter-spacing:4.540990px;}
.ls79{letter-spacing:5.048911px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-24.000000px;}
.ws53{word-spacing:-17.250000px;}
.ws9b{word-spacing:-16.962000px;}
.ws1{word-spacing:-16.800000px;}
.ws75{word-spacing:-16.764000px;}
.ws58{word-spacing:-16.698000px;}
.ws64{word-spacing:-16.632000px;}
.ws55{word-spacing:-16.599000px;}
.ws84{word-spacing:-16.566000px;}
.ws20{word-spacing:-16.500000px;}
.ws1f{word-spacing:-16.434000px;}
.ws56{word-spacing:-16.368000px;}
.ws8f{word-spacing:-16.236000px;}
.ws3{word-spacing:-16.200000px;}
.wsbc{word-spacing:-16.080000px;}
.ws21{word-spacing:-15.840000px;}
.wsa0{word-spacing:-15.600000px;}
.ws1d{word-spacing:-15.576000px;}
.wsde{word-spacing:-15.480000px;}
.wsb0{word-spacing:-15.360000px;}
.ws4{word-spacing:-15.312000px;}
.wsad{word-spacing:-15.300000px;}
.wsd4{word-spacing:-15.210000px;}
.wsaf{word-spacing:-15.060000px;}
.wsa1{word-spacing:-15.000000px;}
.wsd2{word-spacing:-14.940000px;}
.wsdd{word-spacing:-14.820000px;}
.wse1{word-spacing:-14.700000px;}
.wse2{word-spacing:-14.640000px;}
.ws68{word-spacing:-14.121000px;}
.ws65{word-spacing:-14.040000px;}
.ws23{word-spacing:-13.500000px;}
.ws54{word-spacing:-12.075000px;}
.ws26{word-spacing:-11.550000px;}
.wsac{word-spacing:-11.508000px;}
.wsab{word-spacing:-11.499600px;}
.ws9f{word-spacing:-11.466000px;}
.wsae{word-spacing:-11.151000px;}
.wsbd{word-spacing:-11.125800px;}
.wsd5{word-spacing:-11.088000px;}
.wsd3{word-spacing:-10.642800px;}
.wsbb{word-spacing:-10.554600px;}
.wsa2{word-spacing:-10.542000px;}
.ws2{word-spacing:-10.500000px;}
.ws67{word-spacing:-10.357200px;}
.ws5a{word-spacing:-9.979200px;}
.ws3e{word-spacing:-9.903600px;}
.ws9c{word-spacing:-9.888846px;}
.ws76{word-spacing:-9.773412px;}
.ws59{word-spacing:-9.734934px;}
.ws7f{word-spacing:-9.696456px;}
.ws1e{word-spacing:-9.619500px;}
.ws8b{word-spacing:-9.581022px;}
.ws57{word-spacing:-9.542544px;}
.ws90{word-spacing:-9.465588px;}
.ws5{word-spacing:-9.450000px;}
.ws22{word-spacing:-9.234720px;}
.ws3b{word-spacing:-9.196242px;}
.ws3a{word-spacing:-9.157764px;}
.wsec{word-spacing:-8.745000px;}
.ws66{word-spacing:-8.405694px;}
.ws77{word-spacing:-8.342730px;}
.ws24{word-spacing:-8.279766px;}
.ws3d{word-spacing:-8.185320px;}
.ws39{word-spacing:-7.695600px;}
.wsce{word-spacing:-7.080000px;}
.ws3c{word-spacing:-7.020486px;}
.wsd6{word-spacing:-6.000000px;}
.wsb7{word-spacing:-5.820000px;}
.ws96{word-spacing:-5.346000px;}
.wscd{word-spacing:-4.860000px;}
.wsea{word-spacing:-4.800000px;}
.ws19{word-spacing:-4.158000px;}
.ws18{word-spacing:-4.092000px;}
.ws62{word-spacing:-4.026000px;}
.wse6{word-spacing:-4.020000px;}
.ws3f{word-spacing:-3.960000px;}
.wse4{word-spacing:-3.840000px;}
.ws46{word-spacing:-3.828000px;}
.ws9{word-spacing:-3.780000px;}
.ws61{word-spacing:-3.762000px;}
.wsa8{word-spacing:-3.720000px;}
.ws95{word-spacing:-3.696000px;}
.ws5b{word-spacing:-3.630000px;}
.wsb4{word-spacing:-3.600000px;}
.ws72{word-spacing:-3.564000px;}
.wsca{word-spacing:-3.540000px;}
.ws49{word-spacing:-3.498000px;}
.ws44{word-spacing:-3.432000px;}
.ws85{word-spacing:-3.366000px;}
.ws50{word-spacing:-3.348000px;}
.ws8a{word-spacing:-3.300000px;}
.ws10{word-spacing:-3.240000px;}
.ws98{word-spacing:-3.234000px;}
.wsda{word-spacing:-3.180000px;}
.ws5c{word-spacing:-3.168000px;}
.ws30{word-spacing:-3.102000px;}
.ws9e{word-spacing:-3.036000px;}
.wse5{word-spacing:-3.000000px;}
.ws4c{word-spacing:-2.970000px;}
.ws4e{word-spacing:-2.916000px;}
.ws2c{word-spacing:-2.904000px;}
.wsa7{word-spacing:-2.880000px;}
.ws40{word-spacing:-2.838000px;}
.ws8{word-spacing:-2.820000px;}
.ws45{word-spacing:-2.772000px;}
.wsb{word-spacing:-2.760000px;}
.ws83{word-spacing:-2.706000px;}
.wsc{word-spacing:-2.700000px;}
.ws86{word-spacing:-2.640000px;}
.wsc3{word-spacing:-2.580000px;}
.ws82{word-spacing:-2.574000px;}
.wsc2{word-spacing:-2.520000px;}
.ws7a{word-spacing:-2.508000px;}
.ws52{word-spacing:-2.484000px;}
.wse3{word-spacing:-2.460000px;}
.ws94{word-spacing:-2.442000px;}
.ws32{word-spacing:-2.376000px;}
.ws4f{word-spacing:-2.322000px;}
.ws48{word-spacing:-2.310000px;}
.ws2b{word-spacing:-2.244000px;}
.ws73{word-spacing:-2.178000px;}
.ws79{word-spacing:-2.112000px;}
.wsd{word-spacing:-2.100000px;}
.ws51{word-spacing:-2.052000px;}
.ws7c{word-spacing:-2.046000px;}
.wse{word-spacing:-2.040000px;}
.ws6a{word-spacing:-1.980000px;}
.wsdf{word-spacing:-1.920000px;}
.ws31{word-spacing:-1.914000px;}
.ws88{word-spacing:-1.848000px;}
.wsdc{word-spacing:-1.800000px;}
.ws6b{word-spacing:-1.782000px;}
.wsee{word-spacing:-1.740000px;}
.ws4b{word-spacing:-1.716000px;}
.wsd7{word-spacing:-1.680000px;}
.ws27{word-spacing:-1.650000px;}
.ws6d{word-spacing:-1.584000px;}
.ws6e{word-spacing:-1.518000px;}
.ws12{word-spacing:-1.500000px;}
.ws71{word-spacing:-1.452000px;}
.wsf{word-spacing:-1.440000px;}
.wsa3{word-spacing:-1.386000px;}
.wsa{word-spacing:-1.380000px;}
.ws1b{word-spacing:-1.350000px;}
.ws14{word-spacing:-1.320000px;}
.ws17{word-spacing:-1.260000px;}
.ws8e{word-spacing:-1.254000px;}
.ws15{word-spacing:-1.200000px;}
.ws42{word-spacing:-1.188000px;}
.wsc8{word-spacing:-1.140000px;}
.ws33{word-spacing:-1.122000px;}
.wsb9{word-spacing:-1.080000px;}
.ws91{word-spacing:-1.056000px;}
.ws29{word-spacing:-0.990000px;}
.ws89{word-spacing:-0.924000px;}
.wsed{word-spacing:-0.900000px;}
.ws2f{word-spacing:-0.858000px;}
.wscf{word-spacing:-0.840000px;}
.ws2e{word-spacing:-0.792000px;}
.wsc1{word-spacing:-0.780000px;}
.ws37{word-spacing:-0.756000px;}
.ws99{word-spacing:-0.726000px;}
.wsdb{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.660000px;}
.ws11{word-spacing:-0.600000px;}
.ws97{word-spacing:-0.594000px;}
.ws4d{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.528000px;}
.wse0{word-spacing:-0.480000px;}
.ws9d{word-spacing:-0.462000px;}
.ws63{word-spacing:-0.440748px;}
.wsb8{word-spacing:-0.420000px;}
.ws7d{word-spacing:-0.377784px;}
.ws6f{word-spacing:-0.330000px;}
.wsc4{word-spacing:-0.300000px;}
.ws5e{word-spacing:-0.264000px;}
.wsb5{word-spacing:-0.240000px;}
.ws87{word-spacing:-0.198000px;}
.ws8d{word-spacing:-0.192390px;}
.ws34{word-spacing:-0.132000px;}
.wsd8{word-spacing:-0.120000px;}
.ws6c{word-spacing:-0.115434px;}
.ws8c{word-spacing:-0.076956px;}
.ws2d{word-spacing:-0.066000px;}
.wsc5{word-spacing:-0.060000px;}
.ws6{word-spacing:0.000000px;}
.ws4a{word-spacing:0.038478px;}
.wscc{word-spacing:0.060000px;}
.ws60{word-spacing:0.066000px;}
.wsc9{word-spacing:0.120000px;}
.ws5d{word-spacing:0.132000px;}
.wsa9{word-spacing:0.180000px;}
.ws7b{word-spacing:0.198000px;}
.wse8{word-spacing:0.240000px;}
.ws43{word-spacing:0.264000px;}
.ws80{word-spacing:0.330000px;}
.ws47{word-spacing:0.384780px;}
.ws93{word-spacing:0.462000px;}
.ws69{word-spacing:0.528000px;}
.wsc7{word-spacing:0.540000px;}
.ws78{word-spacing:0.594000px;}
.ws16{word-spacing:0.600000px;}
.ws38{word-spacing:0.648000px;}
.ws41{word-spacing:0.660000px;}
.ws36{word-spacing:0.702000px;}
.ws13{word-spacing:0.720000px;}
.ws9a{word-spacing:0.726000px;}
.wsa6{word-spacing:0.780000px;}
.ws28{word-spacing:0.792000px;}
.ws1a{word-spacing:0.858000px;}
.ws2a{word-spacing:0.924000px;}
.wsc6{word-spacing:1.020000px;}
.ws92{word-spacing:1.056000px;}
.wscb{word-spacing:1.080000px;}
.wsaa{word-spacing:1.380000px;}
.wsa5{word-spacing:1.500000px;}
.wsb2{word-spacing:1.620000px;}
.ws70{word-spacing:1.650000px;}
.wsb3{word-spacing:1.740000px;}
.wseb{word-spacing:1.980000px;}
.ws81{word-spacing:2.046000px;}
.wsd1{word-spacing:2.340000px;}
.wsd9{word-spacing:2.580000px;}
.wse7{word-spacing:2.820000px;}
.wsd0{word-spacing:2.880000px;}
.wsb6{word-spacing:2.940000px;}
.wsa4{word-spacing:3.240000px;}
.wsb1{word-spacing:3.420000px;}
.wse9{word-spacing:3.720000px;}
.wsba{word-spacing:3.840000px;}
.wsc0{word-spacing:3.960000px;}
.wsbe{word-spacing:4.500000px;}
.wsbf{word-spacing:5.580000px;}
.ws1c{word-spacing:14.040000px;}
.ws7e{word-spacing:14.148000px;}
.ws35{word-spacing:14.202000px;}
.ws74{word-spacing:14.418000px;}
.ws25{word-spacing:1758.888600px;}
._d{margin-left:-19.890312px;}
._7{margin-left:-14.850000px;}
._9{margin-left:-12.801597px;}
._2{margin-left:-9.360000px;}
._c{margin-left:-7.742400px;}
._a{margin-left:-6.383760px;}
._4{margin-left:-5.366640px;}
._1{margin-left:-4.346400px;}
._3{margin-left:-3.177600px;}
._0{margin-left:-1.920000px;}
._5{width:1.201200px;}
._6{width:2.884800px;}
._e{width:4.411592px;}
._f{width:5.464206px;}
._b{width:12.852000px;}
._8{width:14.850000px;}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fs8{font-size:37.800000px;}
.fs5{font-size:38.478000px;}
.fs3{font-size:42.000000px;}
.fsa{font-size:46.200000px;}
.fs9{font-size:48.000000px;}
.fsc{font-size:48.300000px;}
.fs6{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:67.200000px;}
.fsb{font-size:69.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2a{bottom:68.179800px;}
.y16d{bottom:82.682400px;}
.y15c{bottom:85.174350px;}
.y57{bottom:88.004100px;}
.y29{bottom:92.499600px;}
.y14c{bottom:93.663750px;}
.y128{bottom:93.678300px;}
.y116{bottom:102.182400px;}
.y56{bottom:104.504100px;}
.ye2{bottom:104.504250px;}
.y15b{bottom:104.674350px;}
.yba{bottom:108.999600px;}
.y28{bottom:108.999750px;}
.y127{bottom:113.178300px;}
.y55{bottom:121.004100px;}
.y27{bottom:121.004250px;}
.yb5{bottom:121.004400px;}
.y14b{bottom:121.667700px;}
.y115{bottom:121.682400px;}
.ye1{bottom:125.499750px;}
.y80{bottom:125.499900px;}
.y15a{bottom:132.678300px;}
.yb4{bottom:137.504400px;}
.y14a{bottom:141.167700px;}
.y114{bottom:141.182400px;}
.y54{bottom:141.999600px;}
.yb9{bottom:141.999750px;}
.ye0{bottom:141.999900px;}
.y7f{bottom:142.000050px;}
.y26{bottom:147.445200px;}
.y16c{bottom:149.686200px;}
.yb3{bottom:154.004400px;}
.ya9{bottom:154.004700px;}
.yf2{bottom:154.017900px;}
.y53{bottom:158.499750px;}
.yb2{bottom:158.499900px;}
.ydf{bottom:158.500050px;}
.y7e{bottom:158.500200px;}
.y126{bottom:160.682250px;}
.ydd{bottom:161.697300px;}
.y25{bottom:166.945200px;}
.y149{bottom:169.171650px;}
.y113{bottom:169.186200px;}
.ya8{bottom:170.504700px;}
.y7d{bottom:170.504850px;}
.yf1{bottom:173.517900px;}
.y52{bottom:174.999900px;}
.yb1{bottom:175.000050px;}
.ya7{bottom:175.000200px;}
.yd6{bottom:175.000350px;}
.y159{bottom:180.182250px;}
.ydc{bottom:181.197300px;}
.y23{bottom:186.445200px;}
.y7c{bottom:187.004850px;}
.y148{bottom:188.671650px;}
.y112{bottom:188.686200px;}
.yd1{bottom:190.277700px;}
.y51{bottom:191.500050px;}
.yb0{bottom:191.500200px;}
.ya6{bottom:191.500350px;}
.yd5{bottom:191.500500px;}
.y24{bottom:191.939700px;}
.yf0{bottom:193.017900px;}
.y158{bottom:199.682250px;}
.ydb{bottom:200.697300px;}
.y7b{bottom:203.504850px;}
.y22{bottom:205.945200px;}
.y50{bottom:208.000200px;}
.yaf{bottom:208.000350px;}
.ya5{bottom:208.000500px;}
.y111{bottom:208.186200px;}
.yd0{bottom:209.777700px;}
.yda{bottom:215.272200px;}
.y147{bottom:216.675450px;}
.y16b{bottom:216.690150px;}
.yde{bottom:220.181250px;}
.yd3{bottom:220.197300px;}
.yef{bottom:221.021700px;}
.y4f{bottom:224.500350px;}
.yb8{bottom:224.500500px;}
.ya4{bottom:224.500650px;}
.y20{bottom:225.445200px;}
.yd4{bottom:225.691800px;}
.y125{bottom:227.686200px;}
.ycf{bottom:229.277700px;}
.y21{bottom:230.939700px;}
.y146{bottom:236.175450px;}
.y110{bottom:236.190150px;}
.ya3{bottom:236.505300px;}
.yae{bottom:239.681250px;}
.yd2{bottom:239.697300px;}
.yee{bottom:240.521700px;}
.y4e{bottom:241.000500px;}
.y1f{bottom:244.945200px;}
.y157{bottom:247.186200px;}
.yce{bottom:248.777700px;}
.y10f{bottom:255.690150px;}
.y4d{bottom:257.500650px;}
.yad{bottom:259.181250px;}
.yb7{bottom:259.197300px;}
.y145{bottom:264.179400px;}
.y16a{bottom:264.194100px;}
.ycd{bottom:268.277700px;}
.yed{bottom:268.525650px;}
.y7a{bottom:274.000800px;}
.y10e{bottom:275.190150px;}
.yac{bottom:278.681250px;}
.yb6{bottom:278.697300px;}
.y144{bottom:283.679400px;}
.y169{bottom:283.694100px;}
.ya2{bottom:284.921400px;}
.y1e{bottom:285.445200px;}
.ycc{bottom:287.777700px;}
.yec{bottom:288.025650px;}
.y79{bottom:290.500950px;}
.y156{bottom:294.690150px;}
.yab{bottom:298.181250px;}
.y4c{bottom:298.197300px;}
.y143{bottom:303.179400px;}
.y10d{bottom:303.194100px;}
.y1d{bottom:303.445200px;}
.ya1{bottom:304.421400px;}
.ycb{bottom:307.277700px;}
.yeb{bottom:307.525650px;}
.y168{bottom:311.698050px;}
.y155{bottom:314.190150px;}
.y78{bottom:317.681250px;}
.y4b{bottom:317.697300px;}
.y1c{bottom:321.445200px;}
.y10c{bottom:322.694100px;}
.ya0{bottom:323.921400px;}
.yca{bottom:326.777700px;}
.y142{bottom:331.183350px;}
.y167{bottom:331.198050px;}
.yea{bottom:335.529600px;}
.y77{bottom:337.181250px;}
.y4a{bottom:337.197300px;}
.y1b{bottom:339.445200px;}
.y124{bottom:342.194100px;}
.y9f{bottom:343.421400px;}
.yc9{bottom:346.277700px;}
.y141{bottom:350.683350px;}
.y10b{bottom:350.698050px;}
.ye9{bottom:355.029600px;}
.y76{bottom:356.681250px;}
.y49{bottom:356.697300px;}
.y1a{bottom:357.445200px;}
.y166{bottom:359.202000px;}
.y154{bottom:361.694100px;}
.y9e{bottom:362.921400px;}
.yc8{bottom:365.777700px;}
.y10a{bottom:370.198050px;}
.y19{bottom:375.445200px;}
.y75{bottom:376.181250px;}
.y48{bottom:376.197300px;}
.y140{bottom:378.687300px;}
.y9d{bottom:382.421400px;}
.ye8{bottom:383.033550px;}
.yc7{bottom:385.277700px;}
.y165{bottom:387.205950px;}
.y123{bottom:389.698050px;}
.y18{bottom:393.445200px;}
.y74{bottom:395.681250px;}
.y47{bottom:395.697300px;}
.y13f{bottom:398.187300px;}
.y109{bottom:398.202000px;}
.y9c{bottom:401.921400px;}
.ye7{bottom:402.533550px;}
.yc6{bottom:404.777700px;}
.y164{bottom:406.705950px;}
.y17{bottom:411.445200px;}
.y73{bottom:415.181250px;}
.y46{bottom:415.197300px;}
.y108{bottom:417.702000px;}
.y9b{bottom:421.421400px;}
.ye6{bottom:422.033550px;}
.yc5{bottom:424.277700px;}
.y13e{bottom:426.191250px;}
.y16{bottom:429.445200px;}
.y72{bottom:434.681250px;}
.y44{bottom:434.697300px;}
.y163{bottom:434.709900px;}
.y122{bottom:437.202000px;}
.y45{bottom:440.191800px;}
.y9a{bottom:440.921400px;}
.ye5{bottom:441.533550px;}
.yc4{bottom:443.777700px;}
.y13d{bottom:445.691250px;}
.y107{bottom:445.705950px;}
.y15{bottom:447.445200px;}
.y71{bottom:454.181250px;}
.y43{bottom:454.197300px;}
.y162{bottom:454.209900px;}
.y99{bottom:460.421400px;}
.ye4{bottom:461.033550px;}
.yc3{bottom:463.277700px;}
.y13c{bottom:465.191250px;}
.y106{bottom:465.205950px;}
.y14{bottom:465.445200px;}
.y6f{bottom:473.681250px;}
.y42{bottom:473.697300px;}
.y70{bottom:479.175750px;}
.y98{bottom:479.921400px;}
.y161{bottom:482.213850px;}
.yc2{bottom:482.777700px;}
.y13{bottom:483.445200px;}
.y13b{bottom:484.691250px;}
.y121{bottom:484.705950px;}
.y6e{bottom:493.181250px;}
.y41{bottom:493.197300px;}
.y105{bottom:493.209900px;}
.y97{bottom:499.421400px;}
.y12{bottom:501.445200px;}
.y160{bottom:501.713850px;}
.yc1{bottom:502.277700px;}
.y6d{bottom:512.681250px;}
.y13a{bottom:512.695200px;}
.y40{bottom:512.697300px;}
.y104{bottom:512.709900px;}
.y96{bottom:518.921400px;}
.y15f{bottom:521.213850px;}
.yc0{bottom:521.777700px;}
.y6c{bottom:532.181250px;}
.y139{bottom:532.195200px;}
.y3f{bottom:532.197300px;}
.y120{bottom:532.209750px;}
.y11{bottom:537.445200px;}
.y95{bottom:538.421400px;}
.y103{bottom:540.713850px;}
.ybf{bottom:541.277700px;}
.y6b{bottom:551.681250px;}
.y138{bottom:551.695200px;}
.y3e{bottom:551.697300px;}
.y10{bottom:555.445200px;}
.y94{bottom:557.921400px;}
.y102{bottom:560.213850px;}
.ybe{bottom:560.777700px;}
.y15e{bottom:568.717800px;}
.y6a{bottom:571.181250px;}
.y137{bottom:571.195200px;}
.y3d{bottom:571.197300px;}
.yf{bottom:573.445200px;}
.y93{bottom:577.421400px;}
.y11f{bottom:579.713850px;}
.ybd{bottom:580.277700px;}
.y101{bottom:588.217800px;}
.y69{bottom:590.681250px;}
.y3c{bottom:590.697300px;}
.ye{bottom:591.445200px;}
.y92{bottom:596.921400px;}
.y136{bottom:599.199150px;}
.y153{bottom:599.213850px;}
.y11e{bottom:607.717800px;}
.yd{bottom:609.445200px;}
.y68{bottom:610.181250px;}
.y3b{bottom:610.197300px;}
.ybc{bottom:612.533550px;}
.y100{bottom:616.221600px;}
.y91{bottom:616.421400px;}
.y135{bottom:618.699150px;}
.y171{bottom:618.713850px;}
.y11d{bottom:627.217800px;}
.yc{bottom:627.445200px;}
.y67{bottom:629.681250px;}
.y3a{bottom:629.697300px;}
.yff{bottom:635.721600px;}
.y90{bottom:635.921400px;}
.y170{bottom:638.213850px;}
.yb{bottom:645.445200px;}
.y134{bottom:646.703100px;}
.y152{bottom:646.717800px;}
.y66{bottom:649.181250px;}
.y39{bottom:649.197300px;}
.y11c{bottom:655.221600px;}
.y8f{bottom:655.421400px;}
.ya{bottom:663.445200px;}
.yfe{bottom:663.725550px;}
.y16f{bottom:666.217800px;}
.y65{bottom:668.681250px;}
.y37{bottom:668.697300px;}
.y38{bottom:674.191800px;}
.y133{bottom:674.707050px;}
.y11b{bottom:674.721600px;}
.y8e{bottom:674.921400px;}
.y9{bottom:681.445200px;}
.yfd{bottom:683.225550px;}
.y64{bottom:688.181250px;}
.y36{bottom:688.197300px;}
.y132{bottom:694.207050px;}
.y151{bottom:694.221600px;}
.y8d{bottom:694.421400px;}
.y8{bottom:699.445200px;}
.y11a{bottom:702.725550px;}
.y63{bottom:707.681250px;}
.y35{bottom:707.697300px;}
.yfc{bottom:711.229500px;}
.ybb{bottom:713.191800px;}
.y16e{bottom:713.721600px;}
.y8c{bottom:713.921400px;}
.y7{bottom:717.445200px;}
.y131{bottom:722.211000px;}
.y119{bottom:722.225550px;}
.y62{bottom:727.181250px;}
.y34{bottom:727.197300px;}
.yfb{bottom:730.729500px;}
.yaa{bottom:732.675750px;}
.y8b{bottom:733.421400px;}
.y6{bottom:735.445200px;}
.y130{bottom:741.711000px;}
.y150{bottom:741.725550px;}
.y61{bottom:746.681250px;}
.y33{bottom:746.697300px;}
.yfa{bottom:750.229500px;}
.y8a{bottom:752.921550px;}
.y5{bottom:753.445200px;}
.y14f{bottom:761.225550px;}
.y60{bottom:766.181250px;}
.y32{bottom:766.197300px;}
.y12f{bottom:769.714950px;}
.y118{bottom:769.729500px;}
.yd9{bottom:771.691950px;}
.y89{bottom:772.421550px;}
.yf9{bottom:778.233450px;}
.y5f{bottom:785.681250px;}
.y31{bottom:785.697300px;}
.y4{bottom:788.453100px;}
.y12e{bottom:789.214950px;}
.y117{bottom:789.229500px;}
.y88{bottom:791.921550px;}
.yf8{bottom:797.733450px;}
.y5e{bottom:805.181250px;}
.y30{bottom:805.197300px;}
.y12d{bottom:808.714950px;}
.y14e{bottom:808.729500px;}
.yd8{bottom:810.691950px;}
.y87{bottom:811.421550px;}
.yf7{bottom:817.233450px;}
.y5d{bottom:824.681250px;}
.y2f{bottom:824.697300px;}
.yd7{bottom:830.191950px;}
.y86{bottom:830.921550px;}
.y12c{bottom:836.718750px;}
.yf6{bottom:836.733450px;}
.y5c{bottom:844.181250px;}
.y2e{bottom:844.197300px;}
.y3{bottom:844.697100px;}
.y85{bottom:850.421550px;}
.y12b{bottom:856.218750px;}
.y14d{bottom:856.233450px;}
.y5b{bottom:863.681250px;}
.y2d{bottom:863.697300px;}
.yf5{bottom:864.737400px;}
.ye3{bottom:869.191950px;}
.y84{bottom:869.921550px;}
.y2{bottom:871.097250px;}
.y15d{bottom:875.733450px;}
.y5a{bottom:883.181250px;}
.y2c{bottom:883.197300px;}
.y12a{bottom:884.222700px;}
.yf4{bottom:884.237400px;}
.y1{bottom:897.497250px;}
.y83{bottom:902.177400px;}
.y59{bottom:902.681250px;}
.y2b{bottom:902.697300px;}
.y129{bottom:903.722700px;}
.yf3{bottom:903.737400px;}
.y81{bottom:945.584550px;}
.y82{bottom:946.067400px;}
.y58{bottom:947.509800px;}
.h10{height:27.623610px;}
.h9{height:29.399836px;}
.hb{height:29.531672px;}
.he{height:33.167285px;}
.h6{height:33.762190px;}
.h11{height:36.852539px;}
.ha{height:42.117188px;}
.h8{height:47.381836px;}
.hc{height:47.513672px;}
.hd{height:52.141533px;}
.h3{height:52.646484px;}
.h4{height:52.792969px;}
.h7{height:57.911133px;}
.h5{height:58.072266px;}
.hf{height:60.543457px;}
.h2{height:84.234375px;}
.h0{height:1020.401250px;}
.h1{height:1020.750000px;}
.w0{width:722.763750px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:83.586600px;}
.x1{left:85.003950px;}
.x16{left:93.128850px;}
.x2e{left:94.994100px;}
.x2{left:97.759800px;}
.x8{left:99.035550px;}
.x2d{left:102.011850px;}
.x19{left:113.371050px;}
.x3a{left:120.771750px;}
.x32{left:123.647550px;}
.x30{left:125.121450px;}
.x2f{left:129.986550px;}
.x34{left:139.747650px;}
.x1a{left:140.773200px;}
.x33{left:143.770650px;}
.x35{left:147.711750px;}
.x3b{left:152.254350px;}
.x3{left:153.447900px;}
.x1b{left:154.854900px;}
.x4{left:158.083950px;}
.x38{left:161.369850px;}
.x36{left:162.502200px;}
.x27{left:171.474900px;}
.x28{left:181.105200px;}
.x39{left:182.328000px;}
.x17{left:188.932650px;}
.x7{left:191.719800px;}
.x18{left:198.641100px;}
.x31{left:203.349450px;}
.x1c{left:212.533050px;}
.x37{left:222.837750px;}
.x9{left:332.375100px;}
.xa{left:337.130700px;}
.x22{left:339.554550px;}
.x23{left:349.222200px;}
.x25{left:392.747700px;}
.x26{left:402.453450px;}
.x2a{left:425.844450px;}
.xe{left:453.071250px;}
.x2b{left:468.602700px;}
.xf{left:482.425200px;}
.x2c{left:486.915450px;}
.x10{left:496.853100px;}
.x11{left:525.044700px;}
.x12{left:539.760300px;}
.x29{left:546.971250px;}
.xc{left:561.121500px;}
.x1f{left:563.458500px;}
.xd{left:570.717450px;}
.x1d{left:575.301600px;}
.x1e{left:592.410150px;}
.x13{left:595.099500px;}
.x20{left:608.367750px;}
.x14{left:611.774850px;}
.x15{left:621.053250px;}
.x21{left:622.952700px;}
.x24{left:628.145250px;}
.x5{left:632.956650px;}
.x6{left:637.759800px;}
@media print{
.v4{vertical-align:-19.536000pt;}
.v1{vertical-align:-15.984000pt;}
.v3{vertical-align:-5.128533pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.760000pt;}
.v2{vertical-align:19.536533pt;}
.ls27{letter-spacing:-1.710133pt;}
.lsb{letter-spacing:-1.056000pt;}
.lsa{letter-spacing:-0.938667pt;}
.lsc{letter-spacing:-0.880000pt;}
.ls18{letter-spacing:-0.821333pt;}
.lsd{letter-spacing:-0.762667pt;}
.ls2e{letter-spacing:-0.755568pt;}
.lse{letter-spacing:-0.704000pt;}
.ls19{letter-spacing:-0.645333pt;}
.ls1a{letter-spacing:-0.586667pt;}
.ls73{letter-spacing:-0.533333pt;}
.ls29{letter-spacing:-0.528000pt;}
.ls2a{letter-spacing:-0.469333pt;}
.ls1e{letter-spacing:-0.410667pt;}
.ls28{letter-spacing:-0.410432pt;}
.ls2b{letter-spacing:-0.376229pt;}
.ls1f{letter-spacing:-0.342027pt;}
.ls9f{letter-spacing:-0.320000pt;}
.ls4c{letter-spacing:-0.293333pt;}
.ls9e{letter-spacing:-0.266667pt;}
.ls4b{letter-spacing:-0.234667pt;}
.ls97{letter-spacing:-0.213333pt;}
.ls36{letter-spacing:-0.176000pt;}
.ls5f{letter-spacing:-0.160000pt;}
.ls4d{letter-spacing:-0.136811pt;}
.ls2d{letter-spacing:-0.117333pt;}
.ls87{letter-spacing:-0.106667pt;}
.ls35{letter-spacing:-0.068405pt;}
.ls1b{letter-spacing:-0.058667pt;}
.ls88{letter-spacing:-0.053333pt;}
.ls2c{letter-spacing:-0.034203pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7a{letter-spacing:0.008000pt;}
.ls7c{letter-spacing:0.008533pt;}
.ls5a{letter-spacing:0.009067pt;}
.ls94{letter-spacing:0.026282pt;}
.ls5d{letter-spacing:0.037333pt;}
.ls76{letter-spacing:0.048533pt;}
.ls5c{letter-spacing:0.048985pt;}
.ls75{letter-spacing:0.049161pt;}
.ls5e{letter-spacing:0.053333pt;}
.ls1d{letter-spacing:0.058667pt;}
.ls49{letter-spacing:0.068405pt;}
.ls8f{letter-spacing:0.085333pt;}
.ls30{letter-spacing:0.088000pt;}
.ls8e{letter-spacing:0.093535pt;}
.ls39{letter-spacing:0.102608pt;}
.ls8b{letter-spacing:0.106667pt;}
.ls95{letter-spacing:0.111815pt;}
.ls96{letter-spacing:0.112000pt;}
.ls89{letter-spacing:0.113272pt;}
.ls1c{letter-spacing:0.117333pt;}
.ls8a{letter-spacing:0.126933pt;}
.ls45{letter-spacing:0.136811pt;}
.ls67{letter-spacing:0.149333pt;}
.ls68{letter-spacing:0.160000pt;}
.ls9b{letter-spacing:0.165333pt;}
.ls7b{letter-spacing:0.166416pt;}
.ls4a{letter-spacing:0.171013pt;}
.ls9a{letter-spacing:0.173052pt;}
.ls31{letter-spacing:0.176000pt;}
.ls8c{letter-spacing:0.186667pt;}
.ls59{letter-spacing:0.213333pt;}
.ls41{letter-spacing:0.234667pt;}
.ls4f{letter-spacing:0.239419pt;}
.ls64{letter-spacing:0.240000pt;}
.ls58{letter-spacing:0.245835pt;}
.ls71{letter-spacing:0.266667pt;}
.ls8d{letter-spacing:0.273926pt;}
.ls11{letter-spacing:0.279467pt;}
.ls2f{letter-spacing:0.279840pt;}
.ls4{letter-spacing:0.280000pt;}
.lsf{letter-spacing:0.293333pt;}
.ls9c{letter-spacing:0.313091pt;}
.ls6f{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.335808pt;}
.ls82{letter-spacing:0.337104pt;}
.ls20{letter-spacing:0.363792pt;}
.ls56{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.384000pt;}
.ls6c{letter-spacing:0.385553pt;}
.ls3a{letter-spacing:0.391776pt;}
.ls6b{letter-spacing:0.394667pt;}
.ls70{letter-spacing:0.398152pt;}
.ls24{letter-spacing:0.403200pt;}
.ls38{letter-spacing:0.410667pt;}
.ls46{letter-spacing:0.419760pt;}
.ls74{letter-spacing:0.426667pt;}
.ls7d{letter-spacing:0.465743pt;}
.ls37{letter-spacing:0.469333pt;}
.ls32{letter-spacing:0.470400pt;}
.ls80{letter-spacing:0.470495pt;}
.ls5{letter-spacing:0.472000pt;}
.ls10{letter-spacing:0.472533pt;}
.ls25{letter-spacing:0.473067pt;}
.ls3f{letter-spacing:0.475728pt;}
.ls4e{letter-spacing:0.478587pt;}
.ls7{letter-spacing:0.479467pt;}
.ls6{letter-spacing:0.480000pt;}
.ls26{letter-spacing:0.485333pt;}
.ls21{letter-spacing:0.486933pt;}
.ls13{letter-spacing:0.487467pt;}
.ls12{letter-spacing:0.488000pt;}
.ls22{letter-spacing:0.488533pt;}
.ls5b{letter-spacing:0.518020pt;}
.ls93{letter-spacing:0.522667pt;}
.ls92{letter-spacing:0.525413pt;}
.ls57{letter-spacing:0.533333pt;}
.ls3e{letter-spacing:0.552000pt;}
.ls7f{letter-spacing:0.556267pt;}
.ls7e{letter-spacing:0.559208pt;}
.ls65{letter-spacing:0.573465pt;}
.ls40{letter-spacing:0.576000pt;}
.ls66{letter-spacing:0.578667pt;}
.ls43{letter-spacing:0.584202pt;}
.ls3b{letter-spacing:0.586667pt;}
.ls44{letter-spacing:0.591749pt;}
.ls9d{letter-spacing:0.602508pt;}
.ls14{letter-spacing:0.624000pt;}
.ls48{letter-spacing:0.645333pt;}
.ls34{letter-spacing:0.654677pt;}
.ls16{letter-spacing:0.660764pt;}
.ls33{letter-spacing:0.662808pt;}
.ls15{letter-spacing:0.672000pt;}
.ls86{letter-spacing:0.693333pt;}
.ls42{letter-spacing:0.720000pt;}
.ls91{letter-spacing:0.731406pt;}
.ls90{letter-spacing:0.740858pt;}
.ls85{letter-spacing:0.746667pt;}
.ls84{letter-spacing:0.768000pt;}
.ls98{letter-spacing:0.770957pt;}
.ls83{letter-spacing:0.777822pt;}
.ls69{letter-spacing:0.790495pt;}
.ls6a{letter-spacing:0.800000pt;}
.ls3c{letter-spacing:0.806400pt;}
.ls3d{letter-spacing:0.816000pt;}
.ls52{letter-spacing:0.851221pt;}
.ls55{letter-spacing:0.853333pt;}
.ls54{letter-spacing:0.858667pt;}
.ls60{letter-spacing:0.883432pt;}
.ls61{letter-spacing:0.888533pt;}
.ls62{letter-spacing:0.896000pt;}
.ls50{letter-spacing:0.904026pt;}
.ls72{letter-spacing:0.906667pt;}
.ls99{letter-spacing:0.925677pt;}
.ls6e{letter-spacing:0.943102pt;}
.ls6d{letter-spacing:0.952079pt;}
.ls2{letter-spacing:0.960000pt;}
.ls78{letter-spacing:0.962112pt;}
.ls81{letter-spacing:1.013333pt;}
.ls1{letter-spacing:1.066667pt;}
.ls0{letter-spacing:1.075733pt;}
.ls9{letter-spacing:1.173333pt;}
.ls77{letter-spacing:1.226667pt;}
.ls17{letter-spacing:1.251553pt;}
.ls3{letter-spacing:1.280000pt;}
.ls53{letter-spacing:3.720132pt;}
.ls63{letter-spacing:3.968317pt;}
.ls51{letter-spacing:4.036436pt;}
.ls79{letter-spacing:4.487921pt;}
.ws0{word-spacing:-21.333333pt;}
.ws53{word-spacing:-15.333333pt;}
.ws9b{word-spacing:-15.077333pt;}
.ws1{word-spacing:-14.933333pt;}
.ws75{word-spacing:-14.901333pt;}
.ws58{word-spacing:-14.842667pt;}
.ws64{word-spacing:-14.784000pt;}
.ws55{word-spacing:-14.754667pt;}
.ws84{word-spacing:-14.725333pt;}
.ws20{word-spacing:-14.666667pt;}
.ws1f{word-spacing:-14.608000pt;}
.ws56{word-spacing:-14.549333pt;}
.ws8f{word-spacing:-14.432000pt;}
.ws3{word-spacing:-14.400000pt;}
.wsbc{word-spacing:-14.293333pt;}
.ws21{word-spacing:-14.080000pt;}
.wsa0{word-spacing:-13.866667pt;}
.ws1d{word-spacing:-13.845333pt;}
.wsde{word-spacing:-13.760000pt;}
.wsb0{word-spacing:-13.653333pt;}
.ws4{word-spacing:-13.610667pt;}
.wsad{word-spacing:-13.600000pt;}
.wsd4{word-spacing:-13.520000pt;}
.wsaf{word-spacing:-13.386667pt;}
.wsa1{word-spacing:-13.333333pt;}
.wsd2{word-spacing:-13.280000pt;}
.wsdd{word-spacing:-13.173333pt;}
.wse1{word-spacing:-13.066667pt;}
.wse2{word-spacing:-13.013333pt;}
.ws68{word-spacing:-12.552000pt;}
.ws65{word-spacing:-12.480000pt;}
.ws23{word-spacing:-12.000000pt;}
.ws54{word-spacing:-10.733333pt;}
.ws26{word-spacing:-10.266667pt;}
.wsac{word-spacing:-10.229333pt;}
.wsab{word-spacing:-10.221867pt;}
.ws9f{word-spacing:-10.192000pt;}
.wsae{word-spacing:-9.912000pt;}
.wsbd{word-spacing:-9.889600pt;}
.wsd5{word-spacing:-9.856000pt;}
.wsd3{word-spacing:-9.460267pt;}
.wsbb{word-spacing:-9.381867pt;}
.wsa2{word-spacing:-9.370667pt;}
.ws2{word-spacing:-9.333333pt;}
.ws67{word-spacing:-9.206400pt;}
.ws5a{word-spacing:-8.870400pt;}
.ws3e{word-spacing:-8.803200pt;}
.ws9c{word-spacing:-8.790085pt;}
.ws76{word-spacing:-8.687477pt;}
.ws59{word-spacing:-8.653275pt;}
.ws7f{word-spacing:-8.619072pt;}
.ws1e{word-spacing:-8.550667pt;}
.ws8b{word-spacing:-8.516464pt;}
.ws57{word-spacing:-8.482261pt;}
.ws90{word-spacing:-8.413856pt;}
.ws5{word-spacing:-8.400000pt;}
.ws22{word-spacing:-8.208640pt;}
.ws3b{word-spacing:-8.174437pt;}
.ws3a{word-spacing:-8.140235pt;}
.wsec{word-spacing:-7.773333pt;}
.ws66{word-spacing:-7.471728pt;}
.ws77{word-spacing:-7.415760pt;}
.ws24{word-spacing:-7.359792pt;}
.ws3d{word-spacing:-7.275840pt;}
.ws39{word-spacing:-6.840533pt;}
.wsce{word-spacing:-6.293333pt;}
.ws3c{word-spacing:-6.240432pt;}
.wsd6{word-spacing:-5.333333pt;}
.wsb7{word-spacing:-5.173333pt;}
.ws96{word-spacing:-4.752000pt;}
.wscd{word-spacing:-4.320000pt;}
.wsea{word-spacing:-4.266667pt;}
.ws19{word-spacing:-3.696000pt;}
.ws18{word-spacing:-3.637333pt;}
.ws62{word-spacing:-3.578667pt;}
.wse6{word-spacing:-3.573333pt;}
.ws3f{word-spacing:-3.520000pt;}
.wse4{word-spacing:-3.413333pt;}
.ws46{word-spacing:-3.402667pt;}
.ws9{word-spacing:-3.360000pt;}
.ws61{word-spacing:-3.344000pt;}
.wsa8{word-spacing:-3.306667pt;}
.ws95{word-spacing:-3.285333pt;}
.ws5b{word-spacing:-3.226667pt;}
.wsb4{word-spacing:-3.200000pt;}
.ws72{word-spacing:-3.168000pt;}
.wsca{word-spacing:-3.146667pt;}
.ws49{word-spacing:-3.109333pt;}
.ws44{word-spacing:-3.050667pt;}
.ws85{word-spacing:-2.992000pt;}
.ws50{word-spacing:-2.976000pt;}
.ws8a{word-spacing:-2.933333pt;}
.ws10{word-spacing:-2.880000pt;}
.ws98{word-spacing:-2.874667pt;}
.wsda{word-spacing:-2.826667pt;}
.ws5c{word-spacing:-2.816000pt;}
.ws30{word-spacing:-2.757333pt;}
.ws9e{word-spacing:-2.698667pt;}
.wse5{word-spacing:-2.666667pt;}
.ws4c{word-spacing:-2.640000pt;}
.ws4e{word-spacing:-2.592000pt;}
.ws2c{word-spacing:-2.581333pt;}
.wsa7{word-spacing:-2.560000pt;}
.ws40{word-spacing:-2.522667pt;}
.ws8{word-spacing:-2.506667pt;}
.ws45{word-spacing:-2.464000pt;}
.wsb{word-spacing:-2.453333pt;}
.ws83{word-spacing:-2.405333pt;}
.wsc{word-spacing:-2.400000pt;}
.ws86{word-spacing:-2.346667pt;}
.wsc3{word-spacing:-2.293333pt;}
.ws82{word-spacing:-2.288000pt;}
.wsc2{word-spacing:-2.240000pt;}
.ws7a{word-spacing:-2.229333pt;}
.ws52{word-spacing:-2.208000pt;}
.wse3{word-spacing:-2.186667pt;}
.ws94{word-spacing:-2.170667pt;}
.ws32{word-spacing:-2.112000pt;}
.ws4f{word-spacing:-2.064000pt;}
.ws48{word-spacing:-2.053333pt;}
.ws2b{word-spacing:-1.994667pt;}
.ws73{word-spacing:-1.936000pt;}
.ws79{word-spacing:-1.877333pt;}
.wsd{word-spacing:-1.866667pt;}
.ws51{word-spacing:-1.824000pt;}
.ws7c{word-spacing:-1.818667pt;}
.wse{word-spacing:-1.813333pt;}
.ws6a{word-spacing:-1.760000pt;}
.wsdf{word-spacing:-1.706667pt;}
.ws31{word-spacing:-1.701333pt;}
.ws88{word-spacing:-1.642667pt;}
.wsdc{word-spacing:-1.600000pt;}
.ws6b{word-spacing:-1.584000pt;}
.wsee{word-spacing:-1.546667pt;}
.ws4b{word-spacing:-1.525333pt;}
.wsd7{word-spacing:-1.493333pt;}
.ws27{word-spacing:-1.466667pt;}
.ws6d{word-spacing:-1.408000pt;}
.ws6e{word-spacing:-1.349333pt;}
.ws12{word-spacing:-1.333333pt;}
.ws71{word-spacing:-1.290667pt;}
.wsf{word-spacing:-1.280000pt;}
.wsa3{word-spacing:-1.232000pt;}
.wsa{word-spacing:-1.226667pt;}
.ws1b{word-spacing:-1.200000pt;}
.ws14{word-spacing:-1.173333pt;}
.ws17{word-spacing:-1.120000pt;}
.ws8e{word-spacing:-1.114667pt;}
.ws15{word-spacing:-1.066667pt;}
.ws42{word-spacing:-1.056000pt;}
.wsc8{word-spacing:-1.013333pt;}
.ws33{word-spacing:-0.997333pt;}
.wsb9{word-spacing:-0.960000pt;}
.ws91{word-spacing:-0.938667pt;}
.ws29{word-spacing:-0.880000pt;}
.ws89{word-spacing:-0.821333pt;}
.wsed{word-spacing:-0.800000pt;}
.ws2f{word-spacing:-0.762667pt;}
.wscf{word-spacing:-0.746667pt;}
.ws2e{word-spacing:-0.704000pt;}
.wsc1{word-spacing:-0.693333pt;}
.ws37{word-spacing:-0.672000pt;}
.ws99{word-spacing:-0.645333pt;}
.wsdb{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.586667pt;}
.ws11{word-spacing:-0.533333pt;}
.ws97{word-spacing:-0.528000pt;}
.ws4d{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.469333pt;}
.wse0{word-spacing:-0.426667pt;}
.ws9d{word-spacing:-0.410667pt;}
.ws63{word-spacing:-0.391776pt;}
.wsb8{word-spacing:-0.373333pt;}
.ws7d{word-spacing:-0.335808pt;}
.ws6f{word-spacing:-0.293333pt;}
.wsc4{word-spacing:-0.266667pt;}
.ws5e{word-spacing:-0.234667pt;}
.wsb5{word-spacing:-0.213333pt;}
.ws87{word-spacing:-0.176000pt;}
.ws8d{word-spacing:-0.171013pt;}
.ws34{word-spacing:-0.117333pt;}
.wsd8{word-spacing:-0.106667pt;}
.ws6c{word-spacing:-0.102608pt;}
.ws8c{word-spacing:-0.068405pt;}
.ws2d{word-spacing:-0.058667pt;}
.wsc5{word-spacing:-0.053333pt;}
.ws6{word-spacing:0.000000pt;}
.ws4a{word-spacing:0.034203pt;}
.wscc{word-spacing:0.053333pt;}
.ws60{word-spacing:0.058667pt;}
.wsc9{word-spacing:0.106667pt;}
.ws5d{word-spacing:0.117333pt;}
.wsa9{word-spacing:0.160000pt;}
.ws7b{word-spacing:0.176000pt;}
.wse8{word-spacing:0.213333pt;}
.ws43{word-spacing:0.234667pt;}
.ws80{word-spacing:0.293333pt;}
.ws47{word-spacing:0.342027pt;}
.ws93{word-spacing:0.410667pt;}
.ws69{word-spacing:0.469333pt;}
.wsc7{word-spacing:0.480000pt;}
.ws78{word-spacing:0.528000pt;}
.ws16{word-spacing:0.533333pt;}
.ws38{word-spacing:0.576000pt;}
.ws41{word-spacing:0.586667pt;}
.ws36{word-spacing:0.624000pt;}
.ws13{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.645333pt;}
.wsa6{word-spacing:0.693333pt;}
.ws28{word-spacing:0.704000pt;}
.ws1a{word-spacing:0.762667pt;}
.ws2a{word-spacing:0.821333pt;}
.wsc6{word-spacing:0.906667pt;}
.ws92{word-spacing:0.938667pt;}
.wscb{word-spacing:0.960000pt;}
.wsaa{word-spacing:1.226667pt;}
.wsa5{word-spacing:1.333333pt;}
.wsb2{word-spacing:1.440000pt;}
.ws70{word-spacing:1.466667pt;}
.wsb3{word-spacing:1.546667pt;}
.wseb{word-spacing:1.760000pt;}
.ws81{word-spacing:1.818667pt;}
.wsd1{word-spacing:2.080000pt;}
.wsd9{word-spacing:2.293333pt;}
.wse7{word-spacing:2.506667pt;}
.wsd0{word-spacing:2.560000pt;}
.wsb6{word-spacing:2.613333pt;}
.wsa4{word-spacing:2.880000pt;}
.wsb1{word-spacing:3.040000pt;}
.wse9{word-spacing:3.306667pt;}
.wsba{word-spacing:3.413333pt;}
.wsc0{word-spacing:3.520000pt;}
.wsbe{word-spacing:4.000000pt;}
.wsbf{word-spacing:4.960000pt;}
.ws1c{word-spacing:12.480000pt;}
.ws7e{word-spacing:12.576000pt;}
.ws35{word-spacing:12.624000pt;}
.ws74{word-spacing:12.816000pt;}
.ws25{word-spacing:1563.456533pt;}
._d{margin-left:-17.680277pt;}
._7{margin-left:-13.200000pt;}
._9{margin-left:-11.379197pt;}
._2{margin-left:-8.320000pt;}
._c{margin-left:-6.882133pt;}
._a{margin-left:-5.674453pt;}
._4{margin-left:-4.770347pt;}
._1{margin-left:-3.863467pt;}
._3{margin-left:-2.824533pt;}
._0{margin-left:-1.706667pt;}
._5{width:1.067733pt;}
._6{width:2.564267pt;}
._e{width:3.921415pt;}
._f{width:4.857072pt;}
._b{width:11.424000pt;}
._8{width:13.200000pt;}
.fs7{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fs8{font-size:33.600000pt;}
.fs5{font-size:34.202667pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:41.066667pt;}
.fs9{font-size:42.666667pt;}
.fsc{font-size:42.933333pt;}
.fs6{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:59.733333pt;}
.fsb{font-size:61.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:60.604267pt;}
.y16d{bottom:73.495467pt;}
.y15c{bottom:75.710533pt;}
.y57{bottom:78.225867pt;}
.y29{bottom:82.221867pt;}
.y14c{bottom:83.256667pt;}
.y128{bottom:83.269600pt;}
.y116{bottom:90.828800pt;}
.y56{bottom:92.892533pt;}
.ye2{bottom:92.892667pt;}
.y15b{bottom:93.043867pt;}
.yba{bottom:96.888533pt;}
.y28{bottom:96.888667pt;}
.y127{bottom:100.602933pt;}
.y55{bottom:107.559200pt;}
.y27{bottom:107.559333pt;}
.yb5{bottom:107.559467pt;}
.y14b{bottom:108.149067pt;}
.y115{bottom:108.162133pt;}
.ye1{bottom:111.555333pt;}
.y80{bottom:111.555467pt;}
.y15a{bottom:117.936267pt;}
.yb4{bottom:122.226133pt;}
.y14a{bottom:125.482400pt;}
.y114{bottom:125.495467pt;}
.y54{bottom:126.221867pt;}
.yb9{bottom:126.222000pt;}
.ye0{bottom:126.222133pt;}
.y7f{bottom:126.222267pt;}
.y26{bottom:131.062400pt;}
.y16c{bottom:133.054400pt;}
.yb3{bottom:136.892800pt;}
.ya9{bottom:136.893067pt;}
.yf2{bottom:136.904800pt;}
.y53{bottom:140.888667pt;}
.yb2{bottom:140.888800pt;}
.ydf{bottom:140.888933pt;}
.y7e{bottom:140.889067pt;}
.y126{bottom:142.828667pt;}
.ydd{bottom:143.730933pt;}
.y25{bottom:148.395733pt;}
.y149{bottom:150.374800pt;}
.y113{bottom:150.387733pt;}
.ya8{bottom:151.559733pt;}
.y7d{bottom:151.559867pt;}
.yf1{bottom:154.238133pt;}
.y52{bottom:155.555467pt;}
.yb1{bottom:155.555600pt;}
.ya7{bottom:155.555733pt;}
.yd6{bottom:155.555867pt;}
.y159{bottom:160.162000pt;}
.ydc{bottom:161.064267pt;}
.y23{bottom:165.729067pt;}
.y7c{bottom:166.226533pt;}
.y148{bottom:167.708133pt;}
.y112{bottom:167.721067pt;}
.yd1{bottom:169.135733pt;}
.y51{bottom:170.222267pt;}
.yb0{bottom:170.222400pt;}
.ya6{bottom:170.222533pt;}
.yd5{bottom:170.222667pt;}
.y24{bottom:170.613067pt;}
.yf0{bottom:171.571467pt;}
.y158{bottom:177.495333pt;}
.ydb{bottom:178.397600pt;}
.y7b{bottom:180.893200pt;}
.y22{bottom:183.062400pt;}
.y50{bottom:184.889067pt;}
.yaf{bottom:184.889200pt;}
.ya5{bottom:184.889333pt;}
.y111{bottom:185.054400pt;}
.yd0{bottom:186.469067pt;}
.yda{bottom:191.353067pt;}
.y147{bottom:192.600400pt;}
.y16b{bottom:192.613467pt;}
.yde{bottom:195.716667pt;}
.yd3{bottom:195.730933pt;}
.yef{bottom:196.463733pt;}
.y4f{bottom:199.555867pt;}
.yb8{bottom:199.556000pt;}
.ya4{bottom:199.556133pt;}
.y20{bottom:200.395733pt;}
.yd4{bottom:200.614933pt;}
.y125{bottom:202.387733pt;}
.ycf{bottom:203.802400pt;}
.y21{bottom:205.279733pt;}
.y146{bottom:209.933733pt;}
.y110{bottom:209.946800pt;}
.ya3{bottom:210.226933pt;}
.yae{bottom:213.050000pt;}
.yd2{bottom:213.064267pt;}
.yee{bottom:213.797067pt;}
.y4e{bottom:214.222667pt;}
.y1f{bottom:217.729067pt;}
.y157{bottom:219.721067pt;}
.yce{bottom:221.135733pt;}
.y10f{bottom:227.280133pt;}
.y4d{bottom:228.889467pt;}
.yad{bottom:230.383333pt;}
.yb7{bottom:230.397600pt;}
.y145{bottom:234.826133pt;}
.y16a{bottom:234.839200pt;}
.ycd{bottom:238.469067pt;}
.yed{bottom:238.689467pt;}
.y7a{bottom:243.556267pt;}
.y10e{bottom:244.613467pt;}
.yac{bottom:247.716667pt;}
.yb6{bottom:247.730933pt;}
.y144{bottom:252.159467pt;}
.y169{bottom:252.172533pt;}
.ya2{bottom:253.263467pt;}
.y1e{bottom:253.729067pt;}
.ycc{bottom:255.802400pt;}
.yec{bottom:256.022800pt;}
.y79{bottom:258.223067pt;}
.y156{bottom:261.946800pt;}
.yab{bottom:265.050000pt;}
.y4c{bottom:265.064267pt;}
.y143{bottom:269.492800pt;}
.y10d{bottom:269.505867pt;}
.y1d{bottom:269.729067pt;}
.ya1{bottom:270.596800pt;}
.ycb{bottom:273.135733pt;}
.yeb{bottom:273.356133pt;}
.y168{bottom:277.064933pt;}
.y155{bottom:279.280133pt;}
.y78{bottom:282.383333pt;}
.y4b{bottom:282.397600pt;}
.y1c{bottom:285.729067pt;}
.y10c{bottom:286.839200pt;}
.ya0{bottom:287.930133pt;}
.yca{bottom:290.469067pt;}
.y142{bottom:294.385200pt;}
.y167{bottom:294.398267pt;}
.yea{bottom:298.248533pt;}
.y77{bottom:299.716667pt;}
.y4a{bottom:299.730933pt;}
.y1b{bottom:301.729067pt;}
.y124{bottom:304.172533pt;}
.y9f{bottom:305.263467pt;}
.yc9{bottom:307.802400pt;}
.y141{bottom:311.718533pt;}
.y10b{bottom:311.731600pt;}
.ye9{bottom:315.581867pt;}
.y76{bottom:317.050000pt;}
.y49{bottom:317.064267pt;}
.y1a{bottom:317.729067pt;}
.y166{bottom:319.290667pt;}
.y154{bottom:321.505867pt;}
.y9e{bottom:322.596800pt;}
.yc8{bottom:325.135733pt;}
.y10a{bottom:329.064933pt;}
.y19{bottom:333.729067pt;}
.y75{bottom:334.383333pt;}
.y48{bottom:334.397600pt;}
.y140{bottom:336.610933pt;}
.y9d{bottom:339.930133pt;}
.ye8{bottom:340.474267pt;}
.yc7{bottom:342.469067pt;}
.y165{bottom:344.183067pt;}
.y123{bottom:346.398267pt;}
.y18{bottom:349.729067pt;}
.y74{bottom:351.716667pt;}
.y47{bottom:351.730933pt;}
.y13f{bottom:353.944267pt;}
.y109{bottom:353.957333pt;}
.y9c{bottom:357.263467pt;}
.ye7{bottom:357.807600pt;}
.yc6{bottom:359.802400pt;}
.y164{bottom:361.516400pt;}
.y17{bottom:365.729067pt;}
.y73{bottom:369.050000pt;}
.y46{bottom:369.064267pt;}
.y108{bottom:371.290667pt;}
.y9b{bottom:374.596800pt;}
.ye6{bottom:375.140933pt;}
.yc5{bottom:377.135733pt;}
.y13e{bottom:378.836667pt;}
.y16{bottom:381.729067pt;}
.y72{bottom:386.383333pt;}
.y44{bottom:386.397600pt;}
.y163{bottom:386.408800pt;}
.y122{bottom:388.624000pt;}
.y45{bottom:391.281600pt;}
.y9a{bottom:391.930133pt;}
.ye5{bottom:392.474267pt;}
.yc4{bottom:394.469067pt;}
.y13d{bottom:396.170000pt;}
.y107{bottom:396.183067pt;}
.y15{bottom:397.729067pt;}
.y71{bottom:403.716667pt;}
.y43{bottom:403.730933pt;}
.y162{bottom:403.742133pt;}
.y99{bottom:409.263467pt;}
.ye4{bottom:409.807600pt;}
.yc3{bottom:411.802400pt;}
.y13c{bottom:413.503333pt;}
.y106{bottom:413.516400pt;}
.y14{bottom:413.729067pt;}
.y6f{bottom:421.050000pt;}
.y42{bottom:421.064267pt;}
.y70{bottom:425.934000pt;}
.y98{bottom:426.596800pt;}
.y161{bottom:428.634533pt;}
.yc2{bottom:429.135733pt;}
.y13{bottom:429.729067pt;}
.y13b{bottom:430.836667pt;}
.y121{bottom:430.849733pt;}
.y6e{bottom:438.383333pt;}
.y41{bottom:438.397600pt;}
.y105{bottom:438.408800pt;}
.y97{bottom:443.930133pt;}
.y12{bottom:445.729067pt;}
.y160{bottom:445.967867pt;}
.yc1{bottom:446.469067pt;}
.y6d{bottom:455.716667pt;}
.y13a{bottom:455.729067pt;}
.y40{bottom:455.730933pt;}
.y104{bottom:455.742133pt;}
.y96{bottom:461.263467pt;}
.y15f{bottom:463.301200pt;}
.yc0{bottom:463.802400pt;}
.y6c{bottom:473.050000pt;}
.y139{bottom:473.062400pt;}
.y3f{bottom:473.064267pt;}
.y120{bottom:473.075333pt;}
.y11{bottom:477.729067pt;}
.y95{bottom:478.596800pt;}
.y103{bottom:480.634533pt;}
.ybf{bottom:481.135733pt;}
.y6b{bottom:490.383333pt;}
.y138{bottom:490.395733pt;}
.y3e{bottom:490.397600pt;}
.y10{bottom:493.729067pt;}
.y94{bottom:495.930133pt;}
.y102{bottom:497.967867pt;}
.ybe{bottom:498.469067pt;}
.y15e{bottom:505.526933pt;}
.y6a{bottom:507.716667pt;}
.y137{bottom:507.729067pt;}
.y3d{bottom:507.730933pt;}
.yf{bottom:509.729067pt;}
.y93{bottom:513.263467pt;}
.y11f{bottom:515.301200pt;}
.ybd{bottom:515.802400pt;}
.y101{bottom:522.860267pt;}
.y69{bottom:525.050000pt;}
.y3c{bottom:525.064267pt;}
.ye{bottom:525.729067pt;}
.y92{bottom:530.596800pt;}
.y136{bottom:532.621467pt;}
.y153{bottom:532.634533pt;}
.y11e{bottom:540.193600pt;}
.yd{bottom:541.729067pt;}
.y68{bottom:542.383333pt;}
.y3b{bottom:542.397600pt;}
.ybc{bottom:544.474267pt;}
.y100{bottom:547.752533pt;}
.y91{bottom:547.930133pt;}
.y135{bottom:549.954800pt;}
.y171{bottom:549.967867pt;}
.y11d{bottom:557.526933pt;}
.yc{bottom:557.729067pt;}
.y67{bottom:559.716667pt;}
.y3a{bottom:559.730933pt;}
.yff{bottom:565.085867pt;}
.y90{bottom:565.263467pt;}
.y170{bottom:567.301200pt;}
.yb{bottom:573.729067pt;}
.y134{bottom:574.847200pt;}
.y152{bottom:574.860267pt;}
.y66{bottom:577.050000pt;}
.y39{bottom:577.064267pt;}
.y11c{bottom:582.419200pt;}
.y8f{bottom:582.596800pt;}
.ya{bottom:589.729067pt;}
.yfe{bottom:589.978267pt;}
.y16f{bottom:592.193600pt;}
.y65{bottom:594.383333pt;}
.y37{bottom:594.397600pt;}
.y38{bottom:599.281600pt;}
.y133{bottom:599.739600pt;}
.y11b{bottom:599.752533pt;}
.y8e{bottom:599.930133pt;}
.y9{bottom:605.729067pt;}
.yfd{bottom:607.311600pt;}
.y64{bottom:611.716667pt;}
.y36{bottom:611.730933pt;}
.y132{bottom:617.072933pt;}
.y151{bottom:617.085867pt;}
.y8d{bottom:617.263467pt;}
.y8{bottom:621.729067pt;}
.y11a{bottom:624.644933pt;}
.y63{bottom:629.050000pt;}
.y35{bottom:629.064267pt;}
.yfc{bottom:632.204000pt;}
.ybb{bottom:633.948267pt;}
.y16e{bottom:634.419200pt;}
.y8c{bottom:634.596800pt;}
.y7{bottom:637.729067pt;}
.y131{bottom:641.965333pt;}
.y119{bottom:641.978267pt;}
.y62{bottom:646.383333pt;}
.y34{bottom:646.397600pt;}
.yfb{bottom:649.537333pt;}
.yaa{bottom:651.267333pt;}
.y8b{bottom:651.930133pt;}
.y6{bottom:653.729067pt;}
.y130{bottom:659.298667pt;}
.y150{bottom:659.311600pt;}
.y61{bottom:663.716667pt;}
.y33{bottom:663.730933pt;}
.yfa{bottom:666.870667pt;}
.y8a{bottom:669.263600pt;}
.y5{bottom:669.729067pt;}
.y14f{bottom:676.644933pt;}
.y60{bottom:681.050000pt;}
.y32{bottom:681.064267pt;}
.y12f{bottom:684.191067pt;}
.y118{bottom:684.204000pt;}
.yd9{bottom:685.948400pt;}
.y89{bottom:686.596933pt;}
.yf9{bottom:691.763067pt;}
.y5f{bottom:698.383333pt;}
.y31{bottom:698.397600pt;}
.y4{bottom:700.847200pt;}
.y12e{bottom:701.524400pt;}
.y117{bottom:701.537333pt;}
.y88{bottom:703.930267pt;}
.yf8{bottom:709.096400pt;}
.y5e{bottom:715.716667pt;}
.y30{bottom:715.730933pt;}
.y12d{bottom:718.857733pt;}
.y14e{bottom:718.870667pt;}
.yd8{bottom:720.615067pt;}
.y87{bottom:721.263600pt;}
.yf7{bottom:726.429733pt;}
.y5d{bottom:733.050000pt;}
.y2f{bottom:733.064267pt;}
.yd7{bottom:737.948400pt;}
.y86{bottom:738.596933pt;}
.y12c{bottom:743.750000pt;}
.yf6{bottom:743.763067pt;}
.y5c{bottom:750.383333pt;}
.y2e{bottom:750.397600pt;}
.y3{bottom:750.841867pt;}
.y85{bottom:755.930267pt;}
.y12b{bottom:761.083333pt;}
.y14d{bottom:761.096400pt;}
.y5b{bottom:767.716667pt;}
.y2d{bottom:767.730933pt;}
.yf5{bottom:768.655467pt;}
.ye3{bottom:772.615067pt;}
.y84{bottom:773.263600pt;}
.y2{bottom:774.308667pt;}
.y15d{bottom:778.429733pt;}
.y5a{bottom:785.050000pt;}
.y2c{bottom:785.064267pt;}
.y12a{bottom:785.975733pt;}
.yf4{bottom:785.988800pt;}
.y1{bottom:797.775333pt;}
.y83{bottom:801.935467pt;}
.y59{bottom:802.383333pt;}
.y2b{bottom:802.397600pt;}
.y129{bottom:803.309067pt;}
.yf3{bottom:803.322133pt;}
.y81{bottom:840.519600pt;}
.y82{bottom:840.948800pt;}
.y58{bottom:842.230933pt;}
.h10{height:24.554320pt;}
.h9{height:26.133188pt;}
.hb{height:26.250375pt;}
.he{height:29.482031pt;}
.h6{height:30.010836pt;}
.h11{height:32.757812pt;}
.ha{height:37.437500pt;}
.h8{height:42.117188pt;}
.hc{height:42.234375pt;}
.hd{height:46.348029pt;}
.h3{height:46.796875pt;}
.h4{height:46.927083pt;}
.h7{height:51.476562pt;}
.h5{height:51.619792pt;}
.hf{height:53.816406pt;}
.h2{height:74.875000pt;}
.h0{height:907.023333pt;}
.h1{height:907.333333pt;}
.w0{width:642.456667pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:74.299200pt;}
.x1{left:75.559067pt;}
.x16{left:82.781200pt;}
.x2e{left:84.439200pt;}
.x2{left:86.897600pt;}
.x8{left:88.031600pt;}
.x2d{left:90.677200pt;}
.x19{left:100.774267pt;}
.x3a{left:107.352667pt;}
.x32{left:109.908933pt;}
.x30{left:111.219067pt;}
.x2f{left:115.543600pt;}
.x34{left:124.220133pt;}
.x1a{left:125.131733pt;}
.x33{left:127.796133pt;}
.x35{left:131.299333pt;}
.x3b{left:135.337200pt;}
.x3{left:136.398133pt;}
.x1b{left:137.648800pt;}
.x4{left:140.519067pt;}
.x38{left:143.439867pt;}
.x36{left:144.446400pt;}
.x27{left:152.422133pt;}
.x28{left:160.982400pt;}
.x39{left:162.069333pt;}
.x17{left:167.940133pt;}
.x7{left:170.417600pt;}
.x18{left:176.569867pt;}
.x31{left:180.755067pt;}
.x1c{left:188.918267pt;}
.x37{left:198.078000pt;}
.x9{left:295.444533pt;}
.xa{left:299.671733pt;}
.x22{left:301.826267pt;}
.x23{left:310.419733pt;}
.x25{left:349.109067pt;}
.x26{left:357.736400pt;}
.x2a{left:378.528400pt;}
.xe{left:402.730000pt;}
.x2b{left:416.535733pt;}
.xf{left:428.822400pt;}
.x2c{left:432.813733pt;}
.x10{left:441.647200pt;}
.x11{left:466.706400pt;}
.x12{left:479.786933pt;}
.x29{left:486.196667pt;}
.xc{left:498.774667pt;}
.x1f{left:500.852000pt;}
.xd{left:507.304400pt;}
.x1d{left:511.379200pt;}
.x1e{left:526.586800pt;}
.x13{left:528.977333pt;}
.x20{left:540.771333pt;}
.x14{left:543.799867pt;}
.x15{left:552.047333pt;}
.x21{left:553.735733pt;}
.x24{left:558.351333pt;}
.x5{left:562.628133pt;}
.x6{left:566.897600pt;}
}




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