
    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_030b0e6cc1a6227e14a86825.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.078000;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_2a7ab41f9d1f0d788008eb1b.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_575f2c9206d9c528343f783c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.700000;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_d89b749d5e8ba84b5ff9f20b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c238cafb08e7d700d9c4c4ea.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_34d5cb64df1c804d9ad6d11c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.919000;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_e5e725bef7850e3cdb521b44.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_456b9b042d71b032be5d394c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_91925306d25d2b110bca0faf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.964844;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_9129721869ad08ea996d6593.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.028809;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_071db2061d2417a14d890705.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.025879;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;}
.m6c{transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245313,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245483,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245517,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245620,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245622,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245694,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245794,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245799,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245813,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245842,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246005,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246156,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246163,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246215,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246294,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246646,0.000000,0.000000,0.250000,0,0);}
.m72{transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246727,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246737,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246744,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246770,0.000000,0.000000,0.250000,0,0);}
.m79{transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246840,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246945,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247232,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247256,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247266,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247278,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247328,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247445,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247541,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247584,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247600,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247624,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247629,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247682,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247742,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247914,0.000000,0.000000,0.250000,0,0);}
.m50{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);}
.m77{transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248273,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248400,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248431,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248514,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248756,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249019,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249160,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249167,0.000000,0.000000,0.250000,0,0);}
.m75{transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249203,0.000000,0.000000,0.250000,0,0);}
.m73{transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249297,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249299,0.000000,0.000000,0.250000,0,0);}
.m6d{transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249438,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249526,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249598,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249653,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249754,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249775,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249861,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249883,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249983,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249983,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);}
.m39{transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250014,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250038,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250055,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250060,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250163,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250254,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250261,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250385,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250400,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250608,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250708,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250725,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250761,0.000000,0.000000,0.250000,0,0);}
.m76{transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250852,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);}
.m78{transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250928,0.000000,0.000000,0.250000,0,0);}
.m74{transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250971,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m15{transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250998,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251048,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251129,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251213,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251227,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251297,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251304,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.me{transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251385,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251474,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251727,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251816,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251957,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252045,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252184,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252249,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252268,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252297,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252522,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252581,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252715,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252792,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252811,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253132,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253335,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253390,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253395,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253423,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254014,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.254124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254124,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254234,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254624,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254632,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254758,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254763,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254823,0.000000,0.000000,0.250000,0,0);}
.m6a{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);}
.m55{transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254895,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254897,0.000000,0.000000,0.250000,0,0);}
.mb{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;}
.ls4{letter-spacing:0.062700px;}
.ls5{letter-spacing:0.125400px;}
.ls2{letter-spacing:0.188100px;}
.ls3{letter-spacing:0.250800px;}
.ls1{letter-spacing:0.313500px;}
.ls6{letter-spacing:1.379400px;}
.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;}
}
.ws10{word-spacing:-23.925000px;}
.ws3{word-spacing:-19.800000px;}
.ws48{word-spacing:-16.848000px;}
.ws47{word-spacing:-16.051200px;}
.ws3a{word-spacing:-15.612300px;}
.ws1{word-spacing:-15.600000px;}
.ws2f{word-spacing:-15.361500px;}
.ws52{word-spacing:-14.985300px;}
.ws37{word-spacing:-14.671800px;}
.ws54{word-spacing:-7.273200px;}
.ws12{word-spacing:-4.702500px;}
.ws40{word-spacing:-4.639800px;}
.ws30{word-spacing:-4.577100px;}
.ws19{word-spacing:-4.451700px;}
.ws35{word-spacing:-4.389000px;}
.ws23{word-spacing:-4.326300px;}
.ws21{word-spacing:-4.263600px;}
.ws16{word-spacing:-4.200900px;}
.ws45{word-spacing:-4.138200px;}
.ws41{word-spacing:-4.012800px;}
.ws25{word-spacing:-3.887400px;}
.ws1a{word-spacing:-3.824700px;}
.ws15{word-spacing:-3.636600px;}
.ws20{word-spacing:-3.511200px;}
.ws33{word-spacing:-3.385800px;}
.ws3d{word-spacing:-3.260400px;}
.ws46{word-spacing:-3.197700px;}
.ws18{word-spacing:-3.135000px;}
.ws13{word-spacing:-3.072300px;}
.ws32{word-spacing:-3.009600px;}
.ws1e{word-spacing:-2.884200px;}
.wse{word-spacing:-2.821500px;}
.ws24{word-spacing:-2.758800px;}
.ws27{word-spacing:-2.633400px;}
.ws3e{word-spacing:-2.570700px;}
.ws34{word-spacing:-2.508000px;}
.ws39{word-spacing:-2.445300px;}
.ws42{word-spacing:-2.382600px;}
.ws11{word-spacing:-2.319900px;}
.ws2c{word-spacing:-2.194500px;}
.ws9{word-spacing:-1.943700px;}
.ws60{word-spacing:-1.920000px;}
.ws3c{word-spacing:-1.881000px;}
.ws5f{word-spacing:-1.860000px;}
.ws1f{word-spacing:-1.818300px;}
.ws1d{word-spacing:-1.755600px;}
.ws36{word-spacing:-1.630200px;}
.ws3b{word-spacing:-1.567500px;}
.ws3f{word-spacing:-1.504800px;}
.ws17{word-spacing:-1.316700px;}
.ws2d{word-spacing:-1.254000px;}
.ws43{word-spacing:-1.191300px;}
.ws2e{word-spacing:-1.065900px;}
.ws22{word-spacing:-1.003200px;}
.ws26{word-spacing:-0.940500px;}
.ws2a{word-spacing:-0.815100px;}
.ws29{word-spacing:-0.752400px;}
.ws1b{word-spacing:-0.627000px;}
.ws44{word-spacing:-0.564300px;}
.ws2b{word-spacing:-0.501600px;}
.ws38{word-spacing:-0.313500px;}
.ws1c{word-spacing:-0.250800px;}
.ws31{word-spacing:-0.188100px;}
.ws28{word-spacing:-0.125400px;}
.ws2{word-spacing:-0.066000px;}
.ws14{word-spacing:-0.062700px;}
.ws0{word-spacing:0.000000px;}
.ws4d{word-spacing:1.003200px;}
.ws49{word-spacing:1.191300px;}
.ws8{word-spacing:1.442100px;}
.wsb{word-spacing:1.504800px;}
.ws5c{word-spacing:1.740000px;}
.ws61{word-spacing:1.860000px;}
.ws62{word-spacing:1.932000px;}
.wsa{word-spacing:2.006400px;}
.ws4{word-spacing:2.194500px;}
.ws6{word-spacing:2.382600px;}
.ws50{word-spacing:2.758800px;}
.ws59{word-spacing:3.009600px;}
.ws5{word-spacing:3.197700px;}
.ws63{word-spacing:3.822000px;}
.ws5e{word-spacing:4.380000px;}
.ws51{word-spacing:4.389000px;}
.ws7{word-spacing:4.514400px;}
.ws4b{word-spacing:4.577100px;}
.ws58{word-spacing:4.639800px;}
.ws53{word-spacing:5.016000px;}
.ws5b{word-spacing:5.517600px;}
.wsd{word-spacing:6.144600px;}
.wsc{word-spacing:6.332700px;}
.ws5d{word-spacing:7.320000px;}
.ws4a{word-spacing:7.837500px;}
.ws5a{word-spacing:9.530400px;}
.ws57{word-spacing:10.909800px;}
.wsf{word-spacing:12.665400px;}
.ws4c{word-spacing:13.919400px;}
.ws4e{word-spacing:28.465800px;}
.ws56{word-spacing:29.719800px;}
.ws4f{word-spacing:30.409500px;}
.ws55{word-spacing:38.184300px;}
._13{margin-left:-8.445300px;}
._2{margin-left:-6.960000px;}
._3{margin-left:-5.220000px;}
._1{margin-left:-3.497400px;}
._0{margin-left:-1.740000px;}
._4{width:1.313700px;}
._6{width:2.692800px;}
._f{width:3.912480px;}
._10{width:4.999140px;}
._15{width:6.520800px;}
._e{width:7.580430px;}
._14{width:9.216900px;}
._16{width:10.436490px;}
._11{width:11.480370px;}
._12{width:13.035330px;}
._c{width:31.995810px;}
._d{width:50.222700px;}
._a{width:475.794000px;}
._b{width:496.056000px;}
._8{width:504.702000px;}
._7{width:506.880000px;}
._9{width:508.134000px;}
._5{width:520.146000px;}
.fc4{color:rgb(246,174,45);}
.fc3{color:rgb(74,114,132);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(251,251,251);}
.fc0{color:rgb(245,174,38);}
.fs7{font-size:42.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:62.700000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:87.000000px;}
.fs1{font-size:126.000000px;}
.fs0{font-size:174.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:43.085100px;}
.ya3{bottom:44.210100px;}
.y10{bottom:45.211050px;}
.y12e{bottom:46.274100px;}
.y17c{bottom:91.891350px;}
.y17b{bottom:104.491350px;}
.y17a{bottom:117.091350px;}
.ya2{bottom:128.076900px;}
.y150{bottom:128.159550px;}
.y7d{bottom:129.006300px;}
.y58{bottom:129.606450px;}
.ybd{bottom:129.618150px;}
.ye7{bottom:130.226550px;}
.y12a{bottom:130.439100px;}
.y107{bottom:132.718650px;}
.y33{bottom:138.994050px;}
.y179{bottom:142.291350px;}
.ya1{bottom:153.576900px;}
.y14f{bottom:153.662325px;}
.y7c{bottom:154.506300px;}
.y178{bottom:154.891350px;}
.y57{bottom:155.106450px;}
.ybc{bottom:155.118150px;}
.ye6{bottom:155.726550px;}
.y129{bottom:155.939100px;}
.y106{bottom:158.218650px;}
.y32{bottom:164.494050px;}
.ya0{bottom:179.077800px;}
.y14e{bottom:179.165550px;}
.y7b{bottom:180.003075px;}
.y56{bottom:180.606450px;}
.ybb{bottom:180.618150px;}
.ye5{bottom:181.226550px;}
.y128{bottom:181.439100px;}
.y105{bottom:183.712200px;}
.y31{bottom:189.994050px;}
.y7a{bottom:205.506300px;}
.y55{bottom:206.098650px;}
.yba{bottom:206.118150px;}
.ye4{bottom:206.726550px;}
.y127{bottom:206.939100px;}
.y104{bottom:209.215425px;}
.y14d{bottom:213.559200px;}
.y30{bottom:215.494050px;}
.y9f{bottom:221.619750px;}
.y79{bottom:231.006300px;}
.y16e{bottom:231.092100px;}
.y54{bottom:231.601875px;}
.yb9{bottom:231.618300px;}
.ye3{bottom:232.226550px;}
.y126{bottom:232.439100px;}
.y103{bottom:234.718650px;}
.y14c{bottom:239.055975px;}
.y2f{bottom:240.990825px;}
.y9e{bottom:247.122975px;}
.y78{bottom:256.506300px;}
.y16d{bottom:256.595325px;}
.yb8{bottom:257.118300px;}
.y125{bottom:257.939100px;}
.y102{bottom:260.218650px;}
.y14b{bottom:264.559200px;}
.y2e{bottom:266.494050px;}
.y9d{bottom:272.626200px;}
.y53{bottom:278.360400px;}
.ye2{bottom:280.184550px;}
.y77{bottom:282.006300px;}
.y16c{bottom:282.098550px;}
.y124{bottom:283.439100px;}
.yc5{bottom:287.127300px;}
.y2d{bottom:291.994050px;}
.y9c{bottom:298.126200px;}
.y14a{bottom:301.624200px;}
.y52{bottom:303.860400px;}
.ye1{bottom:305.687775px;}
.y101{bottom:306.880725px;}
.y76{bottom:307.506300px;}
.y123{bottom:308.934600px;}
.y18{bottom:311.299050px;}
.y2c{bottom:317.494050px;}
.y16b{bottom:318.951150px;}
.y9b{bottom:323.626200px;}
.y149{bottom:327.124200px;}
.y51{bottom:329.360400px;}
.ye0{bottom:331.191000px;}
.y100{bottom:332.383950px;}
.y12b{bottom:338.948100px;}
.y2b{bottom:342.994050px;}
.y148{bottom:345.934200px;}
.y17{bottom:348.799050px;}
.y9a{bottom:349.126200px;}
.yb7{bottom:350.643750px;}
.y75{bottom:351.045450px;}
.y16a{bottom:354.063150px;}
.y50{bottom:354.860400px;}
.ydf{bottom:356.691000px;}
.yff{bottom:357.883950px;}
.y2a{bottom:368.490825px;}
.y16{bottom:369.799050px;}
.y147{bottom:371.434200px;}
.y99{bottom:374.619750px;}
.yb6{bottom:376.143750px;}
.y74{bottom:376.545450px;}
.y169{bottom:379.563150px;}
.y4f{bottom:380.357175px;}
.yde{bottom:382.191000px;}
.yfe{bottom:383.380725px;}
.y25{bottom:384.011325px;}
.y29{bottom:393.994050px;}
.y122{bottom:399.222600px;}
.y98{bottom:400.122975px;}
.yb5{bottom:401.643750px;}
.y73{bottom:402.045450px;}
.y146{bottom:404.415900px;}
.y168{bottom:405.059925px;}
.y4e{bottom:405.860400px;}
.y15{bottom:407.299050px;}
.ydd{bottom:407.691000px;}
.yfd{bottom:408.883950px;}
.y24{bottom:409.514550px;}
.y121{bottom:424.722600px;}
.y97{bottom:425.626200px;}
.yb4{bottom:427.143750px;}
.y72{bottom:427.545450px;}
.y28{bottom:427.619400px;}
.y145{bottom:429.919125px;}
.y167{bottom:430.563150px;}
.y4d{bottom:431.360400px;}
.ydc{bottom:433.191000px;}
.yfc{bottom:434.383950px;}
.y14{bottom:444.799050px;}
.y3{bottom:447.405750px;}
.y120{bottom:450.222600px;}
.y96{bottom:451.126200px;}
.yb3{bottom:452.640525px;}
.y71{bottom:453.045450px;}
.y144{bottom:455.422350px;}
.y23{bottom:458.028675px;}
.ydb{bottom:458.691000px;}
.yfb{bottom:459.891000px;}
.y166{bottom:466.016625px;}
.y11f{bottom:475.722600px;}
.y95{bottom:476.626200px;}
.yb2{bottom:478.143750px;}
.y4c{bottom:478.288275px;}
.y70{bottom:478.545450px;}
.y143{bottom:480.922350px;}
.y13{bottom:482.299050px;}
.y22{bottom:483.531900px;}
.yda{bottom:484.191000px;}
.y108{bottom:489.892950px;}
.y165{bottom:491.519850px;}
.y11e{bottom:501.222600px;}
.y12{bottom:503.299050px;}
.yb1{bottom:503.643750px;}
.y4b{bottom:503.791500px;}
.y6f{bottom:504.045450px;}
.y21{bottom:509.035125px;}
.yd9{bottom:509.691000px;}
.y142{bottom:516.145800px;}
.y164{bottom:517.019850px;}
.y94{bottom:523.547475px;}
.y11{bottom:524.299050px;}
.y11d{bottom:526.719375px;}
.y4a{bottom:529.291500px;}
.y6e{bottom:529.545450px;}
.yd8{bottom:535.191000px;}
.y141{bottom:541.632975px;}
.yb0{bottom:547.539450px;}
.y93{bottom:549.050700px;}
.y19{bottom:549.516300px;}
.y11c{bottom:552.222600px;}
.y163{bottom:552.476550px;}
.y49{bottom:554.791500px;}
.y6d{bottom:555.045450px;}
.yfa{bottom:557.295450px;}
.y20{bottom:558.662175px;}
.yd7{bottom:560.692875px;}
.yaf{bottom:573.039450px;}
.y92{bottom:574.553925px;}
.y140{bottom:577.450350px;}
.y11b{bottom:577.722600px;}
.y162{bottom:577.973325px;}
.y48{bottom:580.284300px;}
.y6c{bottom:580.545450px;}
.yf9{bottom:582.795450px;}
.y1f{bottom:584.165400px;}
.y2{bottom:590.667300px;}
.yae{bottom:598.539450px;}
.y91{bottom:600.057150px;}
.y13f{bottom:602.953575px;}
.y11a{bottom:603.222600px;}
.y161{bottom:603.476550px;}
.yd6{bottom:604.191000px;}
.y47{bottom:605.787525px;}
.y6b{bottom:606.045450px;}
.yf8{bottom:608.295450px;}
.yad{bottom:624.039450px;}
.y90{bottom:625.557150px;}
.y13e{bottom:628.456800px;}
.y119{bottom:628.715475px;}
.yd5{bottom:629.691000px;}
.y46{bottom:631.290750px;}
.y1e{bottom:631.395225px;}
.yf7{bottom:633.795450px;}
.y160{bottom:640.533000px;}
.y1{bottom:643.171800px;}
.yac{bottom:649.517325px;}
.y8f{bottom:651.057075px;}
.y6a{bottom:651.710550px;}
.yd4{bottom:655.191000px;}
.y1d{bottom:656.898450px;}
.yf6{bottom:659.295450px;}
.y13d{bottom:663.898275px;}
.y15f{bottom:666.036225px;}
.y118{bottom:674.502150px;}
.y45{bottom:675.180750px;}
.y8e{bottom:676.560300px;}
.y69{bottom:677.210550px;}
.yd3{bottom:680.691000px;}
.y1c{bottom:682.395225px;}
.yf5{bottom:684.798150px;}
.yc4{bottom:685.439100px;}
.y13c{bottom:689.401500px;}
.y15e{bottom:691.539450px;}
.y117{bottom:700.002150px;}
.y44{bottom:700.683975px;}
.y68{bottom:702.710550px;}
.yd2{bottom:706.191000px;}
.y1b{bottom:707.898450px;}
.yc3{bottom:710.939100px;}
.y15d{bottom:717.039450px;}
.yef{bottom:718.769700px;}
.y8d{bottom:722.895600px;}
.y13b{bottom:724.858350px;}
.y116{bottom:725.502150px;}
.y43{bottom:726.187200px;}
.y67{bottom:728.210550px;}
.yd1{bottom:731.691000px;}
.y4{bottom:732.291750px;}
.y1a{bottom:733.398450px;}
.yc2{bottom:736.439100px;}
.yee{bottom:744.269700px;}
.y8c{bottom:748.395600px;}
.y13a{bottom:750.355125px;}
.y115{bottom:751.002150px;}
.y42{bottom:751.687200px;}
.y15c{bottom:752.150475px;}
.y66{bottom:753.710550px;}
.yd0{bottom:757.187775px;}
.yed{bottom:769.766475px;}
.y177{bottom:770.073900px;}
.yab{bottom:773.381175px;}
.y8b{bottom:773.895600px;}
.y139{bottom:775.858350px;}
.y114{bottom:776.502000px;}
.y41{bottom:777.187200px;}
.y15b{bottom:777.653700px;}
.y65{bottom:779.210550px;}
.yf{bottom:780.839475px;}
.ycf{bottom:782.691000px;}
.y176{bottom:788.073900px;}
.yec{bottom:795.269700px;}
.yaa{bottom:798.884400px;}
.y8a{bottom:799.395600px;}
.y113{bottom:802.002000px;}
.y15a{bottom:803.150475px;}
.y64{bottom:804.710550px;}
.y175{bottom:806.073900px;}
.ye{bottom:806.342700px;}
.yce{bottom:808.191000px;}
.y138{bottom:811.293750px;}
.yeb{bottom:820.769700px;}
.y40{bottom:822.659550px;}
.y174{bottom:824.073900px;}
.ya9{bottom:824.387625px;}
.y89{bottom:824.895600px;}
.y112{bottom:827.502000px;}
.y159{bottom:828.653700px;}
.y63{bottom:830.210550px;}
.yd{bottom:831.841200px;}
.y137{bottom:836.796975px;}
.ye8{bottom:838.200000px;}
.y3f{bottom:848.156325px;}
.y88{bottom:850.395600px;}
.y62{bottom:855.710550px;}
.yf4{bottom:858.461475px;}
.yc1{bottom:862.344000px;}
.y158{bottom:864.107025px;}
.y3e{bottom:873.659550px;}
.y136{bottom:874.025100px;}
.y111{bottom:874.453575px;}
.y87{bottom:875.895600px;}
.yc{bottom:879.712650px;}
.y61{bottom:881.207325px;}
.yf3{bottom:883.964700px;}
.yc0{bottom:887.847225px;}
.y157{bottom:889.610250px;}
.ycd{bottom:898.096650px;}
.y3d{bottom:899.159550px;}
.y135{bottom:899.528325px;}
.y110{bottom:899.956800px;}
.y86{bottom:901.395600px;}
.y173{bottom:904.053900px;}
.yb{bottom:905.206425px;}
.y60{bottom:906.710550px;}
.yf2{bottom:909.464700px;}
.ybf{bottom:913.350450px;}
.y156{bottom:915.110250px;}
.y172{bottom:922.053900px;}
.ycc{bottom:923.596500px;}
.y3c{bottom:924.653100px;}
.y134{bottom:925.031550px;}
.y10f{bottom:925.456800px;}
.ya{bottom:930.709650px;}
.y85{bottom:933.958050px;}
.yf1{bottom:934.964700px;}
.ybe{bottom:938.850450px;}
.y5f{bottom:939.272850px;}
.y171{bottom:940.053900px;}
.ycb{bottom:949.096500px;}
.y3b{bottom:950.156325px;}
.y155{bottom:950.563875px;}
.y10e{bottom:950.956800px;}
.y9{bottom:956.212875px;}
.y170{bottom:958.053900px;}
.yf0{bottom:960.462525px;}
.y133{bottom:960.481800px;}
.yca{bottom:974.596500px;}
.y3a{bottom:975.659550px;}
.ya8{bottom:975.729750px;}
.y16f{bottom:976.053900px;}
.y154{bottom:976.067100px;}
.y10d{bottom:976.450350px;}
.y132{bottom:985.985025px;}
.y5e{bottom:995.614200px;}
.y84{bottom:995.614350px;}
.yc9{bottom:1000.090050px;}
.y12d{bottom:1000.096500px;}
.y39{bottom:1001.159550px;}
.ya7{bottom:1001.232975px;}
.y153{bottom:1001.567100px;}
.y10c{bottom:1001.953575px;}
.y8{bottom:1005.118875px;}
.y131{bottom:1011.488250px;}
.yea{bottom:1021.110975px;}
.y5d{bottom:1021.114200px;}
.y83{bottom:1021.114350px;}
.yc8{bottom:1025.593275px;}
.y12c{bottom:1025.596500px;}
.y38{bottom:1026.659550px;}
.ya6{bottom:1026.736200px;}
.y10b{bottom:1027.456800px;}
.y7{bottom:1030.622100px;}
.y152{bottom:1037.008575px;}
.y130{bottom:1046.607750px;}
.y5c{bottom:1046.610975px;}
.ye9{bottom:1046.614200px;}
.y82{bottom:1046.614350px;}
.yc7{bottom:1051.096500px;}
.y37{bottom:1052.159550px;}
.ya5{bottom:1052.236200px;}
.y10a{bottom:1052.956800px;}
.y151{bottom:1062.511800px;}
.y81{bottom:1072.107900px;}
.y12f{bottom:1072.110975px;}
.y5b{bottom:1072.114200px;}
.yc6{bottom:1076.596500px;}
.y36{bottom:1077.653475px;}
.y6{bottom:1078.436250px;}
.y109{bottom:1078.456800px;}
.y80{bottom:1097.611125px;}
.y5a{bottom:1097.614200px;}
.ya4{bottom:1097.614350px;}
.y35{bottom:1123.110975px;}
.y59{bottom:1123.114200px;}
.y7f{bottom:1123.114350px;}
.y34{bottom:1148.614200px;}
.y7e{bottom:1148.614350px;}
.y5{bottom:1151.953500px;}
.y26{bottom:1190.943300px;}
.h18{height:33.550781px;}
.ha{height:44.220000px;}
.h17{height:47.929688px;}
.hb{height:49.434000px;}
.h6{height:50.086523px;}
.h12{height:50.086823px;}
.h8{height:50.092523px;}
.hc{height:50.099423px;}
.he{height:50.110823px;}
.h7{height:50.111423px;}
.hf{height:50.112323px;}
.h11{height:50.115323px;}
.h4{height:50.400000px;}
.h10{height:50.943750px;}
.h14{height:50.956650px;}
.h13{height:51.770361px;}
.h9{height:55.704000px;}
.h16{height:58.500000px;}
.h15{height:58.512900px;}
.hd{height:61.056000px;}
.h5{height:73.776000px;}
.h3{height:94.374000px;}
.h2{height:147.552000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:32.952750px;}
.x7{left:34.015800px;}
.x8{left:39.841050px;}
.xa{left:52.936050px;}
.x2{left:65.096400px;}
.xb{left:66.166050px;}
.xf{left:68.161050px;}
.x4{left:69.636600px;}
.xe{left:73.126050px;}
.xd{left:77.716050px;}
.xc{left:85.291050px;}
.x1{left:89.630400px;}
.x9{left:103.921050px;}
.x15{left:162.588450px;}
.x5{left:170.078700px;}
.x14{left:198.693450px;}
.x16{left:209.565300px;}
.x6{left:219.188850px;}
.x12{left:258.658125px;}
.x11{left:260.787450px;}
.x10{left:538.012800px;}
.x3{left:576.062100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.055733pt;}
.ls5{letter-spacing:0.111467pt;}
.ls2{letter-spacing:0.167200pt;}
.ls3{letter-spacing:0.222933pt;}
.ls1{letter-spacing:0.278667pt;}
.ls6{letter-spacing:1.226133pt;}
.ws10{word-spacing:-21.266667pt;}
.ws3{word-spacing:-17.600000pt;}
.ws48{word-spacing:-14.976000pt;}
.ws47{word-spacing:-14.267733pt;}
.ws3a{word-spacing:-13.877600pt;}
.ws1{word-spacing:-13.866667pt;}
.ws2f{word-spacing:-13.654667pt;}
.ws52{word-spacing:-13.320267pt;}
.ws37{word-spacing:-13.041600pt;}
.ws54{word-spacing:-6.465067pt;}
.ws12{word-spacing:-4.180000pt;}
.ws40{word-spacing:-4.124267pt;}
.ws30{word-spacing:-4.068533pt;}
.ws19{word-spacing:-3.957067pt;}
.ws35{word-spacing:-3.901333pt;}
.ws23{word-spacing:-3.845600pt;}
.ws21{word-spacing:-3.789867pt;}
.ws16{word-spacing:-3.734133pt;}
.ws45{word-spacing:-3.678400pt;}
.ws41{word-spacing:-3.566933pt;}
.ws25{word-spacing:-3.455467pt;}
.ws1a{word-spacing:-3.399733pt;}
.ws15{word-spacing:-3.232533pt;}
.ws20{word-spacing:-3.121067pt;}
.ws33{word-spacing:-3.009600pt;}
.ws3d{word-spacing:-2.898133pt;}
.ws46{word-spacing:-2.842400pt;}
.ws18{word-spacing:-2.786667pt;}
.ws13{word-spacing:-2.730933pt;}
.ws32{word-spacing:-2.675200pt;}
.ws1e{word-spacing:-2.563733pt;}
.wse{word-spacing:-2.508000pt;}
.ws24{word-spacing:-2.452267pt;}
.ws27{word-spacing:-2.340800pt;}
.ws3e{word-spacing:-2.285067pt;}
.ws34{word-spacing:-2.229333pt;}
.ws39{word-spacing:-2.173600pt;}
.ws42{word-spacing:-2.117867pt;}
.ws11{word-spacing:-2.062133pt;}
.ws2c{word-spacing:-1.950667pt;}
.ws9{word-spacing:-1.727733pt;}
.ws60{word-spacing:-1.706667pt;}
.ws3c{word-spacing:-1.672000pt;}
.ws5f{word-spacing:-1.653333pt;}
.ws1f{word-spacing:-1.616267pt;}
.ws1d{word-spacing:-1.560533pt;}
.ws36{word-spacing:-1.449067pt;}
.ws3b{word-spacing:-1.393333pt;}
.ws3f{word-spacing:-1.337600pt;}
.ws17{word-spacing:-1.170400pt;}
.ws2d{word-spacing:-1.114667pt;}
.ws43{word-spacing:-1.058933pt;}
.ws2e{word-spacing:-0.947467pt;}
.ws22{word-spacing:-0.891733pt;}
.ws26{word-spacing:-0.836000pt;}
.ws2a{word-spacing:-0.724533pt;}
.ws29{word-spacing:-0.668800pt;}
.ws1b{word-spacing:-0.557333pt;}
.ws44{word-spacing:-0.501600pt;}
.ws2b{word-spacing:-0.445867pt;}
.ws38{word-spacing:-0.278667pt;}
.ws1c{word-spacing:-0.222933pt;}
.ws31{word-spacing:-0.167200pt;}
.ws28{word-spacing:-0.111467pt;}
.ws2{word-spacing:-0.058667pt;}
.ws14{word-spacing:-0.055733pt;}
.ws0{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.891733pt;}
.ws49{word-spacing:1.058933pt;}
.ws8{word-spacing:1.281867pt;}
.wsb{word-spacing:1.337600pt;}
.ws5c{word-spacing:1.546667pt;}
.ws61{word-spacing:1.653333pt;}
.ws62{word-spacing:1.717333pt;}
.wsa{word-spacing:1.783467pt;}
.ws4{word-spacing:1.950667pt;}
.ws6{word-spacing:2.117867pt;}
.ws50{word-spacing:2.452267pt;}
.ws59{word-spacing:2.675200pt;}
.ws5{word-spacing:2.842400pt;}
.ws63{word-spacing:3.397333pt;}
.ws5e{word-spacing:3.893333pt;}
.ws51{word-spacing:3.901333pt;}
.ws7{word-spacing:4.012800pt;}
.ws4b{word-spacing:4.068533pt;}
.ws58{word-spacing:4.124267pt;}
.ws53{word-spacing:4.458667pt;}
.ws5b{word-spacing:4.904533pt;}
.wsd{word-spacing:5.461867pt;}
.wsc{word-spacing:5.629067pt;}
.ws5d{word-spacing:6.506667pt;}
.ws4a{word-spacing:6.966667pt;}
.ws5a{word-spacing:8.471467pt;}
.ws57{word-spacing:9.697600pt;}
.wsf{word-spacing:11.258133pt;}
.ws4c{word-spacing:12.372800pt;}
.ws4e{word-spacing:25.302933pt;}
.ws56{word-spacing:26.417600pt;}
.ws4f{word-spacing:27.030667pt;}
.ws55{word-spacing:33.941600pt;}
._13{margin-left:-7.506933pt;}
._2{margin-left:-6.186667pt;}
._3{margin-left:-4.640000pt;}
._1{margin-left:-3.108800pt;}
._0{margin-left:-1.546667pt;}
._4{width:1.167733pt;}
._6{width:2.393600pt;}
._f{width:3.477760pt;}
._10{width:4.443680pt;}
._15{width:5.796267pt;}
._e{width:6.738160pt;}
._14{width:8.192800pt;}
._16{width:9.276880pt;}
._11{width:10.204773pt;}
._12{width:11.586960pt;}
._c{width:28.440720pt;}
._d{width:44.642400pt;}
._a{width:422.928000pt;}
._b{width:440.938667pt;}
._8{width:448.624000pt;}
._7{width:450.560000pt;}
._9{width:451.674667pt;}
._5{width:462.352000pt;}
.fs7{font-size:37.333333pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:55.733333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:77.333333pt;}
.fs1{font-size:112.000000pt;}
.fs0{font-size:154.666667pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:38.297867pt;}
.ya3{bottom:39.297867pt;}
.y10{bottom:40.187600pt;}
.y12e{bottom:41.132533pt;}
.y17c{bottom:81.681200pt;}
.y17b{bottom:92.881200pt;}
.y17a{bottom:104.081200pt;}
.ya2{bottom:113.846133pt;}
.y150{bottom:113.919600pt;}
.y7d{bottom:114.672267pt;}
.y58{bottom:115.205733pt;}
.ybd{bottom:115.216133pt;}
.ye7{bottom:115.756933pt;}
.y12a{bottom:115.945867pt;}
.y107{bottom:117.972133pt;}
.y33{bottom:123.550267pt;}
.y179{bottom:126.481200pt;}
.ya1{bottom:136.512800pt;}
.y14f{bottom:136.588733pt;}
.y7c{bottom:137.338933pt;}
.y178{bottom:137.681200pt;}
.y57{bottom:137.872400pt;}
.ybc{bottom:137.882800pt;}
.ye6{bottom:138.423600pt;}
.y129{bottom:138.612533pt;}
.y106{bottom:140.638800pt;}
.y32{bottom:146.216933pt;}
.ya0{bottom:159.180267pt;}
.y14e{bottom:159.258267pt;}
.y7b{bottom:160.002733pt;}
.y56{bottom:160.539067pt;}
.ybb{bottom:160.549467pt;}
.ye5{bottom:161.090267pt;}
.y128{bottom:161.279200pt;}
.y105{bottom:163.299733pt;}
.y31{bottom:168.883600pt;}
.y7a{bottom:182.672267pt;}
.y55{bottom:183.198800pt;}
.yba{bottom:183.216133pt;}
.ye4{bottom:183.756933pt;}
.y127{bottom:183.945867pt;}
.y104{bottom:185.969267pt;}
.y14d{bottom:189.830400pt;}
.y30{bottom:191.550267pt;}
.y9f{bottom:196.995333pt;}
.y79{bottom:205.338933pt;}
.y16e{bottom:205.415200pt;}
.y54{bottom:205.868333pt;}
.yb9{bottom:205.882933pt;}
.ye3{bottom:206.423600pt;}
.y126{bottom:206.612533pt;}
.y103{bottom:208.638800pt;}
.y14c{bottom:212.494200pt;}
.y2f{bottom:214.214067pt;}
.y9e{bottom:219.664867pt;}
.y78{bottom:228.005600pt;}
.y16d{bottom:228.084733pt;}
.yb8{bottom:228.549600pt;}
.y125{bottom:229.279200pt;}
.y102{bottom:231.305467pt;}
.y14b{bottom:235.163733pt;}
.y2e{bottom:236.883600pt;}
.y9d{bottom:242.334400pt;}
.y53{bottom:247.431467pt;}
.ye2{bottom:249.052933pt;}
.y77{bottom:250.672267pt;}
.y16c{bottom:250.754267pt;}
.y124{bottom:251.945867pt;}
.yc5{bottom:255.224267pt;}
.y2d{bottom:259.550267pt;}
.y9c{bottom:265.001067pt;}
.y14a{bottom:268.110400pt;}
.y52{bottom:270.098133pt;}
.ye1{bottom:271.722467pt;}
.y101{bottom:272.782867pt;}
.y76{bottom:273.338933pt;}
.y123{bottom:274.608533pt;}
.y18{bottom:276.710267pt;}
.y2c{bottom:282.216933pt;}
.y16b{bottom:283.512133pt;}
.y9b{bottom:287.667733pt;}
.y149{bottom:290.777067pt;}
.y51{bottom:292.764800pt;}
.ye0{bottom:294.392000pt;}
.y100{bottom:295.452400pt;}
.y12b{bottom:301.287200pt;}
.y2b{bottom:304.883600pt;}
.y148{bottom:307.497067pt;}
.y17{bottom:310.043600pt;}
.y9a{bottom:310.334400pt;}
.yb7{bottom:311.683333pt;}
.y75{bottom:312.040400pt;}
.y16a{bottom:314.722800pt;}
.y50{bottom:315.431467pt;}
.ydf{bottom:317.058667pt;}
.yff{bottom:318.119067pt;}
.y2a{bottom:327.547400pt;}
.y16{bottom:328.710267pt;}
.y147{bottom:330.163733pt;}
.y99{bottom:332.995333pt;}
.yb6{bottom:334.350000pt;}
.y74{bottom:334.707067pt;}
.y169{bottom:337.389467pt;}
.y4f{bottom:338.095267pt;}
.yde{bottom:339.725333pt;}
.yfe{bottom:340.782867pt;}
.y25{bottom:341.343400pt;}
.y29{bottom:350.216933pt;}
.y122{bottom:354.864533pt;}
.y98{bottom:355.664867pt;}
.yb5{bottom:357.016667pt;}
.y73{bottom:357.373733pt;}
.y146{bottom:359.480800pt;}
.y168{bottom:360.053267pt;}
.y4e{bottom:360.764800pt;}
.y15{bottom:362.043600pt;}
.ydd{bottom:362.392000pt;}
.yfd{bottom:363.452400pt;}
.y24{bottom:364.012933pt;}
.y121{bottom:377.531200pt;}
.y97{bottom:378.334400pt;}
.yb4{bottom:379.683333pt;}
.y72{bottom:380.040400pt;}
.y28{bottom:380.106133pt;}
.y145{bottom:382.150333pt;}
.y167{bottom:382.722800pt;}
.y4d{bottom:383.431467pt;}
.ydc{bottom:385.058667pt;}
.yfc{bottom:386.119067pt;}
.y14{bottom:395.376933pt;}
.y3{bottom:397.694000pt;}
.y120{bottom:400.197867pt;}
.y96{bottom:401.001067pt;}
.yb3{bottom:402.347133pt;}
.y71{bottom:402.707067pt;}
.y144{bottom:404.819867pt;}
.y23{bottom:407.136600pt;}
.ydb{bottom:407.725333pt;}
.yfb{bottom:408.792000pt;}
.y166{bottom:414.237000pt;}
.y11f{bottom:422.864533pt;}
.y95{bottom:423.667733pt;}
.yb2{bottom:425.016667pt;}
.y4c{bottom:425.145133pt;}
.y70{bottom:425.373733pt;}
.y143{bottom:427.486533pt;}
.y13{bottom:428.710267pt;}
.y22{bottom:429.806133pt;}
.yda{bottom:430.392000pt;}
.y108{bottom:435.460400pt;}
.y165{bottom:436.906533pt;}
.y11e{bottom:445.531200pt;}
.y12{bottom:447.376933pt;}
.yb1{bottom:447.683333pt;}
.y4b{bottom:447.814667pt;}
.y6f{bottom:448.040400pt;}
.y21{bottom:452.475667pt;}
.yd9{bottom:453.058667pt;}
.y142{bottom:458.796267pt;}
.y164{bottom:459.573200pt;}
.y94{bottom:465.375533pt;}
.y11{bottom:466.043600pt;}
.y11d{bottom:468.195000pt;}
.y4a{bottom:470.481333pt;}
.y6e{bottom:470.707067pt;}
.yd8{bottom:475.725333pt;}
.y141{bottom:481.451533pt;}
.yb0{bottom:486.701733pt;}
.y93{bottom:488.045067pt;}
.y19{bottom:488.458933pt;}
.y11c{bottom:490.864533pt;}
.y163{bottom:491.090267pt;}
.y49{bottom:493.148000pt;}
.y6d{bottom:493.373733pt;}
.yfa{bottom:495.373733pt;}
.y20{bottom:496.588600pt;}
.yd7{bottom:498.393667pt;}
.yaf{bottom:509.368400pt;}
.y92{bottom:510.714600pt;}
.y140{bottom:513.289200pt;}
.y11b{bottom:513.531200pt;}
.y162{bottom:513.754067pt;}
.y48{bottom:515.808267pt;}
.y6c{bottom:516.040400pt;}
.yf9{bottom:518.040400pt;}
.y1f{bottom:519.258133pt;}
.y2{bottom:525.037600pt;}
.yae{bottom:532.035067pt;}
.y91{bottom:533.384133pt;}
.y13f{bottom:535.958733pt;}
.y11a{bottom:536.197867pt;}
.y161{bottom:536.423600pt;}
.yd6{bottom:537.058667pt;}
.y47{bottom:538.477800pt;}
.y6b{bottom:538.707067pt;}
.yf8{bottom:540.707067pt;}
.yad{bottom:554.701733pt;}
.y90{bottom:556.050800pt;}
.y13e{bottom:558.628267pt;}
.y119{bottom:558.858200pt;}
.yd5{bottom:559.725333pt;}
.y46{bottom:561.147333pt;}
.y1e{bottom:561.240200pt;}
.yf7{bottom:563.373733pt;}
.y160{bottom:569.362667pt;}
.y1{bottom:571.708267pt;}
.yac{bottom:577.348733pt;}
.y8f{bottom:578.717400pt;}
.y6a{bottom:579.298267pt;}
.yd4{bottom:582.392000pt;}
.y1d{bottom:583.909733pt;}
.yf6{bottom:586.040400pt;}
.y13d{bottom:590.131800pt;}
.y15f{bottom:592.032200pt;}
.y118{bottom:599.557467pt;}
.y45{bottom:600.160667pt;}
.y8e{bottom:601.386933pt;}
.y69{bottom:601.964933pt;}
.yd3{bottom:605.058667pt;}
.y1c{bottom:606.573533pt;}
.yf5{bottom:608.709467pt;}
.yc4{bottom:609.279200pt;}
.y13c{bottom:612.801333pt;}
.y15e{bottom:614.701733pt;}
.y117{bottom:622.224133pt;}
.y44{bottom:622.830200pt;}
.y68{bottom:624.631600pt;}
.yd2{bottom:627.725333pt;}
.y1b{bottom:629.243067pt;}
.yc3{bottom:631.945867pt;}
.y15d{bottom:637.368400pt;}
.yef{bottom:638.906400pt;}
.y8d{bottom:642.573867pt;}
.y13b{bottom:644.318533pt;}
.y116{bottom:644.890800pt;}
.y43{bottom:645.499733pt;}
.y67{bottom:647.298267pt;}
.yd1{bottom:650.392000pt;}
.y4{bottom:650.926000pt;}
.y1a{bottom:651.909733pt;}
.yc2{bottom:654.612533pt;}
.yee{bottom:661.573067pt;}
.y8c{bottom:665.240533pt;}
.y13a{bottom:666.982333pt;}
.y115{bottom:667.557467pt;}
.y42{bottom:668.166400pt;}
.y15c{bottom:668.578200pt;}
.y66{bottom:669.964933pt;}
.yd0{bottom:673.055800pt;}
.yed{bottom:684.236867pt;}
.y177{bottom:684.510133pt;}
.yab{bottom:687.449933pt;}
.y8b{bottom:687.907200pt;}
.y139{bottom:689.651867pt;}
.y114{bottom:690.224000pt;}
.y41{bottom:690.833067pt;}
.y15b{bottom:691.247733pt;}
.y65{bottom:692.631600pt;}
.yf{bottom:694.079533pt;}
.ycf{bottom:695.725333pt;}
.y176{bottom:700.510133pt;}
.yec{bottom:706.906400pt;}
.yaa{bottom:710.119467pt;}
.y8a{bottom:710.573867pt;}
.y113{bottom:712.890667pt;}
.y15a{bottom:713.911533pt;}
.y64{bottom:715.298267pt;}
.y175{bottom:716.510133pt;}
.ye{bottom:716.749067pt;}
.yce{bottom:718.392000pt;}
.y138{bottom:721.150000pt;}
.yeb{bottom:729.573067pt;}
.y40{bottom:731.252933pt;}
.y174{bottom:732.510133pt;}
.ya9{bottom:732.789000pt;}
.y89{bottom:733.240533pt;}
.y112{bottom:735.557333pt;}
.y159{bottom:736.581067pt;}
.y63{bottom:737.964933pt;}
.yd{bottom:739.414400pt;}
.y137{bottom:743.819533pt;}
.ye8{bottom:745.066667pt;}
.y3f{bottom:753.916733pt;}
.y88{bottom:755.907200pt;}
.y62{bottom:760.631600pt;}
.yf4{bottom:763.076867pt;}
.yc1{bottom:766.528000pt;}
.y158{bottom:768.095133pt;}
.y3e{bottom:776.586267pt;}
.y136{bottom:776.911200pt;}
.y111{bottom:777.292067pt;}
.y87{bottom:778.573867pt;}
.yc{bottom:781.966800pt;}
.y61{bottom:783.295400pt;}
.yf3{bottom:785.746400pt;}
.yc0{bottom:789.197533pt;}
.y157{bottom:790.764667pt;}
.ycd{bottom:798.308133pt;}
.y3d{bottom:799.252933pt;}
.y135{bottom:799.580733pt;}
.y110{bottom:799.961600pt;}
.y86{bottom:801.240533pt;}
.y173{bottom:803.603467pt;}
.yb{bottom:804.627933pt;}
.y60{bottom:805.964933pt;}
.yf2{bottom:808.413067pt;}
.ybf{bottom:811.867067pt;}
.y156{bottom:813.431333pt;}
.y172{bottom:819.603467pt;}
.ycc{bottom:820.974667pt;}
.y3c{bottom:821.913867pt;}
.y134{bottom:822.250267pt;}
.y10f{bottom:822.628267pt;}
.ya{bottom:827.297467pt;}
.y85{bottom:830.184933pt;}
.yf1{bottom:831.079733pt;}
.ybe{bottom:834.533733pt;}
.y5f{bottom:834.909200pt;}
.y171{bottom:835.603467pt;}
.ycb{bottom:843.641333pt;}
.y3b{bottom:844.583400pt;}
.y155{bottom:844.945667pt;}
.y10e{bottom:845.294933pt;}
.y9{bottom:849.967000pt;}
.y170{bottom:851.603467pt;}
.yf0{bottom:853.744467pt;}
.y133{bottom:853.761600pt;}
.yca{bottom:866.308000pt;}
.y3a{bottom:867.252933pt;}
.ya8{bottom:867.315333pt;}
.y16f{bottom:867.603467pt;}
.y154{bottom:867.615200pt;}
.y10d{bottom:867.955867pt;}
.y132{bottom:876.431133pt;}
.y5e{bottom:884.990400pt;}
.y84{bottom:884.990533pt;}
.yc9{bottom:888.968933pt;}
.y12d{bottom:888.974667pt;}
.y39{bottom:889.919600pt;}
.ya7{bottom:889.984867pt;}
.y153{bottom:890.281867pt;}
.y10c{bottom:890.625400pt;}
.y8{bottom:893.439000pt;}
.y131{bottom:899.100667pt;}
.yea{bottom:907.654200pt;}
.y5d{bottom:907.657067pt;}
.y83{bottom:907.657200pt;}
.yc8{bottom:911.638467pt;}
.y12c{bottom:911.641333pt;}
.y38{bottom:912.586267pt;}
.ya6{bottom:912.654400pt;}
.y10b{bottom:913.294933pt;}
.y7{bottom:916.108533pt;}
.y152{bottom:921.785400pt;}
.y130{bottom:930.318000pt;}
.y5c{bottom:930.320867pt;}
.ye9{bottom:930.323733pt;}
.y82{bottom:930.323867pt;}
.yc7{bottom:934.308000pt;}
.y37{bottom:935.252933pt;}
.ya5{bottom:935.321067pt;}
.y10a{bottom:935.961600pt;}
.y151{bottom:944.454933pt;}
.y81{bottom:952.984800pt;}
.y12f{bottom:952.987533pt;}
.y5b{bottom:952.990400pt;}
.yc6{bottom:956.974667pt;}
.y36{bottom:957.914200pt;}
.y6{bottom:958.610000pt;}
.y109{bottom:958.628267pt;}
.y80{bottom:975.654333pt;}
.y5a{bottom:975.657067pt;}
.ya4{bottom:975.657200pt;}
.y35{bottom:998.320867pt;}
.y59{bottom:998.323733pt;}
.y7f{bottom:998.323867pt;}
.y34{bottom:1020.990400pt;}
.y7e{bottom:1020.990533pt;}
.y5{bottom:1023.958667pt;}
.y26{bottom:1058.616267pt;}
.h18{height:29.822917pt;}
.ha{height:39.306667pt;}
.h17{height:42.604167pt;}
.hb{height:43.941333pt;}
.h6{height:44.521354pt;}
.h12{height:44.521621pt;}
.h8{height:44.526687pt;}
.hc{height:44.532821pt;}
.he{height:44.542954pt;}
.h7{height:44.543487pt;}
.hf{height:44.544287pt;}
.h11{height:44.546954pt;}
.h4{height:44.800000pt;}
.h10{height:45.283333pt;}
.h14{height:45.294800pt;}
.h13{height:46.018099pt;}
.h9{height:49.514667pt;}
.h16{height:52.000000pt;}
.h15{height:52.011467pt;}
.hd{height:54.272000pt;}
.h5{height:65.578667pt;}
.h3{height:83.888000pt;}
.h2{height:131.157333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:29.291333pt;}
.x7{left:30.236267pt;}
.x8{left:35.414267pt;}
.xa{left:47.054267pt;}
.x2{left:57.863467pt;}
.xb{left:58.814267pt;}
.xf{left:60.587600pt;}
.x4{left:61.899200pt;}
.xe{left:65.000933pt;}
.xd{left:69.080933pt;}
.xc{left:75.814267pt;}
.x1{left:79.671467pt;}
.x9{left:92.374267pt;}
.x15{left:144.523067pt;}
.x5{left:151.181067pt;}
.x14{left:176.616400pt;}
.x16{left:186.280267pt;}
.x6{left:194.834533pt;}
.x12{left:229.918333pt;}
.x11{left:231.811067pt;}
.x10{left:478.233600pt;}
.x3{left:512.055200pt;}
}




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