
    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_eee1cbf2bc679c2170b2227f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.179800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e62904441332a0113078db58.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.179800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_eee1cbf2bc679c2170b2227f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.179800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1cf22651b37ccd2a4a934f9a.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_cfacf32ed5db9343015017d8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fc040014865297235ee69a77.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_eee1cbf2bc679c2170b2227f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.179800;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mf4{transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243668,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.243732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243732,0.000000,0.000000,0.250000,0,0);}
.me1{transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244288,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244709,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244812,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.245112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245112,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245200,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245318,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245332,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245594,0.000000,0.000000,0.250000,0,0);}
.me8{transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245768,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245906,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245985,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246012,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246056,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246074,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246179,0.000000,0.000000,0.250000,0,0);}
.mb9{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246350,0.000000,0.000000,0.250000,0,0);}
.md9{transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246400,0.000000,0.000000,0.250000,0,0);}
.mda{transform:matrix(0.246421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246421,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246488,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246550,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246615,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.246647,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246647,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246647,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246674,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.246694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246694,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246697,0.000000,0.000000,0.250000,0,0);}
.mf3{transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246704,0.000000,0.000000,0.250000,0,0);}
.mf2{transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246706,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246735,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246826,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247021,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247088,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247159,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247168,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247209,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247394,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247409,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247424,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);}
.me2{transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247559,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.mbf{transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247797,0.000000,0.000000,0.250000,0,0);}
.me4{transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247821,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247874,0.000000,0.000000,0.250000,0,0);}
.mcf{transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247915,0.000000,0.000000,0.250000,0,0);}
.md5{transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247938,0.000000,0.000000,0.250000,0,0);}
.me7{transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247953,0.000000,0.000000,0.250000,0,0);}
.me9{transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248006,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248047,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248112,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248118,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248126,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248191,0.000000,0.000000,0.250000,0,0);}
.md0{transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248241,0.000000,0.000000,0.250000,0,0);}
.mf1{transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248279,0.000000,0.000000,0.250000,0,0);}
.mdf{transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248306,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248309,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248326,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248335,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248359,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248385,0.000000,0.000000,0.250000,0,0);}
.m4e{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);}
.m89{transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248494,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248515,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248521,0.000000,0.000000,0.250000,0,0);}
.mbb{transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248582,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248609,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248626,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248671,0.000000,0.000000,0.250000,0,0);}
.md4{transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248706,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248726,0.000000,0.000000,0.250000,0,0);}
.mba{transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248738,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248747,0.000000,0.000000,0.250000,0,0);}
.m6b{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);}
.mc{transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248774,0.000000,0.000000,0.250000,0,0);}
.mea{transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248788,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.mf8{transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248850,0.000000,0.000000,0.250000,0,0);}
.mfa{transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248882,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248900,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248906,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248924,0.000000,0.000000,0.250000,0,0);}
.mbc{transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248956,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248962,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248997,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249024,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249038,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249044,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249056,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249218,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249221,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249241,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.med{transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249286,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249303,0.000000,0.000000,0.250000,0,0);}
.me3{transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249306,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249326,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249341,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249365,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249415,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249422,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249476,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249538,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249576,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249635,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249656,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249685,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249718,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249726,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249736,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249744,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249779,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249824,0.000000,0.000000,0.250000,0,0);}
.mc8{transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249832,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249894,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249912,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249929,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249929,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);}
.m9d{transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250024,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250028,0.000000,0.000000,0.250000,0,0);}
.mef{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250053,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250100,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250124,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);}
.mc0{transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250179,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250194,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250262,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250309,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250312,0.000000,0.000000,0.250000,0,0);}
.mde{transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250318,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250382,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250416,0.000000,0.000000,0.250000,0,0);}
.mf6{transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250418,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250429,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250438,0.000000,0.000000,0.250000,0,0);}
.meb{transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250447,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.mfe{transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250464,0.000000,0.000000,0.250000,0,0);}
.mfd{transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250468,0.000000,0.000000,0.250000,0,0);}
.m9e{transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250506,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.md3{transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250597,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250606,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250641,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250665,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250671,0.000000,0.000000,0.250000,0,0);}
.md6{transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250682,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m62{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);}
.m86{transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250724,0.000000,0.000000,0.250000,0,0);}
.mff{transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250757,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250779,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250782,0.000000,0.000000,0.250000,0,0);}
.mec{transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250788,0.000000,0.000000,0.250000,0,0);}
.mdc{transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250832,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250853,0.000000,0.000000,0.250000,0,0);}
.mc9{transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250862,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.mcb{transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250906,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250924,0.000000,0.000000,0.250000,0,0);}
.mf0{transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250943,0.000000,0.000000,0.250000,0,0);}
.mfc{transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250961,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);}
.ma6{transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250985,0.000000,0.000000,0.250000,0,0);}
.mc3{transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250991,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250997,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250999,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251044,0.000000,0.000000,0.250000,0,0);}
.mcd{transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251126,0.000000,0.000000,0.250000,0,0);}
.mfb{transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251207,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251232,0.000000,0.000000,0.250000,0,0);}
.md8{transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251256,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251262,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251326,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251344,0.000000,0.000000,0.250000,0,0);}
.mf7{transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251357,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251365,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251382,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251388,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251429,0.000000,0.000000,0.250000,0,0);}
.mc4{transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251465,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251488,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251582,0.000000,0.000000,0.250000,0,0);}
.md2{transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251650,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251674,0.000000,0.000000,0.250000,0,0);}
.mc1{transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251703,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251747,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251774,0.000000,0.000000,0.250000,0,0);}
.mce{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251791,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251800,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251818,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251859,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251865,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.251906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251906,0.000000,0.000000,0.250000,0,0);}
.mdd{transform:matrix(0.251924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251924,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251944,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251953,0.000000,0.000000,0.250000,0,0);}
.mf5{transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251954,0.000000,0.000000,0.250000,0,0);}
.mbe{transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252079,0.000000,0.000000,0.250000,0,0);}
.me0{transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252262,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252265,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.mc2{transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252382,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252435,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252488,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252559,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252594,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252603,0.000000,0.000000,0.250000,0,0);}
.md7{transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252644,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252712,0.000000,0.000000,0.250000,0,0);}
.mbd{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.mcc{transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252718,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252735,0.000000,0.000000,0.250000,0,0);}
.md1{transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252759,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252794,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253003,0.000000,0.000000,0.250000,0,0);}
.mca{transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253056,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253171,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253229,0.000000,0.000000,0.250000,0,0);}
.mc6{transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253297,0.000000,0.000000,0.250000,0,0);}
.mf9{transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253389,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253394,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253544,0.000000,0.000000,0.250000,0,0);}
.mee{transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253771,0.000000,0.000000,0.250000,0,0);}
.me6{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254091,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254097,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254403,0.000000,0.000000,0.250000,0,0);}
.mc5{transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254944,0.000000,0.000000,0.250000,0,0);}
.mdb{transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254985,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255335,0.000000,0.000000,0.250000,0,0);}
.mc7{transform:matrix(0.255615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255615,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.255797,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255797,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255797,0.000000,0.000000,0.250000,0,0);}
.me5{transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256297,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256924,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257068,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257069,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-16.830000px;}
.v4{vertical-align:-13.860000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:16.830000px;}
.v1{vertical-align:18.840600px;}
.ls36{letter-spacing:-1.567740px;}
.ls35{letter-spacing:-1.377000px;}
.ls46{letter-spacing:-1.364160px;}
.ls33{letter-spacing:-1.020000px;}
.ls34{letter-spacing:-0.969000px;}
.lsb{letter-spacing:-0.960000px;}
.ls3c{letter-spacing:-0.918000px;}
.ls22{letter-spacing:-0.612000px;}
.ls3b{letter-spacing:-0.561000px;}
.ls31{letter-spacing:-0.510000px;}
.ls44{letter-spacing:-0.504000px;}
.lsc{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.459000px;}
.ls2c{letter-spacing:-0.408000px;}
.ls1f{letter-spacing:-0.357000px;}
.ls27{letter-spacing:-0.306000px;}
.ls21{letter-spacing:-0.255000px;}
.ls43{letter-spacing:-0.252000px;}
.ls1e{letter-spacing:-0.204000px;}
.lse{letter-spacing:-0.153000px;}
.ls42{letter-spacing:-0.126000px;}
.ls20{letter-spacing:-0.102000px;}
.ls45{letter-spacing:-0.084000px;}
.ls28{letter-spacing:-0.051000px;}
.ls2f{letter-spacing:-0.048000px;}
.ls3d{letter-spacing:-0.042000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000120px;}
.ls1a{letter-spacing:0.025500px;}
.ls39{letter-spacing:0.038447px;}
.ls3f{letter-spacing:0.042000px;}
.ls2e{letter-spacing:0.048000px;}
.ls11{letter-spacing:0.051000px;}
.ls37{letter-spacing:0.076500px;}
.ls0{letter-spacing:0.078000px;}
.ls3e{letter-spacing:0.084000px;}
.ls12{letter-spacing:0.102000px;}
.ls40{letter-spacing:0.105000px;}
.ls2{letter-spacing:0.111000px;}
.ls2d{letter-spacing:0.127500px;}
.ls24{letter-spacing:0.153000px;}
.ls1{letter-spacing:0.168000px;}
.ls30{letter-spacing:0.178500px;}
.ls10{letter-spacing:0.204000px;}
.ls32{letter-spacing:0.229500px;}
.ls41{letter-spacing:0.252000px;}
.ls2a{letter-spacing:0.255000px;}
.ls19{letter-spacing:0.280500px;}
.ls3a{letter-spacing:0.294000px;}
.ls29{letter-spacing:0.306000px;}
.ls7{letter-spacing:0.331500px;}
.ls38{letter-spacing:0.357000px;}
.ls26{letter-spacing:0.382500px;}
.ls25{letter-spacing:0.408000px;}
.ls6{letter-spacing:0.420000px;}
.ls13{letter-spacing:0.459000px;}
.lsa{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.510000px;}
.ls17{letter-spacing:0.535500px;}
.ls4{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.561000px;}
.ls47{letter-spacing:0.570000px;}
.ls15{letter-spacing:0.612000px;}
.ls1d{letter-spacing:0.637500px;}
.lsd{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.840000px;}
.ls16{letter-spacing:0.892500px;}
.ls3{letter-spacing:0.960000px;}
.ls5{letter-spacing:0.966000px;}
.ls1c{letter-spacing:0.969000px;}
.ls23{letter-spacing:1.020000px;}
.ls1b{letter-spacing:1.071000px;}
.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;}
}
.ws1b{word-spacing:-15.552000px;}
.ws3a{word-spacing:-14.739000px;}
.ws79{word-spacing:-14.178000px;}
.ws6a{word-spacing:-14.127000px;}
.ws1{word-spacing:-13.968000px;}
.ws54{word-spacing:-13.719000px;}
.ws4d{word-spacing:-8.223240px;}
.ws7a{word-spacing:-6.772080px;}
.ws19{word-spacing:-3.408000px;}
.ws9{word-spacing:-3.312000px;}
.ws13{word-spacing:-2.928000px;}
.ws7b{word-spacing:-2.805000px;}
.ws1a{word-spacing:-2.640000px;}
.ws36{word-spacing:-2.193000px;}
.ws8{word-spacing:-2.160000px;}
.ws22{word-spacing:-2.142000px;}
.ws2b{word-spacing:-2.091000px;}
.ws12{word-spacing:-2.064000px;}
.ws5f{word-spacing:-2.040000px;}
.ws5b{word-spacing:-2.016000px;}
.ws3c{word-spacing:-1.989000px;}
.ws4b{word-spacing:-1.938000px;}
.ws56{word-spacing:-1.887000px;}
.ws80{word-spacing:-1.806000px;}
.ws1e{word-spacing:-1.785000px;}
.ws7c{word-spacing:-1.764000px;}
.ws49{word-spacing:-1.734000px;}
.ws8b{word-spacing:-1.722000px;}
.ws53{word-spacing:-1.683000px;}
.ws48{word-spacing:-1.632000px;}
.ws7f{word-spacing:-1.596000px;}
.ws65{word-spacing:-1.581000px;}
.ws6f{word-spacing:-1.479000px;}
.ws35{word-spacing:-1.428000px;}
.ws63{word-spacing:-1.392000px;}
.ws8c{word-spacing:-1.386000px;}
.ws69{word-spacing:-1.377000px;}
.ws89{word-spacing:-1.302000px;}
.ws32{word-spacing:-1.275000px;}
.ws27{word-spacing:-1.224000px;}
.ws8d{word-spacing:-1.218000px;}
.ws67{word-spacing:-1.173000px;}
.ws2e{word-spacing:-1.122000px;}
.ws8e{word-spacing:-1.092000px;}
.ws6d{word-spacing:-1.071000px;}
.ws3d{word-spacing:-1.020000px;}
.ws84{word-spacing:-1.008000px;}
.ws57{word-spacing:-0.969000px;}
.wsf{word-spacing:-0.960000px;}
.ws44{word-spacing:-0.918000px;}
.ws33{word-spacing:-0.867000px;}
.ws3b{word-spacing:-0.840000px;}
.ws37{word-spacing:-0.816000px;}
.ws17{word-spacing:-0.768000px;}
.ws4a{word-spacing:-0.765000px;}
.ws2a{word-spacing:-0.714000px;}
.ws62{word-spacing:-0.672000px;}
.ws6c{word-spacing:-0.663000px;}
.ws47{word-spacing:-0.612000px;}
.ws7{word-spacing:-0.528000px;}
.ws31{word-spacing:-0.510000px;}
.ws2{word-spacing:-0.480000px;}
.ws3f{word-spacing:-0.459000px;}
.ws86{word-spacing:-0.420000px;}
.ws60{word-spacing:-0.408000px;}
.ws82{word-spacing:-0.378000px;}
.wsb{word-spacing:-0.336000px;}
.ws77{word-spacing:-0.306000px;}
.ws5e{word-spacing:-0.255000px;}
.ws55{word-spacing:-0.204000px;}
.ws43{word-spacing:-0.153000px;}
.ws5c{word-spacing:-0.102000px;}
.ws50{word-spacing:-0.051000px;}
.ws85{word-spacing:-0.042000px;}
.ws0{word-spacing:0.000000px;}
.ws87{word-spacing:0.042000px;}
.ws73{word-spacing:0.051000px;}
.ws6b{word-spacing:0.102000px;}
.ws42{word-spacing:0.153000px;}
.ws61{word-spacing:0.192000px;}
.ws52{word-spacing:0.204000px;}
.ws11{word-spacing:0.240000px;}
.ws30{word-spacing:0.255000px;}
.ws1d{word-spacing:0.294000px;}
.ws29{word-spacing:0.357000px;}
.ws75{word-spacing:0.408000px;}
.ws2c{word-spacing:0.459000px;}
.ws28{word-spacing:0.510000px;}
.ws68{word-spacing:0.561000px;}
.ws88{word-spacing:0.588000px;}
.ws2d{word-spacing:0.612000px;}
.ws51{word-spacing:0.663000px;}
.ws21{word-spacing:0.714000px;}
.ws71{word-spacing:0.765000px;}
.ws39{word-spacing:0.816000px;}
.ws26{word-spacing:0.867000px;}
.ws76{word-spacing:0.918000px;}
.ws81{word-spacing:0.966000px;}
.ws25{word-spacing:1.020000px;}
.ws4e{word-spacing:1.071000px;}
.ws20{word-spacing:1.122000px;}
.ws72{word-spacing:1.173000px;}
.ws2f{word-spacing:1.224000px;}
.ws46{word-spacing:1.275000px;}
.ws8a{word-spacing:1.302000px;}
.ws40{word-spacing:1.326000px;}
.ws8f{word-spacing:1.364160px;}
.ws64{word-spacing:1.377000px;}
.ws34{word-spacing:1.428000px;}
.ws83{word-spacing:1.470000px;}
.ws66{word-spacing:1.479000px;}
.ws4f{word-spacing:1.530000px;}
.ws74{word-spacing:1.567740px;}
.ws4c{word-spacing:1.581000px;}
.ws41{word-spacing:1.632000px;}
.ws1c{word-spacing:1.680000px;}
.ws38{word-spacing:1.683000px;}
.ws7d{word-spacing:1.722000px;}
.ws6e{word-spacing:1.734000px;}
.ws7e{word-spacing:1.764000px;}
.ws58{word-spacing:1.785000px;}
.ws70{word-spacing:1.836000px;}
.ws3e{word-spacing:1.887000px;}
.ws5d{word-spacing:1.938000px;}
.ws59{word-spacing:1.968000px;}
.ws78{word-spacing:1.989000px;}
.ws5a{word-spacing:2.016000px;}
.ws45{word-spacing:2.040000px;}
.ws1f{word-spacing:2.091000px;}
.ws23{word-spacing:2.142000px;}
.ws10{word-spacing:2.256000px;}
.ws18{word-spacing:2.544000px;}
.ws14{word-spacing:3.264000px;}
.ws6{word-spacing:3.312000px;}
.ws4{word-spacing:3.600000px;}
.ws15{word-spacing:4.032000px;}
.ws16{word-spacing:4.272000px;}
.ws3{word-spacing:4.944000px;}
.ws5{word-spacing:5.328000px;}
.wsd{word-spacing:5.904000px;}
.wsc{word-spacing:6.096000px;}
.wsa{word-spacing:11.568000px;}
.wse{word-spacing:15.168000px;}
.ws91{word-spacing:507.984000px;}
.ws92{word-spacing:541.272000px;}
.ws90{word-spacing:555.009000px;}
.ws24{word-spacing:1492.776600px;}
._8{margin-left:-23.352000px;}
._3{margin-left:-19.866000px;}
._1{margin-left:-17.904000px;}
._e{margin-left:-16.320000px;}
._11{margin-left:-14.982000px;}
._12{margin-left:-13.853400px;}
._5{margin-left:-12.528000px;}
._6{margin-left:-10.698000px;}
._15{margin-left:-9.408000px;}
._d{margin-left:-5.742600px;}
._9{margin-left:-4.628400px;}
._0{margin-left:-2.886000px;}
._7{margin-left:-1.809600px;}
._f{width:1.332900px;}
._4{width:3.264000px;}
._2{width:11.280000px;}
._a{width:15.128400px;}
._17{width:32.676000px;}
._16{width:34.313880px;}
._b{width:43.596000px;}
._13{width:46.787640px;}
._14{width:48.762000px;}
._c{width:793.611000px;}
._10{width:2016.866400px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:24.360000px;}
.fs2{font-size:27.840000px;}
.fs9{font-size:29.580000px;}
.fs0{font-size:39.000000px;}
.fs1{font-size:42.000000px;}
.fs3{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs5{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.848300px;}
.yf2{bottom:85.027950px;}
.y27{bottom:85.039350px;}
.y21e{bottom:85.041300px;}
.y26{bottom:97.376850px;}
.yf1{bottom:100.021950px;}
.y127{bottom:100.045950px;}
.y64{bottom:100.085400px;}
.ybb{bottom:100.285350px;}
.y15d{bottom:100.311450px;}
.y98{bottom:100.374900px;}
.y1ee{bottom:101.056350px;}
.y21d{bottom:101.785050px;}
.y25{bottom:109.714350px;}
.y24{bottom:113.179350px;}
.y1ed{bottom:113.608350px;}
.yf0{bottom:115.015950px;}
.y126{bottom:115.052400px;}
.y63{bottom:115.131450px;}
.y18b{bottom:115.132500px;}
.yba{bottom:115.528200px;}
.y15c{bottom:115.581000px;}
.y97{bottom:115.710150px;}
.y21c{bottom:118.528800px;}
.yef{bottom:130.009950px;}
.y125{bottom:130.058850px;}
.y181{bottom:130.177500px;}
.y62{bottom:130.178700px;}
.yb9{bottom:130.777200px;}
.y15b{bottom:130.855500px;}
.y96{bottom:131.045700px;}
.y21b{bottom:135.272550px;}
.y1ec{bottom:135.451950px;}
.y2d{bottom:137.038950px;}
.yee{bottom:145.000050px;}
.y124{bottom:145.064550px;}
.y61{bottom:145.223700px;}
.yb8{bottom:146.023200px;}
.y15a{bottom:146.127450px;}
.y1ba{bottom:146.380950px;}
.y2c{bottom:152.020200px;}
.y95{bottom:159.130800px;}
.yed{bottom:159.990300px;}
.y123{bottom:160.071300px;}
.y60{bottom:160.269750px;}
.yb7{bottom:161.266050px;}
.y159{bottom:161.399550px;}
.y1b9{bottom:161.716500px;}
.y2b{bottom:167.001450px;}
.yec{bottom:174.980550px;}
.y122{bottom:175.078050px;}
.y5f{bottom:175.315800px;}
.yb6{bottom:176.515050px;}
.y158{bottom:176.671500px;}
.y1b8{bottom:177.051900px;}
.y1eb{bottom:180.408450px;}
.y2a{bottom:181.982700px;}
.yeb{bottom:189.970800px;}
.y121{bottom:190.084800px;}
.y5e{bottom:190.361850px;}
.y18a{bottom:190.362900px;}
.yb5{bottom:191.761050px;}
.y157{bottom:191.938500px;}
.y1b7{bottom:192.387300px;}
.y1ea{bottom:195.606450px;}
.y29{bottom:196.963950px;}
.y94{bottom:204.227550px;}
.yea{bottom:204.960900px;}
.y120{bottom:205.091550px;}
.y5d{bottom:205.407900px;}
.yb4{bottom:207.006900px;}
.y156{bottom:207.213000px;}
.y1b6{bottom:207.722700px;}
.y1e9{bottom:210.802050px;}
.y28{bottom:211.945200px;}
.y93{bottom:219.565800px;}
.ye9{bottom:219.951150px;}
.y11f{bottom:220.098000px;}
.y180{bottom:220.453950px;}
.yb3{bottom:222.252900px;}
.y155{bottom:222.487500px;}
.y1b5{bottom:223.058100px;}
.y1e8{bottom:225.997800px;}
.y5c{bottom:233.209800px;}
.y92{bottom:234.904050px;}
.ye8{bottom:234.941250px;}
.y11e{bottom:235.104450px;}
.y17f{bottom:235.500000px;}
.yb2{bottom:237.498750px;}
.y154{bottom:237.759600px;}
.y1b4{bottom:238.390650px;}
.y1e7{bottom:241.193550px;}
.ye6{bottom:249.931500px;}
.y11d{bottom:250.111050px;}
.y91{bottom:250.242300px;}
.y17e{bottom:250.546050px;}
.y1d{bottom:252.538500px;}
.yb1{bottom:252.744750px;}
.y153{bottom:253.031550px;}
.y1b3{bottom:253.728900px;}
.ye7{bottom:254.139000px;}
.y1e6{bottom:256.386900px;}
.ye5{bottom:264.917850px;}
.y11c{bottom:265.117500px;}
.y90{bottom:265.577700px;}
.y17d{bottom:265.592100px;}
.y1c{bottom:267.538500px;}
.yb0{bottom:267.987600px;}
.y152{bottom:268.303650px;}
.y1b2{bottom:269.064300px;}
.y1e5{bottom:271.584900px;}
.y5b{bottom:278.020800px;}
.ye4{bottom:279.911850px;}
.y11b{bottom:280.124100px;}
.y17c{bottom:280.638150px;}
.y8f{bottom:280.913250px;}
.yaf{bottom:283.236600px;}
.y151{bottom:283.575600px;}
.y1b1{bottom:284.399700px;}
.y1e4{bottom:286.780650px;}
.y1b{bottom:286.786500px;}
.y5a{bottom:293.065800px;}
.ye3{bottom:294.902100px;}
.y11a{bottom:295.130550px;}
.y17b{bottom:295.685400px;}
.y189{bottom:295.687500px;}
.y8e{bottom:296.248650px;}
.yae{bottom:298.482600px;}
.y150{bottom:298.847700px;}
.y1b0{bottom:299.726550px;}
.y1a{bottom:301.786500px;}
.y1e3{bottom:301.971750px;}
.y59{bottom:308.111850px;}
.y119{bottom:310.137000px;}
.y17a{bottom:310.730400px;}
.y188{bottom:310.732500px;}
.y8d{bottom:311.584050px;}
.yad{bottom:313.728450px;}
.y14f{bottom:314.119650px;}
.y1af{bottom:315.064800px;}
.y19{bottom:316.786500px;}
.y1e2{bottom:317.169750px;}
.y58{bottom:323.157900px;}
.y118{bottom:325.143600px;}
.y179{bottom:325.776450px;}
.y187{bottom:325.777500px;}
.ye2{bottom:326.900100px;}
.y8c{bottom:326.919450px;}
.yac{bottom:328.974450px;}
.y14e{bottom:329.391750px;}
.y1ae{bottom:330.403050px;}
.y18{bottom:331.786500px;}
.y1e1{bottom:332.367750px;}
.y57{bottom:338.203950px;}
.y117{bottom:340.150050px;}
.y178{bottom:340.822500px;}
.ye1{bottom:341.009100px;}
.y8b{bottom:342.254850px;}
.yab{bottom:344.220450px;}
.y14d{bottom:344.663700px;}
.y1ad{bottom:345.741300px;}
.y17{bottom:346.786500px;}
.y1e0{bottom:347.563500px;}
.y56{bottom:353.250000px;}
.ye0{bottom:355.117950px;}
.y116{bottom:355.156650px;}
.y177{bottom:355.868550px;}
.y8a{bottom:357.590250px;}
.yaa{bottom:359.466300px;}
.y14c{bottom:359.935800px;}
.y1ac{bottom:361.076850px;}
.y16{bottom:361.786500px;}
.y1df{bottom:362.754600px;}
.y55{bottom:368.296050px;}
.ydf{bottom:369.226950px;}
.y115{bottom:370.162650px;}
.y176{bottom:370.914600px;}
.y186{bottom:370.915650px;}
.y89{bottom:372.922800px;}
.ya9{bottom:374.709150px;}
.y14b{bottom:375.207750px;}
.y1ab{bottom:376.400850px;}
.y15{bottom:376.786500px;}
.y1de{bottom:377.952600px;}
.y54{bottom:383.342100px;}
.y114{bottom:385.169400px;}
.y175{bottom:385.960650px;}
.y88{bottom:388.261050px;}
.ya8{bottom:389.958150px;}
.y14a{bottom:390.479850px;}
.y1aa{bottom:391.739100px;}
.y14{bottom:391.786500px;}
.y1dd{bottom:393.150600px;}
.y53{bottom:398.388150px;}
.y113{bottom:400.176150px;}
.yde{bottom:400.336200px;}
.y174{bottom:401.006700px;}
.y87{bottom:403.596450px;}
.ya7{bottom:405.204150px;}
.y149{bottom:405.749250px;}
.y13{bottom:406.786500px;}
.y1a9{bottom:407.077350px;}
.y1dc{bottom:408.346350px;}
.y52{bottom:413.437500px;}
.y112{bottom:415.182600px;}
.ydd{bottom:415.330200px;}
.y172{bottom:416.052750px;}
.y86{bottom:418.931850px;}
.y173{bottom:420.260250px;}
.ya6{bottom:420.450000px;}
.y21a{bottom:421.003950px;}
.y148{bottom:421.023750px;}
.y12{bottom:421.786500px;}
.y1a8{bottom:422.415600px;}
.y1db{bottom:423.539700px;}
.y51{bottom:428.482500px;}
.y111{bottom:430.189200px;}
.ydc{bottom:430.324200px;}
.y171{bottom:431.098800px;}
.y219{bottom:433.341450px;}
.y85{bottom:434.244600px;}
.ya5{bottom:435.696000px;}
.y147{bottom:436.295850px;}
.y1a7{bottom:437.753850px;}
.y1da{bottom:438.737700px;}
.y11{bottom:441.034500px;}
.y50{bottom:443.527500px;}
.y110{bottom:445.195650px;}
.ydb{bottom:445.314300px;}
.y218{bottom:445.678950px;}
.y170{bottom:446.144850px;}
.y217{bottom:449.143950px;}
.y84{bottom:449.582850px;}
.ya4{bottom:450.942000px;}
.y146{bottom:451.567800px;}
.y1a6{bottom:453.089250px;}
.y1d9{bottom:453.933450px;}
.y10{bottom:456.034500px;}
.y4f{bottom:458.572500px;}
.y10f{bottom:460.201200px;}
.yda{bottom:460.304550px;}
.y16f{bottom:461.190900px;}
.y216{bottom:461.481450px;}
.y83{bottom:464.921100px;}
.ya3{bottom:466.187850px;}
.y145{bottom:466.839900px;}
.y1a5{bottom:468.410400px;}
.y1d8{bottom:469.126800px;}
.y215{bottom:470.353950px;}
.y4e{bottom:473.618550px;}
.y10e{bottom:475.207950px;}
.yd9{bottom:475.294650px;}
.y16e{bottom:476.236950px;}
.y82{bottom:480.259350px;}
.ya2{bottom:481.433850px;}
.y144{bottom:482.111850px;}
.y214{bottom:482.691450px;}
.y1a4{bottom:483.748650px;}
.y1d7{bottom:484.324800px;}
.yf{bottom:486.178500px;}
.y4d{bottom:488.665650px;}
.y10d{bottom:490.214700px;}
.yd8{bottom:490.265850px;}
.y16d{bottom:491.283150px;}
.y213{bottom:495.028950px;}
.y81{bottom:495.597600px;}
.ya1{bottom:496.679700px;}
.y143{bottom:497.381400px;}
.y1a3{bottom:499.086900px;}
.y1d6{bottom:499.520550px;}
.ye{bottom:501.178500px;}
.y4c{bottom:503.710650px;}
.y10c{bottom:505.221450px;}
.yd7{bottom:505.259850px;}
.y16c{bottom:506.329200px;}
.y212{bottom:507.366450px;}
.y80{bottom:510.935850px;}
.ya0{bottom:511.925700px;}
.y142{bottom:512.655900px;}
.y1a2{bottom:514.425150px;}
.y1d5{bottom:514.716300px;}
.y4b{bottom:518.756700px;}
.y185{bottom:519.079650px;}
.y211{bottom:519.703950px;}
.y10b{bottom:520.228200px;}
.yd6{bottom:520.253850px;}
.yd{bottom:520.426500px;}
.y16b{bottom:521.375250px;}
.y7f{bottom:526.274100px;}
.y9f{bottom:527.171700px;}
.y141{bottom:527.927850px;}
.y1a1{bottom:529.763400px;}
.y1d4{bottom:529.909650px;}
.y210{bottom:532.041450px;}
.y4a{bottom:533.802750px;}
.y10a{bottom:535.234650px;}
.yd5{bottom:535.247850px;}
.yc{bottom:535.426500px;}
.y16a{bottom:536.421300px;}
.y7e{bottom:541.612350px;}
.y9e{bottom:542.417550px;}
.y140{bottom:543.197400px;}
.y1a0{bottom:545.101650px;}
.y1d3{bottom:545.107650px;}
.y20f{bottom:547.843950px;}
.y49{bottom:548.848800px;}
.y109{bottom:550.240200px;}
.yd4{bottom:550.241850px;}
.yb{bottom:550.426500px;}
.y169{bottom:551.467350px;}
.y7d{bottom:556.950600px;}
.y9d{bottom:557.663550px;}
.y13f{bottom:558.466950px;}
.y20e{bottom:560.181450px;}
.y1d2{bottom:560.303400px;}
.y19f{bottom:560.437200px;}
.y48{bottom:563.894850px;}
.y184{bottom:563.895900px;}
.yd3{bottom:565.235850px;}
.y108{bottom:565.246950px;}
.ya{bottom:565.426500px;}
.y168{bottom:566.513400px;}
.y20d{bottom:569.053950px;}
.y7c{bottom:572.286000px;}
.y9c{bottom:572.909400px;}
.y13e{bottom:573.741450px;}
.y1d1{bottom:575.496750px;}
.y19e{bottom:575.769750px;}
.y47{bottom:578.940900px;}
.yd2{bottom:580.226100px;}
.y107{bottom:580.253700px;}
.y9{bottom:580.426500px;}
.y20c{bottom:581.391450px;}
.y167{bottom:581.559450px;}
.y7b{bottom:587.618550px;}
.y13d{bottom:589.015950px;}
.y1d0{bottom:590.694750px;}
.y19d{bottom:591.108000px;}
.y20b{bottom:593.728950px;}
.y46{bottom:593.986950px;}
.yd1{bottom:595.216200px;}
.y106{bottom:595.260450px;}
.y8{bottom:595.426500px;}
.y166{bottom:596.605500px;}
.y7a{bottom:602.956800px;}
.y13c{bottom:604.288050px;}
.y1cf{bottom:605.890500px;}
.y20a{bottom:606.066450px;}
.y19c{bottom:606.443250px;}
.y45{bottom:609.034200px;}
.y9b{bottom:609.415950px;}
.yd0{bottom:610.206450px;}
.y105{bottom:610.267200px;}
.y7{bottom:610.426500px;}
.y79{bottom:618.292200px;}
.y13b{bottom:619.560000px;}
.y1ce{bottom:621.086250px;}
.y19b{bottom:621.778800px;}
.y209{bottom:621.868950px;}
.y9a{bottom:623.779950px;}
.y44{bottom:624.079200px;}
.y165{bottom:624.407550px;}
.ycf{bottom:625.196550px;}
.y6{bottom:625.426500px;}
.y208{bottom:630.741450px;}
.y78{bottom:633.624750px;}
.y13a{bottom:634.832100px;}
.y1cd{bottom:636.279600px;}
.y19a{bottom:637.105650px;}
.y43{bottom:639.125250px;}
.yce{bottom:640.186800px;}
.y5{bottom:640.426500px;}
.y104{bottom:642.281550px;}
.y207{bottom:643.078950px;}
.y77{bottom:648.963000px;}
.y139{bottom:650.104050px;}
.y1cc{bottom:651.477600px;}
.y199{bottom:652.443900px;}
.y42{bottom:654.171300px;}
.ycd{bottom:655.177050px;}
.y206{bottom:655.416450px;}
.y4{bottom:655.426500px;}
.y103{bottom:656.406900px;}
.y76{bottom:664.298400px;}
.y138{bottom:665.376000px;}
.y1cb{bottom:666.673350px;}
.y205{bottom:667.753950px;}
.y198{bottom:667.782150px;}
.y41{bottom:669.217350px;}
.ycc{bottom:670.167150px;}
.y102{bottom:670.534650px;}
.y75{bottom:679.633800px;}
.y204{bottom:680.091450px;}
.y137{bottom:680.648100px;}
.y1ca{bottom:681.866700px;}
.y197{bottom:683.120400px;}
.y40{bottom:684.263400px;}
.y101{bottom:684.658650px;}
.ycb{bottom:685.157400px;}
.y203{bottom:692.428950px;}
.y74{bottom:694.969200px;}
.y22{bottom:694.997850px;}
.y136{bottom:695.920050px;}
.y1c9{bottom:697.064700px;}
.y196{bottom:698.455800px;}
.y100{bottom:698.782650px;}
.y3f{bottom:699.309450px;}
.yca{bottom:700.140000px;}
.y202{bottom:708.231450px;}
.y73{bottom:710.304600px;}
.y135{bottom:711.192150px;}
.y21{bottom:711.197850px;}
.y1c8{bottom:712.260450px;}
.y195{bottom:713.785500px;}
.y3e{bottom:714.355500px;}
.y164{bottom:714.357600px;}
.yc9{bottom:715.134000px;}
.y201{bottom:717.103950px;}
.y72{bottom:725.637150px;}
.y134{bottom:726.461700px;}
.y1c7{bottom:727.447050px;}
.y194{bottom:729.123750px;}
.y3d{bottom:729.401550px;}
.y163{bottom:729.402600px;}
.y200{bottom:729.441450px;}
.yff{bottom:729.915750px;}
.yc8{bottom:730.128000px;}
.y71{bottom:740.975400px;}
.y133{bottom:741.736200px;}
.y1ff{bottom:741.778950px;}
.y1c6{bottom:742.645050px;}
.y20{bottom:743.747700px;}
.y3c{bottom:744.447600px;}
.y193{bottom:744.462000px;}
.yfe{bottom:744.922350px;}
.yc7{bottom:745.118100px;}
.y1fe{bottom:754.116450px;}
.y70{bottom:756.310800px;}
.y132{bottom:757.008150px;}
.y1c5{bottom:757.843050px;}
.y3b{bottom:759.493650px;}
.y192{bottom:759.797400px;}
.yfd{bottom:759.928350px;}
.yc6{bottom:760.108350px;}
.y1fd{bottom:766.453950px;}
.y1f{bottom:767.750700px;}
.y6f{bottom:771.643500px;}
.y131{bottom:772.280250px;}
.y1c4{bottom:773.041050px;}
.y3a{bottom:774.539850px;}
.y183{bottom:774.540900px;}
.yfc{bottom:774.935100px;}
.yc5{bottom:775.090800px;}
.y191{bottom:775.129950px;}
.y1fc{bottom:778.791450px;}
.y6e{bottom:786.981750px;}
.y130{bottom:787.552200px;}
.y1c3{bottom:788.239050px;}
.y162{bottom:789.585900px;}
.y39{bottom:789.589050px;}
.yfb{bottom:789.941850px;}
.yc4{bottom:790.084800px;}
.y190{bottom:790.468200px;}
.y1e{bottom:791.753700px;}
.y1fb{bottom:794.593950px;}
.y6d{bottom:802.317150px;}
.y12f{bottom:802.824300px;}
.y1c2{bottom:803.434800px;}
.y1fa{bottom:803.466450px;}
.y161{bottom:804.631950px;}
.y38{bottom:804.634050px;}
.yfa{bottom:804.948300px;}
.yc3{bottom:805.078800px;}
.y18f{bottom:805.803750px;}
.y1f9{bottom:815.803950px;}
.y6c{bottom:817.646850px;}
.y12e{bottom:818.096250px;}
.y1c1{bottom:818.621250px;}
.y160{bottom:819.678000px;}
.y37{bottom:819.679050px;}
.yf9{bottom:819.954750px;}
.yc2{bottom:820.069050px;}
.y18e{bottom:821.144550px;}
.y1f8{bottom:828.141450px;}
.y1f7{bottom:831.606450px;}
.y6b{bottom:832.985100px;}
.y12d{bottom:833.363250px;}
.y1c0{bottom:833.819250px;}
.y36{bottom:834.724050px;}
.yf8{bottom:834.961350px;}
.yc1{bottom:835.059300px;}
.y1f6{bottom:840.478950px;}
.y23{bottom:846.952650px;}
.y6a{bottom:848.323350px;}
.y12c{bottom:848.637750px;}
.y1bf{bottom:849.017250px;}
.y18d{bottom:849.232800px;}
.y35{bottom:849.770100px;}
.yf7{bottom:849.967800px;}
.yc0{bottom:850.049400px;}
.y1f5{bottom:852.816450px;}
.y69{bottom:863.658750px;}
.y12b{bottom:863.912250px;}
.y1be{bottom:864.215250px;}
.y34{bottom:864.816150px;}
.y15f{bottom:864.817200px;}
.yf6{bottom:864.974250px;}
.ybf{bottom:865.039650px;}
.y1f4{bottom:865.153950px;}
.y1f3{bottom:877.491450px;}
.y68{bottom:878.994150px;}
.y12a{bottom:879.184350px;}
.y1bd{bottom:879.413250px;}
.y33{bottom:879.862200px;}
.yf5{bottom:879.980100px;}
.ybe{bottom:880.029750px;}
.y3{bottom:888.220350px;}
.y1f2{bottom:893.293950px;}
.y67{bottom:894.326700px;}
.y18c{bottom:894.329550px;}
.y129{bottom:894.456450px;}
.y1bc{bottom:894.609000px;}
.y32{bottom:894.908250px;}
.y182{bottom:894.910350px;}
.yf4{bottom:894.986850px;}
.ybd{bottom:895.020000px;}
.y1f1{bottom:902.166450px;}
.y2e{bottom:903.165000px;}
.y66{bottom:909.664950px;}
.y128{bottom:909.728400px;}
.y1bb{bottom:909.802350px;}
.y15e{bottom:909.954300px;}
.y31{bottom:909.955350px;}
.yf3{bottom:909.993600px;}
.ybc{bottom:910.010250px;}
.y1f0{bottom:914.503950px;}
.y30{bottom:925.000350px;}
.y99{bottom:925.988850px;}
.y1ef{bottom:926.841450px;}
.y2{bottom:941.160300px;}
.y2f{bottom:969.502950px;}
.y65{bottom:969.659250px;}
.h9{height:23.872800px;}
.h12{height:27.300000px;}
.hf{height:28.988400px;}
.h2{height:38.220000px;}
.he{height:40.534800px;}
.ha{height:41.160000px;}
.h5{height:45.820312px;}
.h3{height:46.123800px;}
.h4{height:47.040000px;}
.hd{height:48.684082px;}
.hb{height:49.980000px;}
.h11{height:49.999800px;}
.h10{height:50.000400px;}
.hc{height:50.062500px;}
.h8{height:52.920000px;}
.h13{height:55.689000px;}
.h7{height:63.002930px;}
.h6{height:82.320000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:63.779550px;}
.x9{left:66.885450px;}
.x13{left:70.217100px;}
.x3{left:76.820550px;}
.xc{left:80.775300px;}
.xa{left:81.779550px;}
.x5{left:98.121900px;}
.x4{left:122.208900px;}
.x6{left:126.891900px;}
.xd{left:133.872150px;}
.x8{left:248.032350px;}
.x7{left:286.155450px;}
.xf{left:346.772400px;}
.x10{left:350.876100px;}
.x11{left:357.206400px;}
.x12{left:365.082000px;}
.x14{left:372.259800px;}
.xb{left:424.260000px;}
.x2{left:495.633450px;}
.xe{left:659.070750px;}
@media print{
.v3{vertical-align:-14.960000pt;}
.v4{vertical-align:-12.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:14.960000pt;}
.v1{vertical-align:16.747200pt;}
.ls36{letter-spacing:-1.393547pt;}
.ls35{letter-spacing:-1.224000pt;}
.ls46{letter-spacing:-1.212587pt;}
.ls33{letter-spacing:-0.906667pt;}
.ls34{letter-spacing:-0.861333pt;}
.lsb{letter-spacing:-0.853333pt;}
.ls3c{letter-spacing:-0.816000pt;}
.ls22{letter-spacing:-0.544000pt;}
.ls3b{letter-spacing:-0.498667pt;}
.ls31{letter-spacing:-0.453333pt;}
.ls44{letter-spacing:-0.448000pt;}
.lsc{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.408000pt;}
.ls2c{letter-spacing:-0.362667pt;}
.ls1f{letter-spacing:-0.317333pt;}
.ls27{letter-spacing:-0.272000pt;}
.ls21{letter-spacing:-0.226667pt;}
.ls43{letter-spacing:-0.224000pt;}
.ls1e{letter-spacing:-0.181333pt;}
.lse{letter-spacing:-0.136000pt;}
.ls42{letter-spacing:-0.112000pt;}
.ls20{letter-spacing:-0.090667pt;}
.ls45{letter-spacing:-0.074667pt;}
.ls28{letter-spacing:-0.045333pt;}
.ls2f{letter-spacing:-0.042667pt;}
.ls3d{letter-spacing:-0.037333pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000107pt;}
.ls1a{letter-spacing:0.022667pt;}
.ls39{letter-spacing:0.034176pt;}
.ls3f{letter-spacing:0.037333pt;}
.ls2e{letter-spacing:0.042667pt;}
.ls11{letter-spacing:0.045333pt;}
.ls37{letter-spacing:0.068000pt;}
.ls0{letter-spacing:0.069333pt;}
.ls3e{letter-spacing:0.074667pt;}
.ls12{letter-spacing:0.090667pt;}
.ls40{letter-spacing:0.093333pt;}
.ls2{letter-spacing:0.098667pt;}
.ls2d{letter-spacing:0.113333pt;}
.ls24{letter-spacing:0.136000pt;}
.ls1{letter-spacing:0.149333pt;}
.ls30{letter-spacing:0.158667pt;}
.ls10{letter-spacing:0.181333pt;}
.ls32{letter-spacing:0.204000pt;}
.ls41{letter-spacing:0.224000pt;}
.ls2a{letter-spacing:0.226667pt;}
.ls19{letter-spacing:0.249333pt;}
.ls3a{letter-spacing:0.261333pt;}
.ls29{letter-spacing:0.272000pt;}
.ls7{letter-spacing:0.294667pt;}
.ls38{letter-spacing:0.317333pt;}
.ls26{letter-spacing:0.340000pt;}
.ls25{letter-spacing:0.362667pt;}
.ls6{letter-spacing:0.373333pt;}
.ls13{letter-spacing:0.408000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.453333pt;}
.ls17{letter-spacing:0.476000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.498667pt;}
.ls47{letter-spacing:0.506667pt;}
.ls15{letter-spacing:0.544000pt;}
.ls1d{letter-spacing:0.566667pt;}
.lsd{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.746667pt;}
.ls16{letter-spacing:0.793333pt;}
.ls3{letter-spacing:0.853333pt;}
.ls5{letter-spacing:0.858667pt;}
.ls1c{letter-spacing:0.861333pt;}
.ls23{letter-spacing:0.906667pt;}
.ls1b{letter-spacing:0.952000pt;}
.ws1b{word-spacing:-13.824000pt;}
.ws3a{word-spacing:-13.101333pt;}
.ws79{word-spacing:-12.602667pt;}
.ws6a{word-spacing:-12.557333pt;}
.ws1{word-spacing:-12.416000pt;}
.ws54{word-spacing:-12.194667pt;}
.ws4d{word-spacing:-7.309547pt;}
.ws7a{word-spacing:-6.019627pt;}
.ws19{word-spacing:-3.029333pt;}
.ws9{word-spacing:-2.944000pt;}
.ws13{word-spacing:-2.602667pt;}
.ws7b{word-spacing:-2.493333pt;}
.ws1a{word-spacing:-2.346667pt;}
.ws36{word-spacing:-1.949333pt;}
.ws8{word-spacing:-1.920000pt;}
.ws22{word-spacing:-1.904000pt;}
.ws2b{word-spacing:-1.858667pt;}
.ws12{word-spacing:-1.834667pt;}
.ws5f{word-spacing:-1.813333pt;}
.ws5b{word-spacing:-1.792000pt;}
.ws3c{word-spacing:-1.768000pt;}
.ws4b{word-spacing:-1.722667pt;}
.ws56{word-spacing:-1.677333pt;}
.ws80{word-spacing:-1.605333pt;}
.ws1e{word-spacing:-1.586667pt;}
.ws7c{word-spacing:-1.568000pt;}
.ws49{word-spacing:-1.541333pt;}
.ws8b{word-spacing:-1.530667pt;}
.ws53{word-spacing:-1.496000pt;}
.ws48{word-spacing:-1.450667pt;}
.ws7f{word-spacing:-1.418667pt;}
.ws65{word-spacing:-1.405333pt;}
.ws6f{word-spacing:-1.314667pt;}
.ws35{word-spacing:-1.269333pt;}
.ws63{word-spacing:-1.237333pt;}
.ws8c{word-spacing:-1.232000pt;}
.ws69{word-spacing:-1.224000pt;}
.ws89{word-spacing:-1.157333pt;}
.ws32{word-spacing:-1.133333pt;}
.ws27{word-spacing:-1.088000pt;}
.ws8d{word-spacing:-1.082667pt;}
.ws67{word-spacing:-1.042667pt;}
.ws2e{word-spacing:-0.997333pt;}
.ws8e{word-spacing:-0.970667pt;}
.ws6d{word-spacing:-0.952000pt;}
.ws3d{word-spacing:-0.906667pt;}
.ws84{word-spacing:-0.896000pt;}
.ws57{word-spacing:-0.861333pt;}
.wsf{word-spacing:-0.853333pt;}
.ws44{word-spacing:-0.816000pt;}
.ws33{word-spacing:-0.770667pt;}
.ws3b{word-spacing:-0.746667pt;}
.ws37{word-spacing:-0.725333pt;}
.ws17{word-spacing:-0.682667pt;}
.ws4a{word-spacing:-0.680000pt;}
.ws2a{word-spacing:-0.634667pt;}
.ws62{word-spacing:-0.597333pt;}
.ws6c{word-spacing:-0.589333pt;}
.ws47{word-spacing:-0.544000pt;}
.ws7{word-spacing:-0.469333pt;}
.ws31{word-spacing:-0.453333pt;}
.ws2{word-spacing:-0.426667pt;}
.ws3f{word-spacing:-0.408000pt;}
.ws86{word-spacing:-0.373333pt;}
.ws60{word-spacing:-0.362667pt;}
.ws82{word-spacing:-0.336000pt;}
.wsb{word-spacing:-0.298667pt;}
.ws77{word-spacing:-0.272000pt;}
.ws5e{word-spacing:-0.226667pt;}
.ws55{word-spacing:-0.181333pt;}
.ws43{word-spacing:-0.136000pt;}
.ws5c{word-spacing:-0.090667pt;}
.ws50{word-spacing:-0.045333pt;}
.ws85{word-spacing:-0.037333pt;}
.ws0{word-spacing:0.000000pt;}
.ws87{word-spacing:0.037333pt;}
.ws73{word-spacing:0.045333pt;}
.ws6b{word-spacing:0.090667pt;}
.ws42{word-spacing:0.136000pt;}
.ws61{word-spacing:0.170667pt;}
.ws52{word-spacing:0.181333pt;}
.ws11{word-spacing:0.213333pt;}
.ws30{word-spacing:0.226667pt;}
.ws1d{word-spacing:0.261333pt;}
.ws29{word-spacing:0.317333pt;}
.ws75{word-spacing:0.362667pt;}
.ws2c{word-spacing:0.408000pt;}
.ws28{word-spacing:0.453333pt;}
.ws68{word-spacing:0.498667pt;}
.ws88{word-spacing:0.522667pt;}
.ws2d{word-spacing:0.544000pt;}
.ws51{word-spacing:0.589333pt;}
.ws21{word-spacing:0.634667pt;}
.ws71{word-spacing:0.680000pt;}
.ws39{word-spacing:0.725333pt;}
.ws26{word-spacing:0.770667pt;}
.ws76{word-spacing:0.816000pt;}
.ws81{word-spacing:0.858667pt;}
.ws25{word-spacing:0.906667pt;}
.ws4e{word-spacing:0.952000pt;}
.ws20{word-spacing:0.997333pt;}
.ws72{word-spacing:1.042667pt;}
.ws2f{word-spacing:1.088000pt;}
.ws46{word-spacing:1.133333pt;}
.ws8a{word-spacing:1.157333pt;}
.ws40{word-spacing:1.178667pt;}
.ws8f{word-spacing:1.212587pt;}
.ws64{word-spacing:1.224000pt;}
.ws34{word-spacing:1.269333pt;}
.ws83{word-spacing:1.306667pt;}
.ws66{word-spacing:1.314667pt;}
.ws4f{word-spacing:1.360000pt;}
.ws74{word-spacing:1.393547pt;}
.ws4c{word-spacing:1.405333pt;}
.ws41{word-spacing:1.450667pt;}
.ws1c{word-spacing:1.493333pt;}
.ws38{word-spacing:1.496000pt;}
.ws7d{word-spacing:1.530667pt;}
.ws6e{word-spacing:1.541333pt;}
.ws7e{word-spacing:1.568000pt;}
.ws58{word-spacing:1.586667pt;}
.ws70{word-spacing:1.632000pt;}
.ws3e{word-spacing:1.677333pt;}
.ws5d{word-spacing:1.722667pt;}
.ws59{word-spacing:1.749333pt;}
.ws78{word-spacing:1.768000pt;}
.ws5a{word-spacing:1.792000pt;}
.ws45{word-spacing:1.813333pt;}
.ws1f{word-spacing:1.858667pt;}
.ws23{word-spacing:1.904000pt;}
.ws10{word-spacing:2.005333pt;}
.ws18{word-spacing:2.261333pt;}
.ws14{word-spacing:2.901333pt;}
.ws6{word-spacing:2.944000pt;}
.ws4{word-spacing:3.200000pt;}
.ws15{word-spacing:3.584000pt;}
.ws16{word-spacing:3.797333pt;}
.ws3{word-spacing:4.394667pt;}
.ws5{word-spacing:4.736000pt;}
.wsd{word-spacing:5.248000pt;}
.wsc{word-spacing:5.418667pt;}
.wsa{word-spacing:10.282667pt;}
.wse{word-spacing:13.482667pt;}
.ws91{word-spacing:451.541333pt;}
.ws92{word-spacing:481.130667pt;}
.ws90{word-spacing:493.341333pt;}
.ws24{word-spacing:1326.912533pt;}
._8{margin-left:-20.757333pt;}
._3{margin-left:-17.658667pt;}
._1{margin-left:-15.914667pt;}
._e{margin-left:-14.506667pt;}
._11{margin-left:-13.317333pt;}
._12{margin-left:-12.314133pt;}
._5{margin-left:-11.136000pt;}
._6{margin-left:-9.509333pt;}
._15{margin-left:-8.362667pt;}
._d{margin-left:-5.104533pt;}
._9{margin-left:-4.114133pt;}
._0{margin-left:-2.565333pt;}
._7{margin-left:-1.608533pt;}
._f{width:1.184800pt;}
._4{width:2.901333pt;}
._2{width:10.026667pt;}
._a{width:13.447467pt;}
._17{width:29.045333pt;}
._16{width:30.501227pt;}
._b{width:38.752000pt;}
._13{width:41.589013pt;}
._14{width:43.344000pt;}
._c{width:705.432000pt;}
._10{width:1792.770133pt;}
.fs7{font-size:21.653333pt;}
.fs2{font-size:24.746667pt;}
.fs9{font-size:26.293333pt;}
.fs0{font-size:34.666667pt;}
.fs1{font-size:37.333333pt;}
.fs3{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs5{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:38.976267pt;}
.yf2{bottom:75.580400pt;}
.y27{bottom:75.590533pt;}
.y21e{bottom:75.592267pt;}
.y26{bottom:86.557200pt;}
.yf1{bottom:88.908400pt;}
.y127{bottom:88.929733pt;}
.y64{bottom:88.964800pt;}
.ybb{bottom:89.142533pt;}
.y15d{bottom:89.165733pt;}
.y98{bottom:89.222133pt;}
.y1ee{bottom:89.827867pt;}
.y21d{bottom:90.475600pt;}
.y25{bottom:97.523867pt;}
.y24{bottom:100.603867pt;}
.y1ed{bottom:100.985200pt;}
.yf0{bottom:102.236400pt;}
.y126{bottom:102.268800pt;}
.y63{bottom:102.339067pt;}
.y18b{bottom:102.340000pt;}
.yba{bottom:102.691733pt;}
.y15c{bottom:102.738667pt;}
.y97{bottom:102.853467pt;}
.y21c{bottom:105.358933pt;}
.yef{bottom:115.564400pt;}
.y125{bottom:115.607867pt;}
.y181{bottom:115.713333pt;}
.y62{bottom:115.714400pt;}
.yb9{bottom:116.246400pt;}
.y15b{bottom:116.316000pt;}
.y96{bottom:116.485067pt;}
.y21b{bottom:120.242267pt;}
.y1ec{bottom:120.401733pt;}
.y2d{bottom:121.812400pt;}
.yee{bottom:128.888933pt;}
.y124{bottom:128.946267pt;}
.y61{bottom:129.087733pt;}
.yb8{bottom:129.798400pt;}
.y15a{bottom:129.891067pt;}
.y1ba{bottom:130.116400pt;}
.y2c{bottom:135.129067pt;}
.y95{bottom:141.449600pt;}
.yed{bottom:142.213600pt;}
.y123{bottom:142.285600pt;}
.y60{bottom:142.462000pt;}
.yb7{bottom:143.347600pt;}
.y159{bottom:143.466267pt;}
.y1b9{bottom:143.748000pt;}
.y2b{bottom:148.445733pt;}
.yec{bottom:155.538267pt;}
.y122{bottom:155.624933pt;}
.y5f{bottom:155.836267pt;}
.yb6{bottom:156.902267pt;}
.y158{bottom:157.041333pt;}
.y1b8{bottom:157.379467pt;}
.y1eb{bottom:160.363067pt;}
.y2a{bottom:161.762400pt;}
.yeb{bottom:168.862933pt;}
.y121{bottom:168.964267pt;}
.y5e{bottom:169.210533pt;}
.y18a{bottom:169.211467pt;}
.yb5{bottom:170.454267pt;}
.y157{bottom:170.612000pt;}
.y1b7{bottom:171.010933pt;}
.y1ea{bottom:173.872400pt;}
.y29{bottom:175.079067pt;}
.y94{bottom:181.535600pt;}
.yea{bottom:182.187467pt;}
.y120{bottom:182.303600pt;}
.y5d{bottom:182.584800pt;}
.yb4{bottom:184.006133pt;}
.y156{bottom:184.189333pt;}
.y1b6{bottom:184.642400pt;}
.y1e9{bottom:187.379600pt;}
.y28{bottom:188.395733pt;}
.y93{bottom:195.169600pt;}
.ye9{bottom:195.512133pt;}
.y11f{bottom:195.642667pt;}
.y180{bottom:195.959067pt;}
.yb3{bottom:197.558133pt;}
.y155{bottom:197.766667pt;}
.y1b5{bottom:198.273867pt;}
.y1e8{bottom:200.886933pt;}
.y5c{bottom:207.297600pt;}
.y92{bottom:208.803600pt;}
.ye8{bottom:208.836667pt;}
.y11e{bottom:208.981733pt;}
.y17f{bottom:209.333333pt;}
.yb2{bottom:211.110000pt;}
.y154{bottom:211.341867pt;}
.y1b4{bottom:211.902800pt;}
.y1e7{bottom:214.394267pt;}
.ye6{bottom:222.161333pt;}
.y11d{bottom:222.320933pt;}
.y91{bottom:222.437600pt;}
.y17e{bottom:222.707600pt;}
.y1d{bottom:224.478667pt;}
.yb1{bottom:224.662000pt;}
.y153{bottom:224.916933pt;}
.y1b3{bottom:225.536800pt;}
.ye7{bottom:225.901333pt;}
.y1e6{bottom:227.899467pt;}
.ye5{bottom:235.482533pt;}
.y11c{bottom:235.660000pt;}
.y90{bottom:236.069067pt;}
.y17d{bottom:236.081867pt;}
.y1c{bottom:237.812000pt;}
.yb0{bottom:238.211200pt;}
.y152{bottom:238.492133pt;}
.y1b2{bottom:239.168267pt;}
.y1e5{bottom:241.408800pt;}
.y5b{bottom:247.129600pt;}
.ye4{bottom:248.810533pt;}
.y11b{bottom:248.999200pt;}
.y17c{bottom:249.456133pt;}
.y8f{bottom:249.700667pt;}
.yaf{bottom:251.765867pt;}
.y151{bottom:252.067200pt;}
.y1b1{bottom:252.799733pt;}
.y1e4{bottom:254.916133pt;}
.y1b{bottom:254.921333pt;}
.y5a{bottom:260.502933pt;}
.ye3{bottom:262.135200pt;}
.y11a{bottom:262.338267pt;}
.y17b{bottom:262.831467pt;}
.y189{bottom:262.833333pt;}
.y8e{bottom:263.332133pt;}
.yae{bottom:265.317867pt;}
.y150{bottom:265.642400pt;}
.y1b0{bottom:266.423600pt;}
.y1a{bottom:268.254667pt;}
.y1e3{bottom:268.419333pt;}
.y59{bottom:273.877200pt;}
.y119{bottom:275.677333pt;}
.y17a{bottom:276.204800pt;}
.y188{bottom:276.206667pt;}
.y8d{bottom:276.963600pt;}
.yad{bottom:278.869733pt;}
.y14f{bottom:279.217467pt;}
.y1af{bottom:280.057600pt;}
.y19{bottom:281.588000pt;}
.y1e2{bottom:281.928667pt;}
.y58{bottom:287.251467pt;}
.y118{bottom:289.016533pt;}
.y179{bottom:289.579067pt;}
.y187{bottom:289.580000pt;}
.ye2{bottom:290.577867pt;}
.y8c{bottom:290.595067pt;}
.yac{bottom:292.421733pt;}
.y14e{bottom:292.792667pt;}
.y1ae{bottom:293.691600pt;}
.y18{bottom:294.921333pt;}
.y1e1{bottom:295.438000pt;}
.y57{bottom:300.625733pt;}
.y117{bottom:302.355600pt;}
.y178{bottom:302.953333pt;}
.ye1{bottom:303.119200pt;}
.y8b{bottom:304.226533pt;}
.yab{bottom:305.973733pt;}
.y14d{bottom:306.367733pt;}
.y1ad{bottom:307.325600pt;}
.y17{bottom:308.254667pt;}
.y1e0{bottom:308.945333pt;}
.y56{bottom:314.000000pt;}
.ye0{bottom:315.660400pt;}
.y116{bottom:315.694800pt;}
.y177{bottom:316.327600pt;}
.y8a{bottom:317.858000pt;}
.yaa{bottom:319.525600pt;}
.y14c{bottom:319.942933pt;}
.y1ac{bottom:320.957200pt;}
.y16{bottom:321.588000pt;}
.y1df{bottom:322.448533pt;}
.y55{bottom:327.374267pt;}
.ydf{bottom:328.201733pt;}
.y115{bottom:329.033467pt;}
.y176{bottom:329.701867pt;}
.y186{bottom:329.702800pt;}
.y89{bottom:331.486933pt;}
.ya9{bottom:333.074800pt;}
.y14b{bottom:333.518000pt;}
.y1ab{bottom:334.578533pt;}
.y15{bottom:334.921333pt;}
.y1de{bottom:335.957867pt;}
.y54{bottom:340.748533pt;}
.y114{bottom:342.372800pt;}
.y175{bottom:343.076133pt;}
.y88{bottom:345.120933pt;}
.ya8{bottom:346.629467pt;}
.y14a{bottom:347.093200pt;}
.y1aa{bottom:348.212533pt;}
.y14{bottom:348.254667pt;}
.y1dd{bottom:349.467200pt;}
.y53{bottom:354.122800pt;}
.y113{bottom:355.712133pt;}
.yde{bottom:355.854400pt;}
.y174{bottom:356.450400pt;}
.y87{bottom:358.752400pt;}
.ya7{bottom:360.181467pt;}
.y149{bottom:360.666000pt;}
.y13{bottom:361.588000pt;}
.y1a9{bottom:361.846533pt;}
.y1dc{bottom:362.974533pt;}
.y52{bottom:367.500000pt;}
.y112{bottom:369.051200pt;}
.ydd{bottom:369.182400pt;}
.y172{bottom:369.824667pt;}
.y86{bottom:372.383867pt;}
.y173{bottom:373.564667pt;}
.ya6{bottom:373.733333pt;}
.y21a{bottom:374.225733pt;}
.y148{bottom:374.243333pt;}
.y12{bottom:374.921333pt;}
.y1a8{bottom:375.480533pt;}
.y1db{bottom:376.479733pt;}
.y51{bottom:380.873333pt;}
.y111{bottom:382.390400pt;}
.ydc{bottom:382.510400pt;}
.y171{bottom:383.198933pt;}
.y219{bottom:385.192400pt;}
.y85{bottom:385.995200pt;}
.ya5{bottom:387.285333pt;}
.y147{bottom:387.818533pt;}
.y1a7{bottom:389.114533pt;}
.y1da{bottom:389.989067pt;}
.y11{bottom:392.030667pt;}
.y50{bottom:394.246667pt;}
.y110{bottom:395.729467pt;}
.ydb{bottom:395.834933pt;}
.y218{bottom:396.159067pt;}
.y170{bottom:396.573200pt;}
.y217{bottom:399.239067pt;}
.y84{bottom:399.629200pt;}
.ya4{bottom:400.837333pt;}
.y146{bottom:401.393600pt;}
.y1a6{bottom:402.746000pt;}
.y1d9{bottom:403.496400pt;}
.y10{bottom:405.364000pt;}
.y4f{bottom:407.620000pt;}
.y10f{bottom:409.067733pt;}
.yda{bottom:409.159600pt;}
.y16f{bottom:409.947467pt;}
.y216{bottom:410.205733pt;}
.y83{bottom:413.263200pt;}
.ya3{bottom:414.389200pt;}
.y145{bottom:414.968800pt;}
.y1a5{bottom:416.364800pt;}
.y1d8{bottom:417.001600pt;}
.y215{bottom:418.092400pt;}
.y4e{bottom:420.994267pt;}
.y10e{bottom:422.407067pt;}
.yd9{bottom:422.484133pt;}
.y16e{bottom:423.321733pt;}
.y82{bottom:426.897200pt;}
.ya2{bottom:427.941200pt;}
.y144{bottom:428.543867pt;}
.y214{bottom:429.059067pt;}
.y1a4{bottom:429.998800pt;}
.y1d7{bottom:430.510933pt;}
.yf{bottom:432.158667pt;}
.y4d{bottom:434.369467pt;}
.y10d{bottom:435.746400pt;}
.yd8{bottom:435.791867pt;}
.y16d{bottom:436.696133pt;}
.y213{bottom:440.025733pt;}
.y81{bottom:440.531200pt;}
.ya1{bottom:441.493067pt;}
.y143{bottom:442.116800pt;}
.y1a3{bottom:443.632800pt;}
.y1d6{bottom:444.018267pt;}
.ye{bottom:445.492000pt;}
.y4c{bottom:447.742800pt;}
.y10c{bottom:449.085733pt;}
.yd7{bottom:449.119867pt;}
.y16c{bottom:450.070400pt;}
.y212{bottom:450.992400pt;}
.y80{bottom:454.165200pt;}
.ya0{bottom:455.045067pt;}
.y142{bottom:455.694133pt;}
.y1a2{bottom:457.266800pt;}
.y1d5{bottom:457.525600pt;}
.y4b{bottom:461.117067pt;}
.y185{bottom:461.404133pt;}
.y211{bottom:461.959067pt;}
.y10b{bottom:462.425067pt;}
.yd6{bottom:462.447867pt;}
.yd{bottom:462.601333pt;}
.y16b{bottom:463.444667pt;}
.y7f{bottom:467.799200pt;}
.y9f{bottom:468.597067pt;}
.y141{bottom:469.269200pt;}
.y1a1{bottom:470.900800pt;}
.y1d4{bottom:471.030800pt;}
.y210{bottom:472.925733pt;}
.y4a{bottom:474.491333pt;}
.y10a{bottom:475.764133pt;}
.yd5{bottom:475.775867pt;}
.yc{bottom:475.934667pt;}
.y16a{bottom:476.818933pt;}
.y7e{bottom:481.433200pt;}
.y9e{bottom:482.148933pt;}
.y140{bottom:482.842133pt;}
.y1a0{bottom:484.534800pt;}
.y1d3{bottom:484.540133pt;}
.y20f{bottom:486.972400pt;}
.y49{bottom:487.865600pt;}
.y109{bottom:489.102400pt;}
.yd4{bottom:489.103867pt;}
.yb{bottom:489.268000pt;}
.y169{bottom:490.193200pt;}
.y7d{bottom:495.067200pt;}
.y9d{bottom:495.700933pt;}
.y13f{bottom:496.415067pt;}
.y20e{bottom:497.939067pt;}
.y1d2{bottom:498.047467pt;}
.y19f{bottom:498.166400pt;}
.y48{bottom:501.239867pt;}
.y184{bottom:501.240800pt;}
.yd3{bottom:502.431867pt;}
.y108{bottom:502.441733pt;}
.ya{bottom:502.601333pt;}
.y168{bottom:503.567467pt;}
.y20d{bottom:505.825733pt;}
.y7c{bottom:508.698667pt;}
.y9c{bottom:509.252800pt;}
.y13e{bottom:509.992400pt;}
.y1d1{bottom:511.552667pt;}
.y19e{bottom:511.795333pt;}
.y47{bottom:514.614133pt;}
.yd2{bottom:515.756533pt;}
.y107{bottom:515.781067pt;}
.y9{bottom:515.934667pt;}
.y20c{bottom:516.792400pt;}
.y167{bottom:516.941733pt;}
.y7b{bottom:522.327600pt;}
.y13d{bottom:523.569733pt;}
.y1d0{bottom:525.062000pt;}
.y19d{bottom:525.429333pt;}
.y20b{bottom:527.759067pt;}
.y46{bottom:527.988400pt;}
.yd1{bottom:529.081067pt;}
.y106{bottom:529.120400pt;}
.y8{bottom:529.268000pt;}
.y166{bottom:530.316000pt;}
.y7a{bottom:535.961600pt;}
.y13c{bottom:537.144933pt;}
.y1cf{bottom:538.569333pt;}
.y20a{bottom:538.725733pt;}
.y19c{bottom:539.060667pt;}
.y45{bottom:541.363733pt;}
.y9b{bottom:541.703067pt;}
.yd0{bottom:542.405733pt;}
.y105{bottom:542.459733pt;}
.y7{bottom:542.601333pt;}
.y79{bottom:549.593067pt;}
.y13b{bottom:550.720000pt;}
.y1ce{bottom:552.076667pt;}
.y19b{bottom:552.692267pt;}
.y209{bottom:552.772400pt;}
.y9a{bottom:554.471067pt;}
.y44{bottom:554.737067pt;}
.y165{bottom:555.028933pt;}
.ycf{bottom:555.730267pt;}
.y6{bottom:555.934667pt;}
.y208{bottom:560.659067pt;}
.y78{bottom:563.222000pt;}
.y13a{bottom:564.295200pt;}
.y1cd{bottom:565.581867pt;}
.y19a{bottom:566.316133pt;}
.y43{bottom:568.111333pt;}
.yce{bottom:569.054933pt;}
.y5{bottom:569.268000pt;}
.y104{bottom:570.916933pt;}
.y207{bottom:571.625733pt;}
.y77{bottom:576.856000pt;}
.y139{bottom:577.870267pt;}
.y1cc{bottom:579.091200pt;}
.y199{bottom:579.950133pt;}
.y42{bottom:581.485600pt;}
.ycd{bottom:582.379600pt;}
.y206{bottom:582.592400pt;}
.y4{bottom:582.601333pt;}
.y103{bottom:583.472800pt;}
.y76{bottom:590.487467pt;}
.y138{bottom:591.445333pt;}
.y1cb{bottom:592.598533pt;}
.y205{bottom:593.559067pt;}
.y198{bottom:593.584133pt;}
.y41{bottom:594.859867pt;}
.ycc{bottom:595.704133pt;}
.y102{bottom:596.030800pt;}
.y75{bottom:604.118933pt;}
.y204{bottom:604.525733pt;}
.y137{bottom:605.020533pt;}
.y1ca{bottom:606.103733pt;}
.y197{bottom:607.218133pt;}
.y40{bottom:608.234133pt;}
.y101{bottom:608.585467pt;}
.ycb{bottom:609.028800pt;}
.y203{bottom:615.492400pt;}
.y74{bottom:617.750400pt;}
.y22{bottom:617.775867pt;}
.y136{bottom:618.595600pt;}
.y1c9{bottom:619.613067pt;}
.y196{bottom:620.849600pt;}
.y100{bottom:621.140133pt;}
.y3f{bottom:621.608400pt;}
.yca{bottom:622.346667pt;}
.y202{bottom:629.539067pt;}
.y73{bottom:631.381867pt;}
.y135{bottom:632.170800pt;}
.y21{bottom:632.175867pt;}
.y1c8{bottom:633.120400pt;}
.y195{bottom:634.476000pt;}
.y3e{bottom:634.982667pt;}
.y164{bottom:634.984533pt;}
.yc9{bottom:635.674667pt;}
.y201{bottom:637.425733pt;}
.y72{bottom:645.010800pt;}
.y134{bottom:645.743733pt;}
.y1c7{bottom:646.619600pt;}
.y194{bottom:648.110000pt;}
.y3d{bottom:648.356933pt;}
.y163{bottom:648.357867pt;}
.y200{bottom:648.392400pt;}
.yff{bottom:648.814000pt;}
.yc8{bottom:649.002667pt;}
.y71{bottom:658.644800pt;}
.y133{bottom:659.321067pt;}
.y1ff{bottom:659.359067pt;}
.y1c6{bottom:660.128933pt;}
.y20{bottom:661.109067pt;}
.y3c{bottom:661.731200pt;}
.y193{bottom:661.744000pt;}
.yfe{bottom:662.153200pt;}
.yc7{bottom:662.327200pt;}
.y1fe{bottom:670.325733pt;}
.y70{bottom:672.276267pt;}
.y132{bottom:672.896133pt;}
.y1c5{bottom:673.638267pt;}
.y3b{bottom:675.105467pt;}
.y192{bottom:675.375467pt;}
.yfd{bottom:675.491867pt;}
.yc6{bottom:675.651867pt;}
.y1fd{bottom:681.292400pt;}
.y1f{bottom:682.445067pt;}
.y6f{bottom:685.905333pt;}
.y131{bottom:686.471333pt;}
.y1c4{bottom:687.147600pt;}
.y3a{bottom:688.479867pt;}
.y183{bottom:688.480800pt;}
.yfc{bottom:688.831200pt;}
.yc5{bottom:688.969600pt;}
.y191{bottom:689.004400pt;}
.y1fc{bottom:692.259067pt;}
.y6e{bottom:699.539333pt;}
.y130{bottom:700.046400pt;}
.y1c3{bottom:700.656933pt;}
.y162{bottom:701.854133pt;}
.y39{bottom:701.856933pt;}
.yfb{bottom:702.170533pt;}
.yc4{bottom:702.297600pt;}
.y190{bottom:702.638400pt;}
.y1e{bottom:703.781067pt;}
.y1fb{bottom:706.305733pt;}
.y6d{bottom:713.170800pt;}
.y12f{bottom:713.621600pt;}
.y1c2{bottom:714.164267pt;}
.y1fa{bottom:714.192400pt;}
.y161{bottom:715.228400pt;}
.y38{bottom:715.230267pt;}
.yfa{bottom:715.509600pt;}
.yc3{bottom:715.625600pt;}
.y18f{bottom:716.270000pt;}
.y1f9{bottom:725.159067pt;}
.y6c{bottom:726.797200pt;}
.y12e{bottom:727.196667pt;}
.y1c1{bottom:727.663333pt;}
.y160{bottom:728.602667pt;}
.y37{bottom:728.603600pt;}
.yf9{bottom:728.848667pt;}
.yc2{bottom:728.950267pt;}
.y18e{bottom:729.906267pt;}
.y1f8{bottom:736.125733pt;}
.y1f7{bottom:739.205733pt;}
.y6b{bottom:740.431200pt;}
.y12d{bottom:740.767333pt;}
.y1c0{bottom:741.172667pt;}
.y36{bottom:741.976933pt;}
.yf8{bottom:742.187867pt;}
.yc1{bottom:742.274933pt;}
.y1f6{bottom:747.092400pt;}
.y23{bottom:752.846800pt;}
.y6a{bottom:754.065200pt;}
.y12c{bottom:754.344667pt;}
.y1bf{bottom:754.682000pt;}
.y18d{bottom:754.873600pt;}
.y35{bottom:755.351200pt;}
.yf7{bottom:755.526933pt;}
.yc0{bottom:755.599467pt;}
.y1f5{bottom:758.059067pt;}
.y69{bottom:767.696667pt;}
.y12b{bottom:767.922000pt;}
.y1be{bottom:768.191333pt;}
.y34{bottom:768.725467pt;}
.y15f{bottom:768.726400pt;}
.yf6{bottom:768.866000pt;}
.ybf{bottom:768.924133pt;}
.y1f4{bottom:769.025733pt;}
.y1f3{bottom:779.992400pt;}
.y68{bottom:781.328133pt;}
.y12a{bottom:781.497200pt;}
.y1bd{bottom:781.700667pt;}
.y33{bottom:782.099733pt;}
.yf5{bottom:782.204533pt;}
.ybe{bottom:782.248667pt;}
.y3{bottom:789.529200pt;}
.y1f2{bottom:794.039067pt;}
.y67{bottom:794.957067pt;}
.y18c{bottom:794.959600pt;}
.y129{bottom:795.072400pt;}
.y1bc{bottom:795.208000pt;}
.y32{bottom:795.474000pt;}
.y182{bottom:795.475867pt;}
.yf4{bottom:795.543867pt;}
.ybd{bottom:795.573333pt;}
.y1f1{bottom:801.925733pt;}
.y2e{bottom:802.813333pt;}
.y66{bottom:808.591067pt;}
.y128{bottom:808.647467pt;}
.y1bb{bottom:808.713200pt;}
.y15e{bottom:808.848267pt;}
.y31{bottom:808.849200pt;}
.yf3{bottom:808.883200pt;}
.ybc{bottom:808.898000pt;}
.y1f0{bottom:812.892400pt;}
.y30{bottom:822.222533pt;}
.y99{bottom:823.101200pt;}
.y1ef{bottom:823.859067pt;}
.y2{bottom:836.586933pt;}
.y2f{bottom:861.780400pt;}
.y65{bottom:861.919333pt;}
.h9{height:21.220267pt;}
.h12{height:24.266667pt;}
.hf{height:25.767467pt;}
.h2{height:33.973333pt;}
.he{height:36.030933pt;}
.ha{height:36.586667pt;}
.h5{height:40.729167pt;}
.h3{height:40.998933pt;}
.h4{height:41.813333pt;}
.hd{height:43.274740pt;}
.hb{height:44.426667pt;}
.h11{height:44.444267pt;}
.h10{height:44.444800pt;}
.hc{height:44.500000pt;}
.h8{height:47.040000pt;}
.h13{height:49.501333pt;}
.h7{height:56.002604pt;}
.h6{height:73.173333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:56.692933pt;}
.x9{left:59.453733pt;}
.x13{left:62.415200pt;}
.x3{left:68.284933pt;}
.xc{left:71.800267pt;}
.xa{left:72.692933pt;}
.x5{left:87.219467pt;}
.x4{left:108.630133pt;}
.x6{left:112.792800pt;}
.xd{left:118.997467pt;}
.x8{left:220.473200pt;}
.x7{left:254.360400pt;}
.xf{left:308.242133pt;}
.x10{left:311.889867pt;}
.x11{left:317.516800pt;}
.x12{left:324.517333pt;}
.x14{left:330.897600pt;}
.xb{left:377.120000pt;}
.x2{left:440.563067pt;}
.xe{left:585.840667pt;}
}




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