
    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_43c3820d5f9365d3be4586c2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.074036;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_c6919779d3aa45e1e570f472.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964789;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_bff2676c595af24930393153.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_97c0fe50fbce0a9f5d033781.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.074000;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_9fbfafaf406564736c35aaaf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_53783f3c7da811c070cae1b1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_d9a1dd2ec5c73aa76a3ef724.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_26c3fe54340b81eafce8425c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.985352;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_bd05fbc9b8c66e86c800ef77.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.975098;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;}
.m3c{transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245421,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245533,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245565,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245756,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245818,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245866,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246017,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246077,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246089,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246538,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246627,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246632,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246789,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246833,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246866,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246907,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246971,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247079,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247091,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247160,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247335,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247352,0.000000,0.000000,0.250000,0,0);}
.m77{transform:matrix(0.247617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247617,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247746,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247749,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247818,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247928,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248062,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248148,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248165,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248258,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248428,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248603,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248612,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248648,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248823,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248856,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249043,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249103,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249108,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249191,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249278,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249373,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249431,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249483,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249651,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249660,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249694,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249806,0.000000,0.000000,0.250000,0,0);}
.m74{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);}
.m48{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249969,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249969,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);}
.m56{transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250012,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250050,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250067,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250103,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250122,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250218,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250251,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250323,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250333,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250340,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250356,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250378,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250431,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m59{transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250627,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250861,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250919,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250976,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250986,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251017,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251026,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251041,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251041,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251041,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251062,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251208,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251397,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251404,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251428,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251505,0.000000,0.000000,0.250000,0,0);}
.m37{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);}
.m4c{transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251634,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251679,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.251801,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251801,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251801,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251806,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251890,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251892,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252100,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252153,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252328,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252359,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252411,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252416,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.252447,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252447,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252447,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252457,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252502,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252545,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253349,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253636,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.253694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253694,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253701,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253787,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.253914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253914,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254435,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254478,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254478,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254478,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254512,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254531,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254629,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254667,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.254682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254682,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254713,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254742,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254833,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254852,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254868,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.062700px;}
.ls1{letter-spacing:0.125400px;}
.ls6{letter-spacing:0.188100px;}
.ls2{letter-spacing:0.250800px;}
.ls4{letter-spacing:0.313500px;}
.ls8{letter-spacing:0.376200px;}
.ls9{letter-spacing:0.438900px;}
.ls7{letter-spacing:0.501600px;}
.ls5{letter-spacing:0.564300px;}
.lsc{letter-spacing:0.940500px;}
.lsa{letter-spacing:1.003200px;}
.lsb{letter-spacing:1.065900px;}
.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;}
}
.wsb{word-spacing:-23.925000px;}
.ws2{word-spacing:-19.800000px;}
.ws33{word-spacing:-15.549600px;}
.ws37{word-spacing:-15.110700px;}
.wsc{word-spacing:-14.671800px;}
.wsd{word-spacing:-4.702500px;}
.ws12{word-spacing:-4.577100px;}
.ws47{word-spacing:-4.514400px;}
.ws2d{word-spacing:-4.451700px;}
.wse{word-spacing:-4.389000px;}
.ws46{word-spacing:-4.326300px;}
.ws43{word-spacing:-4.263600px;}
.ws3c{word-spacing:-4.200900px;}
.ws2c{word-spacing:-4.075500px;}
.wsf{word-spacing:-3.950100px;}
.ws3e{word-spacing:-3.887400px;}
.ws36{word-spacing:-3.824700px;}
.ws10{word-spacing:-3.762000px;}
.ws26{word-spacing:-3.636600px;}
.ws15{word-spacing:-3.573900px;}
.ws30{word-spacing:-3.385800px;}
.ws40{word-spacing:-3.197700px;}
.ws2f{word-spacing:-3.072300px;}
.ws4{word-spacing:-2.946900px;}
.ws16{word-spacing:-2.884200px;}
.ws2b{word-spacing:-2.758800px;}
.ws2e{word-spacing:-2.696100px;}
.ws20{word-spacing:-2.633400px;}
.ws27{word-spacing:-2.570700px;}
.ws6{word-spacing:-2.508000px;}
.ws45{word-spacing:-2.445300px;}
.ws29{word-spacing:-2.382600px;}
.ws11{word-spacing:-2.319900px;}
.ws2a{word-spacing:-2.257200px;}
.ws1a{word-spacing:-2.194500px;}
.ws21{word-spacing:-1.943700px;}
.ws4c{word-spacing:-1.860000px;}
.ws22{word-spacing:-1.818300px;}
.ws17{word-spacing:-1.755600px;}
.ws18{word-spacing:-1.630200px;}
.ws19{word-spacing:-1.567500px;}
.ws44{word-spacing:-1.504800px;}
.ws1f{word-spacing:-1.442100px;}
.ws28{word-spacing:-1.379400px;}
.ws1b{word-spacing:-1.316700px;}
.ws23{word-spacing:-1.254000px;}
.ws3f{word-spacing:-1.191300px;}
.ws34{word-spacing:-1.128600px;}
.ws1c{word-spacing:-1.065900px;}
.ws24{word-spacing:-1.003200px;}
.ws7{word-spacing:-0.940500px;}
.ws35{word-spacing:-0.689700px;}
.ws1e{word-spacing:-0.564300px;}
.ws41{word-spacing:-0.501600px;}
.ws25{word-spacing:-0.438900px;}
.ws42{word-spacing:-0.376200px;}
.ws32{word-spacing:-0.313500px;}
.ws14{word-spacing:-0.250800px;}
.ws1d{word-spacing:-0.125400px;}
.ws1{word-spacing:-0.066000px;}
.ws13{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws48{word-spacing:0.438900px;}
.ws38{word-spacing:0.564300px;}
.ws39{word-spacing:1.003200px;}
.ws31{word-spacing:1.316700px;}
.ws49{word-spacing:1.740000px;}
.ws4d{word-spacing:1.860000px;}
.ws4e{word-spacing:1.932000px;}
.wsa{word-spacing:3.009600px;}
.ws4b{word-spacing:4.380000px;}
.ws3a{word-spacing:4.827900px;}
.ws3{word-spacing:4.953300px;}
.ws3b{word-spacing:5.141400px;}
.ws3d{word-spacing:5.517600px;}
.ws9{word-spacing:6.458100px;}
.ws4a{word-spacing:7.320000px;}
.ws5{word-spacing:9.467700px;}
.ws8{word-spacing:10.157400px;}
._8{margin-left:-13.193400px;}
._3{margin-left:-8.890200px;}
._6{margin-left:-7.311000px;}
._5{margin-left:-5.760000px;}
._c{margin-left:-4.702500px;}
._4{margin-left:-3.024000px;}
._b{margin-left:-2.020170px;}
._1{margin-left:-1.009800px;}
._2{width:1.980000px;}
._9{width:3.232800px;}
._0{width:7.920000px;}
._f{width:13.185810px;}
._10{width:475.794000px;}
._11{width:496.056000px;}
._d{width:504.702000px;}
._a{width:506.880000px;}
._e{width:508.134000px;}
._7{width:520.146000px;}
.fc5{color:rgb(74,115,132);}
.fc4{color:rgb(246,174,45);}
.fc2{color:rgb(74,114,132);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(0,0,0);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fs8{font-size:42.000000px;}
.fs7{font-size:60.000000px;}
.fs5{font-size:61.500000px;}
.fs3{font-size:62.700000px;}
.fs4{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs2{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:198.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:43.085100px;}
.y8e{bottom:44.210100px;}
.yd{bottom:45.211050px;}
.y129{bottom:46.274100px;}
.y139{bottom:91.891350px;}
.y138{bottom:104.491350px;}
.y137{bottom:117.091350px;}
.yf7{bottom:126.293400px;}
.y38{bottom:127.486350px;}
.y49{bottom:128.316750px;}
.yd5{bottom:138.138450px;}
.y8d{bottom:142.285500px;}
.y136{bottom:142.291350px;}
.yf6{bottom:151.793400px;}
.y37{bottom:152.986350px;}
.y48{bottom:153.813525px;}
.y135{bottom:154.891350px;}
.yd4{bottom:163.632000px;}
.y8c{bottom:167.785500px;}
.y10c{bottom:174.151650px;}
.y36{bottom:178.486350px;}
.y47{bottom:179.316750px;}
.yd3{bottom:189.135225px;}
.y8b{bottom:193.285500px;}
.yf5{bottom:196.096575px;}
.yb1{bottom:197.566500px;}
.y10b{bottom:199.651650px;}
.y35{bottom:203.983125px;}
.y46{bottom:204.816900px;}
.yd2{bottom:214.638450px;}
.y8a{bottom:218.785500px;}
.yf4{bottom:221.599800px;}
.yb0{bottom:223.069725px;}
.y10a{bottom:225.151650px;}
.y34{bottom:229.486350px;}
.y45{bottom:230.316900px;}
.yd1{bottom:240.138450px;}
.y89{bottom:244.285500px;}
.yf3{bottom:247.103025px;}
.yaf{bottom:248.572950px;}
.y109{bottom:250.651650px;}
.y33{bottom:254.986350px;}
.y44{bottom:255.816900px;}
.yd0{bottom:265.638450px;}
.y88{bottom:269.785500px;}
.yf2{bottom:272.606250px;}
.yae{bottom:274.072950px;}
.y32{bottom:280.483125px;}
.y43{bottom:281.316900px;}
.ycf{bottom:291.138450px;}
.yf1{bottom:298.106250px;}
.yad{bottom:299.572950px;}
.y108{bottom:299.581575px;}
.y31{bottom:305.986350px;}
.y87{bottom:316.613025px;}
.yce{bottom:316.638450px;}
.yf0{bottom:323.606250px;}
.yac{bottom:325.072950px;}
.y107{bottom:325.084800px;}
.y5f{bottom:325.309200px;}
.y30{bottom:331.486350px;}
.y128{bottom:336.963000px;}
.y86{bottom:342.116250px;}
.ycd{bottom:342.138450px;}
.yef{bottom:349.106250px;}
.yab{bottom:350.571450px;}
.y106{bottom:350.584800px;}
.y5e{bottom:350.805975px;}
.y2f{bottom:356.986350px;}
.y127{bottom:362.463000px;}
.y85{bottom:367.616250px;}
.ycc{bottom:367.638450px;}
.yee{bottom:374.606250px;}
.y105{bottom:376.084800px;}
.y5d{bottom:376.309200px;}
.y2e{bottom:382.486350px;}
.y126{bottom:387.963000px;}
.y84{bottom:393.116250px;}
.yaa{bottom:397.424025px;}
.yed{bottom:400.106250px;}
.ycb{bottom:401.529450px;}
.y5c{bottom:401.809200px;}
.y2d{bottom:407.986350px;}
.y125{bottom:413.463000px;}
.y83{bottom:418.616250px;}
.ya9{bottom:422.927250px;}
.y104{bottom:425.029650px;}
.y5b{bottom:427.309200px;}
.y2c{bottom:433.486350px;}
.yec{bottom:433.997400px;}
.y124{bottom:438.963000px;}
.y82{bottom:444.116250px;}
.y2{bottom:447.405750px;}
.ya8{bottom:448.427250px;}
.y103{bottom:450.529650px;}
.y5a{bottom:452.809200px;}
.yca{bottom:463.632450px;}
.ya7{bottom:473.927250px;}
.y102{bottom:476.029650px;}
.y59{bottom:478.309200px;}
.y2b{bottom:481.811025px;}
.y123{bottom:484.565775px;}
.yc9{bottom:489.132450px;}
.y81{bottom:491.877300px;}
.yeb{bottom:497.309925px;}
.ya6{bottom:499.427250px;}
.y101{bottom:501.526425px;}
.y58{bottom:503.809200px;}
.y2a{bottom:507.314250px;}
.y122{bottom:510.069000px;}
.yc8{bottom:514.632450px;}
.y80{bottom:517.380525px;}
.yea{bottom:522.813150px;}
.ya5{bottom:524.927250px;}
.y100{bottom:527.029650px;}
.y57{bottom:529.309200px;}
.y29{bottom:532.817475px;}
.y121{bottom:535.569000px;}
.yc7{bottom:540.132450px;}
.y7f{bottom:542.883750px;}
.ye9{bottom:548.309925px;}
.ya4{bottom:550.427250px;}
.y56{bottom:554.809200px;}
.y28{bottom:558.320700px;}
.y120{bottom:561.069000px;}
.y1a{bottom:565.150500px;}
.yc6{bottom:565.632450px;}
.y7e{bottom:568.383750px;}
.y112{bottom:572.014950px;}
.ye8{bottom:573.813150px;}
.ya3{bottom:575.927250px;}
.y55{bottom:580.309200px;}
.y27{bottom:583.817475px;}
.y11f{bottom:586.569000px;}
.yc5{bottom:591.137025px;}
.y7d{bottom:593.883750px;}
.y111{bottom:597.519075px;}
.ye7{bottom:599.313150px;}
.y19{bottom:602.650125px;}
.y54{bottom:605.809200px;}
.y26{bottom:609.320700px;}
.y11e{bottom:612.064650px;}
.y7c{bottom:619.383750px;}
.ya2{bottom:622.781700px;}
.y110{bottom:630.514950px;}
.y53{bottom:631.302750px;}
.y1f{bottom:633.075000px;}
.y25{bottom:634.820700px;}
.yc4{bottom:637.801500px;}
.y1{bottom:638.341800px;}
.y18{bottom:640.149750px;}
.ye6{bottom:644.679225px;}
.y7b{bottom:644.883750px;}
.ya1{bottom:648.281700px;}
.y10f{bottom:656.014950px;}
.y52{bottom:656.805975px;}
.y1e{bottom:658.575000px;}
.y11d{bottom:658.964250px;}
.y24{bottom:660.317475px;}
.y17{bottom:661.152000px;}
.yc3{bottom:663.301500px;}
.ye5{bottom:670.182450px;}
.y7a{bottom:670.383750px;}
.ya0{bottom:673.781700px;}
.y51{bottom:682.309200px;}
.y11c{bottom:684.467475px;}
.y23{bottom:685.820700px;}
.yc2{bottom:688.801500px;}
.y10e{bottom:689.014950px;}
.ye4{bottom:695.685675px;}
.y79{bottom:695.883750px;}
.y16{bottom:698.651625px;}
.y9f{bottom:699.281700px;}
.y50{bottom:707.809200px;}
.y1d{bottom:707.895225px;}
.y11b{bottom:709.970700px;}
.yc1{bottom:714.301500px;}
.y10d{bottom:714.514950px;}
.y22{bottom:720.509100px;}
.ye3{bottom:721.188900px;}
.y9e{bottom:724.781700px;}
.y78{bottom:729.774900px;}
.y3{bottom:732.291750px;}
.y4f{bottom:733.309200px;}
.y1c{bottom:733.398450px;}
.y11a{bottom:735.470700px;}
.y15{bottom:736.151250px;}
.yc0{bottom:739.801500px;}
.y113{bottom:746.007450px;}
.ye2{bottom:746.688900px;}
.y9d{bottom:750.281700px;}
.y14{bottom:757.153500px;}
.y4e{bottom:758.809200px;}
.y119{bottom:760.970700px;}
.ybf{bottom:765.301500px;}
.y134{bottom:770.073900px;}
.ye1{bottom:772.188750px;}
.y9c{bottom:775.781550px;}
.yc{bottom:782.949975px;}
.y4d{bottom:784.309050px;}
.y118{bottom:786.470550px;}
.y133{bottom:788.073900px;}
.y77{bottom:791.610975px;}
.y13{bottom:794.653125px;}
.yff{bottom:794.982975px;}
.ye0{bottom:797.688750px;}
.y9b{bottom:801.281550px;}
.y132{bottom:806.073900px;}
.yb{bottom:808.453200px;}
.y4c{bottom:809.809050px;}
.ybe{bottom:811.970550px;}
.y76{bottom:817.114200px;}
.yfe{bottom:820.486200px;}
.ydf{bottom:823.188750px;}
.y131{bottom:824.073900px;}
.y12{bottom:832.152750px;}
.y4b{bottom:835.309050px;}
.ybd{bottom:837.470550px;}
.y75{bottom:842.614200px;}
.yfd{bottom:845.986200px;}
.y9a{bottom:848.097225px;}
.y6b{bottom:848.144625px;}
.yde{bottom:848.688750px;}
.ya{bottom:860.572575px;}
.y4a{bottom:860.809050px;}
.y117{bottom:862.964100px;}
.ybc{bottom:862.970550px;}
.y74{bottom:868.114200px;}
.y11{bottom:869.652375px;}
.yfc{bottom:871.486200px;}
.y99{bottom:873.600450px;}
.y6a{bottom:873.647850px;}
.ydd{bottom:882.580050px;}
.y9{bottom:886.075800px;}
.y116{bottom:888.467325px;}
.ybb{bottom:888.470550px;}
.y73{bottom:893.614200px;}
.yfb{bottom:896.986200px;}
.y98{bottom:899.100450px;}
.y69{bottom:899.147700px;}
.y130{bottom:904.053900px;}
.y10{bottom:907.152000px;}
.y42{bottom:908.576700px;}
.y8{bottom:911.579025px;}
.yba{bottom:913.970550px;}
.y72{bottom:919.114200px;}
.y12f{bottom:922.053900px;}
.yfa{bottom:922.486200px;}
.y97{bottom:924.600450px;}
.y68{bottom:924.647700px;}
.yf{bottom:928.154250px;}
.y41{bottom:934.076700px;}
.y7{bottom:937.082250px;}
.yb9{bottom:939.470550px;}
.y12e{bottom:940.053900px;}
.y71{bottom:944.607750px;}
.ydc{bottom:945.919350px;}
.yf9{bottom:947.986200px;}
.ye{bottom:949.156500px;}
.y96{bottom:950.100450px;}
.y67{bottom:950.147700px;}
.y12d{bottom:958.053900px;}
.y40{bottom:959.576550px;}
.y70{bottom:970.110975px;}
.ydb{bottom:971.416125px;}
.yf8{bottom:973.486200px;}
.y1b{bottom:974.713200px;}
.y66{bottom:975.647700px;}
.y12c{bottom:976.053900px;}
.y3f{bottom:985.076550px;}
.y6{bottom:985.988250px;}
.yb8{bottom:986.139600px;}
.y6f{bottom:995.614200px;}
.y95{bottom:995.614350px;}
.yda{bottom:996.919350px;}
.y65{bottom:1001.134575px;}
.y3e{bottom:1010.576550px;}
.y5{bottom:1011.488250px;}
.yb7{bottom:1011.639600px;}
.y6e{bottom:1021.114200px;}
.y94{bottom:1021.114350px;}
.yd9{bottom:1022.416125px;}
.y64{bottom:1026.637800px;}
.y3d{bottom:1036.076550px;}
.yb6{bottom:1037.136375px;}
.y93{bottom:1046.611125px;}
.y6d{bottom:1046.614200px;}
.yd8{bottom:1047.919350px;}
.y63{bottom:1052.141025px;}
.y4{bottom:1059.302550px;}
.y3c{bottom:1061.576550px;}
.yb5{bottom:1062.639600px;}
.y6c{bottom:1072.114200px;}
.y92{bottom:1072.114350px;}
.yd7{bottom:1073.419350px;}
.y115{bottom:1087.073325px;}
.y3b{bottom:1087.076550px;}
.yb4{bottom:1088.139600px;}
.y12b{bottom:1093.347225px;}
.y62{bottom:1097.614200px;}
.y91{bottom:1097.614350px;}
.yd6{bottom:1098.919350px;}
.y3a{bottom:1112.576550px;}
.yb3{bottom:1113.639600px;}
.y12a{bottom:1118.850450px;}
.y61{bottom:1123.114200px;}
.y90{bottom:1123.114350px;}
.y114{bottom:1146.467850px;}
.y39{bottom:1147.265100px;}
.yb2{bottom:1147.530750px;}
.y60{bottom:1148.614200px;}
.y8f{bottom:1148.614350px;}
.y20{bottom:1190.943300px;}
.he{height:33.550781px;}
.h7{height:47.724000px;}
.hd{height:47.929688px;}
.h8{height:49.434000px;}
.h5{height:50.086523px;}
.hc{height:50.092523px;}
.ha{height:50.099423px;}
.hb{height:50.139023px;}
.h6{height:55.704000px;}
.h9{height:60.770618px;}
.h4{height:73.431164px;}
.h3{height:94.374000px;}
.h2{height:167.119200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:29.927925px;}
.x5{left:34.015800px;}
.xc{left:51.698925px;}
.xa{left:53.313300px;}
.xb{left:56.649675px;}
.xd{left:62.061675px;}
.x10{left:65.843925px;}
.x1{left:67.217400px;}
.x3{left:69.636150px;}
.x14{left:77.598450px;}
.xf{left:83.878800px;}
.x6{left:93.257550px;}
.x8{left:95.702175px;}
.x9{left:103.020675px;}
.xe{left:105.911175px;}
.x16{left:162.588450px;}
.x12{left:170.716500px;}
.x13{left:183.897600px;}
.x15{left:198.693450px;}
.x17{left:209.565300px;}
.x4{left:219.188850px;}
.x2{left:514.069650px;}
.x11{left:522.857400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.055733pt;}
.ls1{letter-spacing:0.111467pt;}
.ls6{letter-spacing:0.167200pt;}
.ls2{letter-spacing:0.222933pt;}
.ls4{letter-spacing:0.278667pt;}
.ls8{letter-spacing:0.334400pt;}
.ls9{letter-spacing:0.390133pt;}
.ls7{letter-spacing:0.445867pt;}
.ls5{letter-spacing:0.501600pt;}
.lsc{letter-spacing:0.836000pt;}
.lsa{letter-spacing:0.891733pt;}
.lsb{letter-spacing:0.947467pt;}
.wsb{word-spacing:-21.266667pt;}
.ws2{word-spacing:-17.600000pt;}
.ws33{word-spacing:-13.821867pt;}
.ws37{word-spacing:-13.431733pt;}
.wsc{word-spacing:-13.041600pt;}
.wsd{word-spacing:-4.180000pt;}
.ws12{word-spacing:-4.068533pt;}
.ws47{word-spacing:-4.012800pt;}
.ws2d{word-spacing:-3.957067pt;}
.wse{word-spacing:-3.901333pt;}
.ws46{word-spacing:-3.845600pt;}
.ws43{word-spacing:-3.789867pt;}
.ws3c{word-spacing:-3.734133pt;}
.ws2c{word-spacing:-3.622667pt;}
.wsf{word-spacing:-3.511200pt;}
.ws3e{word-spacing:-3.455467pt;}
.ws36{word-spacing:-3.399733pt;}
.ws10{word-spacing:-3.344000pt;}
.ws26{word-spacing:-3.232533pt;}
.ws15{word-spacing:-3.176800pt;}
.ws30{word-spacing:-3.009600pt;}
.ws40{word-spacing:-2.842400pt;}
.ws2f{word-spacing:-2.730933pt;}
.ws4{word-spacing:-2.619467pt;}
.ws16{word-spacing:-2.563733pt;}
.ws2b{word-spacing:-2.452267pt;}
.ws2e{word-spacing:-2.396533pt;}
.ws20{word-spacing:-2.340800pt;}
.ws27{word-spacing:-2.285067pt;}
.ws6{word-spacing:-2.229333pt;}
.ws45{word-spacing:-2.173600pt;}
.ws29{word-spacing:-2.117867pt;}
.ws11{word-spacing:-2.062133pt;}
.ws2a{word-spacing:-2.006400pt;}
.ws1a{word-spacing:-1.950667pt;}
.ws21{word-spacing:-1.727733pt;}
.ws4c{word-spacing:-1.653333pt;}
.ws22{word-spacing:-1.616267pt;}
.ws17{word-spacing:-1.560533pt;}
.ws18{word-spacing:-1.449067pt;}
.ws19{word-spacing:-1.393333pt;}
.ws44{word-spacing:-1.337600pt;}
.ws1f{word-spacing:-1.281867pt;}
.ws28{word-spacing:-1.226133pt;}
.ws1b{word-spacing:-1.170400pt;}
.ws23{word-spacing:-1.114667pt;}
.ws3f{word-spacing:-1.058933pt;}
.ws34{word-spacing:-1.003200pt;}
.ws1c{word-spacing:-0.947467pt;}
.ws24{word-spacing:-0.891733pt;}
.ws7{word-spacing:-0.836000pt;}
.ws35{word-spacing:-0.613067pt;}
.ws1e{word-spacing:-0.501600pt;}
.ws41{word-spacing:-0.445867pt;}
.ws25{word-spacing:-0.390133pt;}
.ws42{word-spacing:-0.334400pt;}
.ws32{word-spacing:-0.278667pt;}
.ws14{word-spacing:-0.222933pt;}
.ws1d{word-spacing:-0.111467pt;}
.ws1{word-spacing:-0.058667pt;}
.ws13{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws48{word-spacing:0.390133pt;}
.ws38{word-spacing:0.501600pt;}
.ws39{word-spacing:0.891733pt;}
.ws31{word-spacing:1.170400pt;}
.ws49{word-spacing:1.546667pt;}
.ws4d{word-spacing:1.653333pt;}
.ws4e{word-spacing:1.717333pt;}
.wsa{word-spacing:2.675200pt;}
.ws4b{word-spacing:3.893333pt;}
.ws3a{word-spacing:4.291467pt;}
.ws3{word-spacing:4.402933pt;}
.ws3b{word-spacing:4.570133pt;}
.ws3d{word-spacing:4.904533pt;}
.ws9{word-spacing:5.740533pt;}
.ws4a{word-spacing:6.506667pt;}
.ws5{word-spacing:8.415733pt;}
.ws8{word-spacing:9.028800pt;}
._8{margin-left:-11.727467pt;}
._3{margin-left:-7.902400pt;}
._6{margin-left:-6.498667pt;}
._5{margin-left:-5.120000pt;}
._c{margin-left:-4.180000pt;}
._4{margin-left:-2.688000pt;}
._b{margin-left:-1.795707pt;}
._1{margin-left:-0.897600pt;}
._2{width:1.760000pt;}
._9{width:2.873600pt;}
._0{width:7.040000pt;}
._f{width:11.720720pt;}
._10{width:422.928000pt;}
._11{width:440.938667pt;}
._d{width:448.624000pt;}
._a{width:450.560000pt;}
._e{width:451.674667pt;}
._7{width:462.352000pt;}
.fs8{font-size:37.333333pt;}
.fs7{font-size:53.333333pt;}
.fs5{font-size:54.666667pt;}
.fs3{font-size:55.733333pt;}
.fs4{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs2{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:176.000000pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:38.297867pt;}
.y8e{bottom:39.297867pt;}
.yd{bottom:40.187600pt;}
.y129{bottom:41.132533pt;}
.y139{bottom:81.681200pt;}
.y138{bottom:92.881200pt;}
.y137{bottom:104.081200pt;}
.yf7{bottom:112.260800pt;}
.y38{bottom:113.321200pt;}
.y49{bottom:114.059333pt;}
.yd5{bottom:122.789733pt;}
.y8d{bottom:126.476000pt;}
.y136{bottom:126.481200pt;}
.yf6{bottom:134.927467pt;}
.y37{bottom:135.987867pt;}
.y48{bottom:136.723133pt;}
.y135{bottom:137.681200pt;}
.yd4{bottom:145.450667pt;}
.y8c{bottom:149.142667pt;}
.y10c{bottom:154.801467pt;}
.y36{bottom:158.654533pt;}
.y47{bottom:159.392667pt;}
.yd3{bottom:168.120200pt;}
.y8b{bottom:171.809333pt;}
.yf5{bottom:174.308067pt;}
.yb1{bottom:175.614667pt;}
.y10b{bottom:177.468133pt;}
.y35{bottom:181.318333pt;}
.y46{bottom:182.059467pt;}
.yd2{bottom:190.789733pt;}
.y8a{bottom:194.476000pt;}
.yf4{bottom:196.977600pt;}
.yb0{bottom:198.284200pt;}
.y10a{bottom:200.134800pt;}
.y34{bottom:203.987867pt;}
.y45{bottom:204.726133pt;}
.yd1{bottom:213.456400pt;}
.y89{bottom:217.142667pt;}
.yf3{bottom:219.647133pt;}
.yaf{bottom:220.953733pt;}
.y109{bottom:222.801467pt;}
.y33{bottom:226.654533pt;}
.y44{bottom:227.392800pt;}
.yd0{bottom:236.123067pt;}
.y88{bottom:239.809333pt;}
.yf2{bottom:242.316667pt;}
.yae{bottom:243.620400pt;}
.y32{bottom:249.318333pt;}
.y43{bottom:250.059467pt;}
.ycf{bottom:258.789733pt;}
.yf1{bottom:264.983333pt;}
.yad{bottom:266.287067pt;}
.y108{bottom:266.294733pt;}
.y31{bottom:271.987867pt;}
.y87{bottom:281.433800pt;}
.yce{bottom:281.456400pt;}
.yf0{bottom:287.650000pt;}
.yac{bottom:288.953733pt;}
.y107{bottom:288.964267pt;}
.y5f{bottom:289.163733pt;}
.y30{bottom:294.654533pt;}
.y128{bottom:299.522667pt;}
.y86{bottom:304.103333pt;}
.ycd{bottom:304.123067pt;}
.yef{bottom:310.316667pt;}
.yab{bottom:311.619067pt;}
.y106{bottom:311.630933pt;}
.y5e{bottom:311.827533pt;}
.y2f{bottom:317.321200pt;}
.y127{bottom:322.189333pt;}
.y85{bottom:326.770000pt;}
.ycc{bottom:326.789733pt;}
.yee{bottom:332.983333pt;}
.y105{bottom:334.297600pt;}
.y5d{bottom:334.497067pt;}
.y2e{bottom:339.987867pt;}
.y126{bottom:344.856000pt;}
.y84{bottom:349.436667pt;}
.yaa{bottom:353.265800pt;}
.yed{bottom:355.650000pt;}
.ycb{bottom:356.915067pt;}
.y5c{bottom:357.163733pt;}
.y2d{bottom:362.654533pt;}
.y125{bottom:367.522667pt;}
.y83{bottom:372.103333pt;}
.ya9{bottom:375.935333pt;}
.y104{bottom:377.804133pt;}
.y5b{bottom:379.830400pt;}
.y2c{bottom:385.321200pt;}
.yec{bottom:385.775467pt;}
.y124{bottom:390.189333pt;}
.y82{bottom:394.770000pt;}
.y2{bottom:397.694000pt;}
.ya8{bottom:398.602000pt;}
.y103{bottom:400.470800pt;}
.y5a{bottom:402.497067pt;}
.yca{bottom:412.117733pt;}
.ya7{bottom:421.268667pt;}
.y102{bottom:423.137467pt;}
.y59{bottom:425.163733pt;}
.y2b{bottom:428.276467pt;}
.y123{bottom:430.725133pt;}
.yc9{bottom:434.784400pt;}
.y81{bottom:437.224267pt;}
.yeb{bottom:442.053267pt;}
.ya6{bottom:443.935333pt;}
.y101{bottom:445.801267pt;}
.y58{bottom:447.830400pt;}
.y2a{bottom:450.946000pt;}
.y122{bottom:453.394667pt;}
.yc8{bottom:457.451067pt;}
.y80{bottom:459.893800pt;}
.yea{bottom:464.722800pt;}
.ya5{bottom:466.602000pt;}
.y100{bottom:468.470800pt;}
.y57{bottom:470.497067pt;}
.y29{bottom:473.615533pt;}
.y121{bottom:476.061333pt;}
.yc7{bottom:480.117733pt;}
.y7f{bottom:482.563333pt;}
.ye9{bottom:487.386600pt;}
.ya4{bottom:489.268667pt;}
.y56{bottom:493.163733pt;}
.y28{bottom:496.285067pt;}
.y120{bottom:498.728000pt;}
.y1a{bottom:502.356000pt;}
.yc6{bottom:502.784400pt;}
.y7e{bottom:505.230000pt;}
.y112{bottom:508.457733pt;}
.ye8{bottom:510.056133pt;}
.ya3{bottom:511.935333pt;}
.y55{bottom:515.830400pt;}
.y27{bottom:518.948867pt;}
.y11f{bottom:521.394667pt;}
.yc5{bottom:525.455133pt;}
.y7d{bottom:527.896667pt;}
.y111{bottom:531.128067pt;}
.ye7{bottom:532.722800pt;}
.y19{bottom:535.689000pt;}
.y54{bottom:538.497067pt;}
.y26{bottom:541.618400pt;}
.y11e{bottom:544.057467pt;}
.y7c{bottom:550.563333pt;}
.ya2{bottom:553.583733pt;}
.y110{bottom:560.457733pt;}
.y53{bottom:561.158000pt;}
.y1f{bottom:562.733333pt;}
.y25{bottom:564.285067pt;}
.yc4{bottom:566.934667pt;}
.y1{bottom:567.414933pt;}
.y18{bottom:569.022000pt;}
.ye6{bottom:573.048200pt;}
.y7b{bottom:573.230000pt;}
.ya1{bottom:576.250400pt;}
.y10f{bottom:583.124400pt;}
.y52{bottom:583.827533pt;}
.y1e{bottom:585.400000pt;}
.y11d{bottom:585.746000pt;}
.y24{bottom:586.948867pt;}
.y17{bottom:587.690667pt;}
.yc3{bottom:589.601333pt;}
.ye5{bottom:595.717733pt;}
.y7a{bottom:595.896667pt;}
.ya0{bottom:598.917067pt;}
.y51{bottom:606.497067pt;}
.y11c{bottom:608.415533pt;}
.y23{bottom:609.618400pt;}
.yc2{bottom:612.268000pt;}
.y10e{bottom:612.457733pt;}
.ye4{bottom:618.387267pt;}
.y79{bottom:618.563333pt;}
.y16{bottom:621.023667pt;}
.y9f{bottom:621.583733pt;}
.y50{bottom:629.163733pt;}
.y1d{bottom:629.240200pt;}
.y11b{bottom:631.085067pt;}
.yc1{bottom:634.934667pt;}
.y10d{bottom:635.124400pt;}
.y22{bottom:640.452533pt;}
.ye3{bottom:641.056800pt;}
.y9e{bottom:644.250400pt;}
.y78{bottom:648.688800pt;}
.y3{bottom:650.926000pt;}
.y4f{bottom:651.830400pt;}
.y1c{bottom:651.909733pt;}
.y11a{bottom:653.751733pt;}
.y15{bottom:654.356667pt;}
.yc0{bottom:657.601333pt;}
.y113{bottom:663.117733pt;}
.ye2{bottom:663.723467pt;}
.y9d{bottom:666.917067pt;}
.y14{bottom:673.025333pt;}
.y4e{bottom:674.497067pt;}
.y119{bottom:676.418400pt;}
.ybf{bottom:680.268000pt;}
.y134{bottom:684.510133pt;}
.ye1{bottom:686.390000pt;}
.y9c{bottom:689.583600pt;}
.yc{bottom:695.955533pt;}
.y4d{bottom:697.163600pt;}
.y118{bottom:699.084933pt;}
.y133{bottom:700.510133pt;}
.y77{bottom:703.654200pt;}
.y13{bottom:706.358333pt;}
.yff{bottom:706.651533pt;}
.ye0{bottom:709.056667pt;}
.y9b{bottom:712.250267pt;}
.y132{bottom:716.510133pt;}
.yb{bottom:718.625067pt;}
.y4c{bottom:719.830267pt;}
.ybe{bottom:721.751600pt;}
.y76{bottom:726.323733pt;}
.yfe{bottom:729.321067pt;}
.ydf{bottom:731.723333pt;}
.y131{bottom:732.510133pt;}
.y12{bottom:739.691333pt;}
.y4b{bottom:742.496933pt;}
.ybd{bottom:744.418267pt;}
.y75{bottom:748.990400pt;}
.yfd{bottom:751.987733pt;}
.y9a{bottom:753.864200pt;}
.y6b{bottom:753.906333pt;}
.yde{bottom:754.390000pt;}
.ya{bottom:764.953400pt;}
.y4a{bottom:765.163600pt;}
.y117{bottom:767.079200pt;}
.ybc{bottom:767.084933pt;}
.y74{bottom:771.657067pt;}
.y11{bottom:773.024333pt;}
.yfc{bottom:774.654400pt;}
.y99{bottom:776.533733pt;}
.y6a{bottom:776.575867pt;}
.ydd{bottom:784.515600pt;}
.y9{bottom:787.622933pt;}
.y116{bottom:789.748733pt;}
.ybb{bottom:789.751600pt;}
.y73{bottom:794.323733pt;}
.yfb{bottom:797.321067pt;}
.y98{bottom:799.200400pt;}
.y69{bottom:799.242400pt;}
.y130{bottom:803.603467pt;}
.y10{bottom:806.357333pt;}
.y42{bottom:807.623733pt;}
.y8{bottom:810.292467pt;}
.yba{bottom:812.418267pt;}
.y72{bottom:816.990400pt;}
.y12f{bottom:819.603467pt;}
.yfa{bottom:819.987733pt;}
.y97{bottom:821.867067pt;}
.y68{bottom:821.909067pt;}
.yf{bottom:825.026000pt;}
.y41{bottom:830.290400pt;}
.y7{bottom:832.962000pt;}
.yb9{bottom:835.084933pt;}
.y12e{bottom:835.603467pt;}
.y71{bottom:839.651333pt;}
.ydc{bottom:840.817200pt;}
.yf9{bottom:842.654400pt;}
.ye{bottom:843.694667pt;}
.y96{bottom:844.533733pt;}
.y67{bottom:844.575733pt;}
.y12d{bottom:851.603467pt;}
.y40{bottom:852.956933pt;}
.y70{bottom:862.320867pt;}
.ydb{bottom:863.481000pt;}
.yf8{bottom:865.321067pt;}
.y1b{bottom:866.411733pt;}
.y66{bottom:867.242400pt;}
.y12c{bottom:867.603467pt;}
.y3f{bottom:875.623600pt;}
.y6{bottom:876.434000pt;}
.yb8{bottom:876.568533pt;}
.y6f{bottom:884.990400pt;}
.y95{bottom:884.990533pt;}
.yda{bottom:886.150533pt;}
.y65{bottom:889.897400pt;}
.y3e{bottom:898.290267pt;}
.y5{bottom:899.100667pt;}
.yb7{bottom:899.235200pt;}
.y6e{bottom:907.657067pt;}
.y94{bottom:907.657200pt;}
.yd9{bottom:908.814333pt;}
.y64{bottom:912.566933pt;}
.y3d{bottom:920.956933pt;}
.yb6{bottom:921.899000pt;}
.y93{bottom:930.321000pt;}
.y6d{bottom:930.323733pt;}
.yd8{bottom:931.483867pt;}
.y63{bottom:935.236467pt;}
.y4{bottom:941.602267pt;}
.y3c{bottom:943.623600pt;}
.yb5{bottom:944.568533pt;}
.y6c{bottom:952.990400pt;}
.y92{bottom:952.990533pt;}
.yd7{bottom:954.150533pt;}
.y115{bottom:966.287400pt;}
.y3b{bottom:966.290267pt;}
.yb4{bottom:967.235200pt;}
.y12b{bottom:971.864200pt;}
.y62{bottom:975.657067pt;}
.y91{bottom:975.657200pt;}
.yd6{bottom:976.817200pt;}
.y3a{bottom:988.956933pt;}
.yb3{bottom:989.901867pt;}
.y12a{bottom:994.533733pt;}
.y61{bottom:998.323733pt;}
.y90{bottom:998.323867pt;}
.y114{bottom:1019.082533pt;}
.y39{bottom:1019.791200pt;}
.yb2{bottom:1020.027333pt;}
.y60{bottom:1020.990400pt;}
.y8f{bottom:1020.990533pt;}
.y20{bottom:1058.616267pt;}
.he{height:29.822917pt;}
.h7{height:42.421333pt;}
.hd{height:42.604167pt;}
.h8{height:43.941333pt;}
.h5{height:44.521354pt;}
.hc{height:44.526688pt;}
.ha{height:44.532821pt;}
.hb{height:44.568021pt;}
.h6{height:49.514667pt;}
.h9{height:54.018327pt;}
.h4{height:65.272145pt;}
.h3{height:83.888000pt;}
.h2{height:148.550400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:26.602600pt;}
.x5{left:30.236267pt;}
.xc{left:45.954600pt;}
.xa{left:47.389600pt;}
.xb{left:50.355267pt;}
.xd{left:55.165933pt;}
.x10{left:58.527933pt;}
.x1{left:59.748800pt;}
.x3{left:61.898800pt;}
.x14{left:68.976400pt;}
.xf{left:74.558933pt;}
.x6{left:82.895600pt;}
.x8{left:85.068600pt;}
.x9{left:91.573933pt;}
.xe{left:94.143267pt;}
.x16{left:144.523067pt;}
.x12{left:151.748000pt;}
.x13{left:163.464533pt;}
.x15{left:176.616400pt;}
.x17{left:186.280267pt;}
.x4{left:194.834533pt;}
.x2{left:456.950800pt;}
.x11{left:464.762133pt;}
}




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