
    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_45b8133e109c8c1fa3ee1abc.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.954000;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_b8c5b910d224e0058fea727e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_8a262ed0bb972113e6007221.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.286000;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_5755f95ee74076c75f2bfa6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.779000;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_6b218b773f3929136f043ec1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.951000;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_27ccc3ec253512aa33df0781.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.727000;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_06c171ec9a65716e48805cdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_fe2433b2a014ce5caba2e4aa.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.966000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_164b29955f36736260aa2b5c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.454000;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:ffa;src:url('chunks/assets/font_7a6bad8866693326fe92f682.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;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;}
.mb{transform:matrix(0.233461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233461,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.236772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236772,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238239,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.239519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239519,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.242161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242161,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242550,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.242552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242552,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242569,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.242653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242653,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.242672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242672,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242872,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243039,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.243041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243041,0.000000,0.000000,0.250000,0,0);}
.m9f{transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243083,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.243122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243122,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243319,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243442,0.000000,0.000000,0.250000,0,0);}
.m9d{transform:matrix(0.243467,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243467,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243467,0.000000,0.000000,0.250000,0,0);}
.ma0{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243600,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243733,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.243761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243761,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.243803,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243803,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243803,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243844,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243847,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243856,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244028,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244058,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244078,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.244183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244183,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244244,0.000000,0.000000,0.250000,0,0);}
.ma8{transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244289,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244339,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244356,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244422,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244447,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244487,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244489,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244650,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244652,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244717,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244806,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.244822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244822,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.245058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245058,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245386,0.000000,0.000000,0.250000,0,0);}
.ma5{transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245403,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245408,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245425,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245469,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245471,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245489,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245497,0.000000,0.000000,0.250000,0,0);}
.mad{transform:matrix(0.245646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245646,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245689,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.245703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245703,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245731,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245742,0.000000,0.000000,0.250000,0,0);}
.maa{transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245754,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245825,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245881,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245933,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245933,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245933,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245964,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245994,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246028,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246064,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246081,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246283,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246297,0.000000,0.000000,0.250000,0,0);}
.m3a{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);}
.m84{transform:matrix(0.246372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246372,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246394,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246522,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246747,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246906,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246928,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246936,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246961,0.000000,0.000000,0.250000,0,0);}
.m9b{transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247069,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247089,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247108,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247117,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247269,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247281,0.000000,0.000000,0.250000,0,0);}
.mb5{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247331,0.000000,0.000000,0.250000,0,0);}
.m51{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);}
.m9e{transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247439,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.mab{transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247507,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247642,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247653,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247786,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247839,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248017,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248018,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248044,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248072,0.000000,0.000000,0.250000,0,0);}
.m9c{transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248089,0.000000,0.000000,0.250000,0,0);}
.ma1{transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248172,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248242,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248286,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248364,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248481,0.000000,0.000000,0.250000,0,0);}
.mb6{transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248596,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248731,0.000000,0.000000,0.250000,0,0);}
.m3e{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);}
.m4b{transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248772,0.000000,0.000000,0.250000,0,0);}
.ma3{transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248778,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248794,0.000000,0.000000,0.250000,0,0);}
.ma6{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);}
.m2f{transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248872,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248919,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248925,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248942,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249031,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249094,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249111,0.000000,0.000000,0.250000,0,0);}
.maf{transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249179,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249239,0.000000,0.000000,0.250000,0,0);}
.mb2{transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249311,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249378,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249561,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249622,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249631,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.me{transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249686,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249703,0.000000,0.000000,0.250000,0,0);}
.ma9{transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249811,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249831,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249844,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249953,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m25{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);}
.m85{transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250147,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250161,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250189,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250300,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250301,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250436,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250528,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250536,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250594,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250992,0.000000,0.000000,0.250000,0,0);}
.ma4{transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251050,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251061,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251194,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251276,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251276,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251276,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251278,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251283,0.000000,0.000000,0.250000,0,0);}
.m9a{transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251303,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251358,0.000000,0.000000,0.250000,0,0);}
.mae{transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251514,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251575,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251689,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251964,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252058,0.000000,0.000000,0.250000,0,0);}
.ma7{transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252064,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252114,0.000000,0.000000,0.250000,0,0);}
.ma2{transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252144,0.000000,0.000000,0.250000,0,0);}
.mb1{transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252293,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252356,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252361,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252448,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252450,0.000000,0.000000,0.250000,0,0);}
.mb4{transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252571,0.000000,0.000000,0.250000,0,0);}
.mb7{transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252786,0.000000,0.000000,0.250000,0,0);}
.mb0{transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253196,0.000000,0.000000,0.250000,0,0);}
.mb3{transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253639,0.000000,0.000000,0.250000,0,0);}
.mb8{transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254136,0.000000,0.000000,0.250000,0,0);}
.mac{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-23.760000px;}
.v5{vertical-align:-19.440000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v4{vertical-align:19.440000px;}
.v6{vertical-align:36.000000px;}
.ls2b{letter-spacing:-4.158000px;}
.ls13{letter-spacing:-1.848000px;}
.ls15{letter-spacing:-1.638000px;}
.ls22{letter-spacing:-1.566000px;}
.ls23{letter-spacing:-1.404000px;}
.ls3{letter-spacing:-1.260000px;}
.ls28{letter-spacing:-1.176000px;}
.ls16{letter-spacing:-1.134000px;}
.lsf{letter-spacing:-1.026000px;}
.ls2c{letter-spacing:-0.714000px;}
.ls1a{letter-spacing:-0.702000px;}
.ls1b{letter-spacing:-0.648000px;}
.ls6{letter-spacing:-0.546000px;}
.ls14{letter-spacing:-0.504000px;}
.ls18{letter-spacing:-0.462000px;}
.ls24{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.420000px;}
.ls25{letter-spacing:-0.378000px;}
.ls4{letter-spacing:-0.330000px;}
.ls29{letter-spacing:-0.294000px;}
.lse{letter-spacing:-0.270000px;}
.ls2d{letter-spacing:-0.252000px;}
.ls2a{letter-spacing:-0.210000px;}
.ls5{letter-spacing:-0.099000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.054000px;}
.ls9{letter-spacing:0.095685px;}
.ls19{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.161604px;}
.ls8{letter-spacing:0.161818px;}
.lsa{letter-spacing:0.161827px;}
.ls7{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.210000px;}
.ls0{letter-spacing:0.297000px;}
.ls21{letter-spacing:0.318109px;}
.ls20{letter-spacing:0.318715px;}
.ls2e{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.539253px;}
.ls1d{letter-spacing:0.539893px;}
.ls1c{letter-spacing:0.540000px;}
.ls1f{letter-spacing:0.540111px;}
.lsd{letter-spacing:0.593963px;}
.lsc{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.702000px;}
.ls27{letter-spacing:0.840000px;}
.ls26{letter-spacing:0.864000px;}
.ls2{letter-spacing:2.100000px;}
.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;}
}
.ws1a{word-spacing:-20.817000px;}
.ws71{word-spacing:-13.878000px;}
.wsb7{word-spacing:-12.798000px;}
.ws55{word-spacing:-12.366000px;}
.ws1b{word-spacing:-12.258000px;}
.ws1c{word-spacing:-11.988000px;}
.ws94{word-spacing:-10.878000px;}
.ws1{word-spacing:-10.794000px;}
.wsb8{word-spacing:-10.692000px;}
.wse4{word-spacing:-10.374000px;}
.ws18{word-spacing:-10.248000px;}
.ws70{word-spacing:-10.206000px;}
.ws2{word-spacing:-10.007580px;}
.wse8{word-spacing:-9.912000px;}
.wse6{word-spacing:-9.744000px;}
.wsb{word-spacing:-9.534000px;}
.wse7{word-spacing:-9.282000px;}
.ws109{word-spacing:-8.946000px;}
.ws7a{word-spacing:-8.931000px;}
.ws79{word-spacing:-8.853000px;}
.wse5{word-spacing:-8.820000px;}
.ws100{word-spacing:-8.736000px;}
.ws5{word-spacing:-8.570340px;}
.ws9{word-spacing:-8.316000px;}
.wsb9{word-spacing:-8.188020px;}
.ws6{word-spacing:-8.019000px;}
.ws8{word-spacing:-7.920000px;}
.ws7{word-spacing:-7.689000px;}
.ws1d{word-spacing:-7.232220px;}
.ws3{word-spacing:-6.665820px;}
.wscd{word-spacing:-2.430000px;}
.wsf0{word-spacing:-2.160000px;}
.wsa0{word-spacing:-1.782000px;}
.ws68{word-spacing:-1.512000px;}
.ws69{word-spacing:-1.458000px;}
.wsbf{word-spacing:-1.404000px;}
.ws1f{word-spacing:-1.242000px;}
.ws47{word-spacing:-1.134000px;}
.ws1e{word-spacing:-1.050000px;}
.wsf9{word-spacing:-0.966000px;}
.wsa5{word-spacing:-0.918000px;}
.ws65{word-spacing:-0.864000px;}
.ws107{word-spacing:-0.840000px;}
.ws61{word-spacing:-0.810000px;}
.ws88{word-spacing:-0.756000px;}
.wsa3{word-spacing:-0.702000px;}
.wsff{word-spacing:-0.672000px;}
.ws9e{word-spacing:-0.648000px;}
.ws63{word-spacing:-0.594000px;}
.wsf3{word-spacing:-0.540000px;}
.ws2f{word-spacing:-0.486000px;}
.wse2{word-spacing:-0.462000px;}
.wsdd{word-spacing:-0.324000px;}
.wsc4{word-spacing:-0.270000px;}
.ws4e{word-spacing:-0.216000px;}
.ws30{word-spacing:-0.162000px;}
.ws10b{word-spacing:-0.126000px;}
.ws4{word-spacing:-0.054000px;}
.ws95{word-spacing:-0.042000px;}
.ws78{word-spacing:-0.039000px;}
.wsa{word-spacing:0.000000px;}
.ws33{word-spacing:0.054000px;}
.wsaf{word-spacing:0.216000px;}
.ws101{word-spacing:0.252000px;}
.ws22{word-spacing:0.270000px;}
.wsdc{word-spacing:0.324000px;}
.ws6e{word-spacing:0.330000px;}
.ws26{word-spacing:0.378000px;}
.ws12{word-spacing:0.432000px;}
.ws85{word-spacing:0.486000px;}
.ws16{word-spacing:0.540000px;}
.ws40{word-spacing:0.594000px;}
.ws49{word-spacing:0.648000px;}
.wsf7{word-spacing:0.702000px;}
.wsf8{word-spacing:0.840000px;}
.ws2b{word-spacing:0.864000px;}
.ws6a{word-spacing:0.918000px;}
.wsfe{word-spacing:0.924000px;}
.wsfd{word-spacing:0.966000px;}
.wsc{word-spacing:0.972000px;}
.wsdb{word-spacing:1.026000px;}
.ws43{word-spacing:1.080000px;}
.wsb2{word-spacing:1.134000px;}
.ws32{word-spacing:1.188000px;}
.ws10c{word-spacing:1.218000px;}
.ws21{word-spacing:1.242000px;}
.wsf1{word-spacing:1.296000px;}
.wsde{word-spacing:1.350000px;}
.wsb3{word-spacing:1.404000px;}
.ws8f{word-spacing:1.458000px;}
.ws45{word-spacing:1.512000px;}
.wsc5{word-spacing:1.566000px;}
.wsf4{word-spacing:1.620000px;}
.wsd4{word-spacing:1.674000px;}
.ws11{word-spacing:1.728000px;}
.wsa7{word-spacing:1.890000px;}
.ws59{word-spacing:1.944000px;}
.ws5a{word-spacing:2.052000px;}
.ws28{word-spacing:2.106000px;}
.ws10{word-spacing:2.322000px;}
.ws84{word-spacing:2.376000px;}
.wsa9{word-spacing:2.430000px;}
.wsa1{word-spacing:2.538000px;}
.wsce{word-spacing:2.592000px;}
.wsf6{word-spacing:2.754000px;}
.wsa6{word-spacing:2.862000px;}
.wsc7{word-spacing:2.970000px;}
.wsfb{word-spacing:3.066000px;}
.wse1{word-spacing:3.078000px;}
.wsec{word-spacing:3.132000px;}
.wse{word-spacing:3.186000px;}
.ws8a{word-spacing:3.240000px;}
.ws14{word-spacing:3.294000px;}
.ws4b{word-spacing:3.348000px;}
.wsef{word-spacing:3.510000px;}
.wsea{word-spacing:3.564000px;}
.ws34{word-spacing:3.618000px;}
.wsae{word-spacing:3.672000px;}
.ws15{word-spacing:3.726000px;}
.ws31{word-spacing:3.780000px;}
.ws50{word-spacing:3.834000px;}
.ws92{word-spacing:3.888000px;}
.ws64{word-spacing:3.942000px;}
.ws10a{word-spacing:4.032000px;}
.wscc{word-spacing:4.320000px;}
.ws4c{word-spacing:4.428000px;}
.ws102{word-spacing:4.452000px;}
.ws2a{word-spacing:4.482000px;}
.wsd3{word-spacing:4.536000px;}
.ws23{word-spacing:4.644000px;}
.ws62{word-spacing:4.752000px;}
.wsc6{word-spacing:4.806000px;}
.wsf2{word-spacing:4.860000px;}
.ws13{word-spacing:5.022000px;}
.wsfa{word-spacing:5.124000px;}
.ws3c{word-spacing:5.184000px;}
.wsd{word-spacing:5.238000px;}
.wsb5{word-spacing:5.616000px;}
.ws106{word-spacing:5.628000px;}
.ws108{word-spacing:5.670000px;}
.ws89{word-spacing:5.724000px;}
.wsda{word-spacing:5.778000px;}
.wsa4{word-spacing:5.832000px;}
.ws24{word-spacing:5.886000px;}
.ws91{word-spacing:5.940000px;}
.ws4a{word-spacing:5.994000px;}
.ws27{word-spacing:6.102000px;}
.wscf{word-spacing:6.264000px;}
.ws4f{word-spacing:6.318000px;}
.ws8d{word-spacing:6.372000px;}
.ws39{word-spacing:6.642000px;}
.ws90{word-spacing:6.696000px;}
.ws66{word-spacing:6.912000px;}
.wsd1{word-spacing:7.020000px;}
.wscb{word-spacing:7.074000px;}
.wsbd{word-spacing:7.290000px;}
.ws105{word-spacing:7.308000px;}
.ws57{word-spacing:7.344000px;}
.ws8c{word-spacing:7.452000px;}
.ws46{word-spacing:7.506000px;}
.ws5d{word-spacing:7.614000px;}
.ws20{word-spacing:7.776000px;}
.wsc0{word-spacing:7.884000px;}
.ws6b{word-spacing:8.046000px;}
.ws4d{word-spacing:8.154000px;}
.ws3d{word-spacing:8.262000px;}
.wsab{word-spacing:8.316000px;}
.ws37{word-spacing:8.586000px;}
.ws53{word-spacing:8.640000px;}
.wsf5{word-spacing:8.856000px;}
.ws3b{word-spacing:8.964000px;}
.ws2d{word-spacing:9.018000px;}
.ws104{word-spacing:9.198000px;}
.wsf{word-spacing:9.234000px;}
.wsfc{word-spacing:9.534000px;}
.ws17{word-spacing:9.702000px;}
.ws5c{word-spacing:9.828000px;}
.ws56{word-spacing:9.990000px;}
.ws87{word-spacing:10.206000px;}
.ws41{word-spacing:10.260000px;}
.ws6c{word-spacing:10.368000px;}
.wsed{word-spacing:10.422000px;}
.ws103{word-spacing:10.458000px;}
.ws3e{word-spacing:11.070000px;}
.wse0{word-spacing:11.340000px;}
.wsa8{word-spacing:11.502000px;}
.ws2c{word-spacing:11.556000px;}
.wse9{word-spacing:11.718000px;}
.wsd9{word-spacing:12.420000px;}
.wsb0{word-spacing:12.528000px;}
.wsc1{word-spacing:12.690000px;}
.wsbe{word-spacing:12.744000px;}
.wsad{word-spacing:12.852000px;}
.wsaa{word-spacing:13.176000px;}
.wsb1{word-spacing:13.230000px;}
.ws9f{word-spacing:13.284000px;}
.wsc8{word-spacing:13.446000px;}
.wsc9{word-spacing:13.500000px;}
.ws8e{word-spacing:13.662000px;}
.ws51{word-spacing:13.878000px;}
.wsac{word-spacing:13.932000px;}
.ws60{word-spacing:14.148000px;}
.ws67{word-spacing:14.202000px;}
.ws35{word-spacing:14.310000px;}
.wsbc{word-spacing:14.364000px;}
.wsb4{word-spacing:14.742000px;}
.wsa2{word-spacing:15.066000px;}
.wsd0{word-spacing:15.336000px;}
.ws42{word-spacing:15.822000px;}
.wsc3{word-spacing:16.524000px;}
.ws25{word-spacing:16.794000px;}
.ws38{word-spacing:16.956000px;}
.ws8b{word-spacing:17.118000px;}
.ws58{word-spacing:17.334000px;}
.wseb{word-spacing:17.712000px;}
.ws2e{word-spacing:17.874000px;}
.ws5e{word-spacing:17.982000px;}
.ws86{word-spacing:18.522000px;}
.ws5f{word-spacing:18.576000px;}
.ws3a{word-spacing:18.900000px;}
.ws48{word-spacing:19.116000px;}
.ws29{word-spacing:19.656000px;}
.wsd5{word-spacing:19.872000px;}
.wsc2{word-spacing:21.438000px;}
.wsca{word-spacing:21.708000px;}
.ws36{word-spacing:22.356000px;}
.wsd6{word-spacing:23.976000px;}
.wsd2{word-spacing:24.030000px;}
.wsdf{word-spacing:24.084000px;}
.ws9d{word-spacing:24.462000px;}
.ws44{word-spacing:24.894000px;}
.ws6d{word-spacing:25.812000px;}
.wsd8{word-spacing:26.460000px;}
.wsd7{word-spacing:33.804000px;}
.ws52{word-spacing:36.882000px;}
.wsee{word-spacing:36.936000px;}
.ws5b{word-spacing:39.258000px;}
.ws7b{word-spacing:51.840600px;}
.ws3f{word-spacing:52.434000px;}
.ws80{word-spacing:102.919800px;}
.ws98{word-spacing:110.467800px;}
.ws74{word-spacing:120.468000px;}
.ws99{word-spacing:123.847200px;}
.ws96{word-spacing:133.291800px;}
.ws72{word-spacing:143.292000px;}
.ws7c{word-spacing:149.287800px;}
.ws9b{word-spacing:150.514800px;}
.ws77{word-spacing:160.515000px;}
.ws83{word-spacing:166.702200px;}
.ws82{word-spacing:178.710000px;}
.ws81{word-spacing:185.392200px;}
.ws7e{word-spacing:197.484000px;}
.ws7d{word-spacing:218.110200px;}
.ws7f{word-spacing:236.460000px;}
.ws97{word-spacing:239.785800px;}
.ws76{word-spacing:251.040000px;}
.ws75{word-spacing:252.367200px;}
.wsbb{word-spacing:265.921800px;}
.ws73{word-spacing:270.717000px;}
.ws9c{word-spacing:277.266000px;}
.ws9a{word-spacing:283.948200px;}
.wsba{word-spacing:325.809600px;}
.ws6f{word-spacing:1168.340400px;}
.wsb6{word-spacing:1168.487400px;}
.ws19{word-spacing:1169.054400px;}
.ws54{word-spacing:1169.159400px;}
.ws93{word-spacing:1169.243400px;}
.wse3{word-spacing:1169.957400px;}
.ws0{word-spacing:1170.797400px;}
._3d{margin-left:-18.480000px;}
._3f{margin-left:-17.094000px;}
._25{margin-left:-14.859872px;}
._3e{margin-left:-13.398000px;}
._7{margin-left:-11.298000px;}
._4{margin-left:-9.534480px;}
._10{margin-left:-7.421400px;}
._5{margin-left:-5.862000px;}
._3{margin-left:-4.410000px;}
._d{margin-left:-3.381600px;}
._0{margin-left:-1.682400px;}
._2{width:1.808400px;}
._6{width:3.246300px;}
._b{width:4.539600px;}
._c{width:6.678000px;}
._3c{width:8.471400px;}
._8{width:9.699000px;}
._f{width:10.876200px;}
._26{width:12.601200px;}
._e{width:22.842000px;}
._3b{width:36.311400px;}
._1c{width:59.096400px;}
._1d{width:60.944400px;}
._21{width:86.646000px;}
._28{width:91.719600px;}
._1f{width:93.870000px;}
._20{width:97.944000px;}
._12{width:101.719200px;}
._18{width:103.770000px;}
._15{width:105.618000px;}
._2a{width:121.260000px;}
._2b{width:124.749600px;}
._16{width:130.092600px;}
._17{width:134.749200px;}
._2d{width:136.039200px;}
._27{width:138.774000px;}
._13{width:140.326800px;}
._2f{width:141.610800px;}
._30{width:143.289000px;}
._14{width:145.165200px;}
._31{width:146.889000px;}
._29{width:149.275800px;}
._3a{width:150.756000px;}
._19{width:154.248600px;}
._1a{width:156.889200px;}
._11{width:158.774400px;}
._35{width:160.048800px;}
._1e{width:168.798000px;}
._2c{width:173.127000px;}
._24{width:179.118600px;}
._34{width:185.202000px;}
._33{width:194.365800px;}
._32{width:196.500000px;}
._1b{width:221.838600px;}
._37{width:224.578200px;}
._36{width:230.001000px;}
._39{width:234.061200px;}
._38{width:241.481400px;}
._23{width:244.537200px;}
._2e{width:258.135000px;}
._22{width:447.700200px;}
._a{width:872.618400px;}
._1{width:874.361400px;}
._9{width:2021.481600px;}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(43,43,42);}
.fc3{color:rgb(126,127,127);}
.fc2{color:rgb(27,28,27);}
.fc1{color:rgb(101,193,97);}
.fc0{color:rgb(112,111,112);}
.fs4{font-size:24.780000px;}
.fs6{font-size:31.860000px;}
.fs7{font-size:33.000000px;}
.fs3{font-size:38.940000px;}
.fsb{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs9{font-size:81.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:53.149650px;}
.ybf{bottom:86.812350px;}
.yc0{bottom:91.672350px;}
.y93{bottom:104.812350px;}
.y92{bottom:122.812350px;}
.y11a{bottom:125.268600px;}
.y105{bottom:125.812350px;}
.y98{bottom:132.748500px;}
.y104{bottom:137.812350px;}
.y119{bottom:137.895750px;}
.y91{bottom:140.812350px;}
.y97{bottom:146.248500px;}
.y118{bottom:150.523050px;}
.y2f{bottom:153.543150px;}
.y103{bottom:155.812350px;}
.y90{bottom:158.812350px;}
.y96{bottom:159.748500px;}
.ye2{bottom:163.672350px;}
.y102{bottom:167.812350px;}
.y117{bottom:169.150200px;}
.y2e{bottom:170.043150px;}
.y8f{bottom:176.812350px;}
.y116{bottom:181.414050px;}
.ye1{bottom:181.672350px;}
.y101{bottom:185.812350px;}
.y2d{bottom:191.043150px;}
.y115{bottom:194.041200px;}
.y8e{bottom:194.812350px;}
.y100{bottom:197.812350px;}
.yc5{bottom:199.672350px;}
.yff{bottom:209.812350px;}
.y114{bottom:212.668500px;}
.y8d{bottom:212.812350px;}
.y113{bottom:225.295650px;}
.yfe{bottom:227.812350px;}
.y2c{bottom:228.543150px;}
.y8c{bottom:230.812350px;}
.yc4{bottom:235.672350px;}
.y112{bottom:237.922800px;}
.yfd{bottom:239.812350px;}
.y2b{bottom:246.543150px;}
.y8b{bottom:248.812350px;}
.yfc{bottom:251.812350px;}
.y111{bottom:256.549950px;}
.y2a{bottom:264.543150px;}
.y8a{bottom:266.812350px;}
.y110{bottom:269.177250px;}
.yfb{bottom:269.812350px;}
.yfa{bottom:281.812350px;}
.y29{bottom:282.543150px;}
.y89{bottom:284.812350px;}
.y10f{bottom:287.804400px;}
.yf9{bottom:293.812350px;}
.y10e{bottom:300.431550px;}
.y28{bottom:300.543150px;}
.y88{bottom:302.812350px;}
.yf8{bottom:311.812350px;}
.y26{bottom:318.543150px;}
.y10d{bottom:319.058850px;}
.y87{bottom:320.812350px;}
.y27{bottom:323.403150px;}
.yf7{bottom:323.812350px;}
.y10c{bottom:331.686000px;}
.yf6{bottom:335.812350px;}
.y25{bottom:336.543150px;}
.y86{bottom:338.812350px;}
.y10b{bottom:344.313150px;}
.yf5{bottom:347.812350px;}
.y24{bottom:354.543150px;}
.y85{bottom:356.812350px;}
.y10a{bottom:362.940300px;}
.yf4{bottom:365.812350px;}
.y23{bottom:372.543150px;}
.y84{bottom:374.812350px;}
.y109{bottom:375.567600px;}
.yf3{bottom:377.812350px;}
.yf2{bottom:389.812350px;}
.y22{bottom:390.543150px;}
.y83{bottom:392.812350px;}
.y108{bottom:394.194750px;}
.ye7{bottom:397.672350px;}
.y107{bottom:406.821900px;}
.yf1{bottom:407.812350px;}
.y21{bottom:408.543150px;}
.y82{bottom:410.812350px;}
.y106{bottom:419.449050px;}
.yf0{bottom:419.812350px;}
.y20{bottom:426.543150px;}
.y81{bottom:428.812350px;}
.y1f{bottom:444.543150px;}
.y80{bottom:446.812350px;}
.y1e{bottom:462.543150px;}
.y7f{bottom:464.812350px;}
.ye6{bottom:469.672350px;}
.y1d{bottom:480.543150px;}
.y54{bottom:481.553550px;}
.y7e{bottom:482.812350px;}
.ye5{bottom:487.672350px;}
.y53{bottom:495.053550px;}
.y1c{bottom:498.543150px;}
.y7d{bottom:500.812350px;}
.y52{bottom:508.553550px;}
.ya7{bottom:508.847100px;}
.y1b{bottom:516.543150px;}
.y7c{bottom:518.812350px;}
.y51{bottom:522.053550px;}
.ya6{bottom:522.347100px;}
.y1a{bottom:534.543150px;}
.y50{bottom:535.553550px;}
.ya5{bottom:535.847100px;}
.y7b{bottom:536.812350px;}
.y4f{bottom:549.053550px;}
.ya4{bottom:549.347100px;}
.y19{bottom:552.543150px;}
.y79{bottom:554.812350px;}
.y7a{bottom:559.672350px;}
.y4e{bottom:562.553550px;}
.ya3{bottom:562.847100px;}
.y18{bottom:570.543150px;}
.y78{bottom:572.812350px;}
.y4d{bottom:576.053550px;}
.ya2{bottom:583.762950px;}
.y17{bottom:588.543150px;}
.y4c{bottom:589.553550px;}
.y76{bottom:590.812350px;}
.y77{bottom:595.672350px;}
.y4b{bottom:603.053550px;}
.ya1{bottom:605.853000px;}
.y16{bottom:606.543150px;}
.y75{bottom:608.812350px;}
.y4a{bottom:616.553550px;}
.y15{bottom:624.543150px;}
.y74{bottom:626.812350px;}
.ya0{bottom:627.943200px;}
.y49{bottom:630.053550px;}
.ye0{bottom:631.672350px;}
.ybe{bottom:636.944850px;}
.y14{bottom:642.543150px;}
.y48{bottom:643.553400px;}
.y73{bottom:644.812350px;}
.y95{bottom:649.672350px;}
.y9f{bottom:650.033250px;}
.y47{bottom:657.310050px;}
.ybd{bottom:659.034900px;}
.y13{bottom:660.543150px;}
.y72{bottom:662.812350px;}
.ydf{bottom:667.672350px;}
.y9e{bottom:672.123300px;}
.y46{bottom:678.379050px;}
.y12{bottom:678.543150px;}
.y71{bottom:680.812350px;}
.ybc{bottom:681.124950px;}
.y45{bottom:691.879050px;}
.y9d{bottom:694.213350px;}
.y11{bottom:696.543150px;}
.y70{bottom:698.812350px;}
.ybb{bottom:703.215150px;}
.yc3{bottom:703.672350px;}
.y9c{bottom:703.795050px;}
.y44{bottom:705.379050px;}
.y10{bottom:714.543150px;}
.y6f{bottom:716.812350px;}
.yba{bottom:718.215150px;}
.y9b{bottom:718.795050px;}
.y43{bottom:718.879050px;}
.y42{bottom:732.379050px;}
.y6e{bottom:734.812350px;}
.yc2{bottom:739.672350px;}
.y41{bottom:745.879050px;}
.yb9{bottom:746.255850px;}
.y9a{bottom:746.835900px;}
.y6d{bottom:752.812350px;}
.yf{bottom:758.476650px;}
.y40{bottom:759.379050px;}
.yb8{bottom:759.755850px;}
.y99{bottom:760.335900px;}
.y6c{bottom:770.812350px;}
.ye{bottom:771.976650px;}
.y3f{bottom:773.135400px;}
.yd{bottom:785.476650px;}
.y6b{bottom:788.812350px;}
.yc1{bottom:793.672350px;}
.y3e{bottom:794.204550px;}
.yc{bottom:798.976650px;}
.ycd{bottom:802.852500px;}
.y6a{bottom:806.812350px;}
.y3d{bottom:807.704550px;}
.yb7{bottom:809.010600px;}
.yb{bottom:816.256650px;}
.ycc{bottom:816.352500px;}
.y3c{bottom:821.204550px;}
.y69{bottom:824.812350px;}
.ycb{bottom:829.852500px;}
.yb6{bottom:831.100650px;}
.y9{bottom:837.360150px;}
.y3b{bottom:842.204550px;}
.ydd{bottom:842.463450px;}
.y68{bottom:842.812350px;}
.ya{bottom:843.300150px;}
.yca{bottom:843.352500px;}
.yb5{bottom:853.190850px;}
.y3a{bottom:855.704550px;}
.ydc{bottom:855.963450px;}
.yc9{bottom:856.852500px;}
.y7{bottom:859.860150px;}
.y67{bottom:860.812350px;}
.y8{bottom:865.800150px;}
.y39{bottom:869.461050px;}
.ydb{bottom:869.463450px;}
.yc8{bottom:870.352500px;}
.yb4{bottom:871.190850px;}
.y66{bottom:878.812350px;}
.yda{bottom:882.963450px;}
.ye4{bottom:883.672350px;}
.yc7{bottom:883.852500px;}
.y38{bottom:890.529900px;}
.yb3{bottom:893.280900px;}
.yd9{bottom:896.463450px;}
.y65{bottom:896.812350px;}
.yc6{bottom:897.352500px;}
.y6{bottom:901.999650px;}
.y37{bottom:904.029900px;}
.y64{bottom:914.812350px;}
.yb2{bottom:915.370950px;}
.yd8{bottom:917.379300px;}
.y36{bottom:917.529900px;}
.yde{bottom:919.672350px;}
.y35{bottom:931.029900px;}
.y63{bottom:932.812350px;}
.yb1{bottom:937.461150px;}
.yd7{bottom:939.469500px;}
.y5{bottom:939.499650px;}
.y34{bottom:944.786550px;}
.y62{bottom:950.812350px;}
.yb0{bottom:955.461150px;}
.yd6{bottom:961.559550px;}
.y33{bottom:965.855550px;}
.y61{bottom:968.812350px;}
.yef{bottom:968.821350px;}
.y4{bottom:976.999650px;}
.yaf{bottom:977.551050px;}
.y32{bottom:979.355550px;}
.yd5{bottom:983.649600px;}
.y60{bottom:986.812350px;}
.yee{bottom:990.911550px;}
.y31{bottom:993.111900px;}
.yae{bottom:999.641250px;}
.y5f{bottom:1004.812350px;}
.yd4{bottom:1005.739800px;}
.yed{bottom:1008.911550px;}
.y30{bottom:1014.181050px;}
.y3{bottom:1014.499650px;}
.yad{bottom:1021.731300px;}
.y5e{bottom:1022.812350px;}
.yd3{bottom:1027.829700px;}
.yec{bottom:1031.001600px;}
.y5d{bottom:1040.812350px;}
.yac{bottom:1043.821350px;}
.yd2{bottom:1049.919900px;}
.y2{bottom:1051.999650px;}
.yeb{bottom:1053.091650px;}
.y5c{bottom:1058.812350px;}
.yab{bottom:1065.911550px;}
.yea{bottom:1068.091650px;}
.yd1{bottom:1072.009950px;}
.y5b{bottom:1076.812350px;}
.yd0{bottom:1081.591650px;}
.ye9{bottom:1083.091650px;}
.yaa{bottom:1088.001600px;}
.y5a{bottom:1094.812350px;}
.ycf{bottom:1096.591650px;}
.ya9{bottom:1110.091650px;}
.ye8{bottom:1111.132500px;}
.y94{bottom:1112.812350px;}
.yce{bottom:1124.632500px;}
.y59{bottom:1130.812350px;}
.ye3{bottom:1135.672350px;}
.ya8{bottom:1138.132500px;}
.y57{bottom:1175.303400px;}
.y56{bottom:1188.803400px;}
.y58{bottom:1202.272050px;}
.y55{bottom:1202.303400px;}
.h6{height:18.386760px;}
.h12{height:22.811760px;}
.hb{height:23.640120px;}
.hc{height:24.453000px;}
.h16{height:27.924000px;}
.h5{height:28.971360px;}
.h15{height:30.072000px;}
.he{height:31.122000px;}
.h7{height:31.164000px;}
.h2{height:31.248000px;}
.h8{height:33.506760px;}
.hd{height:35.568000px;}
.h10{height:38.664000px;}
.h9{height:40.068000px;}
.h14{height:40.176000px;}
.h11{height:42.251760px;}
.ha{height:43.080120px;}
.h17{height:43.143840px;}
.h4{height:49.104000px;}
.h13{height:53.568000px;}
.hf{height:60.264000px;}
.h18{height:66.072000px;}
.h3{height:93.744000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:74.409450px;}
.x1b{left:79.081800px;}
.xd{left:82.518000px;}
.x19{left:93.534450px;}
.xf{left:95.653950px;}
.x37{left:113.749050px;}
.x38{left:117.581100px;}
.x3e{left:118.709850px;}
.x3f{left:122.512500px;}
.x23{left:125.459100px;}
.x24{left:129.149250px;}
.x1c{left:153.141600px;}
.x33{left:168.014400px;}
.x34{left:171.875100px;}
.x48{left:175.303200px;}
.x1e{left:184.042350px;}
.x49{left:194.051250px;}
.x1f{left:218.102550px;}
.x12{left:235.458750px;}
.x1d{left:237.141600px;}
.x13{left:239.198700px;}
.x4b{left:263.521500px;}
.x39{left:269.837100px;}
.x4a{left:272.157600px;}
.x3a{left:273.669300px;}
.x21{left:291.671550px;}
.x20{left:303.018000px;}
.x3d{left:329.033250px;}
.x2{left:332.503950px;}
.x14{left:336.364500px;}
.x10{left:340.036200px;}
.x11{left:343.921050px;}
.x4d{left:354.686100px;}
.x4c{left:363.359700px;}
.x22{left:380.381550px;}
.x4e{left:382.202250px;}
.x40{left:384.777300px;}
.x3b{left:394.884750px;}
.x3c{left:398.824500px;}
.x41{left:427.806000px;}
.x35{left:431.951100px;}
.x36{left:435.811800px;}
.x6{left:450.753000px;}
.x15{left:457.071600px;}
.x1a{left:464.487450px;}
.x4f{left:466.086600px;}
.x16{left:478.331100px;}
.x29{left:500.204700px;}
.x2a{left:503.904600px;}
.x3{left:540.594600px;}
.x46{left:544.700700px;}
.x47{left:548.497050px;}
.x17{left:561.066750px;}
.x18{left:564.887100px;}
.x32{left:572.075100px;}
.x31{left:573.221400px;}
.x9{left:585.820050px;}
.xa{left:590.314500px;}
.x7{left:615.456450px;}
.xe{left:661.241850px;}
.x2f{left:664.937550px;}
.x30{left:668.757900px;}
.x45{left:677.500650px;}
.x44{left:679.826100px;}
.x2d{left:681.430200px;}
.x4{left:684.012150px;}
.x2e{left:685.250550px;}
.xb{left:694.645500px;}
.x42{left:696.382650px;}
.xc{left:699.140100px;}
.x43{left:700.203150px;}
.x25{left:707.599800px;}
.x26{left:711.387750px;}
.x8{left:781.266000px;}
.x27{left:794.293650px;}
.x5{left:796.989600px;}
.x28{left:798.081450px;}
.x2b{left:811.793850px;}
.x2c{left:815.493750px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v5{vertical-align:-17.280000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v4{vertical-align:17.280000pt;}
.v6{vertical-align:32.000000pt;}
.ls2b{letter-spacing:-3.696000pt;}
.ls13{letter-spacing:-1.642667pt;}
.ls15{letter-spacing:-1.456000pt;}
.ls22{letter-spacing:-1.392000pt;}
.ls23{letter-spacing:-1.248000pt;}
.ls3{letter-spacing:-1.120000pt;}
.ls28{letter-spacing:-1.045333pt;}
.ls16{letter-spacing:-1.008000pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls2c{letter-spacing:-0.634667pt;}
.ls1a{letter-spacing:-0.624000pt;}
.ls1b{letter-spacing:-0.576000pt;}
.ls6{letter-spacing:-0.485333pt;}
.ls14{letter-spacing:-0.448000pt;}
.ls18{letter-spacing:-0.410667pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.373333pt;}
.ls25{letter-spacing:-0.336000pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls29{letter-spacing:-0.261333pt;}
.lse{letter-spacing:-0.240000pt;}
.ls2d{letter-spacing:-0.224000pt;}
.ls2a{letter-spacing:-0.186667pt;}
.ls5{letter-spacing:-0.088000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.048000pt;}
.ls9{letter-spacing:0.085053pt;}
.ls19{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.143648pt;}
.ls8{letter-spacing:0.143838pt;}
.lsa{letter-spacing:0.143846pt;}
.ls7{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.186667pt;}
.ls0{letter-spacing:0.264000pt;}
.ls21{letter-spacing:0.282764pt;}
.ls20{letter-spacing:0.283302pt;}
.ls2e{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.479336pt;}
.ls1d{letter-spacing:0.479905pt;}
.ls1c{letter-spacing:0.480000pt;}
.ls1f{letter-spacing:0.480099pt;}
.lsd{letter-spacing:0.527967pt;}
.lsc{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.624000pt;}
.ls27{letter-spacing:0.746667pt;}
.ls26{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.866667pt;}
.ws1a{word-spacing:-18.504000pt;}
.ws71{word-spacing:-12.336000pt;}
.wsb7{word-spacing:-11.376000pt;}
.ws55{word-spacing:-10.992000pt;}
.ws1b{word-spacing:-10.896000pt;}
.ws1c{word-spacing:-10.656000pt;}
.ws94{word-spacing:-9.669333pt;}
.ws1{word-spacing:-9.594667pt;}
.wsb8{word-spacing:-9.504000pt;}
.wse4{word-spacing:-9.221333pt;}
.ws18{word-spacing:-9.109333pt;}
.ws70{word-spacing:-9.072000pt;}
.ws2{word-spacing:-8.895627pt;}
.wse8{word-spacing:-8.810667pt;}
.wse6{word-spacing:-8.661333pt;}
.wsb{word-spacing:-8.474667pt;}
.wse7{word-spacing:-8.250667pt;}
.ws109{word-spacing:-7.952000pt;}
.ws7a{word-spacing:-7.938667pt;}
.ws79{word-spacing:-7.869333pt;}
.wse5{word-spacing:-7.840000pt;}
.ws100{word-spacing:-7.765333pt;}
.ws5{word-spacing:-7.618080pt;}
.ws9{word-spacing:-7.392000pt;}
.wsb9{word-spacing:-7.278240pt;}
.ws6{word-spacing:-7.128000pt;}
.ws8{word-spacing:-7.040000pt;}
.ws7{word-spacing:-6.834667pt;}
.ws1d{word-spacing:-6.428640pt;}
.ws3{word-spacing:-5.925173pt;}
.wscd{word-spacing:-2.160000pt;}
.wsf0{word-spacing:-1.920000pt;}
.wsa0{word-spacing:-1.584000pt;}
.ws68{word-spacing:-1.344000pt;}
.ws69{word-spacing:-1.296000pt;}
.wsbf{word-spacing:-1.248000pt;}
.ws1f{word-spacing:-1.104000pt;}
.ws47{word-spacing:-1.008000pt;}
.ws1e{word-spacing:-0.933333pt;}
.wsf9{word-spacing:-0.858667pt;}
.wsa5{word-spacing:-0.816000pt;}
.ws65{word-spacing:-0.768000pt;}
.ws107{word-spacing:-0.746667pt;}
.ws61{word-spacing:-0.720000pt;}
.ws88{word-spacing:-0.672000pt;}
.wsa3{word-spacing:-0.624000pt;}
.wsff{word-spacing:-0.597333pt;}
.ws9e{word-spacing:-0.576000pt;}
.ws63{word-spacing:-0.528000pt;}
.wsf3{word-spacing:-0.480000pt;}
.ws2f{word-spacing:-0.432000pt;}
.wse2{word-spacing:-0.410667pt;}
.wsdd{word-spacing:-0.288000pt;}
.wsc4{word-spacing:-0.240000pt;}
.ws4e{word-spacing:-0.192000pt;}
.ws30{word-spacing:-0.144000pt;}
.ws10b{word-spacing:-0.112000pt;}
.ws4{word-spacing:-0.048000pt;}
.ws95{word-spacing:-0.037333pt;}
.ws78{word-spacing:-0.034667pt;}
.wsa{word-spacing:0.000000pt;}
.ws33{word-spacing:0.048000pt;}
.wsaf{word-spacing:0.192000pt;}
.ws101{word-spacing:0.224000pt;}
.ws22{word-spacing:0.240000pt;}
.wsdc{word-spacing:0.288000pt;}
.ws6e{word-spacing:0.293333pt;}
.ws26{word-spacing:0.336000pt;}
.ws12{word-spacing:0.384000pt;}
.ws85{word-spacing:0.432000pt;}
.ws16{word-spacing:0.480000pt;}
.ws40{word-spacing:0.528000pt;}
.ws49{word-spacing:0.576000pt;}
.wsf7{word-spacing:0.624000pt;}
.wsf8{word-spacing:0.746667pt;}
.ws2b{word-spacing:0.768000pt;}
.ws6a{word-spacing:0.816000pt;}
.wsfe{word-spacing:0.821333pt;}
.wsfd{word-spacing:0.858667pt;}
.wsc{word-spacing:0.864000pt;}
.wsdb{word-spacing:0.912000pt;}
.ws43{word-spacing:0.960000pt;}
.wsb2{word-spacing:1.008000pt;}
.ws32{word-spacing:1.056000pt;}
.ws10c{word-spacing:1.082667pt;}
.ws21{word-spacing:1.104000pt;}
.wsf1{word-spacing:1.152000pt;}
.wsde{word-spacing:1.200000pt;}
.wsb3{word-spacing:1.248000pt;}
.ws8f{word-spacing:1.296000pt;}
.ws45{word-spacing:1.344000pt;}
.wsc5{word-spacing:1.392000pt;}
.wsf4{word-spacing:1.440000pt;}
.wsd4{word-spacing:1.488000pt;}
.ws11{word-spacing:1.536000pt;}
.wsa7{word-spacing:1.680000pt;}
.ws59{word-spacing:1.728000pt;}
.ws5a{word-spacing:1.824000pt;}
.ws28{word-spacing:1.872000pt;}
.ws10{word-spacing:2.064000pt;}
.ws84{word-spacing:2.112000pt;}
.wsa9{word-spacing:2.160000pt;}
.wsa1{word-spacing:2.256000pt;}
.wsce{word-spacing:2.304000pt;}
.wsf6{word-spacing:2.448000pt;}
.wsa6{word-spacing:2.544000pt;}
.wsc7{word-spacing:2.640000pt;}
.wsfb{word-spacing:2.725333pt;}
.wse1{word-spacing:2.736000pt;}
.wsec{word-spacing:2.784000pt;}
.wse{word-spacing:2.832000pt;}
.ws8a{word-spacing:2.880000pt;}
.ws14{word-spacing:2.928000pt;}
.ws4b{word-spacing:2.976000pt;}
.wsef{word-spacing:3.120000pt;}
.wsea{word-spacing:3.168000pt;}
.ws34{word-spacing:3.216000pt;}
.wsae{word-spacing:3.264000pt;}
.ws15{word-spacing:3.312000pt;}
.ws31{word-spacing:3.360000pt;}
.ws50{word-spacing:3.408000pt;}
.ws92{word-spacing:3.456000pt;}
.ws64{word-spacing:3.504000pt;}
.ws10a{word-spacing:3.584000pt;}
.wscc{word-spacing:3.840000pt;}
.ws4c{word-spacing:3.936000pt;}
.ws102{word-spacing:3.957333pt;}
.ws2a{word-spacing:3.984000pt;}
.wsd3{word-spacing:4.032000pt;}
.ws23{word-spacing:4.128000pt;}
.ws62{word-spacing:4.224000pt;}
.wsc6{word-spacing:4.272000pt;}
.wsf2{word-spacing:4.320000pt;}
.ws13{word-spacing:4.464000pt;}
.wsfa{word-spacing:4.554667pt;}
.ws3c{word-spacing:4.608000pt;}
.wsd{word-spacing:4.656000pt;}
.wsb5{word-spacing:4.992000pt;}
.ws106{word-spacing:5.002667pt;}
.ws108{word-spacing:5.040000pt;}
.ws89{word-spacing:5.088000pt;}
.wsda{word-spacing:5.136000pt;}
.wsa4{word-spacing:5.184000pt;}
.ws24{word-spacing:5.232000pt;}
.ws91{word-spacing:5.280000pt;}
.ws4a{word-spacing:5.328000pt;}
.ws27{word-spacing:5.424000pt;}
.wscf{word-spacing:5.568000pt;}
.ws4f{word-spacing:5.616000pt;}
.ws8d{word-spacing:5.664000pt;}
.ws39{word-spacing:5.904000pt;}
.ws90{word-spacing:5.952000pt;}
.ws66{word-spacing:6.144000pt;}
.wsd1{word-spacing:6.240000pt;}
.wscb{word-spacing:6.288000pt;}
.wsbd{word-spacing:6.480000pt;}
.ws105{word-spacing:6.496000pt;}
.ws57{word-spacing:6.528000pt;}
.ws8c{word-spacing:6.624000pt;}
.ws46{word-spacing:6.672000pt;}
.ws5d{word-spacing:6.768000pt;}
.ws20{word-spacing:6.912000pt;}
.wsc0{word-spacing:7.008000pt;}
.ws6b{word-spacing:7.152000pt;}
.ws4d{word-spacing:7.248000pt;}
.ws3d{word-spacing:7.344000pt;}
.wsab{word-spacing:7.392000pt;}
.ws37{word-spacing:7.632000pt;}
.ws53{word-spacing:7.680000pt;}
.wsf5{word-spacing:7.872000pt;}
.ws3b{word-spacing:7.968000pt;}
.ws2d{word-spacing:8.016000pt;}
.ws104{word-spacing:8.176000pt;}
.wsf{word-spacing:8.208000pt;}
.wsfc{word-spacing:8.474667pt;}
.ws17{word-spacing:8.624000pt;}
.ws5c{word-spacing:8.736000pt;}
.ws56{word-spacing:8.880000pt;}
.ws87{word-spacing:9.072000pt;}
.ws41{word-spacing:9.120000pt;}
.ws6c{word-spacing:9.216000pt;}
.wsed{word-spacing:9.264000pt;}
.ws103{word-spacing:9.296000pt;}
.ws3e{word-spacing:9.840000pt;}
.wse0{word-spacing:10.080000pt;}
.wsa8{word-spacing:10.224000pt;}
.ws2c{word-spacing:10.272000pt;}
.wse9{word-spacing:10.416000pt;}
.wsd9{word-spacing:11.040000pt;}
.wsb0{word-spacing:11.136000pt;}
.wsc1{word-spacing:11.280000pt;}
.wsbe{word-spacing:11.328000pt;}
.wsad{word-spacing:11.424000pt;}
.wsaa{word-spacing:11.712000pt;}
.wsb1{word-spacing:11.760000pt;}
.ws9f{word-spacing:11.808000pt;}
.wsc8{word-spacing:11.952000pt;}
.wsc9{word-spacing:12.000000pt;}
.ws8e{word-spacing:12.144000pt;}
.ws51{word-spacing:12.336000pt;}
.wsac{word-spacing:12.384000pt;}
.ws60{word-spacing:12.576000pt;}
.ws67{word-spacing:12.624000pt;}
.ws35{word-spacing:12.720000pt;}
.wsbc{word-spacing:12.768000pt;}
.wsb4{word-spacing:13.104000pt;}
.wsa2{word-spacing:13.392000pt;}
.wsd0{word-spacing:13.632000pt;}
.ws42{word-spacing:14.064000pt;}
.wsc3{word-spacing:14.688000pt;}
.ws25{word-spacing:14.928000pt;}
.ws38{word-spacing:15.072000pt;}
.ws8b{word-spacing:15.216000pt;}
.ws58{word-spacing:15.408000pt;}
.wseb{word-spacing:15.744000pt;}
.ws2e{word-spacing:15.888000pt;}
.ws5e{word-spacing:15.984000pt;}
.ws86{word-spacing:16.464000pt;}
.ws5f{word-spacing:16.512000pt;}
.ws3a{word-spacing:16.800000pt;}
.ws48{word-spacing:16.992000pt;}
.ws29{word-spacing:17.472000pt;}
.wsd5{word-spacing:17.664000pt;}
.wsc2{word-spacing:19.056000pt;}
.wsca{word-spacing:19.296000pt;}
.ws36{word-spacing:19.872000pt;}
.wsd6{word-spacing:21.312000pt;}
.wsd2{word-spacing:21.360000pt;}
.wsdf{word-spacing:21.408000pt;}
.ws9d{word-spacing:21.744000pt;}
.ws44{word-spacing:22.128000pt;}
.ws6d{word-spacing:22.944000pt;}
.wsd8{word-spacing:23.520000pt;}
.wsd7{word-spacing:30.048000pt;}
.ws52{word-spacing:32.784000pt;}
.wsee{word-spacing:32.832000pt;}
.ws5b{word-spacing:34.896000pt;}
.ws7b{word-spacing:46.080533pt;}
.ws3f{word-spacing:46.608000pt;}
.ws80{word-spacing:91.484267pt;}
.ws98{word-spacing:98.193600pt;}
.ws74{word-spacing:107.082667pt;}
.ws99{word-spacing:110.086400pt;}
.ws96{word-spacing:118.481600pt;}
.ws72{word-spacing:127.370667pt;}
.ws7c{word-spacing:132.700267pt;}
.ws9b{word-spacing:133.790933pt;}
.ws77{word-spacing:142.680000pt;}
.ws83{word-spacing:148.179733pt;}
.ws82{word-spacing:158.853333pt;}
.ws81{word-spacing:164.793067pt;}
.ws7e{word-spacing:175.541333pt;}
.ws7d{word-spacing:193.875733pt;}
.ws7f{word-spacing:210.186667pt;}
.ws97{word-spacing:213.142933pt;}
.ws76{word-spacing:223.146667pt;}
.ws75{word-spacing:224.326400pt;}
.wsbb{word-spacing:236.374933pt;}
.ws73{word-spacing:240.637333pt;}
.ws9c{word-spacing:246.458667pt;}
.ws9a{word-spacing:252.398400pt;}
.wsba{word-spacing:289.608533pt;}
.ws6f{word-spacing:1038.524800pt;}
.wsb6{word-spacing:1038.655467pt;}
.ws19{word-spacing:1039.159467pt;}
.ws54{word-spacing:1039.252800pt;}
.ws93{word-spacing:1039.327467pt;}
.wse3{word-spacing:1039.962133pt;}
.ws0{word-spacing:1040.708800pt;}
._3d{margin-left:-16.426667pt;}
._3f{margin-left:-15.194667pt;}
._25{margin-left:-13.208775pt;}
._3e{margin-left:-11.909333pt;}
._7{margin-left:-10.042667pt;}
._4{margin-left:-8.475093pt;}
._10{margin-left:-6.596800pt;}
._5{margin-left:-5.210667pt;}
._3{margin-left:-3.920000pt;}
._d{margin-left:-3.005867pt;}
._0{margin-left:-1.495467pt;}
._2{width:1.607467pt;}
._6{width:2.885600pt;}
._b{width:4.035200pt;}
._c{width:5.936000pt;}
._3c{width:7.530133pt;}
._8{width:8.621333pt;}
._f{width:9.667733pt;}
._26{width:11.201067pt;}
._e{width:20.304000pt;}
._3b{width:32.276800pt;}
._1c{width:52.530133pt;}
._1d{width:54.172800pt;}
._21{width:77.018667pt;}
._28{width:81.528533pt;}
._1f{width:83.440000pt;}
._20{width:87.061333pt;}
._12{width:90.417067pt;}
._18{width:92.240000pt;}
._15{width:93.882667pt;}
._2a{width:107.786667pt;}
._2b{width:110.888533pt;}
._16{width:115.637867pt;}
._17{width:119.777067pt;}
._2d{width:120.923733pt;}
._27{width:123.354667pt;}
._13{width:124.734933pt;}
._2f{width:125.876267pt;}
._30{width:127.368000pt;}
._14{width:129.035733pt;}
._31{width:130.568000pt;}
._29{width:132.689600pt;}
._3a{width:134.005333pt;}
._19{width:137.109867pt;}
._1a{width:139.457067pt;}
._11{width:141.132800pt;}
._35{width:142.265600pt;}
._1e{width:150.042667pt;}
._2c{width:153.890667pt;}
._24{width:159.216533pt;}
._34{width:164.624000pt;}
._33{width:172.769600pt;}
._32{width:174.666667pt;}
._1b{width:197.189867pt;}
._37{width:199.625067pt;}
._36{width:204.445333pt;}
._39{width:208.054400pt;}
._38{width:214.650133pt;}
._23{width:217.366400pt;}
._2e{width:229.453333pt;}
._22{width:397.955733pt;}
._a{width:775.660800pt;}
._1{width:777.210133pt;}
._9{width:1796.872533pt;}
.fs4{font-size:22.026667pt;}
.fs6{font-size:28.320000pt;}
.fs7{font-size:29.333333pt;}
.fs3{font-size:34.613333pt;}
.fsb{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs9{font-size:72.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:47.244133pt;}
.ybf{bottom:77.166533pt;}
.yc0{bottom:81.486533pt;}
.y93{bottom:93.166533pt;}
.y92{bottom:109.166533pt;}
.y11a{bottom:111.349867pt;}
.y105{bottom:111.833200pt;}
.y98{bottom:117.998667pt;}
.y104{bottom:122.499867pt;}
.y119{bottom:122.574000pt;}
.y91{bottom:125.166533pt;}
.y97{bottom:129.998667pt;}
.y118{bottom:133.798267pt;}
.y2f{bottom:136.482800pt;}
.y103{bottom:138.499867pt;}
.y90{bottom:141.166533pt;}
.y96{bottom:141.998667pt;}
.ye2{bottom:145.486533pt;}
.y102{bottom:149.166533pt;}
.y117{bottom:150.355733pt;}
.y2e{bottom:151.149467pt;}
.y8f{bottom:157.166533pt;}
.y116{bottom:161.256933pt;}
.ye1{bottom:161.486533pt;}
.y101{bottom:165.166533pt;}
.y2d{bottom:169.816133pt;}
.y115{bottom:172.481067pt;}
.y8e{bottom:173.166533pt;}
.y100{bottom:175.833200pt;}
.yc5{bottom:177.486533pt;}
.yff{bottom:186.499867pt;}
.y114{bottom:189.038667pt;}
.y8d{bottom:189.166533pt;}
.y113{bottom:200.262800pt;}
.yfe{bottom:202.499867pt;}
.y2c{bottom:203.149467pt;}
.y8c{bottom:205.166533pt;}
.yc4{bottom:209.486533pt;}
.y112{bottom:211.486933pt;}
.yfd{bottom:213.166533pt;}
.y2b{bottom:219.149467pt;}
.y8b{bottom:221.166533pt;}
.yfc{bottom:223.833200pt;}
.y111{bottom:228.044400pt;}
.y2a{bottom:235.149467pt;}
.y8a{bottom:237.166533pt;}
.y110{bottom:239.268667pt;}
.yfb{bottom:239.833200pt;}
.yfa{bottom:250.499867pt;}
.y29{bottom:251.149467pt;}
.y89{bottom:253.166533pt;}
.y10f{bottom:255.826133pt;}
.yf9{bottom:261.166533pt;}
.y10e{bottom:267.050267pt;}
.y28{bottom:267.149467pt;}
.y88{bottom:269.166533pt;}
.yf8{bottom:277.166533pt;}
.y26{bottom:283.149467pt;}
.y10d{bottom:283.607867pt;}
.y87{bottom:285.166533pt;}
.y27{bottom:287.469467pt;}
.yf7{bottom:287.833200pt;}
.y10c{bottom:294.832000pt;}
.yf6{bottom:298.499867pt;}
.y25{bottom:299.149467pt;}
.y86{bottom:301.166533pt;}
.y10b{bottom:306.056133pt;}
.yf5{bottom:309.166533pt;}
.y24{bottom:315.149467pt;}
.y85{bottom:317.166533pt;}
.y10a{bottom:322.613600pt;}
.yf4{bottom:325.166533pt;}
.y23{bottom:331.149467pt;}
.y84{bottom:333.166533pt;}
.y109{bottom:333.837867pt;}
.yf3{bottom:335.833200pt;}
.yf2{bottom:346.499867pt;}
.y22{bottom:347.149467pt;}
.y83{bottom:349.166533pt;}
.y108{bottom:350.395333pt;}
.ye7{bottom:353.486533pt;}
.y107{bottom:361.619467pt;}
.yf1{bottom:362.499867pt;}
.y21{bottom:363.149467pt;}
.y82{bottom:365.166533pt;}
.y106{bottom:372.843600pt;}
.yf0{bottom:373.166533pt;}
.y20{bottom:379.149467pt;}
.y81{bottom:381.166533pt;}
.y1f{bottom:395.149467pt;}
.y80{bottom:397.166533pt;}
.y1e{bottom:411.149467pt;}
.y7f{bottom:413.166533pt;}
.ye6{bottom:417.486533pt;}
.y1d{bottom:427.149467pt;}
.y54{bottom:428.047600pt;}
.y7e{bottom:429.166533pt;}
.ye5{bottom:433.486533pt;}
.y53{bottom:440.047600pt;}
.y1c{bottom:443.149467pt;}
.y7d{bottom:445.166533pt;}
.y52{bottom:452.047600pt;}
.ya7{bottom:452.308533pt;}
.y1b{bottom:459.149467pt;}
.y7c{bottom:461.166533pt;}
.y51{bottom:464.047600pt;}
.ya6{bottom:464.308533pt;}
.y1a{bottom:475.149467pt;}
.y50{bottom:476.047600pt;}
.ya5{bottom:476.308533pt;}
.y7b{bottom:477.166533pt;}
.y4f{bottom:488.047600pt;}
.ya4{bottom:488.308533pt;}
.y19{bottom:491.149467pt;}
.y79{bottom:493.166533pt;}
.y7a{bottom:497.486533pt;}
.y4e{bottom:500.047600pt;}
.ya3{bottom:500.308533pt;}
.y18{bottom:507.149467pt;}
.y78{bottom:509.166533pt;}
.y4d{bottom:512.047600pt;}
.ya2{bottom:518.900400pt;}
.y17{bottom:523.149467pt;}
.y4c{bottom:524.047600pt;}
.y76{bottom:525.166533pt;}
.y77{bottom:529.486533pt;}
.y4b{bottom:536.047600pt;}
.ya1{bottom:538.536000pt;}
.y16{bottom:539.149467pt;}
.y75{bottom:541.166533pt;}
.y4a{bottom:548.047600pt;}
.y15{bottom:555.149467pt;}
.y74{bottom:557.166533pt;}
.ya0{bottom:558.171733pt;}
.y49{bottom:560.047600pt;}
.ye0{bottom:561.486533pt;}
.ybe{bottom:566.173200pt;}
.y14{bottom:571.149467pt;}
.y48{bottom:572.047467pt;}
.y73{bottom:573.166533pt;}
.y95{bottom:577.486533pt;}
.y9f{bottom:577.807333pt;}
.y47{bottom:584.275600pt;}
.ybd{bottom:585.808800pt;}
.y13{bottom:587.149467pt;}
.y72{bottom:589.166533pt;}
.ydf{bottom:593.486533pt;}
.y9e{bottom:597.442933pt;}
.y46{bottom:603.003600pt;}
.y12{bottom:603.149467pt;}
.y71{bottom:605.166533pt;}
.ybc{bottom:605.444400pt;}
.y45{bottom:615.003600pt;}
.y9d{bottom:617.078533pt;}
.y11{bottom:619.149467pt;}
.y70{bottom:621.166533pt;}
.ybb{bottom:625.080133pt;}
.yc3{bottom:625.486533pt;}
.y9c{bottom:625.595600pt;}
.y44{bottom:627.003600pt;}
.y10{bottom:635.149467pt;}
.y6f{bottom:637.166533pt;}
.yba{bottom:638.413467pt;}
.y9b{bottom:638.928933pt;}
.y43{bottom:639.003600pt;}
.y42{bottom:651.003600pt;}
.y6e{bottom:653.166533pt;}
.yc2{bottom:657.486533pt;}
.y41{bottom:663.003600pt;}
.yb9{bottom:663.338533pt;}
.y9a{bottom:663.854133pt;}
.y6d{bottom:669.166533pt;}
.yf{bottom:674.201467pt;}
.y40{bottom:675.003600pt;}
.yb8{bottom:675.338533pt;}
.y99{bottom:675.854133pt;}
.y6c{bottom:685.166533pt;}
.ye{bottom:686.201467pt;}
.y3f{bottom:687.231467pt;}
.yd{bottom:698.201467pt;}
.y6b{bottom:701.166533pt;}
.yc1{bottom:705.486533pt;}
.y3e{bottom:705.959600pt;}
.yc{bottom:710.201467pt;}
.ycd{bottom:713.646667pt;}
.y6a{bottom:717.166533pt;}
.y3d{bottom:717.959600pt;}
.yb7{bottom:719.120533pt;}
.yb{bottom:725.561467pt;}
.ycc{bottom:725.646667pt;}
.y3c{bottom:729.959600pt;}
.y69{bottom:733.166533pt;}
.ycb{bottom:737.646667pt;}
.yb6{bottom:738.756133pt;}
.y9{bottom:744.320133pt;}
.y3b{bottom:748.626267pt;}
.ydd{bottom:748.856400pt;}
.y68{bottom:749.166533pt;}
.ya{bottom:749.600133pt;}
.yca{bottom:749.646667pt;}
.yb5{bottom:758.391867pt;}
.y3a{bottom:760.626267pt;}
.ydc{bottom:760.856400pt;}
.yc9{bottom:761.646667pt;}
.y7{bottom:764.320133pt;}
.y67{bottom:765.166533pt;}
.y8{bottom:769.600133pt;}
.y39{bottom:772.854267pt;}
.ydb{bottom:772.856400pt;}
.yc8{bottom:773.646667pt;}
.yb4{bottom:774.391867pt;}
.y66{bottom:781.166533pt;}
.yda{bottom:784.856400pt;}
.ye4{bottom:785.486533pt;}
.yc7{bottom:785.646667pt;}
.y38{bottom:791.582133pt;}
.yb3{bottom:794.027467pt;}
.yd9{bottom:796.856400pt;}
.y65{bottom:797.166533pt;}
.yc6{bottom:797.646667pt;}
.y6{bottom:801.777467pt;}
.y37{bottom:803.582133pt;}
.y64{bottom:813.166533pt;}
.yb2{bottom:813.663067pt;}
.yd8{bottom:815.448267pt;}
.y36{bottom:815.582133pt;}
.yde{bottom:817.486533pt;}
.y35{bottom:827.582133pt;}
.y63{bottom:829.166533pt;}
.yb1{bottom:833.298800pt;}
.yd7{bottom:835.084000pt;}
.y5{bottom:835.110800pt;}
.y34{bottom:839.810267pt;}
.y62{bottom:845.166533pt;}
.yb0{bottom:849.298800pt;}
.yd6{bottom:854.719600pt;}
.y33{bottom:858.538267pt;}
.y61{bottom:861.166533pt;}
.yef{bottom:861.174533pt;}
.y4{bottom:868.444133pt;}
.yaf{bottom:868.934267pt;}
.y32{bottom:870.538267pt;}
.yd5{bottom:874.355200pt;}
.y60{bottom:877.166533pt;}
.yee{bottom:880.810267pt;}
.y31{bottom:882.766133pt;}
.yae{bottom:888.570000pt;}
.y5f{bottom:893.166533pt;}
.yd4{bottom:893.990933pt;}
.yed{bottom:896.810267pt;}
.y30{bottom:901.494267pt;}
.y3{bottom:901.777467pt;}
.yad{bottom:908.205600pt;}
.y5e{bottom:909.166533pt;}
.yd3{bottom:913.626400pt;}
.yec{bottom:916.445867pt;}
.y5d{bottom:925.166533pt;}
.yac{bottom:927.841200pt;}
.yd2{bottom:933.262133pt;}
.y2{bottom:935.110800pt;}
.yeb{bottom:936.081467pt;}
.y5c{bottom:941.166533pt;}
.yab{bottom:947.476933pt;}
.yea{bottom:949.414800pt;}
.yd1{bottom:952.897733pt;}
.y5b{bottom:957.166533pt;}
.yd0{bottom:961.414800pt;}
.ye9{bottom:962.748133pt;}
.yaa{bottom:967.112533pt;}
.y5a{bottom:973.166533pt;}
.ycf{bottom:974.748133pt;}
.ya9{bottom:986.748133pt;}
.ye8{bottom:987.673333pt;}
.y94{bottom:989.166533pt;}
.yce{bottom:999.673333pt;}
.y59{bottom:1005.166533pt;}
.ye3{bottom:1009.486533pt;}
.ya8{bottom:1011.673333pt;}
.y57{bottom:1044.714133pt;}
.y56{bottom:1056.714133pt;}
.y58{bottom:1068.686267pt;}
.y55{bottom:1068.714133pt;}
.h6{height:16.343787pt;}
.h12{height:20.277120pt;}
.hb{height:21.013440pt;}
.hc{height:21.736000pt;}
.h16{height:24.821333pt;}
.h5{height:25.752320pt;}
.h15{height:26.730667pt;}
.he{height:27.664000pt;}
.h7{height:27.701333pt;}
.h2{height:27.776000pt;}
.h8{height:29.783787pt;}
.hd{height:31.616000pt;}
.h10{height:34.368000pt;}
.h9{height:35.616000pt;}
.h14{height:35.712000pt;}
.h11{height:37.557120pt;}
.ha{height:38.293440pt;}
.h17{height:38.350080pt;}
.h4{height:43.648000pt;}
.h13{height:47.616000pt;}
.hf{height:53.568000pt;}
.h18{height:58.730667pt;}
.h3{height:83.328000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:66.141733pt;}
.x1b{left:70.294933pt;}
.xd{left:73.349333pt;}
.x19{left:83.141733pt;}
.xf{left:85.025733pt;}
.x37{left:101.110267pt;}
.x38{left:104.516533pt;}
.x3e{left:105.519867pt;}
.x3f{left:108.900000pt;}
.x23{left:111.519200pt;}
.x24{left:114.799333pt;}
.x1c{left:136.125867pt;}
.x33{left:149.346133pt;}
.x34{left:152.777867pt;}
.x48{left:155.825067pt;}
.x1e{left:163.593200pt;}
.x49{left:172.490000pt;}
.x1f{left:193.868933pt;}
.x12{left:209.296667pt;}
.x1d{left:210.792533pt;}
.x13{left:212.621067pt;}
.x4b{left:234.241333pt;}
.x39{left:239.855200pt;}
.x4a{left:241.917867pt;}
.x3a{left:243.261600pt;}
.x21{left:259.263600pt;}
.x20{left:269.349333pt;}
.x3d{left:292.474000pt;}
.x2{left:295.559067pt;}
.x14{left:298.990667pt;}
.x10{left:302.254400pt;}
.x11{left:305.707600pt;}
.x4d{left:315.276533pt;}
.x4c{left:322.986400pt;}
.x22{left:338.116933pt;}
.x4e{left:339.735333pt;}
.x40{left:342.024267pt;}
.x3b{left:351.008667pt;}
.x3c{left:354.510667pt;}
.x41{left:380.272000pt;}
.x35{left:383.956533pt;}
.x36{left:387.388267pt;}
.x6{left:400.669333pt;}
.x15{left:406.285867pt;}
.x1a{left:412.877733pt;}
.x4f{left:414.299200pt;}
.x16{left:425.183200pt;}
.x29{left:444.626400pt;}
.x2a{left:447.915200pt;}
.x3{left:480.528533pt;}
.x46{left:484.178400pt;}
.x47{left:487.552933pt;}
.x17{left:498.726000pt;}
.x18{left:502.121867pt;}
.x32{left:508.511200pt;}
.x31{left:509.530133pt;}
.x9{left:520.728933pt;}
.xa{left:524.724000pt;}
.x7{left:547.072400pt;}
.xe{left:587.770533pt;}
.x2f{left:591.055600pt;}
.x30{left:594.451467pt;}
.x45{left:602.222800pt;}
.x44{left:604.289867pt;}
.x2d{left:605.715733pt;}
.x4{left:608.010800pt;}
.x2e{left:609.111600pt;}
.xb{left:617.462667pt;}
.x42{left:619.006800pt;}
.xc{left:621.457867pt;}
.x43{left:622.402800pt;}
.x25{left:628.977600pt;}
.x26{left:632.344667pt;}
.x8{left:694.458667pt;}
.x27{left:706.038800pt;}
.x5{left:708.435200pt;}
.x28{left:709.405733pt;}
.x2b{left:721.594533pt;}
.x2c{left:724.883333pt;}
}




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