
    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_e0393799cee8f8f9a576809e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948000;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_4f353d8c43e5696178b42498.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_b257cd1ffb081374ca5c81e3.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.915000;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_5a08379ff51bfdad89a0e723.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093000;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_ddc3f1d550bb83fa657dd404.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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_54a64a21d318a51f7dec722f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.069824;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_fcc806d5d3c76a2454dbe67f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.826000;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_5634be446e47a0f2054fc621.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_47565307f10a2c3b18de4a39.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948000;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_bb2ba3b5ace362aca47c68b1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.971000;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:ffb;src:url('chunks/assets/font_572938593a385689cce5f219.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.715000;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:ffc;src:url('chunks/assets/font_d3b65c80f7c6446f423eac34.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933000;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:ffd;src:url('chunks/assets/font_0357d59316fce483ac27d90c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.947000;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:ffe;src:url('chunks/assets/font_5652e376d062109504dfb1de.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.901000;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:fff;src:url('chunks/assets/font_d3b65c80f7c6446f423eac34.woff2')format("woff");}.fff{font-family:fff;line-height:0.933000;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;}
.m61{transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242790,0.000000,0.000000,0.250000,0,0);}
.m59{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);}
.m11{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);}
.m75{transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245158,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245207,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245328,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245525,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245558,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245650,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245745,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245795,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245938,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245977,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245980,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246025,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246130,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246238,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246293,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246403,0.000000,0.000000,0.250000,0,0);}
.m89{transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246409,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246630,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246698,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246698,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246698,0.000000,0.000000,0.250000,0,0);}
.m85{transform:matrix(0.246759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246759,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246872,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246910,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246948,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246978,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247085,0.000000,0.000000,0.250000,0,0);}
.m84{transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247128,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247220,0.000000,0.000000,0.250000,0,0);}
.m3d{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);}
.m57{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);}
.m6e{transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247510,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247625,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247643,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247705,0.000000,0.000000,0.250000,0,0);}
.m8f{transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247725,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247745,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247980,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m5c{transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248080,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248169,0.000000,0.000000,0.250000,0,0);}
.m7b{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);}
.m17{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248463,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248485,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248650,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248675,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248773,0.000000,0.000000,0.250000,0,0);}
.m86{transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248875,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249073,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249120,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249290,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m90{transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249334,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249402,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m81{transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249406,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249433,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249505,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249550,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249582,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249787,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249790,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249838,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,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);}
.m13{transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250025,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250225,0.000000,0.000000,0.250000,0,0);}
.m38{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);}
.m1a{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250380,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250410,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250497,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250513,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250515,0.000000,0.000000,0.250000,0,0);}
.m8e{transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250619,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250632,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250765,0.000000,0.000000,0.250000,0,0);}
.m8c{transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250787,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250840,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250916,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m77{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);}
.m66{transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251053,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251170,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251306,0.000000,0.000000,0.250000,0,0);}
.m83{transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251309,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251418,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251440,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251553,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251555,0.000000,0.000000,0.250000,0,0);}
.m91{transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251606,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251677,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251682,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251725,0.000000,0.000000,0.250000,0,0);}
.m8b{transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251772,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251875,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.251969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251969,0.000000,0.000000,0.250000,0,0);}
.m8a{transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252047,0.000000,0.000000,0.250000,0,0);}
.m5e{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);}
.m80{transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252106,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252128,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252167,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252200,0.000000,0.000000,0.250000,0,0);}
.m8d{transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252244,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252400,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m6b{transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252493,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252680,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252697,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252760,0.000000,0.000000,0.250000,0,0);}
.m87{transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252850,0.000000,0.000000,0.250000,0,0);}
.m92{transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252922,0.000000,0.000000,0.250000,0,0);}
.m93{transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252925,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252980,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253020,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253150,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253163,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253332,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);}
.m82{transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253587,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253805,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253810,0.000000,0.000000,0.250000,0,0);}
.m88{transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253966,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254050,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254075,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254202,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254265,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254287,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254675,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254732,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254795,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254910,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v2{vertical-align:-19.973580px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:8.580000px;}
.v1{vertical-align:19.973580px;}
.ls22{letter-spacing:-5.016000px;}
.ls2f{letter-spacing:-4.500000px;}
.ls41{letter-spacing:-2.064000px;}
.ls2d{letter-spacing:-1.740000px;}
.ls36{letter-spacing:-1.500000px;}
.ls31{letter-spacing:-1.404000px;}
.ls34{letter-spacing:-1.380000px;}
.lsc{letter-spacing:-1.350000px;}
.ls2e{letter-spacing:-1.320000px;}
.ls28{letter-spacing:-1.200000px;}
.ls2c{letter-spacing:-1.140000px;}
.ls9{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-1.026000px;}
.ls37{letter-spacing:-1.020000px;}
.ls23{letter-spacing:-0.960000px;}
.ls14{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.864000px;}
.ls26{letter-spacing:-0.840000px;}
.ls45{letter-spacing:-0.816000px;}
.ls25{letter-spacing:-0.780000px;}
.ls3c{letter-spacing:-0.768000px;}
.ls21{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.660000px;}
.ls12{letter-spacing:-0.600000px;}
.ls27{letter-spacing:-0.540000px;}
.ls30{letter-spacing:-0.486000px;}
.ls24{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.378000px;}
.ls16{letter-spacing:-0.360000px;}
.ls44{letter-spacing:-0.336000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls3f{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.192000px;}
.ls15{letter-spacing:-0.180000px;}
.ls40{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls3b{letter-spacing:-0.096000px;}
.ls17{letter-spacing:-0.060000px;}
.ls42{letter-spacing:-0.048000px;}
.ls8{letter-spacing:-0.009864px;}
.lsa{letter-spacing:-0.000120px;}
.ls7{letter-spacing:-0.000070px;}
.ls1c{letter-spacing:-0.000054px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.001860px;}
.ls39{letter-spacing:0.048000px;}
.ls5{letter-spacing:0.053002px;}
.lse{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.060000px;}
.ls38{letter-spacing:0.096000px;}
.ls4{letter-spacing:0.120000px;}
.ls3a{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.180000px;}
.ls43{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.240000px;}
.ls3e{letter-spacing:0.288000px;}
.ls2a{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.402000px;}
.ls32{letter-spacing:0.420000px;}
.ls2{letter-spacing:0.540000px;}
.ls20{letter-spacing:0.600000px;}
.ls1{letter-spacing:0.660000px;}
.ls33{letter-spacing:0.720000px;}
.ls13{letter-spacing:0.840000px;}
.ls1e{letter-spacing:1.620000px;}
.ls29{letter-spacing:2.220000px;}
.ls35{letter-spacing:3.420000px;}
.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;}
}
.ws12{word-spacing:-54.000000px;}
.ws0{word-spacing:-19.080000px;}
.wsa{word-spacing:-14.982000px;}
.ws35{word-spacing:-13.980000px;}
.wsb{word-spacing:-13.740000px;}
.ws38{word-spacing:-13.680000px;}
.ws11{word-spacing:-13.620000px;}
.wsf{word-spacing:-13.560000px;}
.ws37{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.440000px;}
.ws5c{word-spacing:-13.380000px;}
.wsc{word-spacing:-13.320000px;}
.wsd{word-spacing:-13.140000px;}
.ws36{word-spacing:-13.080000px;}
.ws3a{word-spacing:-13.020000px;}
.ws34{word-spacing:-12.960000px;}
.ws14{word-spacing:-12.900000px;}
.wse{word-spacing:-12.840000px;}
.ws5b{word-spacing:-12.780000px;}
.ws17{word-spacing:-12.720000px;}
.ws3c{word-spacing:-12.660000px;}
.ws33{word-spacing:-12.600000px;}
.ws16{word-spacing:-12.540000px;}
.ws39{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.366000px;}
.ws5a{word-spacing:-12.360000px;}
.ws63{word-spacing:-12.240000px;}
.ws3b{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.988000px;}
.ws5d{word-spacing:-11.772000px;}
.ws5{word-spacing:-11.502000px;}
.ws9{word-spacing:-11.340000px;}
.ws3f{word-spacing:-11.232000px;}
.ws71{word-spacing:-11.184000px;}
.ws74{word-spacing:-11.040000px;}
.ws7{word-spacing:-11.016000px;}
.ws70{word-spacing:-10.896000px;}
.ws72{word-spacing:-10.752000px;}
.ws73{word-spacing:-10.704000px;}
.ws75{word-spacing:-10.656000px;}
.ws6f{word-spacing:-10.224000px;}
.ws76{word-spacing:-10.176000px;}
.ws4{word-spacing:-9.420000px;}
.ws3{word-spacing:-9.419880px;}
.ws15{word-spacing:-9.306000px;}
.ws3d{word-spacing:-9.240000px;}
.ws1{word-spacing:-7.940460px;}
.ws2{word-spacing:-7.091076px;}
.ws49{word-spacing:-3.540000px;}
.ws4a{word-spacing:-2.460000px;}
.ws4b{word-spacing:-2.100000px;}
.ws46{word-spacing:-1.740000px;}
.ws47{word-spacing:-1.560000px;}
.ws6e{word-spacing:-0.540000px;}
.ws6d{word-spacing:-0.486000px;}
.ws1d{word-spacing:-0.420000px;}
.ws1a{word-spacing:-0.300000px;}
.ws1e{word-spacing:-0.240000px;}
.ws78{word-spacing:-0.192000px;}
.ws6b{word-spacing:-0.180000px;}
.ws6c{word-spacing:-0.120000px;}
.ws13{word-spacing:0.000000px;}
.ws5e{word-spacing:0.120000px;}
.ws7f{word-spacing:0.144000px;}
.ws66{word-spacing:0.180000px;}
.ws7d{word-spacing:0.192000px;}
.ws2a{word-spacing:0.240000px;}
.ws27{word-spacing:0.300000px;}
.ws61{word-spacing:0.378000px;}
.ws28{word-spacing:0.420000px;}
.ws62{word-spacing:0.486000px;}
.ws82{word-spacing:0.576000px;}
.ws19{word-spacing:0.600000px;}
.ws87{word-spacing:0.624000px;}
.ws67{word-spacing:0.780000px;}
.ws4e{word-spacing:0.864000px;}
.ws69{word-spacing:0.900000px;}
.ws1f{word-spacing:0.960000px;}
.ws54{word-spacing:1.020000px;}
.ws77{word-spacing:1.056000px;}
.ws22{word-spacing:1.080000px;}
.ws51{word-spacing:1.140000px;}
.ws7e{word-spacing:1.200000px;}
.ws4c{word-spacing:1.260000px;}
.ws79{word-spacing:1.296000px;}
.ws4f{word-spacing:1.320000px;}
.ws23{word-spacing:1.440000px;}
.ws7a{word-spacing:1.488000px;}
.ws4d{word-spacing:1.500000px;}
.ws56{word-spacing:1.620000px;}
.ws2c{word-spacing:1.680000px;}
.ws30{word-spacing:1.740000px;}
.ws48{word-spacing:1.800000px;}
.ws40{word-spacing:1.860000px;}
.ws29{word-spacing:1.980000px;}
.ws81{word-spacing:2.016000px;}
.ws80{word-spacing:2.064000px;}
.ws60{word-spacing:2.100000px;}
.ws58{word-spacing:2.160000px;}
.ws25{word-spacing:2.220000px;}
.ws83{word-spacing:2.256000px;}
.ws31{word-spacing:2.280000px;}
.ws86{word-spacing:2.352000px;}
.ws2b{word-spacing:2.460000px;}
.ws65{word-spacing:2.520000px;}
.ws6a{word-spacing:2.580000px;}
.ws53{word-spacing:2.640000px;}
.ws7b{word-spacing:2.688000px;}
.ws26{word-spacing:2.700000px;}
.ws7c{word-spacing:2.736000px;}
.ws85{word-spacing:2.784000px;}
.ws5f{word-spacing:2.820000px;}
.ws2e{word-spacing:2.880000px;}
.ws68{word-spacing:3.000000px;}
.ws84{word-spacing:3.072000px;}
.ws52{word-spacing:3.120000px;}
.ws24{word-spacing:3.360000px;}
.ws18{word-spacing:3.420000px;}
.ws57{word-spacing:3.540000px;}
.ws64{word-spacing:3.600000px;}
.ws59{word-spacing:4.080000px;}
.ws2f{word-spacing:4.380000px;}
.ws50{word-spacing:4.620000px;}
.ws44{word-spacing:4.860000px;}
.ws55{word-spacing:5.280000px;}
.ws20{word-spacing:6.420000px;}
.ws45{word-spacing:6.600000px;}
.ws21{word-spacing:6.720000px;}
.ws1b{word-spacing:7.200000px;}
.ws41{word-spacing:9.660000px;}
.ws42{word-spacing:11.640000px;}
.ws43{word-spacing:13.380000px;}
.ws2d{word-spacing:20.580000px;}
.ws32{word-spacing:145.026000px;}
.ws1c{word-spacing:197.160000px;}
.ws3e{word-spacing:277.620000px;}
._d{margin-left:-21.390000px;}
._a{margin-left:-13.050000px;}
._18{margin-left:-8.490000px;}
._1f{margin-left:-7.344000px;}
._11{margin-left:-6.186000px;}
._2{margin-left:-4.500000px;}
._1e{margin-left:-3.462000px;}
._1{margin-left:-2.400000px;}
._0{margin-left:-1.188000px;}
._3{width:1.236000px;}
._5{width:2.322600px;}
._6{width:3.521400px;}
._17{width:5.233200px;}
._7{width:6.477647px;}
._1d{width:10.464000px;}
._10{width:54.233400px;}
._1c{width:80.760000px;}
._1a{width:153.396000px;}
._14{width:160.524000px;}
._e{width:176.160000px;}
._b{width:188.040000px;}
._c{width:189.750000px;}
._13{width:197.160000px;}
._8{width:206.640000px;}
._12{width:214.320000px;}
._f{width:215.580000px;}
._1b{width:217.680000px;}
._9{width:220.014000px;}
._15{width:223.206000px;}
._16{width:227.526000px;}
._19{width:238.260000px;}
._4{width:1673.874240px;}
.fc3{color:rgb(123,121,121);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs3{font-size:34.980000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.972500px;}
.ycb{bottom:78.928950px;}
.ye5{bottom:79.479000px;}
.y61{bottom:81.228150px;}
.ybc{bottom:84.528600px;}
.ya3{bottom:90.692550px;}
.yc9{bottom:91.936050px;}
.y32{bottom:93.045000px;}
.y21{bottom:95.514000px;}
.ye4{bottom:98.229000px;}
.y60{bottom:99.978150px;}
.ybb{bottom:103.278600px;}
.y31{bottom:111.795000px;}
.y20{bottom:114.264000px;}
.ye3{bottom:116.979000px;}
.y5f{bottom:118.728150px;}
.yba{bottom:122.028600px;}
.y30{bottom:130.545000px;}
.y1f{bottom:133.014000px;}
.ye2{bottom:135.729000px;}
.y5e{bottom:137.478150px;}
.y8c{bottom:137.480250px;}
.yb9{bottom:140.778600px;}
.y2f{bottom:149.295000px;}
.y1e{bottom:151.764000px;}
.ye1{bottom:154.479000px;}
.y5d{bottom:156.228150px;}
.y8b{bottom:156.356400px;}
.yb8{bottom:159.528600px;}
.y1d{bottom:170.514000px;}
.ye0{bottom:173.229000px;}
.y5c{bottom:174.978150px;}
.y8a{bottom:175.232700px;}
.yb7{bottom:178.278600px;}
.y2e{bottom:180.801000px;}
.y1c{bottom:189.264000px;}
.ydf{bottom:191.979000px;}
.y5b{bottom:193.728150px;}
.y89{bottom:194.108850px;}
.yb6{bottom:197.028600px;}
.y1b{bottom:208.014000px;}
.yde{bottom:210.729000px;}
.y5a{bottom:212.478150px;}
.yb5{bottom:215.778450px;}
.y2d{bottom:221.860500px;}
.y88{bottom:225.736950px;}
.y1a{bottom:226.764000px;}
.ydd{bottom:229.479000px;}
.y59{bottom:231.228150px;}
.yb4{bottom:234.528450px;}
.y2c{bottom:240.610500px;}
.y19{bottom:245.514000px;}
.ydc{bottom:248.229000px;}
.y58{bottom:249.978150px;}
.yb3{bottom:253.278450px;}
.y2b{bottom:259.360500px;}
.y18{bottom:264.264000px;}
.y87{bottom:265.126950px;}
.ydb{bottom:266.979000px;}
.y57{bottom:268.728150px;}
.yb2{bottom:272.028450px;}
.y2a{bottom:278.110500px;}
.y17{bottom:283.014000px;}
.y86{bottom:284.003100px;}
.yda{bottom:285.729000px;}
.y56{bottom:287.488950px;}
.yb1{bottom:290.778450px;}
.y29{bottom:296.860500px;}
.y16{bottom:301.764000px;}
.y85{bottom:302.879400px;}
.yd9{bottom:304.479000px;}
.y55{bottom:306.238950px;}
.yb0{bottom:309.528450px;}
.y28{bottom:315.610500px;}
.y15{bottom:320.514000px;}
.y84{bottom:321.755550px;}
.yd8{bottom:323.229000px;}
.yaf{bottom:328.278450px;}
.y27{bottom:334.360500px;}
.y54{bottom:337.738950px;}
.y14{bottom:339.264000px;}
.y83{bottom:340.631700px;}
.yd7{bottom:341.979000px;}
.yae{bottom:347.028450px;}
.y26{bottom:353.110500px;}
.y13{bottom:358.014000px;}
.y82{bottom:359.507850px;}
.yd6{bottom:360.729000px;}
.yad{bottom:365.778450px;}
.y25{bottom:371.860500px;}
.y12{bottom:376.764000px;}
.y53{bottom:376.993950px;}
.y81{bottom:378.384000px;}
.yd5{bottom:379.479000px;}
.y24{bottom:390.610500px;}
.y11{bottom:395.514000px;}
.y52{bottom:395.743950px;}
.y80{bottom:397.260300px;}
.yac{bottom:397.289250px;}
.yd4{bottom:398.229000px;}
.y23{bottom:409.360500px;}
.y51{bottom:414.493950px;}
.y7f{bottom:416.136450px;}
.yd3{bottom:416.979000px;}
.y10{bottom:427.020000px;}
.y22{bottom:428.110500px;}
.y50{bottom:433.243950px;}
.y7e{bottom:435.012600px;}
.yd2{bottom:435.729000px;}
.yab{bottom:436.544250px;}
.y4f{bottom:452.000850px;}
.y7d{bottom:453.888900px;}
.yd1{bottom:454.479000px;}
.yaa{bottom:455.294250px;}
.y7c{bottom:472.765050px;}
.yd0{bottom:473.229000px;}
.ya9{bottom:474.044250px;}
.y4e{bottom:474.995850px;}
.yc7{bottom:487.579500px;}
.y7b{bottom:491.641200px;}
.ycf{bottom:491.979000px;}
.ya8{bottom:492.794250px;}
.yc6{bottom:506.329500px;}
.y4d{bottom:506.501850px;}
.y7a{bottom:510.523500px;}
.yce{bottom:510.729000px;}
.ya7{bottom:511.544250px;}
.ye{bottom:520.087500px;}
.yc5{bottom:525.079500px;}
.y79{bottom:529.393500px;}
.ycd{bottom:529.479000px;}
.ya6{bottom:530.294250px;}
.yd{bottom:542.592000px;}
.yc4{bottom:543.829500px;}
.y4c{bottom:547.561650px;}
.ycc{bottom:548.229000px;}
.y78{bottom:548.269800px;}
.ya5{bottom:549.044250px;}
.yc{bottom:557.590500px;}
.yc3{bottom:562.579500px;}
.y102{bottom:564.015300px;}
.y4b{bottom:566.311650px;}
.y77{bottom:567.145950px;}
.yb{bottom:572.589000px;}
.yca{bottom:574.831350px;}
.y101{bottom:578.415300px;}
.ya4{bottom:580.550100px;}
.ye7{bottom:581.166750px;}
.yc2{bottom:581.329500px;}
.y4a{bottom:585.061650px;}
.y76{bottom:586.022100px;}
.y122{bottom:586.608300px;}
.ya{bottom:587.587500px;}
.y100{bottom:592.815300px;}
.ye6{bottom:597.366750px;}
.yc1{bottom:600.079500px;}
.y121{bottom:601.008300px;}
.y49{bottom:603.811650px;}
.y75{bottom:604.898400px;}
.yff{bottom:607.215300px;}
.ya2{bottom:614.046900px;}
.y120{bottom:615.408300px;}
.yc0{bottom:618.829500px;}
.yfe{bottom:621.615300px;}
.y48{bottom:622.561650px;}
.y74{bottom:623.774550px;}
.y11f{bottom:629.808450px;}
.ya1{bottom:632.046900px;}
.yfd{bottom:636.015300px;}
.ybf{bottom:637.579500px;}
.y47{bottom:641.311650px;}
.y73{bottom:642.650700px;}
.y11e{bottom:644.208300px;}
.yf{bottom:647.245500px;}
.ya0{bottom:650.046900px;}
.yfc{bottom:650.415300px;}
.ybe{bottom:656.329500px;}
.y11d{bottom:658.608300px;}
.y46{bottom:660.061650px;}
.y72{bottom:661.526850px;}
.yfb{bottom:664.815300px;}
.y9f{bottom:668.046900px;}
.y11c{bottom:673.008300px;}
.ybd{bottom:675.079500px;}
.y45{bottom:678.811650px;}
.yfa{bottom:679.215300px;}
.y71{bottom:680.403150px;}
.y9e{bottom:686.046900px;}
.y11b{bottom:687.408300px;}
.yf9{bottom:693.615300px;}
.y44{bottom:697.561650px;}
.y70{bottom:699.279300px;}
.y11a{bottom:701.808450px;}
.yc8{bottom:704.777100px;}
.yf8{bottom:708.015300px;}
.y9d{bottom:708.951900px;}
.y8{bottom:712.524000px;}
.y119{bottom:716.208300px;}
.y43{bottom:716.311650px;}
.y6f{bottom:718.155450px;}
.yf7{bottom:722.415300px;}
.y9c{bottom:725.136900px;}
.y118{bottom:730.608300px;}
.y42{bottom:735.061650px;}
.y7{bottom:735.517395px;}
.yf6{bottom:736.815300px;}
.y6e{bottom:737.031600px;}
.y9b{bottom:741.321900px;}
.y117{bottom:745.008300px;}
.yf5{bottom:751.215300px;}
.y6{bottom:753.517395px;}
.y41{bottom:753.811650px;}
.y6d{bottom:755.907750px;}
.y9a{bottom:757.506900px;}
.y116{bottom:759.408300px;}
.yf4{bottom:765.615150px;}
.y40{bottom:772.561650px;}
.y99{bottom:773.691900px;}
.y115{bottom:773.808450px;}
.y6c{bottom:774.784050px;}
.yf3{bottom:780.015150px;}
.y5{bottom:784.524000px;}
.y114{bottom:788.208300px;}
.y98{bottom:789.876900px;}
.y3f{bottom:791.311650px;}
.y113{bottom:802.608450px;}
.y97{bottom:806.061900px;}
.y6b{bottom:806.433000px;}
.yf2{bottom:807.171150px;}
.y3e{bottom:810.061650px;}
.y112{bottom:817.008300px;}
.y96{bottom:822.246900px;}
.y3d{bottom:828.811650px;}
.y111{bottom:831.408300px;}
.y95{bottom:838.431900px;}
.y110{bottom:845.808300px;}
.y6a{bottom:845.823000px;}
.y3c{bottom:847.561650px;}
.yf1{bottom:848.230950px;}
.y4{bottom:850.287000px;}
.y94{bottom:854.616900px;}
.y10f{bottom:860.208300px;}
.y69{bottom:864.693000px;}
.y3b{bottom:866.311650px;}
.yf0{bottom:866.980950px;}
.y10e{bottom:874.608450px;}
.y93{bottom:877.521900px;}
.y68{bottom:883.563000px;}
.y3a{bottom:885.061650px;}
.yef{bottom:885.730950px;}
.y3{bottom:886.287000px;}
.y10d{bottom:889.008300px;}
.y92{bottom:893.706900px;}
.y10c{bottom:903.408450px;}
.y39{bottom:903.811650px;}
.yee{bottom:904.480950px;}
.y91{bottom:909.891900px;}
.y67{bottom:910.938000px;}
.y10b{bottom:917.808450px;}
.y2{bottom:922.287000px;}
.y38{bottom:922.572450px;}
.yed{bottom:923.230950px;}
.y66{bottom:929.808000px;}
.y10a{bottom:932.208300px;}
.y90{bottom:932.796900px;}
.yec{bottom:941.980950px;}
.y109{bottom:946.608450px;}
.y37{bottom:954.072450px;}
.y8f{bottom:955.701900px;}
.yeb{bottom:960.730950px;}
.y108{bottom:961.008300px;}
.y65{bottom:961.443000px;}
.y8e{bottom:971.886750px;}
.y107{bottom:975.408300px;}
.yea{bottom:979.480950px;}
.y64{bottom:980.319150px;}
.y106{bottom:989.808450px;}
.y36{bottom:993.327450px;}
.y8d{bottom:994.791750px;}
.ye9{bottom:998.230950px;}
.y63{bottom:999.195300px;}
.y105{bottom:1004.208300px;}
.y35{bottom:1012.077450px;}
.y104{bottom:1018.608450px;}
.ye8{bottom:1029.736950px;}
.y34{bottom:1030.827450px;}
.y62{bottom:1030.833150px;}
.y103{bottom:1033.008300px;}
.y9{bottom:1077.859500px;}
.y33{bottom:1089.584700px;}
.h5{height:24.555960px;}
.h2{height:38.340000px;}
.hd{height:40.128000px;}
.h6{height:42.120000px;}
.hb{height:42.180000px;}
.ha{height:42.900000px;}
.h8{height:45.144000px;}
.h9{height:46.398000px;}
.h4{height:50.160000px;}
.hc{height:50.160600px;}
.h7{height:59.586914px;}
.h3{height:84.000000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:62.185050px;}
.x10{left:73.984200px;}
.x3{left:76.536000px;}
.xd{left:82.535400px;}
.x7{left:96.035400px;}
.x4{left:106.299000px;}
.x2{left:132.301500px;}
.xc{left:153.869550px;}
.x8{left:169.535400px;}
.xe{left:202.443300px;}
.x11{left:427.334250px;}
.x5{left:454.960500px;}
.x9{left:461.345400px;}
.x6{left:484.725000px;}
.xa{left:491.102400px;}
.xb{left:622.333650px;}
.x1{left:639.787500px;}
.x12{left:812.056050px;}
@media print{
.v2{vertical-align:-17.754293pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:7.626667pt;}
.v1{vertical-align:17.754293pt;}
.ls22{letter-spacing:-4.458667pt;}
.ls2f{letter-spacing:-4.000000pt;}
.ls41{letter-spacing:-1.834667pt;}
.ls2d{letter-spacing:-1.546667pt;}
.ls36{letter-spacing:-1.333333pt;}
.ls31{letter-spacing:-1.248000pt;}
.ls34{letter-spacing:-1.226667pt;}
.lsc{letter-spacing:-1.200000pt;}
.ls2e{letter-spacing:-1.173333pt;}
.ls28{letter-spacing:-1.066667pt;}
.ls2c{letter-spacing:-1.013333pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.912000pt;}
.ls37{letter-spacing:-0.906667pt;}
.ls23{letter-spacing:-0.853333pt;}
.ls14{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.768000pt;}
.ls26{letter-spacing:-0.746667pt;}
.ls45{letter-spacing:-0.725333pt;}
.ls25{letter-spacing:-0.693333pt;}
.ls3c{letter-spacing:-0.682667pt;}
.ls21{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.586667pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls30{letter-spacing:-0.432000pt;}
.ls24{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.336000pt;}
.ls16{letter-spacing:-0.320000pt;}
.ls44{letter-spacing:-0.298667pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls3f{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.170667pt;}
.ls15{letter-spacing:-0.160000pt;}
.ls40{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls3b{letter-spacing:-0.085333pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls42{letter-spacing:-0.042667pt;}
.ls8{letter-spacing:-0.008768pt;}
.lsa{letter-spacing:-0.000107pt;}
.ls7{letter-spacing:-0.000062pt;}
.ls1c{letter-spacing:-0.000048pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.001653pt;}
.ls39{letter-spacing:0.042667pt;}
.ls5{letter-spacing:0.047113pt;}
.lse{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.053333pt;}
.ls38{letter-spacing:0.085333pt;}
.ls4{letter-spacing:0.106667pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.160000pt;}
.ls43{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.213333pt;}
.ls3e{letter-spacing:0.256000pt;}
.ls2a{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.357333pt;}
.ls32{letter-spacing:0.373333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls20{letter-spacing:0.533333pt;}
.ls1{letter-spacing:0.586667pt;}
.ls33{letter-spacing:0.640000pt;}
.ls13{letter-spacing:0.746667pt;}
.ls1e{letter-spacing:1.440000pt;}
.ls29{letter-spacing:1.973333pt;}
.ls35{letter-spacing:3.040000pt;}
.ws12{word-spacing:-48.000000pt;}
.ws0{word-spacing:-16.960000pt;}
.wsa{word-spacing:-13.317333pt;}
.ws35{word-spacing:-12.426667pt;}
.wsb{word-spacing:-12.213333pt;}
.ws38{word-spacing:-12.160000pt;}
.ws11{word-spacing:-12.106667pt;}
.wsf{word-spacing:-12.053333pt;}
.ws37{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.946667pt;}
.ws5c{word-spacing:-11.893333pt;}
.wsc{word-spacing:-11.840000pt;}
.wsd{word-spacing:-11.680000pt;}
.ws36{word-spacing:-11.626667pt;}
.ws3a{word-spacing:-11.573333pt;}
.ws34{word-spacing:-11.520000pt;}
.ws14{word-spacing:-11.466667pt;}
.wse{word-spacing:-11.413333pt;}
.ws5b{word-spacing:-11.360000pt;}
.ws17{word-spacing:-11.306667pt;}
.ws3c{word-spacing:-11.253333pt;}
.ws33{word-spacing:-11.200000pt;}
.ws16{word-spacing:-11.146667pt;}
.ws39{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws5a{word-spacing:-10.986667pt;}
.ws63{word-spacing:-10.880000pt;}
.ws3b{word-spacing:-10.666667pt;}
.ws8{word-spacing:-10.656000pt;}
.ws5d{word-spacing:-10.464000pt;}
.ws5{word-spacing:-10.224000pt;}
.ws9{word-spacing:-10.080000pt;}
.ws3f{word-spacing:-9.984000pt;}
.ws71{word-spacing:-9.941333pt;}
.ws74{word-spacing:-9.813333pt;}
.ws7{word-spacing:-9.792000pt;}
.ws70{word-spacing:-9.685333pt;}
.ws72{word-spacing:-9.557333pt;}
.ws73{word-spacing:-9.514667pt;}
.ws75{word-spacing:-9.472000pt;}
.ws6f{word-spacing:-9.088000pt;}
.ws76{word-spacing:-9.045333pt;}
.ws4{word-spacing:-8.373333pt;}
.ws3{word-spacing:-8.373227pt;}
.ws15{word-spacing:-8.272000pt;}
.ws3d{word-spacing:-8.213333pt;}
.ws1{word-spacing:-7.058187pt;}
.ws2{word-spacing:-6.303178pt;}
.ws49{word-spacing:-3.146667pt;}
.ws4a{word-spacing:-2.186667pt;}
.ws4b{word-spacing:-1.866667pt;}
.ws46{word-spacing:-1.546667pt;}
.ws47{word-spacing:-1.386667pt;}
.ws6e{word-spacing:-0.480000pt;}
.ws6d{word-spacing:-0.432000pt;}
.ws1d{word-spacing:-0.373333pt;}
.ws1a{word-spacing:-0.266667pt;}
.ws1e{word-spacing:-0.213333pt;}
.ws78{word-spacing:-0.170667pt;}
.ws6b{word-spacing:-0.160000pt;}
.ws6c{word-spacing:-0.106667pt;}
.ws13{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.106667pt;}
.ws7f{word-spacing:0.128000pt;}
.ws66{word-spacing:0.160000pt;}
.ws7d{word-spacing:0.170667pt;}
.ws2a{word-spacing:0.213333pt;}
.ws27{word-spacing:0.266667pt;}
.ws61{word-spacing:0.336000pt;}
.ws28{word-spacing:0.373333pt;}
.ws62{word-spacing:0.432000pt;}
.ws82{word-spacing:0.512000pt;}
.ws19{word-spacing:0.533333pt;}
.ws87{word-spacing:0.554667pt;}
.ws67{word-spacing:0.693333pt;}
.ws4e{word-spacing:0.768000pt;}
.ws69{word-spacing:0.800000pt;}
.ws1f{word-spacing:0.853333pt;}
.ws54{word-spacing:0.906667pt;}
.ws77{word-spacing:0.938667pt;}
.ws22{word-spacing:0.960000pt;}
.ws51{word-spacing:1.013333pt;}
.ws7e{word-spacing:1.066667pt;}
.ws4c{word-spacing:1.120000pt;}
.ws79{word-spacing:1.152000pt;}
.ws4f{word-spacing:1.173333pt;}
.ws23{word-spacing:1.280000pt;}
.ws7a{word-spacing:1.322667pt;}
.ws4d{word-spacing:1.333333pt;}
.ws56{word-spacing:1.440000pt;}
.ws2c{word-spacing:1.493333pt;}
.ws30{word-spacing:1.546667pt;}
.ws48{word-spacing:1.600000pt;}
.ws40{word-spacing:1.653333pt;}
.ws29{word-spacing:1.760000pt;}
.ws81{word-spacing:1.792000pt;}
.ws80{word-spacing:1.834667pt;}
.ws60{word-spacing:1.866667pt;}
.ws58{word-spacing:1.920000pt;}
.ws25{word-spacing:1.973333pt;}
.ws83{word-spacing:2.005333pt;}
.ws31{word-spacing:2.026667pt;}
.ws86{word-spacing:2.090667pt;}
.ws2b{word-spacing:2.186667pt;}
.ws65{word-spacing:2.240000pt;}
.ws6a{word-spacing:2.293333pt;}
.ws53{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.389333pt;}
.ws26{word-spacing:2.400000pt;}
.ws7c{word-spacing:2.432000pt;}
.ws85{word-spacing:2.474667pt;}
.ws5f{word-spacing:2.506667pt;}
.ws2e{word-spacing:2.560000pt;}
.ws68{word-spacing:2.666667pt;}
.ws84{word-spacing:2.730667pt;}
.ws52{word-spacing:2.773333pt;}
.ws24{word-spacing:2.986667pt;}
.ws18{word-spacing:3.040000pt;}
.ws57{word-spacing:3.146667pt;}
.ws64{word-spacing:3.200000pt;}
.ws59{word-spacing:3.626667pt;}
.ws2f{word-spacing:3.893333pt;}
.ws50{word-spacing:4.106667pt;}
.ws44{word-spacing:4.320000pt;}
.ws55{word-spacing:4.693333pt;}
.ws20{word-spacing:5.706667pt;}
.ws45{word-spacing:5.866667pt;}
.ws21{word-spacing:5.973333pt;}
.ws1b{word-spacing:6.400000pt;}
.ws41{word-spacing:8.586667pt;}
.ws42{word-spacing:10.346667pt;}
.ws43{word-spacing:11.893333pt;}
.ws2d{word-spacing:18.293333pt;}
.ws32{word-spacing:128.912000pt;}
.ws1c{word-spacing:175.253333pt;}
.ws3e{word-spacing:246.773333pt;}
._d{margin-left:-19.013333pt;}
._a{margin-left:-11.600000pt;}
._18{margin-left:-7.546667pt;}
._1f{margin-left:-6.528000pt;}
._11{margin-left:-5.498667pt;}
._2{margin-left:-4.000000pt;}
._1e{margin-left:-3.077333pt;}
._1{margin-left:-2.133333pt;}
._0{margin-left:-1.056000pt;}
._3{width:1.098667pt;}
._5{width:2.064533pt;}
._6{width:3.130133pt;}
._17{width:4.651733pt;}
._7{width:5.757908pt;}
._1d{width:9.301333pt;}
._10{width:48.207467pt;}
._1c{width:71.786667pt;}
._1a{width:136.352000pt;}
._14{width:142.688000pt;}
._e{width:156.586667pt;}
._b{width:167.146667pt;}
._c{width:168.666667pt;}
._13{width:175.253333pt;}
._8{width:183.680000pt;}
._12{width:190.506667pt;}
._f{width:191.626667pt;}
._1b{width:193.493333pt;}
._9{width:195.568000pt;}
._15{width:198.405333pt;}
._16{width:202.245333pt;}
._19{width:211.786667pt;}
._4{width:1487.888213pt;}
.fs3{font-size:31.093333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.086667pt;}
.ycb{bottom:70.159067pt;}
.ye5{bottom:70.648000pt;}
.y61{bottom:72.202800pt;}
.ybc{bottom:75.136533pt;}
.ya3{bottom:80.615600pt;}
.yc9{bottom:81.720933pt;}
.y32{bottom:82.706667pt;}
.y21{bottom:84.901333pt;}
.ye4{bottom:87.314667pt;}
.y60{bottom:88.869467pt;}
.ybb{bottom:91.803200pt;}
.y31{bottom:99.373333pt;}
.y20{bottom:101.568000pt;}
.ye3{bottom:103.981333pt;}
.y5f{bottom:105.536133pt;}
.yba{bottom:108.469867pt;}
.y30{bottom:116.040000pt;}
.y1f{bottom:118.234667pt;}
.ye2{bottom:120.648000pt;}
.y5e{bottom:122.202800pt;}
.y8c{bottom:122.204667pt;}
.yb9{bottom:125.136533pt;}
.y2f{bottom:132.706667pt;}
.y1e{bottom:134.901333pt;}
.ye1{bottom:137.314667pt;}
.y5d{bottom:138.869467pt;}
.y8b{bottom:138.983467pt;}
.yb8{bottom:141.803200pt;}
.y1d{bottom:151.568000pt;}
.ye0{bottom:153.981333pt;}
.y5c{bottom:155.536133pt;}
.y8a{bottom:155.762400pt;}
.yb7{bottom:158.469867pt;}
.y2e{bottom:160.712000pt;}
.y1c{bottom:168.234667pt;}
.ydf{bottom:170.648000pt;}
.y5b{bottom:172.202800pt;}
.y89{bottom:172.541200pt;}
.yb6{bottom:175.136533pt;}
.y1b{bottom:184.901333pt;}
.yde{bottom:187.314667pt;}
.y5a{bottom:188.869467pt;}
.yb5{bottom:191.803067pt;}
.y2d{bottom:197.209333pt;}
.y88{bottom:200.655067pt;}
.y1a{bottom:201.568000pt;}
.ydd{bottom:203.981333pt;}
.y59{bottom:205.536133pt;}
.yb4{bottom:208.469733pt;}
.y2c{bottom:213.876000pt;}
.y19{bottom:218.234667pt;}
.ydc{bottom:220.648000pt;}
.y58{bottom:222.202800pt;}
.yb3{bottom:225.136400pt;}
.y2b{bottom:230.542667pt;}
.y18{bottom:234.901333pt;}
.y87{bottom:235.668400pt;}
.ydb{bottom:237.314667pt;}
.y57{bottom:238.869467pt;}
.yb2{bottom:241.803067pt;}
.y2a{bottom:247.209333pt;}
.y17{bottom:251.568000pt;}
.y86{bottom:252.447200pt;}
.yda{bottom:253.981333pt;}
.y56{bottom:255.545733pt;}
.yb1{bottom:258.469733pt;}
.y29{bottom:263.876000pt;}
.y16{bottom:268.234667pt;}
.y85{bottom:269.226133pt;}
.yd9{bottom:270.648000pt;}
.y55{bottom:272.212400pt;}
.yb0{bottom:275.136400pt;}
.y28{bottom:280.542667pt;}
.y15{bottom:284.901333pt;}
.y84{bottom:286.004933pt;}
.yd8{bottom:287.314667pt;}
.yaf{bottom:291.803067pt;}
.y27{bottom:297.209333pt;}
.y54{bottom:300.212400pt;}
.y14{bottom:301.568000pt;}
.y83{bottom:302.783733pt;}
.yd7{bottom:303.981333pt;}
.yae{bottom:308.469733pt;}
.y26{bottom:313.876000pt;}
.y13{bottom:318.234667pt;}
.y82{bottom:319.562533pt;}
.yd6{bottom:320.648000pt;}
.yad{bottom:325.136400pt;}
.y25{bottom:330.542667pt;}
.y12{bottom:334.901333pt;}
.y53{bottom:335.105733pt;}
.y81{bottom:336.341333pt;}
.yd5{bottom:337.314667pt;}
.y24{bottom:347.209333pt;}
.y11{bottom:351.568000pt;}
.y52{bottom:351.772400pt;}
.y80{bottom:353.120267pt;}
.yac{bottom:353.146000pt;}
.yd4{bottom:353.981333pt;}
.y23{bottom:363.876000pt;}
.y51{bottom:368.439067pt;}
.y7f{bottom:369.899067pt;}
.yd3{bottom:370.648000pt;}
.y10{bottom:379.573333pt;}
.y22{bottom:380.542667pt;}
.y50{bottom:385.105733pt;}
.y7e{bottom:386.677867pt;}
.yd2{bottom:387.314667pt;}
.yab{bottom:388.039333pt;}
.y4f{bottom:401.778533pt;}
.y7d{bottom:403.456800pt;}
.yd1{bottom:403.981333pt;}
.yaa{bottom:404.706000pt;}
.y7c{bottom:420.235600pt;}
.yd0{bottom:420.648000pt;}
.ya9{bottom:421.372667pt;}
.y4e{bottom:422.218533pt;}
.yc7{bottom:433.404000pt;}
.y7b{bottom:437.014400pt;}
.ycf{bottom:437.314667pt;}
.ya8{bottom:438.039333pt;}
.yc6{bottom:450.070667pt;}
.y4d{bottom:450.223867pt;}
.y7a{bottom:453.798667pt;}
.yce{bottom:453.981333pt;}
.ya7{bottom:454.706000pt;}
.ye{bottom:462.300000pt;}
.yc5{bottom:466.737333pt;}
.y79{bottom:470.572000pt;}
.ycd{bottom:470.648000pt;}
.ya6{bottom:471.372667pt;}
.yd{bottom:482.304000pt;}
.yc4{bottom:483.404000pt;}
.y4c{bottom:486.721467pt;}
.ycc{bottom:487.314667pt;}
.y78{bottom:487.350933pt;}
.ya5{bottom:488.039333pt;}
.yc{bottom:495.636000pt;}
.yc3{bottom:500.070667pt;}
.y102{bottom:501.346933pt;}
.y4b{bottom:503.388133pt;}
.y77{bottom:504.129733pt;}
.yb{bottom:508.968000pt;}
.yca{bottom:510.961200pt;}
.y101{bottom:514.146933pt;}
.ya4{bottom:516.044533pt;}
.ye7{bottom:516.592667pt;}
.yc2{bottom:516.737333pt;}
.y4a{bottom:520.054800pt;}
.y76{bottom:520.908533pt;}
.y122{bottom:521.429600pt;}
.ya{bottom:522.300000pt;}
.y100{bottom:526.946933pt;}
.ye6{bottom:530.992667pt;}
.yc1{bottom:533.404000pt;}
.y121{bottom:534.229600pt;}
.y49{bottom:536.721467pt;}
.y75{bottom:537.687467pt;}
.yff{bottom:539.746933pt;}
.ya2{bottom:545.819467pt;}
.y120{bottom:547.029600pt;}
.yc0{bottom:550.070667pt;}
.yfe{bottom:552.546933pt;}
.y48{bottom:553.388133pt;}
.y74{bottom:554.466267pt;}
.y11f{bottom:559.829733pt;}
.ya1{bottom:561.819467pt;}
.yfd{bottom:565.346933pt;}
.ybf{bottom:566.737333pt;}
.y47{bottom:570.054800pt;}
.y73{bottom:571.245067pt;}
.y11e{bottom:572.629600pt;}
.yf{bottom:575.329333pt;}
.ya0{bottom:577.819467pt;}
.yfc{bottom:578.146933pt;}
.ybe{bottom:583.404000pt;}
.y11d{bottom:585.429600pt;}
.y46{bottom:586.721467pt;}
.y72{bottom:588.023867pt;}
.yfb{bottom:590.946933pt;}
.y9f{bottom:593.819467pt;}
.y11c{bottom:598.229600pt;}
.ybd{bottom:600.070667pt;}
.y45{bottom:603.388133pt;}
.yfa{bottom:603.746933pt;}
.y71{bottom:604.802800pt;}
.y9e{bottom:609.819467pt;}
.y11b{bottom:611.029600pt;}
.yf9{bottom:616.546933pt;}
.y44{bottom:620.054800pt;}
.y70{bottom:621.581600pt;}
.y11a{bottom:623.829733pt;}
.yc8{bottom:626.468533pt;}
.yf8{bottom:629.346933pt;}
.y9d{bottom:630.179467pt;}
.y8{bottom:633.354667pt;}
.y119{bottom:636.629600pt;}
.y43{bottom:636.721467pt;}
.y6f{bottom:638.360400pt;}
.yf7{bottom:642.146933pt;}
.y9c{bottom:644.566133pt;}
.y118{bottom:649.429600pt;}
.y42{bottom:653.388133pt;}
.y7{bottom:653.793240pt;}
.yf6{bottom:654.946933pt;}
.y6e{bottom:655.139200pt;}
.y9b{bottom:658.952800pt;}
.y117{bottom:662.229600pt;}
.yf5{bottom:667.746933pt;}
.y6{bottom:669.793240pt;}
.y41{bottom:670.054800pt;}
.y6d{bottom:671.918000pt;}
.y9a{bottom:673.339467pt;}
.y116{bottom:675.029600pt;}
.yf4{bottom:680.546800pt;}
.y40{bottom:686.721467pt;}
.y99{bottom:687.726133pt;}
.y115{bottom:687.829733pt;}
.y6c{bottom:688.696933pt;}
.yf3{bottom:693.346800pt;}
.y5{bottom:697.354667pt;}
.y114{bottom:700.629600pt;}
.y98{bottom:702.112800pt;}
.y3f{bottom:703.388133pt;}
.y113{bottom:713.429733pt;}
.y97{bottom:716.499467pt;}
.y6b{bottom:716.829333pt;}
.yf2{bottom:717.485467pt;}
.y3e{bottom:720.054800pt;}
.y112{bottom:726.229600pt;}
.y96{bottom:730.886133pt;}
.y3d{bottom:736.721467pt;}
.y111{bottom:739.029600pt;}
.y95{bottom:745.272800pt;}
.y110{bottom:751.829600pt;}
.y6a{bottom:751.842667pt;}
.y3c{bottom:753.388133pt;}
.yf1{bottom:753.983067pt;}
.y4{bottom:755.810667pt;}
.y94{bottom:759.659467pt;}
.y10f{bottom:764.629600pt;}
.y69{bottom:768.616000pt;}
.y3b{bottom:770.054800pt;}
.yf0{bottom:770.649733pt;}
.y10e{bottom:777.429733pt;}
.y93{bottom:780.019467pt;}
.y68{bottom:785.389333pt;}
.y3a{bottom:786.721467pt;}
.yef{bottom:787.316400pt;}
.y3{bottom:787.810667pt;}
.y10d{bottom:790.229600pt;}
.y92{bottom:794.406133pt;}
.y10c{bottom:803.029733pt;}
.y39{bottom:803.388133pt;}
.yee{bottom:803.983067pt;}
.y91{bottom:808.792800pt;}
.y67{bottom:809.722667pt;}
.y10b{bottom:815.829733pt;}
.y2{bottom:819.810667pt;}
.y38{bottom:820.064400pt;}
.yed{bottom:820.649733pt;}
.y66{bottom:826.496000pt;}
.y10a{bottom:828.629600pt;}
.y90{bottom:829.152800pt;}
.yec{bottom:837.316400pt;}
.y109{bottom:841.429733pt;}
.y37{bottom:848.064400pt;}
.y8f{bottom:849.512800pt;}
.yeb{bottom:853.983067pt;}
.y108{bottom:854.229600pt;}
.y65{bottom:854.616000pt;}
.y8e{bottom:863.899333pt;}
.y107{bottom:867.029600pt;}
.yea{bottom:870.649733pt;}
.y64{bottom:871.394800pt;}
.y106{bottom:879.829733pt;}
.y36{bottom:882.957733pt;}
.y8d{bottom:884.259333pt;}
.ye9{bottom:887.316400pt;}
.y63{bottom:888.173600pt;}
.y105{bottom:892.629600pt;}
.y35{bottom:899.624400pt;}
.y104{bottom:905.429733pt;}
.ye8{bottom:915.321733pt;}
.y34{bottom:916.291067pt;}
.y62{bottom:916.296133pt;}
.y103{bottom:918.229600pt;}
.y9{bottom:958.097333pt;}
.y33{bottom:968.519733pt;}
.h5{height:21.827520pt;}
.h2{height:34.080000pt;}
.hd{height:35.669333pt;}
.h6{height:37.440000pt;}
.hb{height:37.493333pt;}
.ha{height:38.133333pt;}
.h8{height:40.128000pt;}
.h9{height:41.242667pt;}
.h4{height:44.586667pt;}
.hc{height:44.587200pt;}
.h7{height:52.966146pt;}
.h3{height:74.666667pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:55.275600pt;}
.x10{left:65.763733pt;}
.x3{left:68.032000pt;}
.xd{left:73.364800pt;}
.x7{left:85.364800pt;}
.x4{left:94.488000pt;}
.x2{left:117.601333pt;}
.xc{left:136.772933pt;}
.x8{left:150.698133pt;}
.xe{left:179.949600pt;}
.x11{left:379.852667pt;}
.x5{left:404.409333pt;}
.x9{left:410.084800pt;}
.x6{left:430.866667pt;}
.xa{left:436.535467pt;}
.xb{left:553.185467pt;}
.x1{left:568.700000pt;}
.x12{left:721.827600pt;}
}




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