
    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_6c40731605d32e5a7bfc912b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.964000;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_57aafd0735e0a83ed51f3a1d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_acfa20390a1af299f801cea4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.708000;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_7e972c737c350c538ed4a453.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.086000;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_67af4903a20a41376faafb0f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.949000;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_afc1754fd85f2239f3be0d27.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_a741dbd4f3bb514791d556ad.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_fb28043267c4170f672ed98a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.950000;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_e58cac711b2062ace9d97c10.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.972000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_07df6a936400e91c9ee11643.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;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_0bf53c915a48143e88106021.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.921000;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_f86626122c3913480966764d.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1b8abd8e663c1dce393dcaaf.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_0bf53c915a48143e88106021.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921000;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;}
.m7{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);}
.m34{transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245413,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245575,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245702,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245702,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245702,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.245709,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245709,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245709,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m35{transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245863,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246052,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246065,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246078,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m7b{transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246262,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.m22{transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246365,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246366,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246528,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246580,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246898,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247059,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247298,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247300,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m49{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);}
.mb{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247595,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247713,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247918,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248190,0.000000,0.000000,0.250000,0,0);}
.m7c{transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248194,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248210,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248222,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248330,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248388,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248413,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248430,0.000000,0.000000,0.250000,0,0);}
.m7d{transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248469,0.000000,0.000000,0.250000,0,0);}
.m30{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);}
.m69{transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248805,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248878,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248922,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248955,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248998,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249168,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249308,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249715,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249745,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249878,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,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);}
.m1b{transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250155,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250294,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250450,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250460,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250465,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250502,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250628,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250697,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250766,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250775,0.000000,0.000000,0.250000,0,0);}
.m42{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);}
.me{transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250800,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250875,0.000000,0.000000,0.250000,0,0);}
.m7e{transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250944,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250950,0.000000,0.000000,0.250000,0,0);}
.m80{transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251100,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251117,0.000000,0.000000,0.250000,0,0);}
.m7a{transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251181,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251209,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251235,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251268,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251298,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251350,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251383,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251405,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251425,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251535,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251588,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251592,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251685,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m4c{transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251775,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251777,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251927,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252097,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252257,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252282,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252320,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252415,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252506,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252563,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252573,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252588,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252700,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252710,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252775,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252840,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252935,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252975,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253025,0.000000,0.000000,0.250000,0,0);}
.m7f{transform:matrix(0.253034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253034,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253047,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253100,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253105,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253348,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253397,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.253402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253402,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253520,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253540,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253740,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253850,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253915,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254006,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254045,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254056,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254197,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254282,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.254292,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254292,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254292,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.254294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254294,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254383,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254592,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254837,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254918,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254940,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.v1{vertical-align:19.973580px;}
.ls31{letter-spacing:-5.520000px;}
.ls3a{letter-spacing:-5.400000px;}
.ls45{letter-spacing:-5.340000px;}
.ls44{letter-spacing:-5.280000px;}
.ls33{letter-spacing:-5.100000px;}
.lsd{letter-spacing:-4.752000px;}
.ls4b{letter-spacing:-3.648000px;}
.ls2d{letter-spacing:-1.920000px;}
.ls2c{letter-spacing:-1.380000px;}
.ls4e{letter-spacing:-1.344000px;}
.ls2f{letter-spacing:-1.200000px;}
.ls53{letter-spacing:-1.188000px;}
.ls27{letter-spacing:-1.140000px;}
.ls2e{letter-spacing:-1.080000px;}
.lse{letter-spacing:-1.026000px;}
.ls46{letter-spacing:-1.020000px;}
.ls3c{letter-spacing:-0.960000px;}
.ls3d{letter-spacing:-0.918000px;}
.ls3b{letter-spacing:-0.900000px;}
.ls51{letter-spacing:-0.864000px;}
.ls29{letter-spacing:-0.840000px;}
.ls20{letter-spacing:-0.780000px;}
.ls28{letter-spacing:-0.720000px;}
.ls52{letter-spacing:-0.702000px;}
.ls1e{letter-spacing:-0.660000px;}
.ls25{letter-spacing:-0.600000px;}
.lsb{letter-spacing:-0.540000px;}
.ls4a{letter-spacing:-0.528000px;}
.ls34{letter-spacing:-0.486000px;}
.ls30{letter-spacing:-0.480000px;}
.ls1d{letter-spacing:-0.420000px;}
.lsc{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.300000px;}
.ls13{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.216000px;}
.ls4d{letter-spacing:-0.192000px;}
.ls18{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.120000px;}
.ls4f{letter-spacing:-0.096000px;}
.ls17{letter-spacing:-0.060000px;}
.ls10{letter-spacing:-0.054000px;}
.ls49{letter-spacing:-0.048000px;}
.ls21{letter-spacing:-0.000054px;}
.ls9{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000432px;}
.ls1{letter-spacing:0.001860px;}
.ls0{letter-spacing:0.019860px;}
.ls6{letter-spacing:0.047871px;}
.ls40{letter-spacing:0.048000px;}
.ls4{letter-spacing:0.053805px;}
.lsf{letter-spacing:0.054000px;}
.ls1b{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.064019px;}
.ls47{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.116855px;}
.ls14{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.122789px;}
.ls43{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.192000px;}
.ls12{letter-spacing:0.216000px;}
.ls23{letter-spacing:0.240000px;}
.ls3f{letter-spacing:0.288000px;}
.ls1c{letter-spacing:0.300000px;}
.ls1f{letter-spacing:0.360000px;}
.ls4c{letter-spacing:0.384000px;}
.ls15{letter-spacing:0.420000px;}
.ls42{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.480000px;}
.ls36{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.540000px;}
.ls35{letter-spacing:0.600000px;}
.ls50{letter-spacing:0.624000px;}
.ls2{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.720000px;}
.ls37{letter-spacing:0.732000px;}
.ls39{letter-spacing:1.188000px;}
.ls38{letter-spacing:1.296000px;}
.ls3e{letter-spacing:3.630000px;}
.ls2a{letter-spacing:3.702000px;}
.ls24{letter-spacing:5.589000px;}
.ls22{letter-spacing:6.132000px;}
.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;}
}
.wsd{word-spacing:-54.000000px;}
.ws5{word-spacing:-14.982000px;}
.ws7{word-spacing:-14.040000px;}
.ws8{word-spacing:-13.740000px;}
.ws10{word-spacing:-13.680000px;}
.ws9{word-spacing:-13.620000px;}
.wsb{word-spacing:-13.560000px;}
.ws6{word-spacing:-13.500000px;}
.ws2f{word-spacing:-13.440000px;}
.ws32{word-spacing:-13.380000px;}
.wsc{word-spacing:-13.320000px;}
.ws5d{word-spacing:-13.260000px;}
.ws49{word-spacing:-13.200000px;}
.ws5b{word-spacing:-13.140000px;}
.wsa{word-spacing:-13.080000px;}
.ws5c{word-spacing:-12.960000px;}
.ws4a{word-spacing:-12.840000px;}
.ws4b{word-spacing:-12.780000px;}
.ws5e{word-spacing:-12.720000px;}
.ws4{word-spacing:-12.582000px;}
.ws31{word-spacing:-12.540000px;}
.ws2d{word-spacing:-12.480000px;}
.ws1{word-spacing:-12.366000px;}
.ws30{word-spacing:-12.360000px;}
.ws2c{word-spacing:-12.240000px;}
.ws2{word-spacing:-11.988000px;}
.ws7e{word-spacing:-11.880000px;}
.ws3{word-spacing:-11.826000px;}
.ws11{word-spacing:-11.772000px;}
.ws2e{word-spacing:-11.700000px;}
.ws80{word-spacing:-11.664000px;}
.ws64{word-spacing:-11.472000px;}
.ws62{word-spacing:-11.376000px;}
.ws7f{word-spacing:-11.340000px;}
.ws63{word-spacing:-11.184000px;}
.ws5f{word-spacing:-11.040000px;}
.ws60{word-spacing:-10.464000px;}
.ws61{word-spacing:-7.344000px;}
.ws22{word-spacing:-0.840000px;}
.ws53{word-spacing:-0.600000px;}
.ws6b{word-spacing:-0.480000px;}
.ws1d{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.240000px;}
.ws74{word-spacing:-0.192000px;}
.ws33{word-spacing:-0.180000px;}
.ws0{word-spacing:-0.120000px;}
.wsf{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.ws39{word-spacing:0.060000px;}
.ws42{word-spacing:0.120000px;}
.ws12{word-spacing:0.180000px;}
.ws25{word-spacing:0.240000px;}
.ws21{word-spacing:0.300000px;}
.ws27{word-spacing:0.360000px;}
.ws26{word-spacing:0.480000px;}
.ws47{word-spacing:0.486000px;}
.ws3c{word-spacing:0.540000px;}
.ws13{word-spacing:0.600000px;}
.ws6d{word-spacing:0.660000px;}
.ws3e{word-spacing:0.720000px;}
.ws38{word-spacing:0.780000px;}
.ws37{word-spacing:0.900000px;}
.ws86{word-spacing:0.918000px;}
.ws68{word-spacing:1.080000px;}
.ws1b{word-spacing:1.140000px;}
.ws57{word-spacing:1.188000px;}
.ws36{word-spacing:1.200000px;}
.ws5a{word-spacing:1.242000px;}
.ws59{word-spacing:1.296000px;}
.ws43{word-spacing:1.320000px;}
.ws6f{word-spacing:1.500000px;}
.ws77{word-spacing:1.536000px;}
.ws1c{word-spacing:1.680000px;}
.ws23{word-spacing:1.740000px;}
.ws24{word-spacing:1.800000px;}
.ws7c{word-spacing:1.968000px;}
.ws79{word-spacing:2.064000px;}
.ws55{word-spacing:2.100000px;}
.ws58{word-spacing:2.214000px;}
.ws56{word-spacing:2.340000px;}
.ws81{word-spacing:2.376000px;}
.ws3f{word-spacing:2.400000px;}
.ws82{word-spacing:2.484000px;}
.ws71{word-spacing:2.520000px;}
.ws73{word-spacing:2.544000px;}
.ws50{word-spacing:2.580000px;}
.ws40{word-spacing:2.640000px;}
.ws72{word-spacing:2.688000px;}
.ws4f{word-spacing:2.700000px;}
.ws75{word-spacing:2.736000px;}
.ws65{word-spacing:2.760000px;}
.ws76{word-spacing:2.832000px;}
.ws28{word-spacing:2.880000px;}
.ws20{word-spacing:3.000000px;}
.ws83{word-spacing:3.078000px;}
.ws3d{word-spacing:3.120000px;}
.ws34{word-spacing:3.180000px;}
.ws3b{word-spacing:3.300000px;}
.ws19{word-spacing:3.360000px;}
.ws7b{word-spacing:3.408000px;}
.ws1a{word-spacing:3.420000px;}
.ws51{word-spacing:3.600000px;}
.ws41{word-spacing:3.660000px;}
.ws4c{word-spacing:3.720000px;}
.ws6e{word-spacing:3.840000px;}
.ws66{word-spacing:3.900000px;}
.ws1f{word-spacing:3.960000px;}
.ws1e{word-spacing:4.080000px;}
.ws78{word-spacing:4.128000px;}
.ws46{word-spacing:4.320000px;}
.ws70{word-spacing:4.440000px;}
.ws84{word-spacing:4.536000px;}
.ws48{word-spacing:4.752000px;}
.ws4e{word-spacing:4.980000px;}
.ws3a{word-spacing:5.040000px;}
.ws44{word-spacing:5.100000px;}
.ws6a{word-spacing:5.280000px;}
.ws7d{word-spacing:5.328000px;}
.ws29{word-spacing:5.346000px;}
.ws14{word-spacing:5.400000px;}
.ws85{word-spacing:5.454000px;}
.ws16{word-spacing:5.460000px;}
.ws2b{word-spacing:5.562000px;}
.ws15{word-spacing:5.580000px;}
.ws69{word-spacing:5.820000px;}
.ws2a{word-spacing:6.156000px;}
.ws45{word-spacing:6.960000px;}
.ws4d{word-spacing:7.020000px;}
.ws52{word-spacing:7.320000px;}
.ws54{word-spacing:7.680000px;}
.ws7a{word-spacing:8.064000px;}
.ws67{word-spacing:8.640000px;}
.ws6c{word-spacing:8.880000px;}
.ws35{word-spacing:9.120000px;}
._b{margin-left:-8.079600px;}
._a{margin-left:-6.126000px;}
._7{margin-left:-5.105400px;}
._2{margin-left:-3.492000px;}
._0{margin-left:-2.111400px;}
._3{margin-left:-1.068600px;}
._1{width:1.134000px;}
._4{width:2.241000px;}
._5{width:3.505200px;}
._8{width:4.545600px;}
._6{width:5.748600px;}
._9{width:7.618800px;}
.fc2{color:rgb(123,121,121);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(101,98,99);}
.fs3{font-size:34.980000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:43.972500px;}
.ya3{bottom:76.549500px;}
.y5c{bottom:77.127300px;}
.y23{bottom:81.981000px;}
.y8d{bottom:82.847100px;}
.y75{bottom:87.982950px;}
.y5b{bottom:93.327300px;}
.ya2{bottom:95.359500px;}
.y33{bottom:95.827500px;}
.y22{bottom:100.731000px;}
.y8c{bottom:101.597100px;}
.y74{bottom:106.732950px;}
.ya1{bottom:114.169500px;}
.y32{bottom:114.577500px;}
.y21{bottom:119.481000px;}
.y8b{bottom:120.347100px;}
.y73{bottom:125.482950px;}
.ya0{bottom:132.986550px;}
.y31{bottom:133.327500px;}
.y20{bottom:138.231000px;}
.y8a{bottom:139.097100px;}
.y72{bottom:144.232950px;}
.y9f{bottom:151.803600px;}
.y30{bottom:152.077500px;}
.y1f{bottom:156.981000px;}
.y89{bottom:157.847100px;}
.y71{bottom:162.982950px;}
.y9e{bottom:170.620650px;}
.y2f{bottom:170.827500px;}
.y1e{bottom:175.731000px;}
.y88{bottom:176.597100px;}
.y70{bottom:181.732950px;}
.y9d{bottom:189.437700px;}
.y2e{bottom:189.577500px;}
.y1d{bottom:194.481000px;}
.y87{bottom:195.347100px;}
.y6f{bottom:200.482950px;}
.y9c{bottom:208.254750px;}
.y2d{bottom:208.327500px;}
.y1c{bottom:213.231000px;}
.y86{bottom:214.097100px;}
.y6e{bottom:219.232950px;}
.y9b{bottom:227.071800px;}
.y2c{bottom:227.077500px;}
.y1b{bottom:231.981000px;}
.y85{bottom:232.847100px;}
.y6d{bottom:237.982950px;}
.y2b{bottom:245.827500px;}
.y9a{bottom:245.888850px;}
.y1a{bottom:250.731000px;}
.y84{bottom:251.597100px;}
.y6c{bottom:256.732950px;}
.y2a{bottom:264.577500px;}
.y99{bottom:264.705900px;}
.y19{bottom:269.481000px;}
.y83{bottom:270.347100px;}
.y6b{bottom:275.482950px;}
.y29{bottom:283.327500px;}
.y98{bottom:283.522950px;}
.ye4{bottom:284.124300px;}
.y18{bottom:288.231000px;}
.y82{bottom:289.097100px;}
.y6a{bottom:294.232950px;}
.ye3{bottom:300.324300px;}
.y28{bottom:302.077500px;}
.y97{bottom:302.340000px;}
.y17{bottom:306.981000px;}
.y81{bottom:307.847100px;}
.y69{bottom:312.982950px;}
.ye2{bottom:316.524300px;}
.y27{bottom:320.827500px;}
.ye1{bottom:320.865300px;}
.y96{bottom:321.157050px;}
.y16{bottom:325.731000px;}
.y80{bottom:326.597100px;}
.y68{bottom:331.732950px;}
.ye0{bottom:335.265300px;}
.y26{bottom:339.577500px;}
.y95{bottom:339.974100px;}
.y15{bottom:344.481000px;}
.y7f{bottom:345.347100px;}
.ydf{bottom:349.665300px;}
.y67{bottom:350.482950px;}
.yb6{bottom:353.577450px;}
.y25{bottom:358.327500px;}
.y94{bottom:358.791150px;}
.yde{bottom:364.065300px;}
.y7e{bottom:364.097100px;}
.y66{bottom:369.232950px;}
.yb5{bottom:374.577450px;}
.y14{bottom:375.987000px;}
.y24{bottom:377.077500px;}
.y93{bottom:377.608200px;}
.ydd{bottom:378.465300px;}
.y7d{bottom:382.847100px;}
.y65{bottom:387.982950px;}
.ydc{bottom:392.865300px;}
.yb4{bottom:393.327450px;}
.y92{bottom:396.425250px;}
.y7c{bottom:401.597100px;}
.y64{bottom:406.732950px;}
.ydb{bottom:407.265300px;}
.yb3{bottom:412.077450px;}
.y91{bottom:415.242300px;}
.y7b{bottom:420.347100px;}
.yda{bottom:421.665300px;}
.y63{bottom:425.482950px;}
.yb2{bottom:430.827450px;}
.y90{bottom:434.059350px;}
.yd9{bottom:436.065300px;}
.y7a{bottom:439.097100px;}
.y62{bottom:444.232950px;}
.yb1{bottom:449.577450px;}
.yd8{bottom:450.465300px;}
.y8f{bottom:452.876400px;}
.y61{bottom:462.982950px;}
.yd7{bottom:464.865300px;}
.yb0{bottom:468.327450px;}
.y79{bottom:470.603100px;}
.y8e{bottom:471.693450px;}
.yd6{bottom:479.265300px;}
.y76{bottom:481.732950px;}
.yaf{bottom:487.077450px;}
.y12{bottom:490.090500px;}
.yd5{bottom:493.665300px;}
.y60{bottom:500.482950px;}
.yae{bottom:505.827450px;}
.ya5{bottom:507.688950px;}
.yd4{bottom:508.065300px;}
.y11{bottom:512.595000px;}
.y5f{bottom:519.232950px;}
.yd3{bottom:522.465300px;}
.ya4{bottom:523.888950px;}
.yad{bottom:524.577450px;}
.y10{bottom:527.593500px;}
.yd2{bottom:536.865300px;}
.y5e{bottom:537.982950px;}
.yf{bottom:542.592000px;}
.yac{bottom:543.327450px;}
.yd1{bottom:551.265300px;}
.y5d{bottom:556.732950px;}
.ye{bottom:557.590500px;}
.yab{bottom:562.077450px;}
.yd0{bottom:565.665300px;}
.yd{bottom:572.589000px;}
.ycf{bottom:580.065300px;}
.yaa{bottom:580.827450px;}
.yc{bottom:587.587500px;}
.yce{bottom:594.465300px;}
.y78{bottom:595.098600px;}
.ya9{bottom:599.577450px;}
.ycd{bottom:608.865300px;}
.y77{bottom:611.298600px;}
.ya8{bottom:618.327450px;}
.ycc{bottom:623.265300px;}
.ya7{bottom:637.077450px;}
.ycb{bottom:637.665300px;}
.y13{bottom:647.245500px;}
.yca{bottom:652.065300px;}
.ya6{bottom:655.827450px;}
.yc9{bottom:666.465300px;}
.y5a{bottom:674.577450px;}
.y46{bottom:677.230950px;}
.yc8{bottom:680.865300px;}
.y59{bottom:693.327450px;}
.yc7{bottom:695.265300px;}
.y45{bottom:695.980950px;}
.yc6{bottom:709.665300px;}
.y58{bottom:712.077450px;}
.y44{bottom:714.730950px;}
.yc5{bottom:724.065300px;}
.y57{bottom:730.827450px;}
.y43{bottom:733.480950px;}
.y8{bottom:735.517395px;}
.yc4{bottom:738.465300px;}
.y7{bottom:748.524000px;}
.y56{bottom:749.577450px;}
.y42{bottom:752.230950px;}
.yc3{bottom:752.865300px;}
.yc2{bottom:767.265300px;}
.y55{bottom:768.327450px;}
.y41{bottom:770.980950px;}
.y6{bottom:771.517395px;}
.yc1{bottom:781.665300px;}
.y54{bottom:787.077450px;}
.y40{bottom:789.730950px;}
.yc0{bottom:796.065300px;}
.y5{bottom:802.524000px;}
.y53{bottom:805.827450px;}
.y3f{bottom:808.480950px;}
.ybf{bottom:810.465300px;}
.y52{bottom:824.577450px;}
.ybe{bottom:824.865300px;}
.y3e{bottom:827.230950px;}
.ybd{bottom:839.265150px;}
.y51{bottom:843.327450px;}
.y3d{bottom:845.980950px;}
.y4{bottom:850.287000px;}
.ybc{bottom:853.665300px;}
.y50{bottom:862.077450px;}
.y3c{bottom:864.730950px;}
.ybb{bottom:868.065150px;}
.y4f{bottom:880.827450px;}
.yba{bottom:882.465300px;}
.y3b{bottom:883.480950px;}
.y3{bottom:886.287000px;}
.yb9{bottom:896.865300px;}
.y4e{bottom:899.577450px;}
.y3a{bottom:902.230950px;}
.yb8{bottom:911.265300px;}
.y4d{bottom:918.327450px;}
.y2{bottom:922.287000px;}
.y4c{bottom:937.077450px;}
.yb7{bottom:938.421150px;}
.y39{bottom:941.980950px;}
.y4b{bottom:955.827450px;}
.y38{bottom:960.730950px;}
.ya{bottom:972.840000px;}
.y4a{bottom:974.577450px;}
.y37{bottom:979.480950px;}
.y49{bottom:993.327450px;}
.y36{bottom:998.230950px;}
.y48{bottom:1012.077450px;}
.y35{bottom:1029.736950px;}
.y47{bottom:1030.827450px;}
.y9{bottom:1077.859500px;}
.yb{bottom:1081.506000px;}
.y34{bottom:1089.584700px;}
.h5{height:24.555960px;}
.h2{height:38.340000px;}
.hf{height:39.792000px;}
.h9{height:42.000000px;}
.h6{height:42.120000px;}
.hd{height:42.300000px;}
.hc{height:42.900000px;}
.ha{height:44.766000px;}
.hb{height:46.530000px;}
.h4{height:49.740000px;}
.h8{height:51.120000px;}
.h7{height:59.586914px;}
.he{height:59.688000px;}
.h3{height:84.000000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:74.676600px;}
.x4{left:76.536000px;}
.x16{left:77.598450px;}
.xc{left:81.616650px;}
.xd{left:90.301650px;}
.x6{left:106.299000px;}
.x12{left:119.469000px;}
.x9{left:130.231350px;}
.x3{left:131.454000px;}
.x2{left:132.615000px;}
.xa{left:135.196650px;}
.x10{left:140.859000px;}
.x11{left:232.344000px;}
.xb{left:234.046650px;}
.x7{left:454.960500px;}
.xe{left:461.338650px;}
.x8{left:484.725000px;}
.xf{left:491.102400px;}
.x1{left:625.194000px;}
.x5{left:670.881000px;}
.x13{left:751.451550px;}
.x14{left:756.699150px;}
@media print{
.v2{vertical-align:-17.754293pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.754293pt;}
.ls31{letter-spacing:-4.906667pt;}
.ls3a{letter-spacing:-4.800000pt;}
.ls45{letter-spacing:-4.746667pt;}
.ls44{letter-spacing:-4.693333pt;}
.ls33{letter-spacing:-4.533333pt;}
.lsd{letter-spacing:-4.224000pt;}
.ls4b{letter-spacing:-3.242667pt;}
.ls2d{letter-spacing:-1.706667pt;}
.ls2c{letter-spacing:-1.226667pt;}
.ls4e{letter-spacing:-1.194667pt;}
.ls2f{letter-spacing:-1.066667pt;}
.ls53{letter-spacing:-1.056000pt;}
.ls27{letter-spacing:-1.013333pt;}
.ls2e{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.912000pt;}
.ls46{letter-spacing:-0.906667pt;}
.ls3c{letter-spacing:-0.853333pt;}
.ls3d{letter-spacing:-0.816000pt;}
.ls3b{letter-spacing:-0.800000pt;}
.ls51{letter-spacing:-0.768000pt;}
.ls29{letter-spacing:-0.746667pt;}
.ls20{letter-spacing:-0.693333pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls52{letter-spacing:-0.624000pt;}
.ls1e{letter-spacing:-0.586667pt;}
.ls25{letter-spacing:-0.533333pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls4a{letter-spacing:-0.469333pt;}
.ls34{letter-spacing:-0.432000pt;}
.ls30{letter-spacing:-0.426667pt;}
.ls1d{letter-spacing:-0.373333pt;}
.lsc{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.266667pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls4d{letter-spacing:-0.170667pt;}
.ls18{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.106667pt;}
.ls4f{letter-spacing:-0.085333pt;}
.ls17{letter-spacing:-0.053333pt;}
.ls10{letter-spacing:-0.048000pt;}
.ls49{letter-spacing:-0.042667pt;}
.ls21{letter-spacing:-0.000048pt;}
.ls9{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000384pt;}
.ls1{letter-spacing:0.001653pt;}
.ls0{letter-spacing:0.017653pt;}
.ls6{letter-spacing:0.042552pt;}
.ls40{letter-spacing:0.042667pt;}
.ls4{letter-spacing:0.047826pt;}
.lsf{letter-spacing:0.048000pt;}
.ls1b{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.056906pt;}
.ls47{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.103871pt;}
.ls14{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.109146pt;}
.ls43{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.170667pt;}
.ls12{letter-spacing:0.192000pt;}
.ls23{letter-spacing:0.213333pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls1c{letter-spacing:0.266667pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls4c{letter-spacing:0.341333pt;}
.ls15{letter-spacing:0.373333pt;}
.ls42{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.426667pt;}
.ls36{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.480000pt;}
.ls35{letter-spacing:0.533333pt;}
.ls50{letter-spacing:0.554667pt;}
.ls2{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.640000pt;}
.ls37{letter-spacing:0.650667pt;}
.ls39{letter-spacing:1.056000pt;}
.ls38{letter-spacing:1.152000pt;}
.ls3e{letter-spacing:3.226667pt;}
.ls2a{letter-spacing:3.290667pt;}
.ls24{letter-spacing:4.968000pt;}
.ls22{letter-spacing:5.450667pt;}
.wsd{word-spacing:-48.000000pt;}
.ws5{word-spacing:-13.317333pt;}
.ws7{word-spacing:-12.480000pt;}
.ws8{word-spacing:-12.213333pt;}
.ws10{word-spacing:-12.160000pt;}
.ws9{word-spacing:-12.106667pt;}
.wsb{word-spacing:-12.053333pt;}
.ws6{word-spacing:-12.000000pt;}
.ws2f{word-spacing:-11.946667pt;}
.ws32{word-spacing:-11.893333pt;}
.wsc{word-spacing:-11.840000pt;}
.ws5d{word-spacing:-11.786667pt;}
.ws49{word-spacing:-11.733333pt;}
.ws5b{word-spacing:-11.680000pt;}
.wsa{word-spacing:-11.626667pt;}
.ws5c{word-spacing:-11.520000pt;}
.ws4a{word-spacing:-11.413333pt;}
.ws4b{word-spacing:-11.360000pt;}
.ws5e{word-spacing:-11.306667pt;}
.ws4{word-spacing:-11.184000pt;}
.ws31{word-spacing:-11.146667pt;}
.ws2d{word-spacing:-11.093333pt;}
.ws1{word-spacing:-10.992000pt;}
.ws30{word-spacing:-10.986667pt;}
.ws2c{word-spacing:-10.880000pt;}
.ws2{word-spacing:-10.656000pt;}
.ws7e{word-spacing:-10.560000pt;}
.ws3{word-spacing:-10.512000pt;}
.ws11{word-spacing:-10.464000pt;}
.ws2e{word-spacing:-10.400000pt;}
.ws80{word-spacing:-10.368000pt;}
.ws64{word-spacing:-10.197333pt;}
.ws62{word-spacing:-10.112000pt;}
.ws7f{word-spacing:-10.080000pt;}
.ws63{word-spacing:-9.941333pt;}
.ws5f{word-spacing:-9.813333pt;}
.ws60{word-spacing:-9.301333pt;}
.ws61{word-spacing:-6.528000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws53{word-spacing:-0.533333pt;}
.ws6b{word-spacing:-0.426667pt;}
.ws1d{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws74{word-spacing:-0.170667pt;}
.ws33{word-spacing:-0.160000pt;}
.ws0{word-spacing:-0.106667pt;}
.wsf{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.ws39{word-spacing:0.053333pt;}
.ws42{word-spacing:0.106667pt;}
.ws12{word-spacing:0.160000pt;}
.ws25{word-spacing:0.213333pt;}
.ws21{word-spacing:0.266667pt;}
.ws27{word-spacing:0.320000pt;}
.ws26{word-spacing:0.426667pt;}
.ws47{word-spacing:0.432000pt;}
.ws3c{word-spacing:0.480000pt;}
.ws13{word-spacing:0.533333pt;}
.ws6d{word-spacing:0.586667pt;}
.ws3e{word-spacing:0.640000pt;}
.ws38{word-spacing:0.693333pt;}
.ws37{word-spacing:0.800000pt;}
.ws86{word-spacing:0.816000pt;}
.ws68{word-spacing:0.960000pt;}
.ws1b{word-spacing:1.013333pt;}
.ws57{word-spacing:1.056000pt;}
.ws36{word-spacing:1.066667pt;}
.ws5a{word-spacing:1.104000pt;}
.ws59{word-spacing:1.152000pt;}
.ws43{word-spacing:1.173333pt;}
.ws6f{word-spacing:1.333333pt;}
.ws77{word-spacing:1.365333pt;}
.ws1c{word-spacing:1.493333pt;}
.ws23{word-spacing:1.546667pt;}
.ws24{word-spacing:1.600000pt;}
.ws7c{word-spacing:1.749333pt;}
.ws79{word-spacing:1.834667pt;}
.ws55{word-spacing:1.866667pt;}
.ws58{word-spacing:1.968000pt;}
.ws56{word-spacing:2.080000pt;}
.ws81{word-spacing:2.112000pt;}
.ws3f{word-spacing:2.133333pt;}
.ws82{word-spacing:2.208000pt;}
.ws71{word-spacing:2.240000pt;}
.ws73{word-spacing:2.261333pt;}
.ws50{word-spacing:2.293333pt;}
.ws40{word-spacing:2.346667pt;}
.ws72{word-spacing:2.389333pt;}
.ws4f{word-spacing:2.400000pt;}
.ws75{word-spacing:2.432000pt;}
.ws65{word-spacing:2.453333pt;}
.ws76{word-spacing:2.517333pt;}
.ws28{word-spacing:2.560000pt;}
.ws20{word-spacing:2.666667pt;}
.ws83{word-spacing:2.736000pt;}
.ws3d{word-spacing:2.773333pt;}
.ws34{word-spacing:2.826667pt;}
.ws3b{word-spacing:2.933333pt;}
.ws19{word-spacing:2.986667pt;}
.ws7b{word-spacing:3.029333pt;}
.ws1a{word-spacing:3.040000pt;}
.ws51{word-spacing:3.200000pt;}
.ws41{word-spacing:3.253333pt;}
.ws4c{word-spacing:3.306667pt;}
.ws6e{word-spacing:3.413333pt;}
.ws66{word-spacing:3.466667pt;}
.ws1f{word-spacing:3.520000pt;}
.ws1e{word-spacing:3.626667pt;}
.ws78{word-spacing:3.669333pt;}
.ws46{word-spacing:3.840000pt;}
.ws70{word-spacing:3.946667pt;}
.ws84{word-spacing:4.032000pt;}
.ws48{word-spacing:4.224000pt;}
.ws4e{word-spacing:4.426667pt;}
.ws3a{word-spacing:4.480000pt;}
.ws44{word-spacing:4.533333pt;}
.ws6a{word-spacing:4.693333pt;}
.ws7d{word-spacing:4.736000pt;}
.ws29{word-spacing:4.752000pt;}
.ws14{word-spacing:4.800000pt;}
.ws85{word-spacing:4.848000pt;}
.ws16{word-spacing:4.853333pt;}
.ws2b{word-spacing:4.944000pt;}
.ws15{word-spacing:4.960000pt;}
.ws69{word-spacing:5.173333pt;}
.ws2a{word-spacing:5.472000pt;}
.ws45{word-spacing:6.186667pt;}
.ws4d{word-spacing:6.240000pt;}
.ws52{word-spacing:6.506667pt;}
.ws54{word-spacing:6.826667pt;}
.ws7a{word-spacing:7.168000pt;}
.ws67{word-spacing:7.680000pt;}
.ws6c{word-spacing:7.893333pt;}
.ws35{word-spacing:8.106667pt;}
._b{margin-left:-7.181867pt;}
._a{margin-left:-5.445333pt;}
._7{margin-left:-4.538133pt;}
._2{margin-left:-3.104000pt;}
._0{margin-left:-1.876800pt;}
._3{margin-left:-0.949867pt;}
._1{width:1.008000pt;}
._4{width:1.992000pt;}
._5{width:3.115733pt;}
._8{width:4.040533pt;}
._6{width:5.109867pt;}
._9{width:6.772267pt;}
.fs3{font-size:31.093333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:39.086667pt;}
.ya3{bottom:68.044000pt;}
.y5c{bottom:68.557600pt;}
.y23{bottom:72.872000pt;}
.y8d{bottom:73.641867pt;}
.y75{bottom:78.207067pt;}
.y5b{bottom:82.957600pt;}
.ya2{bottom:84.764000pt;}
.y33{bottom:85.180000pt;}
.y22{bottom:89.538667pt;}
.y8c{bottom:90.308533pt;}
.y74{bottom:94.873733pt;}
.ya1{bottom:101.484000pt;}
.y32{bottom:101.846667pt;}
.y21{bottom:106.205333pt;}
.y8b{bottom:106.975200pt;}
.y73{bottom:111.540400pt;}
.ya0{bottom:118.210267pt;}
.y31{bottom:118.513333pt;}
.y20{bottom:122.872000pt;}
.y8a{bottom:123.641867pt;}
.y72{bottom:128.207067pt;}
.y9f{bottom:134.936533pt;}
.y30{bottom:135.180000pt;}
.y1f{bottom:139.538667pt;}
.y89{bottom:140.308533pt;}
.y71{bottom:144.873733pt;}
.y9e{bottom:151.662800pt;}
.y2f{bottom:151.846667pt;}
.y1e{bottom:156.205333pt;}
.y88{bottom:156.975200pt;}
.y70{bottom:161.540400pt;}
.y9d{bottom:168.389067pt;}
.y2e{bottom:168.513333pt;}
.y1d{bottom:172.872000pt;}
.y87{bottom:173.641867pt;}
.y6f{bottom:178.207067pt;}
.y9c{bottom:185.115333pt;}
.y2d{bottom:185.180000pt;}
.y1c{bottom:189.538667pt;}
.y86{bottom:190.308533pt;}
.y6e{bottom:194.873733pt;}
.y9b{bottom:201.841600pt;}
.y2c{bottom:201.846667pt;}
.y1b{bottom:206.205333pt;}
.y85{bottom:206.975200pt;}
.y6d{bottom:211.540400pt;}
.y2b{bottom:218.513333pt;}
.y9a{bottom:218.567867pt;}
.y1a{bottom:222.872000pt;}
.y84{bottom:223.641867pt;}
.y6c{bottom:228.207067pt;}
.y2a{bottom:235.180000pt;}
.y99{bottom:235.294133pt;}
.y19{bottom:239.538667pt;}
.y83{bottom:240.308533pt;}
.y6b{bottom:244.873733pt;}
.y29{bottom:251.846667pt;}
.y98{bottom:252.020400pt;}
.ye4{bottom:252.554933pt;}
.y18{bottom:256.205333pt;}
.y82{bottom:256.975200pt;}
.y6a{bottom:261.540400pt;}
.ye3{bottom:266.954933pt;}
.y28{bottom:268.513333pt;}
.y97{bottom:268.746667pt;}
.y17{bottom:272.872000pt;}
.y81{bottom:273.641867pt;}
.y69{bottom:278.207067pt;}
.ye2{bottom:281.354933pt;}
.y27{bottom:285.180000pt;}
.ye1{bottom:285.213600pt;}
.y96{bottom:285.472933pt;}
.y16{bottom:289.538667pt;}
.y80{bottom:290.308533pt;}
.y68{bottom:294.873733pt;}
.ye0{bottom:298.013600pt;}
.y26{bottom:301.846667pt;}
.y95{bottom:302.199200pt;}
.y15{bottom:306.205333pt;}
.y7f{bottom:306.975200pt;}
.ydf{bottom:310.813600pt;}
.y67{bottom:311.540400pt;}
.yb6{bottom:314.291067pt;}
.y25{bottom:318.513333pt;}
.y94{bottom:318.925467pt;}
.yde{bottom:323.613600pt;}
.y7e{bottom:323.641867pt;}
.y66{bottom:328.207067pt;}
.yb5{bottom:332.957733pt;}
.y14{bottom:334.210667pt;}
.y24{bottom:335.180000pt;}
.y93{bottom:335.651733pt;}
.ydd{bottom:336.413600pt;}
.y7d{bottom:340.308533pt;}
.y65{bottom:344.873733pt;}
.ydc{bottom:349.213600pt;}
.yb4{bottom:349.624400pt;}
.y92{bottom:352.378000pt;}
.y7c{bottom:356.975200pt;}
.y64{bottom:361.540400pt;}
.ydb{bottom:362.013600pt;}
.yb3{bottom:366.291067pt;}
.y91{bottom:369.104267pt;}
.y7b{bottom:373.641867pt;}
.yda{bottom:374.813600pt;}
.y63{bottom:378.207067pt;}
.yb2{bottom:382.957733pt;}
.y90{bottom:385.830533pt;}
.yd9{bottom:387.613600pt;}
.y7a{bottom:390.308533pt;}
.y62{bottom:394.873733pt;}
.yb1{bottom:399.624400pt;}
.yd8{bottom:400.413600pt;}
.y8f{bottom:402.556800pt;}
.y61{bottom:411.540400pt;}
.yd7{bottom:413.213600pt;}
.yb0{bottom:416.291067pt;}
.y79{bottom:418.313867pt;}
.y8e{bottom:419.283067pt;}
.yd6{bottom:426.013600pt;}
.y76{bottom:428.207067pt;}
.yaf{bottom:432.957733pt;}
.y12{bottom:435.636000pt;}
.yd5{bottom:438.813600pt;}
.y60{bottom:444.873733pt;}
.yae{bottom:449.624400pt;}
.ya5{bottom:451.279067pt;}
.yd4{bottom:451.613600pt;}
.y11{bottom:455.640000pt;}
.y5f{bottom:461.540400pt;}
.yd3{bottom:464.413600pt;}
.ya4{bottom:465.679067pt;}
.yad{bottom:466.291067pt;}
.y10{bottom:468.972000pt;}
.yd2{bottom:477.213600pt;}
.y5e{bottom:478.207067pt;}
.yf{bottom:482.304000pt;}
.yac{bottom:482.957733pt;}
.yd1{bottom:490.013600pt;}
.y5d{bottom:494.873733pt;}
.ye{bottom:495.636000pt;}
.yab{bottom:499.624400pt;}
.yd0{bottom:502.813600pt;}
.yd{bottom:508.968000pt;}
.ycf{bottom:515.613600pt;}
.yaa{bottom:516.291067pt;}
.yc{bottom:522.300000pt;}
.yce{bottom:528.413600pt;}
.y78{bottom:528.976533pt;}
.ya9{bottom:532.957733pt;}
.ycd{bottom:541.213600pt;}
.y77{bottom:543.376533pt;}
.ya8{bottom:549.624400pt;}
.ycc{bottom:554.013600pt;}
.ya7{bottom:566.291067pt;}
.ycb{bottom:566.813600pt;}
.y13{bottom:575.329333pt;}
.yca{bottom:579.613600pt;}
.ya6{bottom:582.957733pt;}
.yc9{bottom:592.413600pt;}
.y5a{bottom:599.624400pt;}
.y46{bottom:601.983067pt;}
.yc8{bottom:605.213600pt;}
.y59{bottom:616.291067pt;}
.yc7{bottom:618.013600pt;}
.y45{bottom:618.649733pt;}
.yc6{bottom:630.813600pt;}
.y58{bottom:632.957733pt;}
.y44{bottom:635.316400pt;}
.yc5{bottom:643.613600pt;}
.y57{bottom:649.624400pt;}
.y43{bottom:651.983067pt;}
.y8{bottom:653.793240pt;}
.yc4{bottom:656.413600pt;}
.y7{bottom:665.354667pt;}
.y56{bottom:666.291067pt;}
.y42{bottom:668.649733pt;}
.yc3{bottom:669.213600pt;}
.yc2{bottom:682.013600pt;}
.y55{bottom:682.957733pt;}
.y41{bottom:685.316400pt;}
.y6{bottom:685.793240pt;}
.yc1{bottom:694.813600pt;}
.y54{bottom:699.624400pt;}
.y40{bottom:701.983067pt;}
.yc0{bottom:707.613600pt;}
.y5{bottom:713.354667pt;}
.y53{bottom:716.291067pt;}
.y3f{bottom:718.649733pt;}
.ybf{bottom:720.413600pt;}
.y52{bottom:732.957733pt;}
.ybe{bottom:733.213600pt;}
.y3e{bottom:735.316400pt;}
.ybd{bottom:746.013467pt;}
.y51{bottom:749.624400pt;}
.y3d{bottom:751.983067pt;}
.y4{bottom:755.810667pt;}
.ybc{bottom:758.813600pt;}
.y50{bottom:766.291067pt;}
.y3c{bottom:768.649733pt;}
.ybb{bottom:771.613467pt;}
.y4f{bottom:782.957733pt;}
.yba{bottom:784.413600pt;}
.y3b{bottom:785.316400pt;}
.y3{bottom:787.810667pt;}
.yb9{bottom:797.213600pt;}
.y4e{bottom:799.624400pt;}
.y3a{bottom:801.983067pt;}
.yb8{bottom:810.013600pt;}
.y4d{bottom:816.291067pt;}
.y2{bottom:819.810667pt;}
.y4c{bottom:832.957733pt;}
.yb7{bottom:834.152133pt;}
.y39{bottom:837.316400pt;}
.y4b{bottom:849.624400pt;}
.y38{bottom:853.983067pt;}
.ya{bottom:864.746667pt;}
.y4a{bottom:866.291067pt;}
.y37{bottom:870.649733pt;}
.y49{bottom:882.957733pt;}
.y36{bottom:887.316400pt;}
.y48{bottom:899.624400pt;}
.y35{bottom:915.321733pt;}
.y47{bottom:916.291067pt;}
.y9{bottom:958.097333pt;}
.yb{bottom:961.338667pt;}
.y34{bottom:968.519733pt;}
.h5{height:21.827520pt;}
.h2{height:34.080000pt;}
.hf{height:35.370667pt;}
.h9{height:37.333333pt;}
.h6{height:37.440000pt;}
.hd{height:37.600000pt;}
.hc{height:38.133333pt;}
.ha{height:39.792000pt;}
.hb{height:41.360000pt;}
.h4{height:44.213333pt;}
.h8{height:45.440000pt;}
.h7{height:52.966146pt;}
.he{height:53.056000pt;}
.h3{height:74.666667pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:66.379200pt;}
.x4{left:68.032000pt;}
.x16{left:68.976400pt;}
.xc{left:72.548133pt;}
.xd{left:80.268133pt;}
.x6{left:94.488000pt;}
.x12{left:106.194667pt;}
.x9{left:115.761200pt;}
.x3{left:116.848000pt;}
.x2{left:117.880000pt;}
.xa{left:120.174800pt;}
.x10{left:125.208000pt;}
.x11{left:206.528000pt;}
.xb{left:208.041467pt;}
.x7{left:404.409333pt;}
.xe{left:410.078800pt;}
.x8{left:430.866667pt;}
.xf{left:436.535467pt;}
.x1{left:555.728000pt;}
.x5{left:596.338667pt;}
.x13{left:667.956933pt;}
.x14{left:672.621467pt;}
}




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