
    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_2cf19f78f1184208610071bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.174000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_59d5a15ab91c78bb6deeba60.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.167000;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_c9daf1b086bebe61e986bb95.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.178000;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_7cc040b953f7224d25c6523e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.178000;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_087e037642e5e62a9a1ebd61.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.174000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8c63f839d691d7e1164e206c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_c50519f306d4ebfd8e4588d2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.207000;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_672decea1ff7914dc3eb1da6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.015280;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;}
.m4e{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);}
.m4f{transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247501,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247641,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247680,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247686,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247688,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247690,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247693,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247773,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247843,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247864,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247977,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247991,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248032,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248057,0.000000,0.000000,0.250000,0,0);}
.m99{transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248066,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248105,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248107,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248121,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248214,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248218,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248225,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248226,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248230,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248361,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248569,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248570,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248607,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248620,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248689,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248714,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248734,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248739,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248782,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248889,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248898,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248993,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248994,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249003,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249023,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249035,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249057,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249086,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249114,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249121,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249123,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249159,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249177,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m2b{transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249255,0.000000,0.000000,0.250000,0,0);}
.m52{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);}
.m7e{transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249325,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249366,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249389,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249446,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249448,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249468,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249470,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249514,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249547,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249589,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249603,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249626,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249627,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249645,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249657,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249659,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249677,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249684,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m69{transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249711,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249714,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249716,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249723,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249741,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249757,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249759,0.000000,0.000000,0.250000,0,0);}
.m96{transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249766,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249770,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249782,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249785,0.000000,0.000000,0.250000,0,0);}
.m98{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249805,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249825,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249850,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249870,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249877,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249936,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m54{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249977,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249993,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250005,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250020,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250080,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250105,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250114,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250134,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250170,0.000000,0.000000,0.250000,0,0);}
.m90{transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250174,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250184,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250214,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250227,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250257,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250266,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250277,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250282,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250320,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250334,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250441,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250459,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250648,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250666,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250675,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250705,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250768,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250780,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250830,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250879,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250911,0.000000,0.000000,0.250000,0,0);}
.m94{transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250945,0.000000,0.000000,0.250000,0,0);}
.m97{transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251055,0.000000,0.000000,0.250000,0,0);}
.m95{transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251111,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251132,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251193,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251195,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251197,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251261,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251266,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251305,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251330,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251370,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251448,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251523,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251745,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252050,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252118,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252202,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-21.978600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.981000px;}
.v2{vertical-align:21.978000px;}
.ls2b{letter-spacing:-7.500000px;}
.ls5d{letter-spacing:-7.125000px;}
.ls43{letter-spacing:-5.760000px;}
.ls30{letter-spacing:-4.800000px;}
.ls49{letter-spacing:-3.630000px;}
.ls25{letter-spacing:-3.420000px;}
.ls19{letter-spacing:-3.300000px;}
.ls5b{letter-spacing:-3.135000px;}
.ls3b{letter-spacing:-3.060000px;}
.ls26{letter-spacing:-2.040000px;}
.ls32{letter-spacing:-1.800000px;}
.ls59{letter-spacing:-1.710000px;}
.ls50{letter-spacing:-1.560000px;}
.ls5c{letter-spacing:-1.539000px;}
.ls16{letter-spacing:-1.320000px;}
.ls42{letter-spacing:-1.200000px;}
.ls4f{letter-spacing:-1.000428px;}
.ls41{letter-spacing:-0.960000px;}
.ls31{letter-spacing:-0.840000px;}
.ls5e{letter-spacing:-0.731082px;}
.ls40{letter-spacing:-0.720000px;}
.ls2e{letter-spacing:-0.538692px;}
.ls3d{letter-spacing:-0.462000px;}
.ls2a{letter-spacing:-0.396000px;}
.ls47{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.330000px;}
.ls7{letter-spacing:-0.285000px;}
.ls3e{letter-spacing:-0.269346px;}
.ls21{letter-spacing:-0.264000px;}
.lsc{letter-spacing:-0.240000px;}
.ls37{letter-spacing:-0.230868px;}
.ls17{letter-spacing:-0.198000px;}
.ls38{letter-spacing:-0.192390px;}
.ls8{letter-spacing:-0.171000px;}
.ls48{letter-spacing:-0.153912px;}
.lsa{letter-spacing:-0.132000px;}
.ls18{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.114000px;}
.ls39{letter-spacing:-0.076956px;}
.lsb{letter-spacing:-0.066000px;}
.ls1a{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.057000px;}
.ls36{letter-spacing:-0.038478px;}
.ls5{letter-spacing:0.000000px;}
.lse{letter-spacing:0.000090px;}
.lsf{letter-spacing:0.000102px;}
.ls51{letter-spacing:0.003000px;}
.ls2{letter-spacing:0.021000px;}
.ls33{letter-spacing:0.033000px;}
.ls1c{letter-spacing:0.033600px;}
.ls2f{letter-spacing:0.038478px;}
.ls56{letter-spacing:0.057000px;}
.ls24{letter-spacing:0.060000px;}
.ls4{letter-spacing:0.066000px;}
.ls4d{letter-spacing:0.090548px;}
.ls4a{letter-spacing:0.105600px;}
.ls3f{letter-spacing:0.115434px;}
.ls13{letter-spacing:0.115649px;}
.ls22{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.132000px;}
.ls58{letter-spacing:0.171000px;}
.ls1d{letter-spacing:0.180000px;}
.ls4e{letter-spacing:0.192390px;}
.ls12{letter-spacing:0.198000px;}
.ls28{letter-spacing:0.204600px;}
.ls57{letter-spacing:0.228000px;}
.ls3a{letter-spacing:0.230868px;}
.ls4b{letter-spacing:0.231000px;}
.ls54{letter-spacing:0.264000px;}
.ls52{letter-spacing:0.269346px;}
.ls45{letter-spacing:0.270000px;}
.ls5a{letter-spacing:0.285000px;}
.ls46{letter-spacing:0.300000px;}
.ls1b{letter-spacing:0.330000px;}
.ls2c{letter-spacing:0.356400px;}
.ls15{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.363000px;}
.ls2d{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.420000px;}
.ls4c{letter-spacing:0.422400px;}
.ls3{letter-spacing:0.473100px;}
.ls1e{letter-spacing:0.510000px;}
.ls23{letter-spacing:0.540000px;}
.ls53{letter-spacing:0.567600px;}
.ls44{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.600000px;}
.ls35{letter-spacing:0.632112px;}
.ls55{letter-spacing:0.660000px;}
.ls10{letter-spacing:0.720000px;}
.ls3c{letter-spacing:0.759000px;}
.ls27{letter-spacing:0.778800px;}
.ls29{letter-spacing:0.810000px;}
.lsd{letter-spacing:1.080000px;}
.ls0{letter-spacing:1.350000px;}
.ls1f{letter-spacing:39.240000px;}
.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;}
}
.ws92{word-spacing:-14.058000px;}
.ws3d{word-spacing:-13.878000px;}
.ws0{word-spacing:-13.860000px;}
.ws3e{word-spacing:-13.794000px;}
.ws6a{word-spacing:-13.608000px;}
.ws91{word-spacing:-13.530000px;}
.wsb8{word-spacing:-13.200000px;}
.ws42{word-spacing:-13.110000px;}
.ws40{word-spacing:-12.936000px;}
.ws3f{word-spacing:-12.870000px;}
.ws6b{word-spacing:-12.804000px;}
.ws41{word-spacing:-12.780000px;}
.ws90{word-spacing:-12.672000px;}
.ws43{word-spacing:-12.660000px;}
.ws1c{word-spacing:-12.600000px;}
.ws1b{word-spacing:-12.540000px;}
.ws1d{word-spacing:-12.480000px;}
.wse9{word-spacing:-12.255000px;}
.wsd7{word-spacing:-12.198000px;}
.wsd5{word-spacing:-12.027000px;}
.ws1{word-spacing:-11.970000px;}
.wsd8{word-spacing:-11.913000px;}
.ws6e{word-spacing:-11.760000px;}
.ws1e{word-spacing:-11.700000px;}
.wseb{word-spacing:-11.685000px;}
.ws45{word-spacing:-11.580000px;}
.wse8{word-spacing:-11.343000px;}
.wsd3{word-spacing:-11.115000px;}
.wsd2{word-spacing:-11.058000px;}
.wsc3{word-spacing:-11.040000px;}
.ws94{word-spacing:-10.980000px;}
.ws6f{word-spacing:-10.800000px;}
.ws95{word-spacing:-10.740000px;}
.ws96{word-spacing:-10.500000px;}
.wsec{word-spacing:-10.431000px;}
.wsd4{word-spacing:-10.260000px;}
.ws46{word-spacing:-9.660000px;}
.ws1f{word-spacing:-9.300000px;}
.ws44{word-spacing:-9.180000px;}
.wsea{word-spacing:-8.835000px;}
.ws84{word-spacing:-8.640000px;}
.wsc9{word-spacing:-8.349726px;}
.ws82{word-spacing:-8.311248px;}
.ws93{word-spacing:-8.195814px;}
.ws83{word-spacing:-8.118858px;}
.ws1a{word-spacing:-8.080380px;}
.ws81{word-spacing:-8.003424px;}
.wsb7{word-spacing:-7.926468px;}
.wsc2{word-spacing:-7.887990px;}
.ws80{word-spacing:-7.849512px;}
.ws6c{word-spacing:-7.541688px;}
.ws2{word-spacing:-6.978510px;}
.ws6d{word-spacing:-6.900000px;}
.ws97{word-spacing:-6.840000px;}
.wsb9{word-spacing:-6.812355px;}
.wsd6{word-spacing:-6.480045px;}
.wsfa{word-spacing:-5.748963px;}
.ws60{word-spacing:-5.100000px;}
.wsf9{word-spacing:-4.845000px;}
.ws99{word-spacing:-2.904000px;}
.ws29{word-spacing:-2.838000px;}
.ws16{word-spacing:-2.772000px;}
.ws87{word-spacing:-2.706000px;}
.wsce{word-spacing:-2.640000px;}
.ws17{word-spacing:-2.580000px;}
.wsa4{word-spacing:-2.574000px;}
.ws3c{word-spacing:-2.520000px;}
.ws30{word-spacing:-2.508000px;}
.wsed{word-spacing:-2.451000px;}
.ws66{word-spacing:-2.442000px;}
.ws8{word-spacing:-2.394000px;}
.wsa9{word-spacing:-2.340000px;}
.wse{word-spacing:-2.337000px;}
.wsb1{word-spacing:-2.310000px;}
.ws2b{word-spacing:-2.244000px;}
.wse7{word-spacing:-2.223000px;}
.wsb2{word-spacing:-2.178000px;}
.ws15{word-spacing:-2.112000px;}
.wsf0{word-spacing:-2.052000px;}
.ws2a{word-spacing:-1.980000px;}
.wsbf{word-spacing:-1.920000px;}
.ws73{word-spacing:-1.914000px;}
.wscb{word-spacing:-1.848000px;}
.ws63{word-spacing:-1.782000px;}
.wsdc{word-spacing:-1.767000px;}
.ws68{word-spacing:-1.740000px;}
.ws7c{word-spacing:-1.716000px;}
.wsdd{word-spacing:-1.653000px;}
.ws9d{word-spacing:-1.650000px;}
.ws77{word-spacing:-1.584000px;}
.wse4{word-spacing:-1.539000px;}
.wsba{word-spacing:-1.518000px;}
.ws7e{word-spacing:-1.500000px;}
.wsa2{word-spacing:-1.452000px;}
.ws38{word-spacing:-1.440000px;}
.wsf{word-spacing:-1.425000px;}
.ws89{word-spacing:-1.386000px;}
.ws5{word-spacing:-1.350000px;}
.wsa{word-spacing:-1.254000px;}
.ws9c{word-spacing:-1.188000px;}
.ws75{word-spacing:-1.122000px;}
.ws51{word-spacing:-1.056000px;}
.ws8e{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.990000px;}
.ws65{word-spacing:-0.924000px;}
.ws71{word-spacing:-0.858000px;}
.ws9b{word-spacing:-0.792000px;}
.ws74{word-spacing:-0.726000px;}
.ws2c{word-spacing:-0.720000px;}
.ws13{word-spacing:-0.660000px;}
.wsc{word-spacing:-0.600000px;}
.ws4a{word-spacing:-0.594000px;}
.wse1{word-spacing:-0.570000px;}
.ws39{word-spacing:-0.540000px;}
.ws21{word-spacing:-0.528000px;}
.ws7{word-spacing:-0.513000px;}
.wsa6{word-spacing:-0.462000px;}
.ws3a{word-spacing:-0.420000px;}
.ws2d{word-spacing:-0.330000px;}
.wsad{word-spacing:-0.300000px;}
.ws8a{word-spacing:-0.264000px;}
.wse6{word-spacing:-0.228000px;}
.ws4b{word-spacing:-0.198000px;}
.wsc4{word-spacing:-0.192390px;}
.wscd{word-spacing:-0.180000px;}
.ws8c{word-spacing:-0.132000px;}
.ws18{word-spacing:-0.120000px;}
.ws102{word-spacing:-0.114000px;}
.ws4{word-spacing:-0.066000px;}
.ws20{word-spacing:-0.060000px;}
.ws3{word-spacing:-0.057000px;}
.ws7a{word-spacing:-0.038478px;}
.ws6{word-spacing:0.000000px;}
.ws85{word-spacing:0.038478px;}
.wse5{word-spacing:0.057000px;}
.ws5b{word-spacing:0.060000px;}
.ws26{word-spacing:0.066000px;}
.ws5d{word-spacing:0.120000px;}
.ws9e{word-spacing:0.132000px;}
.wsc5{word-spacing:0.153912px;}
.ws8b{word-spacing:0.192390px;}
.ws2f{word-spacing:0.198000px;}
.wscf{word-spacing:0.230868px;}
.ws5a{word-spacing:0.240000px;}
.ws27{word-spacing:0.264000px;}
.ws9a{word-spacing:0.269346px;}
.ws79{word-spacing:0.330000px;}
.ws3b{word-spacing:0.360000px;}
.ws4c{word-spacing:0.396000px;}
.ws98{word-spacing:0.462000px;}
.wsb6{word-spacing:0.480000px;}
.ws9{word-spacing:0.513000px;}
.ws53{word-spacing:0.528000px;}
.wsf7{word-spacing:0.570000px;}
.wsa3{word-spacing:0.594000px;}
.wsf6{word-spacing:0.627000px;}
.ws61{word-spacing:0.660000px;}
.wscc{word-spacing:0.720000px;}
.wsd9{word-spacing:0.726000px;}
.ws67{word-spacing:0.792000px;}
.wsd{word-spacing:0.798000px;}
.wsc1{word-spacing:0.840000px;}
.wsf2{word-spacing:0.855000px;}
.ws36{word-spacing:0.900000px;}
.wsf1{word-spacing:0.912000px;}
.ws88{word-spacing:0.924000px;}
.ws47{word-spacing:0.990000px;}
.wsc7{word-spacing:1.000428px;}
.wsf5{word-spacing:1.083000px;}
.ws59{word-spacing:1.122000px;}
.ws7b{word-spacing:1.188000px;}
.wsb4{word-spacing:1.200000px;}
.ws72{word-spacing:1.254000px;}
.ws23{word-spacing:1.320000px;}
.ws8f{word-spacing:1.380000px;}
.wsbc{word-spacing:1.386000px;}
.wse0{word-spacing:1.425000px;}
.ws35{word-spacing:1.500000px;}
.ws70{word-spacing:1.518000px;}
.wsdf{word-spacing:1.539000px;}
.wsca{word-spacing:1.584000px;}
.ws8d{word-spacing:1.620000px;}
.wsfb{word-spacing:1.653000px;}
.ws37{word-spacing:1.740000px;}
.wsde{word-spacing:1.767000px;}
.wsc6{word-spacing:1.782000px;}
.ws64{word-spacing:1.848000px;}
.wsab{word-spacing:1.860000px;}
.wsfe{word-spacing:1.881000px;}
.wsaa{word-spacing:1.980000px;}
.wsb{word-spacing:1.995000px;}
.ws55{word-spacing:2.046000px;}
.ws24{word-spacing:2.112000px;}
.wsf4{word-spacing:2.166000px;}
.ws48{word-spacing:2.244000px;}
.ws28{word-spacing:2.310000px;}
.wsf3{word-spacing:2.337000px;}
.ws58{word-spacing:2.376000px;}
.wsff{word-spacing:2.451000px;}
.ws10{word-spacing:2.508000px;}
.ws62{word-spacing:2.574000px;}
.wsfd{word-spacing:2.622000px;}
.ws4f{word-spacing:2.640000px;}
.ws56{word-spacing:2.706000px;}
.wsef{word-spacing:2.736000px;}
.wsbd{word-spacing:2.772000px;}
.ws32{word-spacing:2.838000px;}
.ws11{word-spacing:2.850000px;}
.ws12{word-spacing:2.907000px;}
.ws101{word-spacing:2.964000px;}
.ws78{word-spacing:3.036000px;}
.wsb5{word-spacing:3.060000px;}
.wse3{word-spacing:3.078000px;}
.ws52{word-spacing:3.102000px;}
.ws9f{word-spacing:3.168000px;}
.ws100{word-spacing:3.192000px;}
.ws49{word-spacing:3.234000px;}
.ws22{word-spacing:3.300000px;}
.wsfc{word-spacing:3.363000px;}
.ws86{word-spacing:3.366000px;}
.wsbe{word-spacing:3.432000px;}
.wsa5{word-spacing:3.564000px;}
.wsbb{word-spacing:3.630000px;}
.wsee{word-spacing:3.648000px;}
.wsa0{word-spacing:3.696000px;}
.wsdb{word-spacing:3.705000px;}
.ws57{word-spacing:3.762000px;}
.ws54{word-spacing:3.828000px;}
.ws33{word-spacing:3.894000px;}
.wse2{word-spacing:3.933000px;}
.ws50{word-spacing:3.960000px;}
.wsda{word-spacing:3.990000px;}
.ws4e{word-spacing:4.026000px;}
.ws5c{word-spacing:4.080000px;}
.ws25{word-spacing:4.092000px;}
.ws34{word-spacing:4.140000px;}
.ws31{word-spacing:4.158000px;}
.ws4d{word-spacing:4.224000px;}
.ws76{word-spacing:4.488000px;}
.ws14{word-spacing:4.554000px;}
.ws2e{word-spacing:4.620000px;}
.wsd0{word-spacing:21.780000px;}
.ws7d{word-spacing:28.800000px;}
.ws69{word-spacing:30.540000px;}
.wsa7{word-spacing:31.080000px;}
.wsc0{word-spacing:32.460000px;}
.wsb3{word-spacing:33.720000px;}
.wsae{word-spacing:34.740000px;}
.wsaf{word-spacing:37.020000px;}
.ws5e{word-spacing:37.260000px;}
.wsac{word-spacing:37.500000px;}
.wsa8{word-spacing:43.080000px;}
.wsd1{word-spacing:1867.377600px;}
.ws5f{word-spacing:1869.321600px;}
.wsc8{word-spacing:1874.127600px;}
.wsb0{word-spacing:1874.343600px;}
.wsf8{word-spacing:1874.667600px;}
.ws7f{word-spacing:1875.531600px;}
.ws19{word-spacing:1884.603600px;}
._10{margin-left:-2620.296000px;}
._18{margin-left:-37.260000px;}
._25{margin-left:-36.240000px;}
._24{margin-left:-34.740000px;}
._27{margin-left:-32.460000px;}
._21{margin-left:-30.540000px;}
._22{margin-left:-28.800000px;}
._2a{margin-left:-21.780000px;}
._b{margin-left:-18.477600px;}
._1a{margin-left:-16.242000px;}
._9{margin-left:-14.124000px;}
._4{margin-left:-12.300000px;}
._11{margin-left:-10.131600px;}
._a{margin-left:-8.552400px;}
._5{margin-left:-6.915000px;}
._7{margin-left:-5.890800px;}
._2{margin-left:-4.850400px;}
._3{margin-left:-3.240000px;}
._1{margin-left:-1.350000px;}
._0{width:1.080000px;}
._13{width:2.140800px;}
._6{width:3.990000px;}
._1c{width:5.100000px;}
._1e{width:6.300000px;}
._1d{width:7.500000px;}
._28{width:23.400000px;}
._1f{width:25.500000px;}
._29{width:26.700000px;}
._23{width:28.740000px;}
._12{width:31.320000px;}
._26{width:32.520000px;}
._20{width:33.840000px;}
._1b{width:35.880000px;}
._16{width:37.260000px;}
._15{width:39.540000px;}
._19{width:41.280000px;}
._17{width:42.960000px;}
._14{width:50.460000px;}
._d{width:56.700000px;}
._e{width:58.740000px;}
._c{width:60.000000px;}
._f{width:64.260000px;}
._8{width:72.300000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:33.231000px;}
.fs7{font-size:38.478000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y125{bottom:89.716500px;}
.y107{bottom:89.716650px;}
.y24{bottom:89.716800px;}
.ycf{bottom:89.717100px;}
.y77{bottom:89.717250px;}
.yad{bottom:89.717550px;}
.y90{bottom:89.717700px;}
.ye0{bottom:89.718150px;}
.yfc{bottom:89.718750px;}
.y106{bottom:107.716650px;}
.y23{bottom:107.716800px;}
.y51{bottom:107.717100px;}
.y76{bottom:107.717250px;}
.yac{bottom:107.717550px;}
.y8f{bottom:107.717700px;}
.ydf{bottom:107.718150px;}
.yfb{bottom:107.718750px;}
.y124{bottom:109.700850px;}
.y144{bottom:109.764150px;}
.y22{bottom:125.716800px;}
.y105{bottom:125.716950px;}
.y50{bottom:125.717100px;}
.y75{bottom:125.717250px;}
.yab{bottom:125.717550px;}
.y8e{bottom:125.717700px;}
.yde{bottom:125.718150px;}
.yfa{bottom:125.718750px;}
.y123{bottom:129.685050px;}
.y143{bottom:129.742650px;}
.yca{bottom:143.716800px;}
.y104{bottom:143.716950px;}
.y4f{bottom:143.717100px;}
.y74{bottom:143.717250px;}
.yaa{bottom:143.717550px;}
.y8d{bottom:143.717700px;}
.ydd{bottom:143.718150px;}
.yf9{bottom:143.718750px;}
.y122{bottom:149.669250px;}
.y142{bottom:149.721150px;}
.yc9{bottom:161.716800px;}
.y103{bottom:161.716950px;}
.y4e{bottom:161.717100px;}
.y73{bottom:161.717250px;}
.ya9{bottom:161.717550px;}
.y8c{bottom:161.717700px;}
.ydc{bottom:161.718150px;}
.yf8{bottom:161.718750px;}
.y112{bottom:169.653600px;}
.y121{bottom:169.659300px;}
.y141{bottom:169.699650px;}
.yd5{bottom:171.079650px;}
.y102{bottom:179.716950px;}
.y4d{bottom:179.717100px;}
.y72{bottom:179.717400px;}
.ya8{bottom:179.717550px;}
.y8b{bottom:179.717700px;}
.ydb{bottom:179.718150px;}
.yf7{bottom:179.718750px;}
.yd4{bottom:189.077400px;}
.y21{bottom:189.637800px;}
.y120{bottom:189.643500px;}
.y140{bottom:189.678150px;}
.y101{bottom:197.716950px;}
.y4c{bottom:197.717250px;}
.y71{bottom:197.717400px;}
.ya7{bottom:197.717550px;}
.y8a{bottom:197.717700px;}
.yda{bottom:197.718150px;}
.yf6{bottom:197.718750px;}
.yd3{bottom:207.075150px;}
.y20{bottom:209.622000px;}
.yc8{bottom:209.630400px;}
.y13f{bottom:209.656650px;}
.y4b{bottom:215.717250px;}
.y70{bottom:215.717400px;}
.ya6{bottom:215.717550px;}
.y89{bottom:215.717700px;}
.yd9{bottom:215.718150px;}
.yf5{bottom:215.718750px;}
.yd2{bottom:225.072900px;}
.y1f{bottom:229.606350px;}
.yc7{bottom:229.611900px;}
.y13e{bottom:229.635150px;}
.y4a{bottom:233.717250px;}
.y6f{bottom:233.717700px;}
.yd8{bottom:233.718150px;}
.yf4{bottom:233.718750px;}
.yd1{bottom:243.072900px;}
.y1e{bottom:249.590550px;}
.yc6{bottom:249.593400px;}
.y111{bottom:249.596100px;}
.y11f{bottom:249.596400px;}
.y13d{bottom:249.613650px;}
.y49{bottom:251.717250px;}
.y6e{bottom:251.717700px;}
.yd7{bottom:251.718150px;}
.yf3{bottom:251.718750px;}
.yd0{bottom:261.070650px;}
.y100{bottom:269.574750px;}
.y1d{bottom:269.574900px;}
.y110{bottom:269.577600px;}
.ya5{bottom:269.585850px;}
.y13c{bottom:269.592150px;}
.y48{bottom:269.717250px;}
.y6d{bottom:269.717700px;}
.yc0{bottom:269.718150px;}
.yf2{bottom:269.718750px;}
.y47{bottom:287.717250px;}
.y6c{bottom:287.718150px;}
.yf1{bottom:287.718750px;}
.yc5{bottom:289.559100px;}
.yff{bottom:289.561800px;}
.ya4{bottom:289.567350px;}
.y13b{bottom:289.570650px;}
.y46{bottom:305.717250px;}
.y6b{bottom:305.718150px;}
.yf0{bottom:305.718750px;}
.yc4{bottom:309.543300px;}
.yfe{bottom:309.546000px;}
.yb4{bottom:309.546150px;}
.ya3{bottom:309.548850px;}
.y13a{bottom:309.549150px;}
.y88{bottom:309.554400px;}
.y11e{bottom:309.572100px;}
.y45{bottom:323.717250px;}
.y6a{bottom:323.718150px;}
.yef{bottom:323.718750px;}
.yfd{bottom:329.527500px;}
.yb3{bottom:329.527650px;}
.ya2{bottom:329.530350px;}
.y87{bottom:329.535900px;}
.y11d{bottom:329.550600px;}
.y44{bottom:341.717400px;}
.y69{bottom:341.718150px;}
.yee{bottom:341.718750px;}
.y1c{bottom:343.502100px;}
.ya1{bottom:349.511850px;}
.ybf{bottom:349.514550px;}
.y86{bottom:349.517400px;}
.y11c{bottom:349.529100px;}
.yc3{bottom:355.044000px;}
.y43{bottom:359.717400px;}
.yed{bottom:359.718750px;}
.y1b{bottom:361.499850px;}
.y9f{bottom:369.496050px;}
.y85{bottom:369.498900px;}
.ybe{bottom:369.501600px;}
.y11b{bottom:369.507600px;}
.y139{bottom:369.524850px;}
.yc2{bottom:373.041750px;}
.ya0{bottom:374.990550px;}
.y42{bottom:377.717550px;}
.yec{bottom:377.718750px;}
.y1a{bottom:379.499850px;}
.y10a{bottom:384.891750px;}
.y68{bottom:389.480400px;}
.ybd{bottom:389.483100px;}
.y11a{bottom:389.486100px;}
.y138{bottom:389.503350px;}
.yc1{bottom:391.039500px;}
.y10f{bottom:394.974900px;}
.y109{bottom:402.889500px;}
.y67{bottom:409.464600px;}
.y10e{bottom:409.470150px;}
.y137{bottom:409.481850px;}
.y108{bottom:420.887250px;}
.y41{bottom:429.448950px;}
.yeb{bottom:429.451650px;}
.y66{bottom:429.454350px;}
.y9e{bottom:429.457200px;}
.y136{bottom:429.460350px;}
.y19{bottom:440.030850px;}
.y119{bottom:449.291400px;}
.y40{bottom:449.433150px;}
.y65{bottom:449.435850px;}
.y9d{bottom:449.438700px;}
.y135{bottom:449.438850px;}
.y18{bottom:458.028600px;}
.y64{bottom:469.417350px;}
.y84{bottom:469.420200px;}
.y3f{bottom:469.422900px;}
.y17{bottom:476.026350px;}
.y63{bottom:489.401700px;}
.y3e{bottom:489.404400px;}
.yea{bottom:489.407100px;}
.y16{bottom:494.024100px;}
.y3d{bottom:509.385900px;}
.yd6{bottom:509.388600px;}
.y118{bottom:509.408850px;}
.y134{bottom:509.437650px;}
.y15{bottom:512.021850px;}
.y3c{bottom:529.370100px;}
.y83{bottom:529.372950px;}
.yb2{bottom:529.374450px;}
.y9c{bottom:529.375650px;}
.y117{bottom:529.387350px;}
.y133{bottom:529.416150px;}
.y14{bottom:530.019600px;}
.y13{bottom:548.019600px;}
.y3b{bottom:549.354450px;}
.y9b{bottom:549.357150px;}
.y116{bottom:549.365850px;}
.y132{bottom:549.394650px;}
.y12{bottom:566.019600px;}
.y3a{bottom:569.338650px;}
.y10d{bottom:569.341350px;}
.ye9{bottom:569.344200px;}
.y115{bottom:569.344350px;}
.y131{bottom:569.373150px;}
.y11{bottom:584.019600px;}
.y39{bottom:589.322850px;}
.ye8{bottom:589.325700px;}
.y130{bottom:589.351650px;}
.y82{bottom:609.307200px;}
.y9a{bottom:609.309900px;}
.ybc{bottom:609.312600px;}
.y62{bottom:609.315450px;}
.y12f{bottom:609.330150px;}
.y38{bottom:629.291400px;}
.ybb{bottom:629.294100px;}
.y61{bottom:629.296950px;}
.y12e{bottom:629.308650px;}
.y10{bottom:644.539200px;}
.y99{bottom:649.275600px;}
.y60{bottom:649.278450px;}
.yba{bottom:649.281150px;}
.y12d{bottom:649.287150px;}
.yb1{bottom:654.770100px;}
.yf{bottom:662.539200px;}
.y5f{bottom:669.259950px;}
.yb9{bottom:669.262650px;}
.y12c{bottom:669.265650px;}
.ye7{bottom:669.273750px;}
.ye{bottom:680.539200px;}
.y5e{bottom:689.244150px;}
.y37{bottom:689.246850px;}
.ye6{bottom:689.255250px;}
.y114{bottom:691.228350px;}
.y5d{bottom:709.228350px;}
.y81{bottom:709.231200px;}
.y36{bottom:709.233900px;}
.ye5{bottom:709.236750px;}
.yb8{bottom:714.722850px;}
.y152{bottom:715.048500px;}
.y10c{bottom:721.870950px;}
.y80{bottom:729.212700px;}
.y35{bottom:729.215400px;}
.ye4{bottom:729.218250px;}
.y98{bottom:729.220950px;}
.y151{bottom:733.046250px;}
.y10b{bottom:739.868700px;}
.yd{bottom:741.063450px;}
.y34{bottom:749.196900px;}
.ye3{bottom:749.199750px;}
.y97{bottom:749.202450px;}
.yce{bottom:749.205150px;}
.y5c{bottom:749.208000px;}
.y150{bottom:751.044000px;}
.yc{bottom:759.061200px;}
.y14f{bottom:769.041750px;}
.y33{bottom:769.181250px;}
.y96{bottom:769.183950px;}
.ycd{bottom:769.186650px;}
.y5b{bottom:769.189500px;}
.yb0{bottom:774.675750px;}
.yb{bottom:777.058950px;}
.y32{bottom:789.165450px;}
.ycc{bottom:789.168150px;}
.y5a{bottom:789.171000px;}
.yaf{bottom:789.173700px;}
.ya{bottom:795.058950px;}
.y95{bottom:809.149650px;}
.y59{bottom:809.152500px;}
.y7f{bottom:809.155200px;}
.y31{bottom:809.157900px;}
.y12b{bottom:809.161200px;}
.y9{bottom:813.058950px;}
.y58{bottom:829.134000px;}
.y7e{bottom:829.136700px;}
.y30{bottom:829.139400px;}
.y12a{bottom:829.139700px;}
.y14e{bottom:829.191450px;}
.y8{bottom:831.058950px;}
.y7{bottom:849.058950px;}
.y7d{bottom:849.118200px;}
.y2f{bottom:849.120900px;}
.ye2{bottom:849.123600px;}
.y57{bottom:849.126450px;}
.y94{bottom:849.129150px;}
.y14d{bottom:849.169950px;}
.y6{bottom:867.058950px;}
.y2e{bottom:869.102400px;}
.ycb{bottom:869.105100px;}
.y56{bottom:869.107950px;}
.y93{bottom:869.110650px;}
.y14c{bottom:869.148450px;}
.y5{bottom:885.058950px;}
.y2c{bottom:889.086600px;}
.y55{bottom:889.089450px;}
.y92{bottom:889.092150px;}
.y129{bottom:889.103850px;}
.y14b{bottom:889.126950px;}
.y2d{bottom:894.581250px;}
.y7c{bottom:909.070950px;}
.y91{bottom:909.073650px;}
.y2b{bottom:909.076350px;}
.yb7{bottom:909.079200px;}
.y128{bottom:909.082350px;}
.y14a{bottom:909.105450px;}
.y7b{bottom:929.055150px;}
.y2a{bottom:929.057850px;}
.yb6{bottom:929.060700px;}
.y127{bottom:929.060850px;}
.y149{bottom:929.083950px;}
.y29{bottom:949.039350px;}
.y54{bottom:949.042200px;}
.y7a{bottom:949.044900px;}
.y126{bottom:949.045200px;}
.y148{bottom:949.062450px;}
.y4{bottom:954.082650px;}
.ye1{bottom:954.534000px;}
.y28{bottom:969.023700px;}
.y53{bottom:969.026400px;}
.y113{bottom:969.029100px;}
.y147{bottom:969.040950px;}
.y52{bottom:989.007900px;}
.y79{bottom:989.010600px;}
.y27{bottom:989.013450px;}
.y146{bottom:989.019450px;}
.yb5{bottom:994.502400px;}
.y3{bottom:997.585350px;}
.y78{bottom:1008.992100px;}
.y26{bottom:1008.994950px;}
.y145{bottom:1008.997950px;}
.y2{bottom:1026.094350px;}
.y25{bottom:1028.976450px;}
.yae{bottom:1034.470950px;}
.y1{bottom:1082.225850px;}
.h9{height:35.091936px;}
.h2{height:50.868000px;}
.he{height:51.754200px;}
.h6{height:51.984000px;}
.hc{height:52.611000px;}
.h8{height:54.720000px;}
.h5{height:56.700000px;}
.h7{height:60.192000px;}
.hd{height:60.906600px;}
.hb{height:60.918000px;}
.ha{height:68.040000px;}
.h4{height:73.476000px;}
.h3{height:96.390000px;}
.h0{height:1148.031000px;}
.h1{height:1148.250000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1e{left:70.031700px;}
.x8{left:71.234100px;}
.x3{left:72.283500px;}
.x17{left:79.744650px;}
.x1{left:80.787450px;}
.x7{left:93.196350px;}
.x19{left:94.291500px;}
.x4{left:98.029350px;}
.xb{left:101.700150px;}
.x21{left:102.913500px;}
.xc{left:104.054550px;}
.xa{left:105.377550px;}
.x2{left:106.430700px;}
.xf{left:112.970700px;}
.x22{left:195.506400px;}
.x1f{left:197.053950px;}
.x23{left:200.025000px;}
.x20{left:206.022750px;}
.x24{left:332.838450px;}
.x25{left:341.408550px;}
.x15{left:450.059700px;}
.x1c{left:453.227850px;}
.x16{left:459.417300px;}
.x1d{left:474.488850px;}
.x1a{left:508.697850px;}
.x1b{left:518.162850px;}
.x10{left:586.885200px;}
.x11{left:595.771050px;}
.x12{left:596.913900px;}
.x13{left:606.110400px;}
.x5{left:660.554100px;}
.x6{left:665.157900px;}
.x14{left:716.204850px;}
.x9{left:718.770150px;}
.xd{left:725.316600px;}
.x18{left:726.533850px;}
.xe{left:735.150900px;}
@media print{
.v3{vertical-align:-19.536533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.872000pt;}
.v2{vertical-align:19.536000pt;}
.ls2b{letter-spacing:-6.666667pt;}
.ls5d{letter-spacing:-6.333333pt;}
.ls43{letter-spacing:-5.120000pt;}
.ls30{letter-spacing:-4.266667pt;}
.ls49{letter-spacing:-3.226667pt;}
.ls25{letter-spacing:-3.040000pt;}
.ls19{letter-spacing:-2.933333pt;}
.ls5b{letter-spacing:-2.786667pt;}
.ls3b{letter-spacing:-2.720000pt;}
.ls26{letter-spacing:-1.813333pt;}
.ls32{letter-spacing:-1.600000pt;}
.ls59{letter-spacing:-1.520000pt;}
.ls50{letter-spacing:-1.386667pt;}
.ls5c{letter-spacing:-1.368000pt;}
.ls16{letter-spacing:-1.173333pt;}
.ls42{letter-spacing:-1.066667pt;}
.ls4f{letter-spacing:-0.889269pt;}
.ls41{letter-spacing:-0.853333pt;}
.ls31{letter-spacing:-0.746667pt;}
.ls5e{letter-spacing:-0.649851pt;}
.ls40{letter-spacing:-0.640000pt;}
.ls2e{letter-spacing:-0.478837pt;}
.ls3d{letter-spacing:-0.410667pt;}
.ls2a{letter-spacing:-0.352000pt;}
.ls47{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.293333pt;}
.ls7{letter-spacing:-0.253333pt;}
.ls3e{letter-spacing:-0.239419pt;}
.ls21{letter-spacing:-0.234667pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls37{letter-spacing:-0.205216pt;}
.ls17{letter-spacing:-0.176000pt;}
.ls38{letter-spacing:-0.171013pt;}
.ls8{letter-spacing:-0.152000pt;}
.ls48{letter-spacing:-0.136811pt;}
.lsa{letter-spacing:-0.117333pt;}
.ls18{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls39{letter-spacing:-0.068405pt;}
.lsb{letter-spacing:-0.058667pt;}
.ls1a{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls36{letter-spacing:-0.034203pt;}
.ls5{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.000080pt;}
.lsf{letter-spacing:0.000091pt;}
.ls51{letter-spacing:0.002667pt;}
.ls2{letter-spacing:0.018667pt;}
.ls33{letter-spacing:0.029333pt;}
.ls1c{letter-spacing:0.029867pt;}
.ls2f{letter-spacing:0.034203pt;}
.ls56{letter-spacing:0.050667pt;}
.ls24{letter-spacing:0.053333pt;}
.ls4{letter-spacing:0.058667pt;}
.ls4d{letter-spacing:0.080487pt;}
.ls4a{letter-spacing:0.093867pt;}
.ls3f{letter-spacing:0.102608pt;}
.ls13{letter-spacing:0.102799pt;}
.ls22{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls58{letter-spacing:0.152000pt;}
.ls1d{letter-spacing:0.160000pt;}
.ls4e{letter-spacing:0.171013pt;}
.ls12{letter-spacing:0.176000pt;}
.ls28{letter-spacing:0.181867pt;}
.ls57{letter-spacing:0.202667pt;}
.ls3a{letter-spacing:0.205216pt;}
.ls4b{letter-spacing:0.205333pt;}
.ls54{letter-spacing:0.234667pt;}
.ls52{letter-spacing:0.239419pt;}
.ls45{letter-spacing:0.240000pt;}
.ls5a{letter-spacing:0.253333pt;}
.ls46{letter-spacing:0.266667pt;}
.ls1b{letter-spacing:0.293333pt;}
.ls2c{letter-spacing:0.316800pt;}
.ls15{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.322667pt;}
.ls2d{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.373333pt;}
.ls4c{letter-spacing:0.375467pt;}
.ls3{letter-spacing:0.420533pt;}
.ls1e{letter-spacing:0.453333pt;}
.ls23{letter-spacing:0.480000pt;}
.ls53{letter-spacing:0.504533pt;}
.ls44{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls35{letter-spacing:0.561878pt;}
.ls55{letter-spacing:0.586667pt;}
.ls10{letter-spacing:0.640000pt;}
.ls3c{letter-spacing:0.674667pt;}
.ls27{letter-spacing:0.692267pt;}
.ls29{letter-spacing:0.720000pt;}
.lsd{letter-spacing:0.960000pt;}
.ls0{letter-spacing:1.200000pt;}
.ls1f{letter-spacing:34.880000pt;}
.ws92{word-spacing:-12.496000pt;}
.ws3d{word-spacing:-12.336000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws3e{word-spacing:-12.261333pt;}
.ws6a{word-spacing:-12.096000pt;}
.ws91{word-spacing:-12.026667pt;}
.wsb8{word-spacing:-11.733333pt;}
.ws42{word-spacing:-11.653333pt;}
.ws40{word-spacing:-11.498667pt;}
.ws3f{word-spacing:-11.440000pt;}
.ws6b{word-spacing:-11.381333pt;}
.ws41{word-spacing:-11.360000pt;}
.ws90{word-spacing:-11.264000pt;}
.ws43{word-spacing:-11.253333pt;}
.ws1c{word-spacing:-11.200000pt;}
.ws1b{word-spacing:-11.146667pt;}
.ws1d{word-spacing:-11.093333pt;}
.wse9{word-spacing:-10.893333pt;}
.wsd7{word-spacing:-10.842667pt;}
.wsd5{word-spacing:-10.690667pt;}
.ws1{word-spacing:-10.640000pt;}
.wsd8{word-spacing:-10.589333pt;}
.ws6e{word-spacing:-10.453333pt;}
.ws1e{word-spacing:-10.400000pt;}
.wseb{word-spacing:-10.386667pt;}
.ws45{word-spacing:-10.293333pt;}
.wse8{word-spacing:-10.082667pt;}
.wsd3{word-spacing:-9.880000pt;}
.wsd2{word-spacing:-9.829333pt;}
.wsc3{word-spacing:-9.813333pt;}
.ws94{word-spacing:-9.760000pt;}
.ws6f{word-spacing:-9.600000pt;}
.ws95{word-spacing:-9.546667pt;}
.ws96{word-spacing:-9.333333pt;}
.wsec{word-spacing:-9.272000pt;}
.wsd4{word-spacing:-9.120000pt;}
.ws46{word-spacing:-8.586667pt;}
.ws1f{word-spacing:-8.266667pt;}
.ws44{word-spacing:-8.160000pt;}
.wsea{word-spacing:-7.853333pt;}
.ws84{word-spacing:-7.680000pt;}
.wsc9{word-spacing:-7.421979pt;}
.ws82{word-spacing:-7.387776pt;}
.ws93{word-spacing:-7.285168pt;}
.ws83{word-spacing:-7.216763pt;}
.ws1a{word-spacing:-7.182560pt;}
.ws81{word-spacing:-7.114155pt;}
.wsb7{word-spacing:-7.045749pt;}
.wsc2{word-spacing:-7.011547pt;}
.ws80{word-spacing:-6.977344pt;}
.ws6c{word-spacing:-6.703723pt;}
.ws2{word-spacing:-6.203120pt;}
.ws6d{word-spacing:-6.133333pt;}
.ws97{word-spacing:-6.080000pt;}
.wsb9{word-spacing:-6.055427pt;}
.wsd6{word-spacing:-5.760040pt;}
.wsfa{word-spacing:-5.110189pt;}
.ws60{word-spacing:-4.533333pt;}
.wsf9{word-spacing:-4.306667pt;}
.ws99{word-spacing:-2.581333pt;}
.ws29{word-spacing:-2.522667pt;}
.ws16{word-spacing:-2.464000pt;}
.ws87{word-spacing:-2.405333pt;}
.wsce{word-spacing:-2.346667pt;}
.ws17{word-spacing:-2.293333pt;}
.wsa4{word-spacing:-2.288000pt;}
.ws3c{word-spacing:-2.240000pt;}
.ws30{word-spacing:-2.229333pt;}
.wsed{word-spacing:-2.178667pt;}
.ws66{word-spacing:-2.170667pt;}
.ws8{word-spacing:-2.128000pt;}
.wsa9{word-spacing:-2.080000pt;}
.wse{word-spacing:-2.077333pt;}
.wsb1{word-spacing:-2.053333pt;}
.ws2b{word-spacing:-1.994667pt;}
.wse7{word-spacing:-1.976000pt;}
.wsb2{word-spacing:-1.936000pt;}
.ws15{word-spacing:-1.877333pt;}
.wsf0{word-spacing:-1.824000pt;}
.ws2a{word-spacing:-1.760000pt;}
.wsbf{word-spacing:-1.706667pt;}
.ws73{word-spacing:-1.701333pt;}
.wscb{word-spacing:-1.642667pt;}
.ws63{word-spacing:-1.584000pt;}
.wsdc{word-spacing:-1.570667pt;}
.ws68{word-spacing:-1.546667pt;}
.ws7c{word-spacing:-1.525333pt;}
.wsdd{word-spacing:-1.469333pt;}
.ws9d{word-spacing:-1.466667pt;}
.ws77{word-spacing:-1.408000pt;}
.wse4{word-spacing:-1.368000pt;}
.wsba{word-spacing:-1.349333pt;}
.ws7e{word-spacing:-1.333333pt;}
.wsa2{word-spacing:-1.290667pt;}
.ws38{word-spacing:-1.280000pt;}
.wsf{word-spacing:-1.266667pt;}
.ws89{word-spacing:-1.232000pt;}
.ws5{word-spacing:-1.200000pt;}
.wsa{word-spacing:-1.114667pt;}
.ws9c{word-spacing:-1.056000pt;}
.ws75{word-spacing:-0.997333pt;}
.ws51{word-spacing:-0.938667pt;}
.ws8e{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.880000pt;}
.ws65{word-spacing:-0.821333pt;}
.ws71{word-spacing:-0.762667pt;}
.ws9b{word-spacing:-0.704000pt;}
.ws74{word-spacing:-0.645333pt;}
.ws2c{word-spacing:-0.640000pt;}
.ws13{word-spacing:-0.586667pt;}
.wsc{word-spacing:-0.533333pt;}
.ws4a{word-spacing:-0.528000pt;}
.wse1{word-spacing:-0.506667pt;}
.ws39{word-spacing:-0.480000pt;}
.ws21{word-spacing:-0.469333pt;}
.ws7{word-spacing:-0.456000pt;}
.wsa6{word-spacing:-0.410667pt;}
.ws3a{word-spacing:-0.373333pt;}
.ws2d{word-spacing:-0.293333pt;}
.wsad{word-spacing:-0.266667pt;}
.ws8a{word-spacing:-0.234667pt;}
.wse6{word-spacing:-0.202667pt;}
.ws4b{word-spacing:-0.176000pt;}
.wsc4{word-spacing:-0.171013pt;}
.wscd{word-spacing:-0.160000pt;}
.ws8c{word-spacing:-0.117333pt;}
.ws18{word-spacing:-0.106667pt;}
.ws102{word-spacing:-0.101333pt;}
.ws4{word-spacing:-0.058667pt;}
.ws20{word-spacing:-0.053333pt;}
.ws3{word-spacing:-0.050667pt;}
.ws7a{word-spacing:-0.034203pt;}
.ws6{word-spacing:0.000000pt;}
.ws85{word-spacing:0.034203pt;}
.wse5{word-spacing:0.050667pt;}
.ws5b{word-spacing:0.053333pt;}
.ws26{word-spacing:0.058667pt;}
.ws5d{word-spacing:0.106667pt;}
.ws9e{word-spacing:0.117333pt;}
.wsc5{word-spacing:0.136811pt;}
.ws8b{word-spacing:0.171013pt;}
.ws2f{word-spacing:0.176000pt;}
.wscf{word-spacing:0.205216pt;}
.ws5a{word-spacing:0.213333pt;}
.ws27{word-spacing:0.234667pt;}
.ws9a{word-spacing:0.239419pt;}
.ws79{word-spacing:0.293333pt;}
.ws3b{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.352000pt;}
.ws98{word-spacing:0.410667pt;}
.wsb6{word-spacing:0.426667pt;}
.ws9{word-spacing:0.456000pt;}
.ws53{word-spacing:0.469333pt;}
.wsf7{word-spacing:0.506667pt;}
.wsa3{word-spacing:0.528000pt;}
.wsf6{word-spacing:0.557333pt;}
.ws61{word-spacing:0.586667pt;}
.wscc{word-spacing:0.640000pt;}
.wsd9{word-spacing:0.645333pt;}
.ws67{word-spacing:0.704000pt;}
.wsd{word-spacing:0.709333pt;}
.wsc1{word-spacing:0.746667pt;}
.wsf2{word-spacing:0.760000pt;}
.ws36{word-spacing:0.800000pt;}
.wsf1{word-spacing:0.810667pt;}
.ws88{word-spacing:0.821333pt;}
.ws47{word-spacing:0.880000pt;}
.wsc7{word-spacing:0.889269pt;}
.wsf5{word-spacing:0.962667pt;}
.ws59{word-spacing:0.997333pt;}
.ws7b{word-spacing:1.056000pt;}
.wsb4{word-spacing:1.066667pt;}
.ws72{word-spacing:1.114667pt;}
.ws23{word-spacing:1.173333pt;}
.ws8f{word-spacing:1.226667pt;}
.wsbc{word-spacing:1.232000pt;}
.wse0{word-spacing:1.266667pt;}
.ws35{word-spacing:1.333333pt;}
.ws70{word-spacing:1.349333pt;}
.wsdf{word-spacing:1.368000pt;}
.wsca{word-spacing:1.408000pt;}
.ws8d{word-spacing:1.440000pt;}
.wsfb{word-spacing:1.469333pt;}
.ws37{word-spacing:1.546667pt;}
.wsde{word-spacing:1.570667pt;}
.wsc6{word-spacing:1.584000pt;}
.ws64{word-spacing:1.642667pt;}
.wsab{word-spacing:1.653333pt;}
.wsfe{word-spacing:1.672000pt;}
.wsaa{word-spacing:1.760000pt;}
.wsb{word-spacing:1.773333pt;}
.ws55{word-spacing:1.818667pt;}
.ws24{word-spacing:1.877333pt;}
.wsf4{word-spacing:1.925333pt;}
.ws48{word-spacing:1.994667pt;}
.ws28{word-spacing:2.053333pt;}
.wsf3{word-spacing:2.077333pt;}
.ws58{word-spacing:2.112000pt;}
.wsff{word-spacing:2.178667pt;}
.ws10{word-spacing:2.229333pt;}
.ws62{word-spacing:2.288000pt;}
.wsfd{word-spacing:2.330667pt;}
.ws4f{word-spacing:2.346667pt;}
.ws56{word-spacing:2.405333pt;}
.wsef{word-spacing:2.432000pt;}
.wsbd{word-spacing:2.464000pt;}
.ws32{word-spacing:2.522667pt;}
.ws11{word-spacing:2.533333pt;}
.ws12{word-spacing:2.584000pt;}
.ws101{word-spacing:2.634667pt;}
.ws78{word-spacing:2.698667pt;}
.wsb5{word-spacing:2.720000pt;}
.wse3{word-spacing:2.736000pt;}
.ws52{word-spacing:2.757333pt;}
.ws9f{word-spacing:2.816000pt;}
.ws100{word-spacing:2.837333pt;}
.ws49{word-spacing:2.874667pt;}
.ws22{word-spacing:2.933333pt;}
.wsfc{word-spacing:2.989333pt;}
.ws86{word-spacing:2.992000pt;}
.wsbe{word-spacing:3.050667pt;}
.wsa5{word-spacing:3.168000pt;}
.wsbb{word-spacing:3.226667pt;}
.wsee{word-spacing:3.242667pt;}
.wsa0{word-spacing:3.285333pt;}
.wsdb{word-spacing:3.293333pt;}
.ws57{word-spacing:3.344000pt;}
.ws54{word-spacing:3.402667pt;}
.ws33{word-spacing:3.461333pt;}
.wse2{word-spacing:3.496000pt;}
.ws50{word-spacing:3.520000pt;}
.wsda{word-spacing:3.546667pt;}
.ws4e{word-spacing:3.578667pt;}
.ws5c{word-spacing:3.626667pt;}
.ws25{word-spacing:3.637333pt;}
.ws34{word-spacing:3.680000pt;}
.ws31{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.754667pt;}
.ws76{word-spacing:3.989333pt;}
.ws14{word-spacing:4.048000pt;}
.ws2e{word-spacing:4.106667pt;}
.wsd0{word-spacing:19.360000pt;}
.ws7d{word-spacing:25.600000pt;}
.ws69{word-spacing:27.146667pt;}
.wsa7{word-spacing:27.626667pt;}
.wsc0{word-spacing:28.853333pt;}
.wsb3{word-spacing:29.973333pt;}
.wsae{word-spacing:30.880000pt;}
.wsaf{word-spacing:32.906667pt;}
.ws5e{word-spacing:33.120000pt;}
.wsac{word-spacing:33.333333pt;}
.wsa8{word-spacing:38.293333pt;}
.wsd1{word-spacing:1659.891200pt;}
.ws5f{word-spacing:1661.619200pt;}
.wsc8{word-spacing:1665.891200pt;}
.wsb0{word-spacing:1666.083200pt;}
.wsf8{word-spacing:1666.371200pt;}
.ws7f{word-spacing:1667.139200pt;}
.ws19{word-spacing:1675.203200pt;}
._10{margin-left:-2329.152000pt;}
._18{margin-left:-33.120000pt;}
._25{margin-left:-32.213333pt;}
._24{margin-left:-30.880000pt;}
._27{margin-left:-28.853333pt;}
._21{margin-left:-27.146667pt;}
._22{margin-left:-25.600000pt;}
._2a{margin-left:-19.360000pt;}
._b{margin-left:-16.424533pt;}
._1a{margin-left:-14.437333pt;}
._9{margin-left:-12.554667pt;}
._4{margin-left:-10.933333pt;}
._11{margin-left:-9.005867pt;}
._a{margin-left:-7.602133pt;}
._5{margin-left:-6.146667pt;}
._7{margin-left:-5.236267pt;}
._2{margin-left:-4.311467pt;}
._3{margin-left:-2.880000pt;}
._1{margin-left:-1.200000pt;}
._0{width:0.960000pt;}
._13{width:1.902933pt;}
._6{width:3.546667pt;}
._1c{width:4.533333pt;}
._1e{width:5.600000pt;}
._1d{width:6.666667pt;}
._28{width:20.800000pt;}
._1f{width:22.666667pt;}
._29{width:23.733333pt;}
._23{width:25.546667pt;}
._12{width:27.840000pt;}
._26{width:28.906667pt;}
._20{width:30.080000pt;}
._1b{width:31.893333pt;}
._16{width:33.120000pt;}
._15{width:35.146667pt;}
._19{width:36.693333pt;}
._17{width:38.186667pt;}
._14{width:44.853333pt;}
._d{width:50.400000pt;}
._e{width:52.213333pt;}
._c{width:53.333333pt;}
._f{width:57.120000pt;}
._8{width:64.266667pt;}
.fs5{font-size:29.538667pt;}
.fs7{font-size:34.202667pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y125{bottom:79.748000pt;}
.y107{bottom:79.748133pt;}
.y24{bottom:79.748267pt;}
.ycf{bottom:79.748533pt;}
.y77{bottom:79.748667pt;}
.yad{bottom:79.748933pt;}
.y90{bottom:79.749067pt;}
.ye0{bottom:79.749467pt;}
.yfc{bottom:79.750000pt;}
.y106{bottom:95.748133pt;}
.y23{bottom:95.748267pt;}
.y51{bottom:95.748533pt;}
.y76{bottom:95.748667pt;}
.yac{bottom:95.748933pt;}
.y8f{bottom:95.749067pt;}
.ydf{bottom:95.749467pt;}
.yfb{bottom:95.750000pt;}
.y124{bottom:97.511867pt;}
.y144{bottom:97.568133pt;}
.y22{bottom:111.748267pt;}
.y105{bottom:111.748400pt;}
.y50{bottom:111.748533pt;}
.y75{bottom:111.748667pt;}
.yab{bottom:111.748933pt;}
.y8e{bottom:111.749067pt;}
.yde{bottom:111.749467pt;}
.yfa{bottom:111.750000pt;}
.y123{bottom:115.275600pt;}
.y143{bottom:115.326800pt;}
.yca{bottom:127.748267pt;}
.y104{bottom:127.748400pt;}
.y4f{bottom:127.748533pt;}
.y74{bottom:127.748667pt;}
.yaa{bottom:127.748933pt;}
.y8d{bottom:127.749067pt;}
.ydd{bottom:127.749467pt;}
.yf9{bottom:127.750000pt;}
.y122{bottom:133.039333pt;}
.y142{bottom:133.085467pt;}
.yc9{bottom:143.748267pt;}
.y103{bottom:143.748400pt;}
.y4e{bottom:143.748533pt;}
.y73{bottom:143.748667pt;}
.ya9{bottom:143.748933pt;}
.y8c{bottom:143.749067pt;}
.ydc{bottom:143.749467pt;}
.yf8{bottom:143.750000pt;}
.y112{bottom:150.803200pt;}
.y121{bottom:150.808267pt;}
.y141{bottom:150.844133pt;}
.yd5{bottom:152.070800pt;}
.y102{bottom:159.748400pt;}
.y4d{bottom:159.748533pt;}
.y72{bottom:159.748800pt;}
.ya8{bottom:159.748933pt;}
.y8b{bottom:159.749067pt;}
.ydb{bottom:159.749467pt;}
.yf7{bottom:159.750000pt;}
.yd4{bottom:168.068800pt;}
.y21{bottom:168.566933pt;}
.y120{bottom:168.572000pt;}
.y140{bottom:168.602800pt;}
.y101{bottom:175.748400pt;}
.y4c{bottom:175.748667pt;}
.y71{bottom:175.748800pt;}
.ya7{bottom:175.748933pt;}
.y8a{bottom:175.749067pt;}
.yda{bottom:175.749467pt;}
.yf6{bottom:175.750000pt;}
.yd3{bottom:184.066800pt;}
.y20{bottom:186.330667pt;}
.yc8{bottom:186.338133pt;}
.y13f{bottom:186.361467pt;}
.y4b{bottom:191.748667pt;}
.y70{bottom:191.748800pt;}
.ya6{bottom:191.748933pt;}
.y89{bottom:191.749067pt;}
.yd9{bottom:191.749467pt;}
.yf5{bottom:191.750000pt;}
.yd2{bottom:200.064800pt;}
.y1f{bottom:204.094533pt;}
.yc7{bottom:204.099467pt;}
.y13e{bottom:204.120133pt;}
.y4a{bottom:207.748667pt;}
.y6f{bottom:207.749067pt;}
.yd8{bottom:207.749467pt;}
.yf4{bottom:207.750000pt;}
.yd1{bottom:216.064800pt;}
.y1e{bottom:221.858267pt;}
.yc6{bottom:221.860800pt;}
.y111{bottom:221.863200pt;}
.y11f{bottom:221.863467pt;}
.y13d{bottom:221.878800pt;}
.y49{bottom:223.748667pt;}
.y6e{bottom:223.749067pt;}
.yd7{bottom:223.749467pt;}
.yf3{bottom:223.750000pt;}
.yd0{bottom:232.062800pt;}
.y100{bottom:239.622000pt;}
.y1d{bottom:239.622133pt;}
.y110{bottom:239.624533pt;}
.ya5{bottom:239.631867pt;}
.y13c{bottom:239.637467pt;}
.y48{bottom:239.748667pt;}
.y6d{bottom:239.749067pt;}
.yc0{bottom:239.749467pt;}
.yf2{bottom:239.750000pt;}
.y47{bottom:255.748667pt;}
.y6c{bottom:255.749467pt;}
.yf1{bottom:255.750000pt;}
.yc5{bottom:257.385867pt;}
.yff{bottom:257.388267pt;}
.ya4{bottom:257.393200pt;}
.y13b{bottom:257.396133pt;}
.y46{bottom:271.748667pt;}
.y6b{bottom:271.749467pt;}
.yf0{bottom:271.750000pt;}
.yc4{bottom:275.149600pt;}
.yfe{bottom:275.152000pt;}
.yb4{bottom:275.152133pt;}
.ya3{bottom:275.154533pt;}
.y13a{bottom:275.154800pt;}
.y88{bottom:275.159467pt;}
.y11e{bottom:275.175200pt;}
.y45{bottom:287.748667pt;}
.y6a{bottom:287.749467pt;}
.yef{bottom:287.750000pt;}
.yfd{bottom:292.913333pt;}
.yb3{bottom:292.913467pt;}
.ya2{bottom:292.915867pt;}
.y87{bottom:292.920800pt;}
.y11d{bottom:292.933867pt;}
.y44{bottom:303.748800pt;}
.y69{bottom:303.749467pt;}
.yee{bottom:303.750000pt;}
.y1c{bottom:305.335200pt;}
.ya1{bottom:310.677200pt;}
.ybf{bottom:310.679600pt;}
.y86{bottom:310.682133pt;}
.y11c{bottom:310.692533pt;}
.yc3{bottom:315.594667pt;}
.y43{bottom:319.748800pt;}
.yed{bottom:319.750000pt;}
.y1b{bottom:321.333200pt;}
.y9f{bottom:328.440933pt;}
.y85{bottom:328.443467pt;}
.ybe{bottom:328.445867pt;}
.y11b{bottom:328.451200pt;}
.y139{bottom:328.466533pt;}
.yc2{bottom:331.592667pt;}
.ya0{bottom:333.324933pt;}
.y42{bottom:335.748933pt;}
.yec{bottom:335.750000pt;}
.y1a{bottom:337.333200pt;}
.y10a{bottom:342.126000pt;}
.y68{bottom:346.204800pt;}
.ybd{bottom:346.207200pt;}
.y11a{bottom:346.209867pt;}
.y138{bottom:346.225200pt;}
.yc1{bottom:347.590667pt;}
.y10f{bottom:351.088800pt;}
.y109{bottom:358.124000pt;}
.y67{bottom:363.968533pt;}
.y10e{bottom:363.973467pt;}
.y137{bottom:363.983867pt;}
.y108{bottom:374.122000pt;}
.y41{bottom:381.732400pt;}
.yeb{bottom:381.734800pt;}
.y66{bottom:381.737200pt;}
.y9e{bottom:381.739733pt;}
.y136{bottom:381.742533pt;}
.y19{bottom:391.138533pt;}
.y119{bottom:399.370133pt;}
.y40{bottom:399.496133pt;}
.y65{bottom:399.498533pt;}
.y9d{bottom:399.501067pt;}
.y135{bottom:399.501200pt;}
.y18{bottom:407.136533pt;}
.y64{bottom:417.259867pt;}
.y84{bottom:417.262400pt;}
.y3f{bottom:417.264800pt;}
.y17{bottom:423.134533pt;}
.y63{bottom:435.023733pt;}
.y3e{bottom:435.026133pt;}
.yea{bottom:435.028533pt;}
.y16{bottom:439.132533pt;}
.y3d{bottom:452.787467pt;}
.yd6{bottom:452.789867pt;}
.y118{bottom:452.807867pt;}
.y134{bottom:452.833467pt;}
.y15{bottom:455.130533pt;}
.y3c{bottom:470.551200pt;}
.y83{bottom:470.553733pt;}
.yb2{bottom:470.555067pt;}
.y9c{bottom:470.556133pt;}
.y117{bottom:470.566533pt;}
.y133{bottom:470.592133pt;}
.y14{bottom:471.128533pt;}
.y13{bottom:487.128533pt;}
.y3b{bottom:488.315067pt;}
.y9b{bottom:488.317467pt;}
.y116{bottom:488.325200pt;}
.y132{bottom:488.350800pt;}
.y12{bottom:503.128533pt;}
.y3a{bottom:506.078800pt;}
.y10d{bottom:506.081200pt;}
.ye9{bottom:506.083733pt;}
.y115{bottom:506.083867pt;}
.y131{bottom:506.109467pt;}
.y11{bottom:519.128533pt;}
.y39{bottom:523.842533pt;}
.ye8{bottom:523.845067pt;}
.y130{bottom:523.868133pt;}
.y82{bottom:541.606400pt;}
.y9a{bottom:541.608800pt;}
.ybc{bottom:541.611200pt;}
.y62{bottom:541.613733pt;}
.y12f{bottom:541.626800pt;}
.y38{bottom:559.370133pt;}
.ybb{bottom:559.372533pt;}
.y61{bottom:559.375067pt;}
.y12e{bottom:559.385467pt;}
.y10{bottom:572.923733pt;}
.y99{bottom:577.133867pt;}
.y60{bottom:577.136400pt;}
.yba{bottom:577.138800pt;}
.y12d{bottom:577.144133pt;}
.yb1{bottom:582.017867pt;}
.yf{bottom:588.923733pt;}
.y5f{bottom:594.897733pt;}
.yb9{bottom:594.900133pt;}
.y12c{bottom:594.902800pt;}
.ye7{bottom:594.910000pt;}
.ye{bottom:604.923733pt;}
.y5e{bottom:612.661467pt;}
.y37{bottom:612.663867pt;}
.ye6{bottom:612.671333pt;}
.y114{bottom:614.425200pt;}
.y5d{bottom:630.425200pt;}
.y81{bottom:630.427733pt;}
.y36{bottom:630.430133pt;}
.ye5{bottom:630.432667pt;}
.yb8{bottom:635.309200pt;}
.y152{bottom:635.598667pt;}
.y10c{bottom:641.663067pt;}
.y80{bottom:648.189067pt;}
.y35{bottom:648.191467pt;}
.ye4{bottom:648.194000pt;}
.y98{bottom:648.196400pt;}
.y151{bottom:651.596667pt;}
.y10b{bottom:657.661067pt;}
.yd{bottom:658.723067pt;}
.y34{bottom:665.952800pt;}
.ye3{bottom:665.955333pt;}
.y97{bottom:665.957733pt;}
.yce{bottom:665.960133pt;}
.y5c{bottom:665.962667pt;}
.y150{bottom:667.594667pt;}
.yc{bottom:674.721067pt;}
.y14f{bottom:683.592667pt;}
.y33{bottom:683.716667pt;}
.y96{bottom:683.719067pt;}
.ycd{bottom:683.721467pt;}
.y5b{bottom:683.724000pt;}
.yb0{bottom:688.600667pt;}
.yb{bottom:690.719067pt;}
.y32{bottom:701.480400pt;}
.ycc{bottom:701.482800pt;}
.y5a{bottom:701.485333pt;}
.yaf{bottom:701.487733pt;}
.ya{bottom:706.719067pt;}
.y95{bottom:719.244133pt;}
.y59{bottom:719.246667pt;}
.y7f{bottom:719.249067pt;}
.y31{bottom:719.251467pt;}
.y12b{bottom:719.254400pt;}
.y9{bottom:722.719067pt;}
.y58{bottom:737.008000pt;}
.y7e{bottom:737.010400pt;}
.y30{bottom:737.012800pt;}
.y12a{bottom:737.013067pt;}
.y14e{bottom:737.059067pt;}
.y8{bottom:738.719067pt;}
.y7{bottom:754.719067pt;}
.y7d{bottom:754.771733pt;}
.y2f{bottom:754.774133pt;}
.ye2{bottom:754.776533pt;}
.y57{bottom:754.779067pt;}
.y94{bottom:754.781467pt;}
.y14d{bottom:754.817733pt;}
.y6{bottom:770.719067pt;}
.y2e{bottom:772.535467pt;}
.ycb{bottom:772.537867pt;}
.y56{bottom:772.540400pt;}
.y93{bottom:772.542800pt;}
.y14c{bottom:772.576400pt;}
.y5{bottom:786.719067pt;}
.y2c{bottom:790.299200pt;}
.y55{bottom:790.301733pt;}
.y92{bottom:790.304133pt;}
.y129{bottom:790.314533pt;}
.y14b{bottom:790.335067pt;}
.y2d{bottom:795.183333pt;}
.y7c{bottom:808.063067pt;}
.y91{bottom:808.065467pt;}
.y2b{bottom:808.067867pt;}
.yb7{bottom:808.070400pt;}
.y128{bottom:808.073200pt;}
.y14a{bottom:808.093733pt;}
.y7b{bottom:825.826800pt;}
.y2a{bottom:825.829200pt;}
.yb6{bottom:825.831733pt;}
.y127{bottom:825.831867pt;}
.y149{bottom:825.852400pt;}
.y29{bottom:843.590533pt;}
.y54{bottom:843.593067pt;}
.y7a{bottom:843.595467pt;}
.y126{bottom:843.595733pt;}
.y148{bottom:843.611067pt;}
.y4{bottom:848.073467pt;}
.ye1{bottom:848.474667pt;}
.y28{bottom:861.354400pt;}
.y53{bottom:861.356800pt;}
.y113{bottom:861.359200pt;}
.y147{bottom:861.369733pt;}
.y52{bottom:879.118133pt;}
.y79{bottom:879.120533pt;}
.y27{bottom:879.123067pt;}
.y146{bottom:879.128400pt;}
.yb5{bottom:884.002133pt;}
.y3{bottom:886.742533pt;}
.y78{bottom:896.881867pt;}
.y26{bottom:896.884400pt;}
.y145{bottom:896.887067pt;}
.y2{bottom:912.083867pt;}
.y25{bottom:914.645733pt;}
.yae{bottom:919.529733pt;}
.y1{bottom:961.978533pt;}
.h9{height:31.192832pt;}
.h2{height:45.216000pt;}
.he{height:46.003733pt;}
.h6{height:46.208000pt;}
.hc{height:46.765333pt;}
.h8{height:48.640000pt;}
.h5{height:50.400000pt;}
.h7{height:53.504000pt;}
.hd{height:54.139200pt;}
.hb{height:54.149333pt;}
.ha{height:60.480000pt;}
.h4{height:65.312000pt;}
.h3{height:85.680000pt;}
.h0{height:1020.472000pt;}
.h1{height:1020.666667pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1e{left:62.250400pt;}
.x8{left:63.319200pt;}
.x3{left:64.252000pt;}
.x17{left:70.884133pt;}
.x1{left:71.811067pt;}
.x7{left:82.841200pt;}
.x19{left:83.814667pt;}
.x4{left:87.137200pt;}
.xb{left:90.400133pt;}
.x21{left:91.478667pt;}
.xc{left:92.492933pt;}
.xa{left:93.668933pt;}
.x2{left:94.605067pt;}
.xf{left:100.418400pt;}
.x22{left:173.783467pt;}
.x1f{left:175.159067pt;}
.x23{left:177.800000pt;}
.x20{left:183.131333pt;}
.x24{left:295.856400pt;}
.x25{left:303.474267pt;}
.x15{left:400.053067pt;}
.x1c{left:402.869200pt;}
.x16{left:408.370933pt;}
.x1d{left:421.767867pt;}
.x1a{left:452.175867pt;}
.x1b{left:460.589200pt;}
.x10{left:521.675733pt;}
.x11{left:529.574267pt;}
.x12{left:530.590133pt;}
.x13{left:538.764800pt;}
.x5{left:587.159200pt;}
.x6{left:591.251467pt;}
.x14{left:636.626533pt;}
.x9{left:638.906800pt;}
.xd{left:644.725867pt;}
.x18{left:645.807867pt;}
.xe{left:653.467467pt;}
}




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