
    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_8864585a651a895f3a95d786.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_66bc9b6052a1cf30784d91c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_bbf4fd80a6364b4398f9acdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.078000;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_f482e81e1ab74e46d0e6b263.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972000;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_657f73652bae24c5cfe52f43.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.972000;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_9cb98c60629e11a8e6c315f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_a076f91793b253d285e378ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.984048;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_5edbabc98c6b856f5599a5c8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.984333;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_a8032ebfcd17a7eb59afa751.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984000;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;}
.m4{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);}
.m49{transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247573,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247588,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247657,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247740,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247815,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247835,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247861,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247882,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247900,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247940,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248003,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248007,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248064,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248068,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248078,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248085,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248092,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248215,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248260,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248290,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248357,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248447,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248539,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m6d{transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248635,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248638,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248640,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248753,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248775,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248792,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248815,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248847,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248848,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248853,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248869,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248880,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248888,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248939,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248983,0.000000,0.000000,0.250000,0,0);}
.ma2{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);}
.ma5{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249048,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249110,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249165,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249215,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249219,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249230,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249268,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249320,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249353,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249398,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249464,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249558,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249567,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249605,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249630,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249633,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249655,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249683,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249742,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249822,0.000000,0.000000,0.250000,0,0);}
.m77{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);}
.m44{transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249890,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249915,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,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);}
.m42{transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250013,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250047,0.000000,0.000000,0.250000,0,0);}
.mc2{transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250064,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250075,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m51{transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250117,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250120,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m90{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);}
.mcc{transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250183,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250220,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250272,0.000000,0.000000,0.250000,0,0);}
.m7f{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);}
.m79{transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250289,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250311,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250315,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250322,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250336,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250350,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250365,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250381,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250390,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250467,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.mba{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);}
.mcd{transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250511,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250518,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250525,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250565,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250595,0.000000,0.000000,0.250000,0,0);}
.m87{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);}
.mb0{transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250617,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250678,0.000000,0.000000,0.250000,0,0);}
.m5d{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);}
.mae{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250722,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250727,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250748,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250790,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250808,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250818,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250820,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250869,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250908,0.000000,0.000000,0.250000,0,0);}
.m45{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);}
.m14{transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250988,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251033,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251058,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251070,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251080,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251092,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251112,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251153,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251158,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251161,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251167,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251172,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251175,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251180,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251200,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251231,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251260,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251273,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251315,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251355,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251410,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251417,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251436,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251443,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251461,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251468,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251475,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251478,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251483,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251486,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251507,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251513,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251540,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251547,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251573,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251595,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251600,0.000000,0.000000,0.250000,0,0);}
.ma0{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);}
.m96{transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251613,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251617,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251620,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251656,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.251678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251678,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251735,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251740,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251773,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251805,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251843,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251848,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251895,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251900,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251903,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251945,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251956,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251978,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251980,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251985,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252002,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252038,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252063,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252072,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252081,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252083,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252147,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252163,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252164,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252175,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252177,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252182,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252220,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252252,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252260,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252285,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252294,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252315,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252318,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252338,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252390,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252497,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980600px;}
.ls1c{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls24{letter-spacing:-0.420000px;}
.ls20{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.027000px;}
.lsa{letter-spacing:0.030000px;}
.ls19{letter-spacing:0.054000px;}
.ls5{letter-spacing:0.060000px;}
.ls2b{letter-spacing:0.081000px;}
.ls3{letter-spacing:0.090000px;}
.lsb{letter-spacing:0.100099px;}
.ls27{letter-spacing:0.108000px;}
.ls4{letter-spacing:0.120000px;}
.ls28{letter-spacing:0.135000px;}
.lsd{letter-spacing:0.150000px;}
.ls25{letter-spacing:0.162000px;}
.ls6{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.216000px;}
.lse{letter-spacing:0.240000px;}
.ls21{letter-spacing:0.270000px;}
.lsc{letter-spacing:0.300000px;}
.ls2a{letter-spacing:0.324000px;}
.ls22{letter-spacing:0.330000px;}
.ls7{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.390000px;}
.ls18{letter-spacing:0.420000px;}
.ls2e{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.480000px;}
.ls2d{letter-spacing:0.486000px;}
.ls2{letter-spacing:0.510000px;}
.ls10{letter-spacing:0.540000px;}
.ls23{letter-spacing:0.570000px;}
.ls2c{letter-spacing:0.594000px;}
.ls13{letter-spacing:0.600000px;}
.ls14{letter-spacing:0.660000px;}
.ls12{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.780000px;}
.ls1{letter-spacing:0.840000px;}
.ls15{letter-spacing:1.044000px;}
.ls1b{letter-spacing:3.960000px;}
.ls8{letter-spacing:4.170000px;}
.ls9{letter-spacing:5.520000px;}
.lsf{letter-spacing:6.540000px;}
.ls17{letter-spacing:8.160000px;}
.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:-18.984000px;}
.ws23{word-spacing:-15.180000px;}
.ws24{word-spacing:-15.060000px;}
.ws22{word-spacing:-15.000000px;}
.ws168{word-spacing:-13.824000px;}
.ws119{word-spacing:-13.500000px;}
.ws145{word-spacing:-5.130000px;}
.ws9e{word-spacing:-3.960000px;}
.ws9{word-spacing:-3.180000px;}
.ws5{word-spacing:-3.000000px;}
.ws87{word-spacing:-2.940000px;}
.ws31{word-spacing:-2.880000px;}
.wsf1{word-spacing:-2.820000px;}
.ws19{word-spacing:-2.760000px;}
.ws4e{word-spacing:-2.700000px;}
.ws128{word-spacing:-2.646000px;}
.wsde{word-spacing:-2.640000px;}
.wsea{word-spacing:-2.592000px;}
.wsf0{word-spacing:-2.580000px;}
.wse0{word-spacing:-2.538000px;}
.ws11{word-spacing:-2.520000px;}
.ws80{word-spacing:-2.460000px;}
.ws107{word-spacing:-2.430000px;}
.ws7c{word-spacing:-2.400000px;}
.wsc0{word-spacing:-2.340000px;}
.wsbe{word-spacing:-2.280000px;}
.ws56{word-spacing:-2.226000px;}
.ws25{word-spacing:-2.220000px;}
.ws73{word-spacing:-2.160000px;}
.ws143{word-spacing:-2.106000px;}
.ws57{word-spacing:-2.100000px;}
.ws32{word-spacing:-2.040000px;}
.ws6{word-spacing:-1.980000px;}
.wsdc{word-spacing:-1.944000px;}
.ws4f{word-spacing:-1.920000px;}
.wsfb{word-spacing:-1.890000px;}
.ws13a{word-spacing:-1.836000px;}
.ws12{word-spacing:-1.800000px;}
.ws1b{word-spacing:-1.740000px;}
.wsaf{word-spacing:-1.728000px;}
.ws118{word-spacing:-1.680000px;}
.ws127{word-spacing:-1.674000px;}
.wsa0{word-spacing:-1.620000px;}
.wsf7{word-spacing:-1.566000px;}
.wse5{word-spacing:-1.560000px;}
.ws15a{word-spacing:-1.512000px;}
.wscd{word-spacing:-1.500000px;}
.wsb{word-spacing:-1.440000px;}
.wse9{word-spacing:-1.404000px;}
.ws10f{word-spacing:-1.380000px;}
.ws17b{word-spacing:-1.350000px;}
.ws53{word-spacing:-1.344000px;}
.ws86{word-spacing:-1.320000px;}
.wsad{word-spacing:-1.296000px;}
.ws105{word-spacing:-1.260000px;}
.wsdb{word-spacing:-1.242000px;}
.ws3a{word-spacing:-1.200000px;}
.ws138{word-spacing:-1.188000px;}
.ws9d{word-spacing:-1.140000px;}
.ws136{word-spacing:-1.134000px;}
.ws9a{word-spacing:-1.080000px;}
.ws163{word-spacing:-1.026000px;}
.ws74{word-spacing:-0.960000px;}
.ws106{word-spacing:-0.918000px;}
.wsa{word-spacing:-0.900000px;}
.wsda{word-spacing:-0.864000px;}
.ws2{word-spacing:-0.840000px;}
.ws12c{word-spacing:-0.810000px;}
.ws1e{word-spacing:-0.780000px;}
.ws21{word-spacing:-0.720000px;}
.ws15f{word-spacing:-0.702000px;}
.wsd8{word-spacing:-0.660000px;}
.ws14e{word-spacing:-0.648000px;}
.ws94{word-spacing:-0.600000px;}
.ws91{word-spacing:-0.540000px;}
.ws156{word-spacing:-0.486000px;}
.ws8{word-spacing:-0.480000px;}
.ws8e{word-spacing:-0.420000px;}
.ws151{word-spacing:-0.378000px;}
.ws84{word-spacing:-0.360000px;}
.ws104{word-spacing:-0.324000px;}
.wsa2{word-spacing:-0.300000px;}
.ws14d{word-spacing:-0.270000px;}
.ws7e{word-spacing:-0.240000px;}
.ws4a{word-spacing:-0.180000px;}
.ws134{word-spacing:-0.162000px;}
.wsac{word-spacing:-0.108000px;}
.ws98{word-spacing:-0.060000px;}
.ws159{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws123{word-spacing:0.054000px;}
.ws10b{word-spacing:0.060000px;}
.ws59{word-spacing:0.084000px;}
.wsc{word-spacing:0.120000px;}
.wsa6{word-spacing:0.162000px;}
.ws18{word-spacing:0.180000px;}
.ws155{word-spacing:0.216000px;}
.ws65{word-spacing:0.240000px;}
.wscf{word-spacing:0.270000px;}
.ws38{word-spacing:0.300000px;}
.wsa4{word-spacing:0.324000px;}
.wsef{word-spacing:0.360000px;}
.ws8b{word-spacing:0.420000px;}
.ws26{word-spacing:0.480000px;}
.ws7b{word-spacing:0.540000px;}
.ws52{word-spacing:0.546000px;}
.wsf8{word-spacing:0.594000px;}
.ws30{word-spacing:0.600000px;}
.ws149{word-spacing:0.648000px;}
.ws116{word-spacing:0.660000px;}
.wsf6{word-spacing:0.702000px;}
.wsd4{word-spacing:0.720000px;}
.wsed{word-spacing:0.780000px;}
.wsb0{word-spacing:0.810000px;}
.wsa1{word-spacing:0.840000px;}
.ws13e{word-spacing:0.864000px;}
.ws66{word-spacing:0.900000px;}
.wsb7{word-spacing:0.918000px;}
.wsc9{word-spacing:0.960000px;}
.wsfc{word-spacing:0.972000px;}
.ws3b{word-spacing:1.020000px;}
.ws14c{word-spacing:1.026000px;}
.ws5e{word-spacing:1.080000px;}
.wsba{word-spacing:1.134000px;}
.ws6c{word-spacing:1.140000px;}
.wsf{word-spacing:1.200000px;}
.ws126{word-spacing:1.242000px;}
.wsd3{word-spacing:1.260000px;}
.wsf5{word-spacing:1.296000px;}
.wsb3{word-spacing:1.320000px;}
.ws62{word-spacing:1.380000px;}
.ws117{word-spacing:1.440000px;}
.ws162{word-spacing:1.458000px;}
.ws10d{word-spacing:1.500000px;}
.ws1d{word-spacing:1.560000px;}
.ws102{word-spacing:1.566000px;}
.ws40{word-spacing:1.620000px;}
.ws167{word-spacing:1.674000px;}
.wsec{word-spacing:1.680000px;}
.wsab{word-spacing:1.740000px;}
.wsc5{word-spacing:1.782000px;}
.ws47{word-spacing:1.800000px;}
.ws61{word-spacing:1.860000px;}
.ws3e{word-spacing:1.920000px;}
.ws88{word-spacing:1.980000px;}
.wsce{word-spacing:1.998000px;}
.ws114{word-spacing:2.040000px;}
.wsf3{word-spacing:2.100000px;}
.wsd2{word-spacing:2.160000px;}
.wsdd{word-spacing:2.220000px;}
.ws166{word-spacing:2.268000px;}
.ws71{word-spacing:2.280000px;}
.ws13f{word-spacing:2.322000px;}
.ws36{word-spacing:2.340000px;}
.ws5b{word-spacing:2.400000px;}
.wscb{word-spacing:2.460000px;}
.ws109{word-spacing:2.520000px;}
.ws12e{word-spacing:2.538000px;}
.ws68{word-spacing:2.580000px;}
.ws12a{word-spacing:2.592000px;}
.ws12d{word-spacing:2.646000px;}
.ws29{word-spacing:2.700000px;}
.wsd0{word-spacing:2.754000px;}
.ws75{word-spacing:2.760000px;}
.wsa3{word-spacing:2.808000px;}
.ws4{word-spacing:2.820000px;}
.ws15b{word-spacing:2.862000px;}
.ws3d{word-spacing:2.880000px;}
.ws58{word-spacing:2.898000px;}
.wse7{word-spacing:2.940000px;}
.wsc2{word-spacing:2.970000px;}
.ws67{word-spacing:3.000000px;}
.ws11a{word-spacing:3.024000px;}
.wsaa{word-spacing:3.060000px;}
.wsd5{word-spacing:3.120000px;}
.ws124{word-spacing:3.132000px;}
.wsfe{word-spacing:3.180000px;}
.ws157{word-spacing:3.186000px;}
.ws7{word-spacing:3.240000px;}
.wsfd{word-spacing:3.294000px;}
.ws5a{word-spacing:3.300000px;}
.wsf4{word-spacing:3.360000px;}
.wsfa{word-spacing:3.402000px;}
.ws33{word-spacing:3.420000px;}
.ws82{word-spacing:3.480000px;}
.wsf9{word-spacing:3.510000px;}
.wsa9{word-spacing:3.540000px;}
.ws16f{word-spacing:3.564000px;}
.ws48{word-spacing:3.600000px;}
.ws103{word-spacing:3.618000px;}
.ws72{word-spacing:3.660000px;}
.ws90{word-spacing:3.720000px;}
.ws152{word-spacing:3.726000px;}
.wsd1{word-spacing:3.780000px;}
.ws11b{word-spacing:3.834000px;}
.wsb2{word-spacing:3.840000px;}
.ws141{word-spacing:3.888000px;}
.wsd{word-spacing:3.900000px;}
.ws147{word-spacing:3.942000px;}
.wsca{word-spacing:3.960000px;}
.ws16e{word-spacing:3.996000px;}
.ws27{word-spacing:4.020000px;}
.ws133{word-spacing:4.050000px;}
.wsb5{word-spacing:4.080000px;}
.wscc{word-spacing:4.140000px;}
.ws2b{word-spacing:4.200000px;}
.ws13d{word-spacing:4.212000px;}
.ws85{word-spacing:4.260000px;}
.ws14a{word-spacing:4.266000px;}
.ws83{word-spacing:4.320000px;}
.ws16{word-spacing:4.380000px;}
.ws130{word-spacing:4.428000px;}
.ws6b{word-spacing:4.440000px;}
.ws49{word-spacing:4.500000px;}
.ws154{word-spacing:4.536000px;}
.ws4d{word-spacing:4.560000px;}
.ws125{word-spacing:4.590000px;}
.ws81{word-spacing:4.620000px;}
.ws164{word-spacing:4.644000px;}
.ws9c{word-spacing:4.680000px;}
.ws13b{word-spacing:4.698000px;}
.ws3{word-spacing:4.740000px;}
.ws51{word-spacing:4.746000px;}
.wsb9{word-spacing:4.752000px;}
.ws50{word-spacing:4.788000px;}
.wse2{word-spacing:4.806000px;}
.wse8{word-spacing:4.968000px;}
.ws4c{word-spacing:4.980000px;}
.wse1{word-spacing:5.022000px;}
.ws7f{word-spacing:5.040000px;}
.ws15{word-spacing:5.100000px;}
.wsd7{word-spacing:5.130000px;}
.ws2a{word-spacing:5.160000px;}
.ws55{word-spacing:5.166000px;}
.wsa5{word-spacing:5.184000px;}
.ws5d{word-spacing:5.220000px;}
.ws172{word-spacing:5.238000px;}
.ws54{word-spacing:5.250000px;}
.ws63{word-spacing:5.280000px;}
.ws3f{word-spacing:5.340000px;}
.ws14f{word-spacing:5.346000px;}
.ws8a{word-spacing:5.400000px;}
.ws101{word-spacing:5.460000px;}
.ws11c{word-spacing:5.508000px;}
.ws2c{word-spacing:5.520000px;}
.ws122{word-spacing:5.562000px;}
.ws93{word-spacing:5.580000px;}
.ws10a{word-spacing:5.640000px;}
.ws135{word-spacing:5.670000px;}
.ws113{word-spacing:5.760000px;}
.ws146{word-spacing:5.778000px;}
.ws176{word-spacing:5.832000px;}
.ws6a{word-spacing:5.880000px;}
.ws140{word-spacing:5.886000px;}
.wse{word-spacing:5.940000px;}
.ws39{word-spacing:6.000000px;}
.ws121{word-spacing:6.048000px;}
.ws7a{word-spacing:6.060000px;}
.ws148{word-spacing:6.102000px;}
.ws2d{word-spacing:6.120000px;}
.ws129{word-spacing:6.156000px;}
.wsb6{word-spacing:6.180000px;}
.ws41{word-spacing:6.240000px;}
.ws139{word-spacing:6.264000px;}
.ws9f{word-spacing:6.300000px;}
.ws69{word-spacing:6.360000px;}
.ws160{word-spacing:6.372000px;}
.ws14{word-spacing:6.420000px;}
.wsc1{word-spacing:6.426000px;}
.wse6{word-spacing:6.480000px;}
.ws153{word-spacing:6.534000px;}
.ws5f{word-spacing:6.540000px;}
.ws120{word-spacing:6.588000px;}
.ws78{word-spacing:6.600000px;}
.ws13c{word-spacing:6.642000px;}
.ws37{word-spacing:6.660000px;}
.wsb8{word-spacing:6.696000px;}
.wsb4{word-spacing:6.720000px;}
.wsae{word-spacing:6.750000px;}
.ws1c{word-spacing:6.780000px;}
.ws89{word-spacing:6.840000px;}
.ws95{word-spacing:6.900000px;}
.wsbc{word-spacing:6.960000px;}
.ws1a{word-spacing:7.020000px;}
.ws12b{word-spacing:7.074000px;}
.wsc4{word-spacing:7.080000px;}
.ws144{word-spacing:7.236000px;}
.ws42{word-spacing:7.260000px;}
.ws77{word-spacing:7.320000px;}
.ws64{word-spacing:7.380000px;}
.ws10{word-spacing:7.440000px;}
.ws13{word-spacing:7.500000px;}
.ws15c{word-spacing:7.614000px;}
.ws45{word-spacing:7.620000px;}
.ws15d{word-spacing:7.722000px;}
.ws17{word-spacing:7.860000px;}
.ws165{word-spacing:7.884000px;}
.ws100{word-spacing:7.980000px;}
.ws12f{word-spacing:8.046000px;}
.ws46{word-spacing:8.100000px;}
.ws137{word-spacing:8.154000px;}
.ws9b{word-spacing:8.160000px;}
.ws1f{word-spacing:8.220000px;}
.ws171{word-spacing:8.316000px;}
.ws11d{word-spacing:8.370000px;}
.ws96{word-spacing:8.460000px;}
.ws2e{word-spacing:8.520000px;}
.ws3c{word-spacing:8.580000px;}
.ws8d{word-spacing:8.640000px;}
.ws112{word-spacing:8.700000px;}
.ws15e{word-spacing:8.910000px;}
.wsbb{word-spacing:8.940000px;}
.ws20{word-spacing:9.060000px;}
.ws34{word-spacing:9.120000px;}
.ws11f{word-spacing:9.180000px;}
.ws115{word-spacing:9.240000px;}
.wsa7{word-spacing:9.300000px;}
.ws10c{word-spacing:9.360000px;}
.ws5c{word-spacing:9.420000px;}
.ws2f{word-spacing:9.540000px;}
.wsee{word-spacing:9.600000px;}
.ws35{word-spacing:9.660000px;}
.ws97{word-spacing:9.840000px;}
.wsc3{word-spacing:10.080000px;}
.wsf2{word-spacing:10.140000px;}
.ws17c{word-spacing:10.152000px;}
.wsdf{word-spacing:10.200000px;}
.ws44{word-spacing:10.320000px;}
.ws179{word-spacing:10.368000px;}
.ws14b{word-spacing:10.584000px;}
.ws6e{word-spacing:10.680000px;}
.ws76{word-spacing:10.740000px;}
.ws11e{word-spacing:11.286000px;}
.ws161{word-spacing:11.340000px;}
.ws108{word-spacing:11.520000px;}
.wsd6{word-spacing:11.580000px;}
.ws173{word-spacing:11.664000px;}
.ws4b{word-spacing:11.760000px;}
.ws158{word-spacing:11.772000px;}
.wsa8{word-spacing:11.940000px;}
.ws150{word-spacing:11.988000px;}
.wsff{word-spacing:12.000000px;}
.wsd9{word-spacing:12.420000px;}
.wsc7{word-spacing:12.480000px;}
.wsbf{word-spacing:12.660000px;}
.ws92{word-spacing:12.960000px;}
.ws7d{word-spacing:13.140000px;}
.ws79{word-spacing:13.260000px;}
.ws174{word-spacing:13.500000px;}
.ws111{word-spacing:13.560000px;}
.ws177{word-spacing:13.662000px;}
.ws16b{word-spacing:14.256000px;}
.wsbd{word-spacing:14.520000px;}
.ws131{word-spacing:14.742000px;}
.ws43{word-spacing:15.300000px;}
.ws8f{word-spacing:15.360000px;}
.ws132{word-spacing:15.390000px;}
.ws99{word-spacing:16.020000px;}
.wse4{word-spacing:16.500000px;}
.ws10e{word-spacing:16.560000px;}
.ws28{word-spacing:16.740000px;}
.wseb{word-spacing:17.520000px;}
.ws60{word-spacing:18.060000px;}
.wsc8{word-spacing:19.620000px;}
.wsb1{word-spacing:19.980000px;}
.ws17a{word-spacing:22.140000px;}
.ws8c{word-spacing:22.320000px;}
.wse3{word-spacing:23.700000px;}
.ws175{word-spacing:24.138000px;}
.ws178{word-spacing:24.624000px;}
.wsc6{word-spacing:25.020000px;}
.ws16a{word-spacing:25.434000px;}
.ws142{word-spacing:25.866000px;}
.ws6d{word-spacing:26.160000px;}
.ws170{word-spacing:28.080000px;}
.ws110{word-spacing:28.500000px;}
.ws16d{word-spacing:30.240000px;}
.ws169{word-spacing:32.400000px;}
.ws70{word-spacing:36.840000px;}
.ws6f{word-spacing:39.120000px;}
.ws16c{word-spacing:41.472000px;}
._9{margin-left:-8.947200px;}
._2{margin-left:-7.353600px;}
._5{margin-left:-5.880000px;}
._3{margin-left:-4.284000px;}
._4{margin-left:-3.120000px;}
._1{margin-left:-1.996800px;}
._6{width:1.074000px;}
._8{width:2.337000px;}
._0{width:5.587200px;}
._7{width:25.536000px;}
.fc6{color:rgb(87,87,86);}
.fc5{color:rgb(0,112,192);}
.fc3{color:rgb(148,54,52);}
.fc2{color:rgb(255,0,0);}
.fc4{color:rgb(84,84,84);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs7{font-size:36.000000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:51.000000px;}
.fsa{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs5{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.y1a{bottom:36.996600px;}
.y68{bottom:68.492100px;}
.y3e{bottom:72.992100px;}
.y65{bottom:77.628600px;}
.y11d{bottom:78.293400px;}
.ye0{bottom:78.764700px;}
.y67{bottom:81.992100px;}
.y15a{bottom:83.273100px;}
.ya2{bottom:86.385900px;}
.y91{bottom:86.492100px;}
.y64{bottom:90.375600px;}
.y3d{bottom:90.992100px;}
.y11c{bottom:93.291900px;}
.ydf{bottom:93.764700px;}
.y66{bottom:95.492100px;}
.y159{bottom:98.273100px;}
.ya1{bottom:99.132900px;}
.y14{bottom:99.795000px;}
.y90{bottom:99.992100px;}
.y63{bottom:103.122600px;}
.y9a{bottom:104.492100px;}
.y11b{bottom:108.290400px;}
.yde{bottom:108.764700px;}
.y3c{bottom:108.992100px;}
.y158{bottom:113.283600px;}
.y18e{bottom:113.288100px;}
.y8f{bottom:113.492100px;}
.y18{bottom:113.670000px;}
.y62{bottom:115.869600px;}
.y99{bottom:117.992100px;}
.y11a{bottom:123.288900px;}
.ydd{bottom:123.764700px;}
.y3b{bottom:126.992100px;}
.y157{bottom:128.282100px;}
.y18d{bottom:128.286600px;}
.y61{bottom:128.616600px;}
.y98{bottom:131.492100px;}
.y10{bottom:133.935000px;}
.y17{bottom:135.750000px;}
.y119{bottom:138.288900px;}
.ydc{bottom:138.764700px;}
.y60{bottom:141.363600px;}
.y156{bottom:143.280600px;}
.y18c{bottom:143.285100px;}
.y3a{bottom:144.992100px;}
.y118{bottom:153.288900px;}
.ydb{bottom:153.770700px;}
.y5f{bottom:154.110600px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y16{bottom:157.830000px;}
.y155{bottom:158.279100px;}
.y18b{bottom:158.283600px;}
.y97{bottom:158.492100px;}
.y39{bottom:162.992100px;}
.y5e{bottom:166.857600px;}
.y117{bottom:168.288900px;}
.yda{bottom:168.769200px;}
.y96{bottom:171.992100px;}
.y154{bottom:173.277600px;}
.y18a{bottom:173.282100px;}
.y5d{bottom:179.604600px;}
.y38{bottom:180.992100px;}
.y116{bottom:183.299400px;}
.yd9{bottom:183.767700px;}
.y95{bottom:185.492100px;}
.y153{bottom:188.276100px;}
.y189{bottom:188.280600px;}
.y5c{bottom:192.351600px;}
.y115{bottom:198.297900px;}
.yd8{bottom:198.766200px;}
.y37{bottom:198.992100px;}
.y152{bottom:203.274600px;}
.y188{bottom:203.279100px;}
.y5b{bottom:205.098600px;}
.y75{bottom:207.992100px;}
.y94{bottom:212.492100px;}
.y114{bottom:213.296400px;}
.yd7{bottom:213.764700px;}
.y36{bottom:216.992100px;}
.y5a{bottom:217.845600px;}
.y151{bottom:218.273100px;}
.y187{bottom:218.277600px;}
.y74{bottom:221.492100px;}
.y93{bottom:225.992100px;}
.y113{bottom:228.294900px;}
.yd6{bottom:228.764700px;}
.y59{bottom:230.592600px;}
.y150{bottom:233.273100px;}
.y186{bottom:233.276100px;}
.y35{bottom:234.992100px;}
.y92{bottom:239.492100px;}
.y112{bottom:243.293400px;}
.yd5{bottom:243.769200px;}
.y14f{bottom:248.273100px;}
.y185{bottom:248.274600px;}
.y73{bottom:248.492100px;}
.y34{bottom:252.992100px;}
.y111{bottom:258.291900px;}
.yd4{bottom:258.767700px;}
.y72{bottom:261.992100px;}
.y14e{bottom:263.273100px;}
.y33{bottom:270.992100px;}
.y110{bottom:273.290400px;}
.yd3{bottom:273.766200px;}
.y71{bottom:275.492100px;}
.y14d{bottom:278.273100px;}
.y10f{bottom:288.288900px;}
.yd2{bottom:288.764700px;}
.y32{bottom:288.992100px;}
.y14c{bottom:293.273100px;}
.y184{bottom:293.274600px;}
.y10e{bottom:303.288900px;}
.yd1{bottom:303.764700px;}
.y31{bottom:306.992100px;}
.y183{bottom:308.273100px;}
.y14b{bottom:308.282100px;}
.y10d{bottom:318.288900px;}
.yd0{bottom:318.779700px;}
.y84{bottom:320.492100px;}
.y182{bottom:323.273100px;}
.y14a{bottom:323.280600px;}
.y30{bottom:324.992100px;}
.y10c{bottom:333.294900px;}
.ycf{bottom:333.778200px;}
.y83{bottom:333.992100px;}
.y181{bottom:338.273100px;}
.y149{bottom:338.279100px;}
.y2f{bottom:342.992100px;}
.ya{bottom:344.680500px;}
.y82{bottom:347.492100px;}
.y10b{bottom:348.293400px;}
.yce{bottom:348.776700px;}
.y180{bottom:353.273100px;}
.y148{bottom:353.277600px;}
.y2e{bottom:360.992100px;}
.y10a{bottom:363.291900px;}
.ycd{bottom:363.775200px;}
.y17f{bottom:368.273100px;}
.y147{bottom:368.276100px;}
.y109{bottom:378.290400px;}
.ycc{bottom:378.773700px;}
.y2d{bottom:378.992100px;}
.y17e{bottom:383.273100px;}
.y146{bottom:383.274600px;}
.yd{bottom:386.490000px;}
.y108{bottom:393.288900px;}
.ycb{bottom:393.772200px;}
.y9{bottom:395.689500px;}
.y2c{bottom:396.992100px;}
.y145{bottom:398.273100px;}
.y17d{bottom:398.279100px;}
.y107{bottom:408.288900px;}
.yca{bottom:408.770700px;}
.y144{bottom:413.273100px;}
.y17c{bottom:413.277600px;}
.y2b{bottom:414.992100px;}
.y106{bottom:423.290400px;}
.yc9{bottom:423.769200px;}
.y143{bottom:428.273100px;}
.y17b{bottom:428.276100px;}
.y7c{bottom:428.492100px;}
.y2a{bottom:432.992100px;}
.yb{bottom:434.850000px;}
.y105{bottom:438.288900px;}
.yc8{bottom:438.767700px;}
.y7b{bottom:441.992100px;}
.y142{bottom:443.273100px;}
.y17a{bottom:443.274600px;}
.y8{bottom:446.698500px;}
.y29{bottom:450.992100px;}
.y104{bottom:453.288900px;}
.yc7{bottom:453.766200px;}
.y7a{bottom:455.492100px;}
.y141{bottom:458.273100px;}
.y103{bottom:468.291900px;}
.yc6{bottom:468.764700px;}
.y28{bottom:468.992100px;}
.y140{bottom:473.273100px;}
.y8e{bottom:482.492100px;}
.y102{bottom:483.290400px;}
.yc5{bottom:483.764700px;}
.y27{bottom:486.992100px;}
.y11{bottom:488.055000px;}
.y13f{bottom:488.274600px;}
.y179{bottom:488.277600px;}
.y8d{bottom:495.992100px;}
.y7{bottom:497.707500px;}
.y101{bottom:498.288900px;}
.yc4{bottom:498.764700px;}
.y13e{bottom:503.273100px;}
.y178{bottom:503.276100px;}
.y26{bottom:504.992100px;}
.y8c{bottom:509.492100px;}
.y100{bottom:513.288900px;}
.yc3{bottom:513.764700px;}
.y13d{bottom:518.273100px;}
.y177{bottom:518.274600px;}
.y3f{bottom:522.992100px;}
.yff{bottom:528.288900px;}
.yc2{bottom:528.766200px;}
.y176{bottom:533.273100px;}
.y13c{bottom:533.274600px;}
.y8b{bottom:536.492100px;}
.y12{bottom:538.230000px;}
.y25{bottom:540.992100px;}
.yfe{bottom:543.288900px;}
.yc1{bottom:543.764700px;}
.y13b{bottom:548.273100px;}
.y6{bottom:548.716500px;}
.y8a{bottom:549.992100px;}
.yfd{bottom:558.288900px;}
.yc0{bottom:558.764700px;}
.y58{bottom:558.992100px;}
.y13a{bottom:563.273100px;}
.y89{bottom:563.492100px;}
.yfc{bottom:573.288900px;}
.ybf{bottom:573.766200px;}
.y57{bottom:576.992100px;}
.y175{bottom:578.273100px;}
.y139{bottom:578.274600px;}
.yfb{bottom:588.288900px;}
.ybe{bottom:588.764700px;}
.y19{bottom:589.605000px;}
.ya0{bottom:590.492100px;}
.y138{bottom:593.273100px;}
.y174{bottom:593.274600px;}
.y56{bottom:594.992100px;}
.y5{bottom:599.725500px;}
.yfa{bottom:603.288900px;}
.ybd{bottom:603.764700px;}
.y9f{bottom:603.992100px;}
.y137{bottom:608.273100px;}
.y24{bottom:612.974400px;}
.y55{bottom:612.992100px;}
.y79{bottom:617.492100px;}
.yf9{bottom:618.288900px;}
.ybc{bottom:618.776700px;}
.y70{bottom:621.992100px;}
.y136{bottom:623.279100px;}
.y173{bottom:623.286600px;}
.y54{bottom:630.992100px;}
.ye{bottom:631.920000px;}
.yf8{bottom:633.291900px;}
.ybb{bottom:633.775200px;}
.y6f{bottom:635.492100px;}
.y135{bottom:638.277600px;}
.y172{bottom:638.285100px;}
.y78{bottom:644.492100px;}
.yf7{bottom:648.290400px;}
.yba{bottom:648.773700px;}
.y53{bottom:648.992100px;}
.y134{bottom:653.276100px;}
.y171{bottom:653.283600px;}
.y23{bottom:656.268900px;}
.y77{bottom:657.992100px;}
.y6e{bottom:662.492100px;}
.yf6{bottom:663.288900px;}
.yb9{bottom:663.772200px;}
.y52{bottom:666.992100px;}
.y133{bottom:668.274600px;}
.y170{bottom:668.282100px;}
.y76{bottom:671.492100px;}
.y22{bottom:675.024150px;}
.y6d{bottom:675.992100px;}
.yf5{bottom:678.288900px;}
.yb8{bottom:678.770700px;}
.y132{bottom:683.273100px;}
.y16f{bottom:683.280600px;}
.y51{bottom:684.992100px;}
.y6c{bottom:689.492100px;}
.yf4{bottom:693.291900px;}
.y194{bottom:693.764700px;}
.yb7{bottom:693.769200px;}
.y21{bottom:693.779400px;}
.y1a8{bottom:694.816200px;}
.y131{bottom:698.273100px;}
.y16e{bottom:698.279100px;}
.y50{bottom:702.992100px;}
.yf3{bottom:708.290400px;}
.y193{bottom:708.764700px;}
.yb6{bottom:708.767700px;}
.y1a7{bottom:709.816200px;}
.y20{bottom:712.534650px;}
.y16d{bottom:713.277600px;}
.y130{bottom:713.282100px;}
.y4f{bottom:720.992100px;}
.yf2{bottom:723.288900px;}
.yb5{bottom:723.766200px;}
.y1a6{bottom:724.816200px;}
.y16c{bottom:728.276100px;}
.y12f{bottom:728.280600px;}
.y1f{bottom:731.289900px;}
.yf1{bottom:738.288900px;}
.yb4{bottom:738.764700px;}
.y4e{bottom:738.992100px;}
.y1a5{bottom:739.816200px;}
.y16b{bottom:743.274600px;}
.y12e{bottom:743.279100px;}
.yf0{bottom:753.290400px;}
.yb3{bottom:753.764700px;}
.y1a4{bottom:754.816200px;}
.y4d{bottom:756.992100px;}
.y16a{bottom:758.273100px;}
.y12d{bottom:758.277600px;}
.y9e{bottom:761.492100px;}
.y1e{bottom:764.295750px;}
.yef{bottom:768.288900px;}
.yb2{bottom:768.764700px;}
.y1a3{bottom:769.816200px;}
.y169{bottom:773.273100px;}
.y12c{bottom:773.276100px;}
.y4c{bottom:774.992100px;}
.y4{bottom:778.225500px;}
.yee{bottom:783.288900px;}
.yb1{bottom:783.764700px;}
.y1a2{bottom:784.816200px;}
.y12b{bottom:788.274600px;}
.y168{bottom:788.280600px;}
.y9d{bottom:788.492100px;}
.y4b{bottom:792.992100px;}
.yed{bottom:798.288900px;}
.yb0{bottom:798.764700px;}
.y1a1{bottom:799.816200px;}
.y9c{bottom:801.992100px;}
.y1d{bottom:802.992600px;}
.y12a{bottom:803.273100px;}
.y167{bottom:803.279100px;}
.y4a{bottom:810.992100px;}
.yec{bottom:813.288900px;}
.yaf{bottom:813.764700px;}
.y192{bottom:813.766200px;}
.y1a0{bottom:814.816200px;}
.y9b{bottom:815.492100px;}
.y13{bottom:815.670000px;}
.y129{bottom:818.273100px;}
.y166{bottom:818.277600px;}
.yeb{bottom:828.288900px;}
.y191{bottom:828.764700px;}
.yae{bottom:828.766200px;}
.y49{bottom:828.992100px;}
.y19f{bottom:829.816200px;}
.y165{bottom:833.276100px;}
.y128{bottom:833.283600px;}
.y1c{bottom:841.782600px;}
.yea{bottom:843.288900px;}
.yad{bottom:843.764700px;}
.y19e{bottom:844.819200px;}
.y48{bottom:846.992100px;}
.y164{bottom:848.274600px;}
.y127{bottom:848.282100px;}
.ye9{bottom:858.288900px;}
.yac{bottom:858.764700px;}
.y19d{bottom:859.817700px;}
.y163{bottom:863.273100px;}
.y126{bottom:863.280600px;}
.y47{bottom:864.992100px;}
.ye8{bottom:873.296400px;}
.yab{bottom:873.764700px;}
.y190{bottom:873.766200px;}
.y81{bottom:873.992100px;}
.y19c{bottom:874.816200px;}
.y162{bottom:878.273100px;}
.y125{bottom:878.279100px;}
.y1b{bottom:880.770600px;}
.y46{bottom:882.992100px;}
.y80{bottom:887.492100px;}
.ye7{bottom:888.294900px;}
.yaa{bottom:888.764700px;}
.y19b{bottom:889.816200px;}
.y161{bottom:893.273100px;}
.y124{bottom:893.277600px;}
.y45{bottom:900.992100px;}
.ye6{bottom:903.293400px;}
.ya9{bottom:903.764700px;}
.y19a{bottom:904.816200px;}
.y3{bottom:905.716500px;}
.y123{bottom:908.276100px;}
.y160{bottom:908.280600px;}
.y7f{bottom:914.492100px;}
.y88{bottom:917.273100px;}
.ye5{bottom:918.291900px;}
.ya8{bottom:918.764700px;}
.y18f{bottom:918.771750px;}
.y44{bottom:918.992100px;}
.y199{bottom:919.817700px;}
.y122{bottom:923.274600px;}
.y15f{bottom:923.279100px;}
.y7e{bottom:927.992100px;}
.y87{bottom:930.773100px;}
.ye4{bottom:933.290400px;}
.ya7{bottom:933.770250px;}
.y198{bottom:934.816200px;}
.y43{bottom:936.992100px;}
.y121{bottom:938.273100px;}
.y15e{bottom:938.277600px;}
.y7d{bottom:941.492100px;}
.y86{bottom:944.273100px;}
.ye3{bottom:948.288900px;}
.ya6{bottom:948.768750px;}
.y197{bottom:949.816200px;}
.y120{bottom:953.273100px;}
.y15d{bottom:953.276100px;}
.y42{bottom:954.992100px;}
.y85{bottom:957.773100px;}
.ye2{bottom:963.288900px;}
.ya5{bottom:963.767250px;}
.y2{bottom:964.228500px;}
.y196{bottom:964.816200px;}
.y15c{bottom:968.274600px;}
.y11f{bottom:968.276100px;}
.y6b{bottom:971.273100px;}
.y41{bottom:972.992100px;}
.ye1{bottom:978.288900px;}
.ya4{bottom:978.765750px;}
.y195{bottom:979.816200px;}
.y15b{bottom:983.273100px;}
.y11e{bottom:983.274600px;}
.y6a{bottom:984.773100px;}
.y1{bottom:989.716500px;}
.y40{bottom:990.992100px;}
.ya3{bottom:998.016750px;}
.y69{bottom:998.273100px;}
.he{height:27.432000px;}
.h11{height:32.004000px;}
.h4{height:33.000000px;}
.hb{height:38.250000px;}
.h15{height:38.610000px;}
.h14{height:40.500000px;}
.h12{height:42.920000px;}
.h13{height:43.686000px;}
.hf{height:45.000000px;}
.h10{height:48.540000px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.h5{height:67.740234px;}
.hd{height:87.372000px;}
.h7{height:115.215000px;}
.hc{height:116.496000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.ha{height:1062.750000px;}
.h9{height:1062.991500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:748.347000px;}
.wa{width:748.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x11{left:72.283500px;}
.xb{left:85.039350px;}
.x19{left:93.543300px;}
.xd{left:97.795350px;}
.x17{left:106.301850px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x5{left:174.105000px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.xc{left:294.025950px;}
.x12{left:352.363200px;}
.x14{left:365.093700px;}
.x13{left:378.425100px;}
.xf{left:391.181100px;}
.x1a{left:399.685050px;}
.xe{left:403.937100px;}
.x18{left:412.440900px;}
.xa{left:446.981700px;}
.x15{left:558.255000px;}
.x16{left:561.174000px;}
.x10{left:671.221350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760533pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls24{letter-spacing:-0.373333pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.024000pt;}
.lsa{letter-spacing:0.026667pt;}
.ls19{letter-spacing:0.048000pt;}
.ls5{letter-spacing:0.053333pt;}
.ls2b{letter-spacing:0.072000pt;}
.ls3{letter-spacing:0.080000pt;}
.lsb{letter-spacing:0.088977pt;}
.ls27{letter-spacing:0.096000pt;}
.ls4{letter-spacing:0.106667pt;}
.ls28{letter-spacing:0.120000pt;}
.lsd{letter-spacing:0.133333pt;}
.ls25{letter-spacing:0.144000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.213333pt;}
.ls21{letter-spacing:0.240000pt;}
.lsc{letter-spacing:0.266667pt;}
.ls2a{letter-spacing:0.288000pt;}
.ls22{letter-spacing:0.293333pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.346667pt;}
.ls18{letter-spacing:0.373333pt;}
.ls2e{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.426667pt;}
.ls2d{letter-spacing:0.432000pt;}
.ls2{letter-spacing:0.453333pt;}
.ls10{letter-spacing:0.480000pt;}
.ls23{letter-spacing:0.506667pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls13{letter-spacing:0.533333pt;}
.ls14{letter-spacing:0.586667pt;}
.ls12{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.693333pt;}
.ls1{letter-spacing:0.746667pt;}
.ls15{letter-spacing:0.928000pt;}
.ls1b{letter-spacing:3.520000pt;}
.ls8{letter-spacing:3.706667pt;}
.ls9{letter-spacing:4.906667pt;}
.lsf{letter-spacing:5.813333pt;}
.ls17{letter-spacing:7.253333pt;}
.ws0{word-spacing:-16.874667pt;}
.ws23{word-spacing:-13.493333pt;}
.ws24{word-spacing:-13.386667pt;}
.ws22{word-spacing:-13.333333pt;}
.ws168{word-spacing:-12.288000pt;}
.ws119{word-spacing:-12.000000pt;}
.ws145{word-spacing:-4.560000pt;}
.ws9e{word-spacing:-3.520000pt;}
.ws9{word-spacing:-2.826667pt;}
.ws5{word-spacing:-2.666667pt;}
.ws87{word-spacing:-2.613333pt;}
.ws31{word-spacing:-2.560000pt;}
.wsf1{word-spacing:-2.506667pt;}
.ws19{word-spacing:-2.453333pt;}
.ws4e{word-spacing:-2.400000pt;}
.ws128{word-spacing:-2.352000pt;}
.wsde{word-spacing:-2.346667pt;}
.wsea{word-spacing:-2.304000pt;}
.wsf0{word-spacing:-2.293333pt;}
.wse0{word-spacing:-2.256000pt;}
.ws11{word-spacing:-2.240000pt;}
.ws80{word-spacing:-2.186667pt;}
.ws107{word-spacing:-2.160000pt;}
.ws7c{word-spacing:-2.133333pt;}
.wsc0{word-spacing:-2.080000pt;}
.wsbe{word-spacing:-2.026667pt;}
.ws56{word-spacing:-1.978667pt;}
.ws25{word-spacing:-1.973333pt;}
.ws73{word-spacing:-1.920000pt;}
.ws143{word-spacing:-1.872000pt;}
.ws57{word-spacing:-1.866667pt;}
.ws32{word-spacing:-1.813333pt;}
.ws6{word-spacing:-1.760000pt;}
.wsdc{word-spacing:-1.728000pt;}
.ws4f{word-spacing:-1.706667pt;}
.wsfb{word-spacing:-1.680000pt;}
.ws13a{word-spacing:-1.632000pt;}
.ws12{word-spacing:-1.600000pt;}
.ws1b{word-spacing:-1.546667pt;}
.wsaf{word-spacing:-1.536000pt;}
.ws118{word-spacing:-1.493333pt;}
.ws127{word-spacing:-1.488000pt;}
.wsa0{word-spacing:-1.440000pt;}
.wsf7{word-spacing:-1.392000pt;}
.wse5{word-spacing:-1.386667pt;}
.ws15a{word-spacing:-1.344000pt;}
.wscd{word-spacing:-1.333333pt;}
.wsb{word-spacing:-1.280000pt;}
.wse9{word-spacing:-1.248000pt;}
.ws10f{word-spacing:-1.226667pt;}
.ws17b{word-spacing:-1.200000pt;}
.ws53{word-spacing:-1.194667pt;}
.ws86{word-spacing:-1.173333pt;}
.wsad{word-spacing:-1.152000pt;}
.ws105{word-spacing:-1.120000pt;}
.wsdb{word-spacing:-1.104000pt;}
.ws3a{word-spacing:-1.066667pt;}
.ws138{word-spacing:-1.056000pt;}
.ws9d{word-spacing:-1.013333pt;}
.ws136{word-spacing:-1.008000pt;}
.ws9a{word-spacing:-0.960000pt;}
.ws163{word-spacing:-0.912000pt;}
.ws74{word-spacing:-0.853333pt;}
.ws106{word-spacing:-0.816000pt;}
.wsa{word-spacing:-0.800000pt;}
.wsda{word-spacing:-0.768000pt;}
.ws2{word-spacing:-0.746667pt;}
.ws12c{word-spacing:-0.720000pt;}
.ws1e{word-spacing:-0.693333pt;}
.ws21{word-spacing:-0.640000pt;}
.ws15f{word-spacing:-0.624000pt;}
.wsd8{word-spacing:-0.586667pt;}
.ws14e{word-spacing:-0.576000pt;}
.ws94{word-spacing:-0.533333pt;}
.ws91{word-spacing:-0.480000pt;}
.ws156{word-spacing:-0.432000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws8e{word-spacing:-0.373333pt;}
.ws151{word-spacing:-0.336000pt;}
.ws84{word-spacing:-0.320000pt;}
.ws104{word-spacing:-0.288000pt;}
.wsa2{word-spacing:-0.266667pt;}
.ws14d{word-spacing:-0.240000pt;}
.ws7e{word-spacing:-0.213333pt;}
.ws4a{word-spacing:-0.160000pt;}
.ws134{word-spacing:-0.144000pt;}
.wsac{word-spacing:-0.096000pt;}
.ws98{word-spacing:-0.053333pt;}
.ws159{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws123{word-spacing:0.048000pt;}
.ws10b{word-spacing:0.053333pt;}
.ws59{word-spacing:0.074667pt;}
.wsc{word-spacing:0.106667pt;}
.wsa6{word-spacing:0.144000pt;}
.ws18{word-spacing:0.160000pt;}
.ws155{word-spacing:0.192000pt;}
.ws65{word-spacing:0.213333pt;}
.wscf{word-spacing:0.240000pt;}
.ws38{word-spacing:0.266667pt;}
.wsa4{word-spacing:0.288000pt;}
.wsef{word-spacing:0.320000pt;}
.ws8b{word-spacing:0.373333pt;}
.ws26{word-spacing:0.426667pt;}
.ws7b{word-spacing:0.480000pt;}
.ws52{word-spacing:0.485333pt;}
.wsf8{word-spacing:0.528000pt;}
.ws30{word-spacing:0.533333pt;}
.ws149{word-spacing:0.576000pt;}
.ws116{word-spacing:0.586667pt;}
.wsf6{word-spacing:0.624000pt;}
.wsd4{word-spacing:0.640000pt;}
.wsed{word-spacing:0.693333pt;}
.wsb0{word-spacing:0.720000pt;}
.wsa1{word-spacing:0.746667pt;}
.ws13e{word-spacing:0.768000pt;}
.ws66{word-spacing:0.800000pt;}
.wsb7{word-spacing:0.816000pt;}
.wsc9{word-spacing:0.853333pt;}
.wsfc{word-spacing:0.864000pt;}
.ws3b{word-spacing:0.906667pt;}
.ws14c{word-spacing:0.912000pt;}
.ws5e{word-spacing:0.960000pt;}
.wsba{word-spacing:1.008000pt;}
.ws6c{word-spacing:1.013333pt;}
.wsf{word-spacing:1.066667pt;}
.ws126{word-spacing:1.104000pt;}
.wsd3{word-spacing:1.120000pt;}
.wsf5{word-spacing:1.152000pt;}
.wsb3{word-spacing:1.173333pt;}
.ws62{word-spacing:1.226667pt;}
.ws117{word-spacing:1.280000pt;}
.ws162{word-spacing:1.296000pt;}
.ws10d{word-spacing:1.333333pt;}
.ws1d{word-spacing:1.386667pt;}
.ws102{word-spacing:1.392000pt;}
.ws40{word-spacing:1.440000pt;}
.ws167{word-spacing:1.488000pt;}
.wsec{word-spacing:1.493333pt;}
.wsab{word-spacing:1.546667pt;}
.wsc5{word-spacing:1.584000pt;}
.ws47{word-spacing:1.600000pt;}
.ws61{word-spacing:1.653333pt;}
.ws3e{word-spacing:1.706667pt;}
.ws88{word-spacing:1.760000pt;}
.wsce{word-spacing:1.776000pt;}
.ws114{word-spacing:1.813333pt;}
.wsf3{word-spacing:1.866667pt;}
.wsd2{word-spacing:1.920000pt;}
.wsdd{word-spacing:1.973333pt;}
.ws166{word-spacing:2.016000pt;}
.ws71{word-spacing:2.026667pt;}
.ws13f{word-spacing:2.064000pt;}
.ws36{word-spacing:2.080000pt;}
.ws5b{word-spacing:2.133333pt;}
.wscb{word-spacing:2.186667pt;}
.ws109{word-spacing:2.240000pt;}
.ws12e{word-spacing:2.256000pt;}
.ws68{word-spacing:2.293333pt;}
.ws12a{word-spacing:2.304000pt;}
.ws12d{word-spacing:2.352000pt;}
.ws29{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.448000pt;}
.ws75{word-spacing:2.453333pt;}
.wsa3{word-spacing:2.496000pt;}
.ws4{word-spacing:2.506667pt;}
.ws15b{word-spacing:2.544000pt;}
.ws3d{word-spacing:2.560000pt;}
.ws58{word-spacing:2.576000pt;}
.wse7{word-spacing:2.613333pt;}
.wsc2{word-spacing:2.640000pt;}
.ws67{word-spacing:2.666667pt;}
.ws11a{word-spacing:2.688000pt;}
.wsaa{word-spacing:2.720000pt;}
.wsd5{word-spacing:2.773333pt;}
.ws124{word-spacing:2.784000pt;}
.wsfe{word-spacing:2.826667pt;}
.ws157{word-spacing:2.832000pt;}
.ws7{word-spacing:2.880000pt;}
.wsfd{word-spacing:2.928000pt;}
.ws5a{word-spacing:2.933333pt;}
.wsf4{word-spacing:2.986667pt;}
.wsfa{word-spacing:3.024000pt;}
.ws33{word-spacing:3.040000pt;}
.ws82{word-spacing:3.093333pt;}
.wsf9{word-spacing:3.120000pt;}
.wsa9{word-spacing:3.146667pt;}
.ws16f{word-spacing:3.168000pt;}
.ws48{word-spacing:3.200000pt;}
.ws103{word-spacing:3.216000pt;}
.ws72{word-spacing:3.253333pt;}
.ws90{word-spacing:3.306667pt;}
.ws152{word-spacing:3.312000pt;}
.wsd1{word-spacing:3.360000pt;}
.ws11b{word-spacing:3.408000pt;}
.wsb2{word-spacing:3.413333pt;}
.ws141{word-spacing:3.456000pt;}
.wsd{word-spacing:3.466667pt;}
.ws147{word-spacing:3.504000pt;}
.wsca{word-spacing:3.520000pt;}
.ws16e{word-spacing:3.552000pt;}
.ws27{word-spacing:3.573333pt;}
.ws133{word-spacing:3.600000pt;}
.wsb5{word-spacing:3.626667pt;}
.wscc{word-spacing:3.680000pt;}
.ws2b{word-spacing:3.733333pt;}
.ws13d{word-spacing:3.744000pt;}
.ws85{word-spacing:3.786667pt;}
.ws14a{word-spacing:3.792000pt;}
.ws83{word-spacing:3.840000pt;}
.ws16{word-spacing:3.893333pt;}
.ws130{word-spacing:3.936000pt;}
.ws6b{word-spacing:3.946667pt;}
.ws49{word-spacing:4.000000pt;}
.ws154{word-spacing:4.032000pt;}
.ws4d{word-spacing:4.053333pt;}
.ws125{word-spacing:4.080000pt;}
.ws81{word-spacing:4.106667pt;}
.ws164{word-spacing:4.128000pt;}
.ws9c{word-spacing:4.160000pt;}
.ws13b{word-spacing:4.176000pt;}
.ws3{word-spacing:4.213333pt;}
.ws51{word-spacing:4.218667pt;}
.wsb9{word-spacing:4.224000pt;}
.ws50{word-spacing:4.256000pt;}
.wse2{word-spacing:4.272000pt;}
.wse8{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.426667pt;}
.wse1{word-spacing:4.464000pt;}
.ws7f{word-spacing:4.480000pt;}
.ws15{word-spacing:4.533333pt;}
.wsd7{word-spacing:4.560000pt;}
.ws2a{word-spacing:4.586667pt;}
.ws55{word-spacing:4.592000pt;}
.wsa5{word-spacing:4.608000pt;}
.ws5d{word-spacing:4.640000pt;}
.ws172{word-spacing:4.656000pt;}
.ws54{word-spacing:4.666667pt;}
.ws63{word-spacing:4.693333pt;}
.ws3f{word-spacing:4.746667pt;}
.ws14f{word-spacing:4.752000pt;}
.ws8a{word-spacing:4.800000pt;}
.ws101{word-spacing:4.853333pt;}
.ws11c{word-spacing:4.896000pt;}
.ws2c{word-spacing:4.906667pt;}
.ws122{word-spacing:4.944000pt;}
.ws93{word-spacing:4.960000pt;}
.ws10a{word-spacing:5.013333pt;}
.ws135{word-spacing:5.040000pt;}
.ws113{word-spacing:5.120000pt;}
.ws146{word-spacing:5.136000pt;}
.ws176{word-spacing:5.184000pt;}
.ws6a{word-spacing:5.226667pt;}
.ws140{word-spacing:5.232000pt;}
.wse{word-spacing:5.280000pt;}
.ws39{word-spacing:5.333333pt;}
.ws121{word-spacing:5.376000pt;}
.ws7a{word-spacing:5.386667pt;}
.ws148{word-spacing:5.424000pt;}
.ws2d{word-spacing:5.440000pt;}
.ws129{word-spacing:5.472000pt;}
.wsb6{word-spacing:5.493333pt;}
.ws41{word-spacing:5.546667pt;}
.ws139{word-spacing:5.568000pt;}
.ws9f{word-spacing:5.600000pt;}
.ws69{word-spacing:5.653333pt;}
.ws160{word-spacing:5.664000pt;}
.ws14{word-spacing:5.706667pt;}
.wsc1{word-spacing:5.712000pt;}
.wse6{word-spacing:5.760000pt;}
.ws153{word-spacing:5.808000pt;}
.ws5f{word-spacing:5.813333pt;}
.ws120{word-spacing:5.856000pt;}
.ws78{word-spacing:5.866667pt;}
.ws13c{word-spacing:5.904000pt;}
.ws37{word-spacing:5.920000pt;}
.wsb8{word-spacing:5.952000pt;}
.wsb4{word-spacing:5.973333pt;}
.wsae{word-spacing:6.000000pt;}
.ws1c{word-spacing:6.026667pt;}
.ws89{word-spacing:6.080000pt;}
.ws95{word-spacing:6.133333pt;}
.wsbc{word-spacing:6.186667pt;}
.ws1a{word-spacing:6.240000pt;}
.ws12b{word-spacing:6.288000pt;}
.wsc4{word-spacing:6.293333pt;}
.ws144{word-spacing:6.432000pt;}
.ws42{word-spacing:6.453333pt;}
.ws77{word-spacing:6.506667pt;}
.ws64{word-spacing:6.560000pt;}
.ws10{word-spacing:6.613333pt;}
.ws13{word-spacing:6.666667pt;}
.ws15c{word-spacing:6.768000pt;}
.ws45{word-spacing:6.773333pt;}
.ws15d{word-spacing:6.864000pt;}
.ws17{word-spacing:6.986667pt;}
.ws165{word-spacing:7.008000pt;}
.ws100{word-spacing:7.093333pt;}
.ws12f{word-spacing:7.152000pt;}
.ws46{word-spacing:7.200000pt;}
.ws137{word-spacing:7.248000pt;}
.ws9b{word-spacing:7.253333pt;}
.ws1f{word-spacing:7.306667pt;}
.ws171{word-spacing:7.392000pt;}
.ws11d{word-spacing:7.440000pt;}
.ws96{word-spacing:7.520000pt;}
.ws2e{word-spacing:7.573333pt;}
.ws3c{word-spacing:7.626667pt;}
.ws8d{word-spacing:7.680000pt;}
.ws112{word-spacing:7.733333pt;}
.ws15e{word-spacing:7.920000pt;}
.wsbb{word-spacing:7.946667pt;}
.ws20{word-spacing:8.053333pt;}
.ws34{word-spacing:8.106667pt;}
.ws11f{word-spacing:8.160000pt;}
.ws115{word-spacing:8.213333pt;}
.wsa7{word-spacing:8.266667pt;}
.ws10c{word-spacing:8.320000pt;}
.ws5c{word-spacing:8.373333pt;}
.ws2f{word-spacing:8.480000pt;}
.wsee{word-spacing:8.533333pt;}
.ws35{word-spacing:8.586667pt;}
.ws97{word-spacing:8.746667pt;}
.wsc3{word-spacing:8.960000pt;}
.wsf2{word-spacing:9.013333pt;}
.ws17c{word-spacing:9.024000pt;}
.wsdf{word-spacing:9.066667pt;}
.ws44{word-spacing:9.173333pt;}
.ws179{word-spacing:9.216000pt;}
.ws14b{word-spacing:9.408000pt;}
.ws6e{word-spacing:9.493333pt;}
.ws76{word-spacing:9.546667pt;}
.ws11e{word-spacing:10.032000pt;}
.ws161{word-spacing:10.080000pt;}
.ws108{word-spacing:10.240000pt;}
.wsd6{word-spacing:10.293333pt;}
.ws173{word-spacing:10.368000pt;}
.ws4b{word-spacing:10.453333pt;}
.ws158{word-spacing:10.464000pt;}
.wsa8{word-spacing:10.613333pt;}
.ws150{word-spacing:10.656000pt;}
.wsff{word-spacing:10.666667pt;}
.wsd9{word-spacing:11.040000pt;}
.wsc7{word-spacing:11.093333pt;}
.wsbf{word-spacing:11.253333pt;}
.ws92{word-spacing:11.520000pt;}
.ws7d{word-spacing:11.680000pt;}
.ws79{word-spacing:11.786667pt;}
.ws174{word-spacing:12.000000pt;}
.ws111{word-spacing:12.053333pt;}
.ws177{word-spacing:12.144000pt;}
.ws16b{word-spacing:12.672000pt;}
.wsbd{word-spacing:12.906667pt;}
.ws131{word-spacing:13.104000pt;}
.ws43{word-spacing:13.600000pt;}
.ws8f{word-spacing:13.653333pt;}
.ws132{word-spacing:13.680000pt;}
.ws99{word-spacing:14.240000pt;}
.wse4{word-spacing:14.666667pt;}
.ws10e{word-spacing:14.720000pt;}
.ws28{word-spacing:14.880000pt;}
.wseb{word-spacing:15.573333pt;}
.ws60{word-spacing:16.053333pt;}
.wsc8{word-spacing:17.440000pt;}
.wsb1{word-spacing:17.760000pt;}
.ws17a{word-spacing:19.680000pt;}
.ws8c{word-spacing:19.840000pt;}
.wse3{word-spacing:21.066667pt;}
.ws175{word-spacing:21.456000pt;}
.ws178{word-spacing:21.888000pt;}
.wsc6{word-spacing:22.240000pt;}
.ws16a{word-spacing:22.608000pt;}
.ws142{word-spacing:22.992000pt;}
.ws6d{word-spacing:23.253333pt;}
.ws170{word-spacing:24.960000pt;}
.ws110{word-spacing:25.333333pt;}
.ws16d{word-spacing:26.880000pt;}
.ws169{word-spacing:28.800000pt;}
.ws70{word-spacing:32.746667pt;}
.ws6f{word-spacing:34.773333pt;}
.ws16c{word-spacing:36.864000pt;}
._9{margin-left:-7.953067pt;}
._2{margin-left:-6.536533pt;}
._5{margin-left:-5.226667pt;}
._3{margin-left:-3.808000pt;}
._4{margin-left:-2.773333pt;}
._1{margin-left:-1.774933pt;}
._6{width:0.954667pt;}
._8{width:2.077333pt;}
._0{width:4.966400pt;}
._7{width:22.698667pt;}
.fs9{font-size:31.093333pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:45.333333pt;}
.fsa{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs5{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.y1a{bottom:32.885867pt;}
.y68{bottom:60.881867pt;}
.y3e{bottom:64.881867pt;}
.y65{bottom:69.003200pt;}
.y11d{bottom:69.594133pt;}
.ye0{bottom:70.013067pt;}
.y67{bottom:72.881867pt;}
.y15a{bottom:74.020533pt;}
.ya2{bottom:76.787467pt;}
.y91{bottom:76.881867pt;}
.y64{bottom:80.333867pt;}
.y3d{bottom:80.881867pt;}
.y11c{bottom:82.926133pt;}
.ydf{bottom:83.346400pt;}
.y66{bottom:84.881867pt;}
.y159{bottom:87.353867pt;}
.ya1{bottom:88.118133pt;}
.y14{bottom:88.706667pt;}
.y90{bottom:88.881867pt;}
.y63{bottom:91.664533pt;}
.y9a{bottom:92.881867pt;}
.y11b{bottom:96.258133pt;}
.yde{bottom:96.679733pt;}
.y3c{bottom:96.881867pt;}
.y158{bottom:100.696533pt;}
.y18e{bottom:100.700533pt;}
.y8f{bottom:100.881867pt;}
.y18{bottom:101.040000pt;}
.y62{bottom:102.995200pt;}
.y99{bottom:104.881867pt;}
.y11a{bottom:109.590133pt;}
.ydd{bottom:110.013067pt;}
.y3b{bottom:112.881867pt;}
.y157{bottom:114.028533pt;}
.y18d{bottom:114.032533pt;}
.y61{bottom:114.325867pt;}
.y98{bottom:116.881867pt;}
.y10{bottom:119.053333pt;}
.y17{bottom:120.666667pt;}
.y119{bottom:122.923467pt;}
.ydc{bottom:123.346400pt;}
.y60{bottom:125.656533pt;}
.y156{bottom:127.360533pt;}
.y18c{bottom:127.364533pt;}
.y3a{bottom:128.881867pt;}
.y118{bottom:136.256800pt;}
.ydb{bottom:136.685067pt;}
.y5f{bottom:136.987200pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y16{bottom:140.293333pt;}
.y155{bottom:140.692533pt;}
.y18b{bottom:140.696533pt;}
.y97{bottom:140.881867pt;}
.y39{bottom:144.881867pt;}
.y5e{bottom:148.317867pt;}
.y117{bottom:149.590133pt;}
.yda{bottom:150.017067pt;}
.y96{bottom:152.881867pt;}
.y154{bottom:154.024533pt;}
.y18a{bottom:154.028533pt;}
.y5d{bottom:159.648533pt;}
.y38{bottom:160.881867pt;}
.y116{bottom:162.932800pt;}
.yd9{bottom:163.349067pt;}
.y95{bottom:164.881867pt;}
.y153{bottom:167.356533pt;}
.y189{bottom:167.360533pt;}
.y5c{bottom:170.979200pt;}
.y115{bottom:176.264800pt;}
.yd8{bottom:176.681067pt;}
.y37{bottom:176.881867pt;}
.y152{bottom:180.688533pt;}
.y188{bottom:180.692533pt;}
.y5b{bottom:182.309867pt;}
.y75{bottom:184.881867pt;}
.y94{bottom:188.881867pt;}
.y114{bottom:189.596800pt;}
.yd7{bottom:190.013067pt;}
.y36{bottom:192.881867pt;}
.y5a{bottom:193.640533pt;}
.y151{bottom:194.020533pt;}
.y187{bottom:194.024533pt;}
.y74{bottom:196.881867pt;}
.y93{bottom:200.881867pt;}
.y113{bottom:202.928800pt;}
.yd6{bottom:203.346400pt;}
.y59{bottom:204.971200pt;}
.y150{bottom:207.353867pt;}
.y186{bottom:207.356533pt;}
.y35{bottom:208.881867pt;}
.y92{bottom:212.881867pt;}
.y112{bottom:216.260800pt;}
.yd5{bottom:216.683733pt;}
.y14f{bottom:220.687200pt;}
.y185{bottom:220.688533pt;}
.y73{bottom:220.881867pt;}
.y34{bottom:224.881867pt;}
.y111{bottom:229.592800pt;}
.yd4{bottom:230.015733pt;}
.y72{bottom:232.881867pt;}
.y14e{bottom:234.020533pt;}
.y33{bottom:240.881867pt;}
.y110{bottom:242.924800pt;}
.yd3{bottom:243.347733pt;}
.y71{bottom:244.881867pt;}
.y14d{bottom:247.353867pt;}
.y10f{bottom:256.256800pt;}
.yd2{bottom:256.679733pt;}
.y32{bottom:256.881867pt;}
.y14c{bottom:260.687200pt;}
.y184{bottom:260.688533pt;}
.y10e{bottom:269.590133pt;}
.yd1{bottom:270.013067pt;}
.y31{bottom:272.881867pt;}
.y183{bottom:274.020533pt;}
.y14b{bottom:274.028533pt;}
.y10d{bottom:282.923467pt;}
.yd0{bottom:283.359733pt;}
.y84{bottom:284.881867pt;}
.y182{bottom:287.353867pt;}
.y14a{bottom:287.360533pt;}
.y30{bottom:288.881867pt;}
.y10c{bottom:296.262133pt;}
.ycf{bottom:296.691733pt;}
.y83{bottom:296.881867pt;}
.y181{bottom:300.687200pt;}
.y149{bottom:300.692533pt;}
.y2f{bottom:304.881867pt;}
.ya{bottom:306.382667pt;}
.y82{bottom:308.881867pt;}
.y10b{bottom:309.594133pt;}
.yce{bottom:310.023733pt;}
.y180{bottom:314.020533pt;}
.y148{bottom:314.024533pt;}
.y2e{bottom:320.881867pt;}
.y10a{bottom:322.926133pt;}
.ycd{bottom:323.355733pt;}
.y17f{bottom:327.353867pt;}
.y147{bottom:327.356533pt;}
.y109{bottom:336.258133pt;}
.ycc{bottom:336.687733pt;}
.y2d{bottom:336.881867pt;}
.y17e{bottom:340.687200pt;}
.y146{bottom:340.688533pt;}
.yd{bottom:343.546667pt;}
.y108{bottom:349.590133pt;}
.ycb{bottom:350.019733pt;}
.y9{bottom:351.724000pt;}
.y2c{bottom:352.881867pt;}
.y145{bottom:354.020533pt;}
.y17d{bottom:354.025867pt;}
.y107{bottom:362.923467pt;}
.yca{bottom:363.351733pt;}
.y144{bottom:367.353867pt;}
.y17c{bottom:367.357867pt;}
.y2b{bottom:368.881867pt;}
.y106{bottom:376.258133pt;}
.yc9{bottom:376.683733pt;}
.y143{bottom:380.687200pt;}
.y17b{bottom:380.689867pt;}
.y7c{bottom:380.881867pt;}
.y2a{bottom:384.881867pt;}
.yb{bottom:386.533333pt;}
.y105{bottom:389.590133pt;}
.yc8{bottom:390.015733pt;}
.y7b{bottom:392.881867pt;}
.y142{bottom:394.020533pt;}
.y17a{bottom:394.021867pt;}
.y8{bottom:397.065333pt;}
.y29{bottom:400.881867pt;}
.y104{bottom:402.923467pt;}
.yc7{bottom:403.347733pt;}
.y7a{bottom:404.881867pt;}
.y141{bottom:407.353867pt;}
.y103{bottom:416.259467pt;}
.yc6{bottom:416.679733pt;}
.y28{bottom:416.881867pt;}
.y140{bottom:420.687200pt;}
.y8e{bottom:428.881867pt;}
.y102{bottom:429.591467pt;}
.yc5{bottom:430.013067pt;}
.y27{bottom:432.881867pt;}
.y11{bottom:433.826667pt;}
.y13f{bottom:434.021867pt;}
.y179{bottom:434.024533pt;}
.y8d{bottom:440.881867pt;}
.y7{bottom:442.406667pt;}
.y101{bottom:442.923467pt;}
.yc4{bottom:443.346400pt;}
.y13e{bottom:447.353867pt;}
.y178{bottom:447.356533pt;}
.y26{bottom:448.881867pt;}
.y8c{bottom:452.881867pt;}
.y100{bottom:456.256800pt;}
.yc3{bottom:456.679733pt;}
.y13d{bottom:460.687200pt;}
.y177{bottom:460.688533pt;}
.y3f{bottom:464.881867pt;}
.yff{bottom:469.590133pt;}
.yc2{bottom:470.014400pt;}
.y176{bottom:474.020533pt;}
.y13c{bottom:474.021867pt;}
.y8b{bottom:476.881867pt;}
.y12{bottom:478.426667pt;}
.y25{bottom:480.881867pt;}
.yfe{bottom:482.923467pt;}
.yc1{bottom:483.346400pt;}
.y13b{bottom:487.353867pt;}
.y6{bottom:487.748000pt;}
.y8a{bottom:488.881867pt;}
.yfd{bottom:496.256800pt;}
.yc0{bottom:496.679733pt;}
.y58{bottom:496.881867pt;}
.y13a{bottom:500.687200pt;}
.y89{bottom:500.881867pt;}
.yfc{bottom:509.590133pt;}
.ybf{bottom:510.014400pt;}
.y57{bottom:512.881867pt;}
.y175{bottom:514.020533pt;}
.y139{bottom:514.021867pt;}
.yfb{bottom:522.923467pt;}
.ybe{bottom:523.346400pt;}
.y19{bottom:524.093333pt;}
.ya0{bottom:524.881867pt;}
.y138{bottom:527.353867pt;}
.y174{bottom:527.355200pt;}
.y56{bottom:528.881867pt;}
.y5{bottom:533.089333pt;}
.yfa{bottom:536.256800pt;}
.ybd{bottom:536.679733pt;}
.y9f{bottom:536.881867pt;}
.y137{bottom:540.687200pt;}
.y24{bottom:544.866133pt;}
.y55{bottom:544.881867pt;}
.y79{bottom:548.881867pt;}
.yf9{bottom:549.590133pt;}
.ybc{bottom:550.023733pt;}
.y70{bottom:552.881867pt;}
.y136{bottom:554.025867pt;}
.y173{bottom:554.032533pt;}
.y54{bottom:560.881867pt;}
.ye{bottom:561.706667pt;}
.yf8{bottom:562.926133pt;}
.ybb{bottom:563.355733pt;}
.y6f{bottom:564.881867pt;}
.y135{bottom:567.357867pt;}
.y172{bottom:567.364533pt;}
.y78{bottom:572.881867pt;}
.yf7{bottom:576.258133pt;}
.yba{bottom:576.687733pt;}
.y53{bottom:576.881867pt;}
.y134{bottom:580.689867pt;}
.y171{bottom:580.696533pt;}
.y23{bottom:583.350133pt;}
.y77{bottom:584.881867pt;}
.y6e{bottom:588.881867pt;}
.yf6{bottom:589.590133pt;}
.yb9{bottom:590.019733pt;}
.y52{bottom:592.881867pt;}
.y133{bottom:594.021867pt;}
.y170{bottom:594.028533pt;}
.y76{bottom:596.881867pt;}
.y22{bottom:600.021467pt;}
.y6d{bottom:600.881867pt;}
.yf5{bottom:602.923467pt;}
.yb8{bottom:603.351733pt;}
.y132{bottom:607.353867pt;}
.y16f{bottom:607.360533pt;}
.y51{bottom:608.881867pt;}
.y6c{bottom:612.881867pt;}
.yf4{bottom:616.259467pt;}
.y194{bottom:616.679733pt;}
.yb7{bottom:616.683733pt;}
.y21{bottom:616.692800pt;}
.y1a8{bottom:617.614400pt;}
.y131{bottom:620.687200pt;}
.y16e{bottom:620.692533pt;}
.y50{bottom:624.881867pt;}
.yf3{bottom:629.591467pt;}
.y193{bottom:630.013067pt;}
.yb6{bottom:630.015733pt;}
.y1a7{bottom:630.947733pt;}
.y20{bottom:633.364133pt;}
.y16d{bottom:634.024533pt;}
.y130{bottom:634.028533pt;}
.y4f{bottom:640.881867pt;}
.yf2{bottom:642.923467pt;}
.yb5{bottom:643.347733pt;}
.y1a6{bottom:644.281067pt;}
.y16c{bottom:647.356533pt;}
.y12f{bottom:647.360533pt;}
.y1f{bottom:650.035467pt;}
.yf1{bottom:656.256800pt;}
.yb4{bottom:656.679733pt;}
.y4e{bottom:656.881867pt;}
.y1a5{bottom:657.614400pt;}
.y16b{bottom:660.688533pt;}
.y12e{bottom:660.692533pt;}
.yf0{bottom:669.591467pt;}
.yb3{bottom:670.013067pt;}
.y1a4{bottom:670.947733pt;}
.y4d{bottom:672.881867pt;}
.y16a{bottom:674.020533pt;}
.y12d{bottom:674.024533pt;}
.y9e{bottom:676.881867pt;}
.y1e{bottom:679.374000pt;}
.yef{bottom:682.923467pt;}
.yb2{bottom:683.346400pt;}
.y1a3{bottom:684.281067pt;}
.y169{bottom:687.353867pt;}
.y12c{bottom:687.356533pt;}
.y4c{bottom:688.881867pt;}
.y4{bottom:691.756000pt;}
.yee{bottom:696.256800pt;}
.yb1{bottom:696.679733pt;}
.y1a2{bottom:697.614400pt;}
.y12b{bottom:700.688533pt;}
.y168{bottom:700.693867pt;}
.y9d{bottom:700.881867pt;}
.y4b{bottom:704.881867pt;}
.yed{bottom:709.590133pt;}
.yb0{bottom:710.013067pt;}
.y1a1{bottom:710.947733pt;}
.y9c{bottom:712.881867pt;}
.y1d{bottom:713.771200pt;}
.y12a{bottom:714.020533pt;}
.y167{bottom:714.025867pt;}
.y4a{bottom:720.881867pt;}
.yec{bottom:722.923467pt;}
.yaf{bottom:723.346400pt;}
.y192{bottom:723.347733pt;}
.y1a0{bottom:724.281067pt;}
.y9b{bottom:724.881867pt;}
.y13{bottom:725.040000pt;}
.y129{bottom:727.353867pt;}
.y166{bottom:727.357867pt;}
.yeb{bottom:736.256800pt;}
.y191{bottom:736.679733pt;}
.yae{bottom:736.681067pt;}
.y49{bottom:736.881867pt;}
.y19f{bottom:737.614400pt;}
.y165{bottom:740.689867pt;}
.y128{bottom:740.696533pt;}
.y1c{bottom:748.251200pt;}
.yea{bottom:749.590133pt;}
.yad{bottom:750.013067pt;}
.y19e{bottom:750.950400pt;}
.y48{bottom:752.881867pt;}
.y164{bottom:754.021867pt;}
.y127{bottom:754.028533pt;}
.ye9{bottom:762.923467pt;}
.yac{bottom:763.346400pt;}
.y19d{bottom:764.282400pt;}
.y163{bottom:767.353867pt;}
.y126{bottom:767.360533pt;}
.y47{bottom:768.881867pt;}
.ye8{bottom:776.263467pt;}
.yab{bottom:776.679733pt;}
.y190{bottom:776.681067pt;}
.y81{bottom:776.881867pt;}
.y19c{bottom:777.614400pt;}
.y162{bottom:780.687200pt;}
.y125{bottom:780.692533pt;}
.y1b{bottom:782.907200pt;}
.y46{bottom:784.881867pt;}
.y80{bottom:788.881867pt;}
.ye7{bottom:789.595467pt;}
.yaa{bottom:790.013067pt;}
.y19b{bottom:790.947733pt;}
.y161{bottom:794.020533pt;}
.y124{bottom:794.024533pt;}
.y45{bottom:800.881867pt;}
.ye6{bottom:802.927467pt;}
.ya9{bottom:803.346400pt;}
.y19a{bottom:804.281067pt;}
.y3{bottom:805.081333pt;}
.y123{bottom:807.356533pt;}
.y160{bottom:807.360533pt;}
.y7f{bottom:812.881867pt;}
.y88{bottom:815.353867pt;}
.ye5{bottom:816.259467pt;}
.ya8{bottom:816.679733pt;}
.y18f{bottom:816.686000pt;}
.y44{bottom:816.881867pt;}
.y199{bottom:817.615733pt;}
.y122{bottom:820.688533pt;}
.y15f{bottom:820.692533pt;}
.y7e{bottom:824.881867pt;}
.y87{bottom:827.353867pt;}
.ye4{bottom:829.591467pt;}
.ya7{bottom:830.018000pt;}
.y198{bottom:830.947733pt;}
.y43{bottom:832.881867pt;}
.y121{bottom:834.020533pt;}
.y15e{bottom:834.024533pt;}
.y7d{bottom:836.881867pt;}
.y86{bottom:839.353867pt;}
.ye3{bottom:842.923467pt;}
.ya6{bottom:843.350000pt;}
.y197{bottom:844.281067pt;}
.y120{bottom:847.353867pt;}
.y15d{bottom:847.356533pt;}
.y42{bottom:848.881867pt;}
.y85{bottom:851.353867pt;}
.ye2{bottom:856.256800pt;}
.ya5{bottom:856.682000pt;}
.y2{bottom:857.092000pt;}
.y196{bottom:857.614400pt;}
.y15c{bottom:860.688533pt;}
.y11f{bottom:860.689867pt;}
.y6b{bottom:863.353867pt;}
.y41{bottom:864.881867pt;}
.ye1{bottom:869.590133pt;}
.ya4{bottom:870.014000pt;}
.y195{bottom:870.947733pt;}
.y15b{bottom:874.020533pt;}
.y11e{bottom:874.021867pt;}
.y6a{bottom:875.353867pt;}
.y1{bottom:879.748000pt;}
.y40{bottom:880.881867pt;}
.ya3{bottom:887.126000pt;}
.y69{bottom:887.353867pt;}
.he{height:24.384000pt;}
.h11{height:28.448000pt;}
.h4{height:29.333333pt;}
.hb{height:34.000000pt;}
.h15{height:34.320000pt;}
.h14{height:36.000000pt;}
.h12{height:38.151111pt;}
.h13{height:38.832000pt;}
.hf{height:40.000000pt;}
.h10{height:43.146667pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.h5{height:60.213542pt;}
.hd{height:77.664000pt;}
.h7{height:102.413333pt;}
.hc{height:103.552000pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.ha{height:944.666667pt;}
.h9{height:944.881333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:665.197333pt;}
.wa{width:665.333333pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x11{left:64.252000pt;}
.xb{left:75.590533pt;}
.x19{left:83.149600pt;}
.xd{left:86.929200pt;}
.x17{left:94.490533pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x5{left:154.760000pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.xc{left:261.356400pt;}
.x12{left:313.211733pt;}
.x14{left:324.527733pt;}
.x13{left:336.377867pt;}
.xf{left:347.716533pt;}
.x1a{left:355.275600pt;}
.xe{left:359.055200pt;}
.x18{left:366.614133pt;}
.xa{left:397.317067pt;}
.x15{left:496.226667pt;}
.x16{left:498.821333pt;}
.x10{left:596.641200pt;}
}




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