
    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_06b1117133841714c94c66cc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0c4131b0eb711bc8edcc08d1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.926758;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_dc2b8e62970c2fa90efa0afa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.891602;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_e39db5f9d539bad0c696689c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_7b189437cebaef72cffe2b24.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_df8d319b2f6e7aeaf255bde3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_38f72b81b45b9cbb963b8c69.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_f3b5b73b2016c2fc2eb0f92d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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_4ea539b26ff9c2b37e3cb360.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ea44e9647b667e668d38c297.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.762207;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;}
.m4b{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245061,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.245416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245416,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245509,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245843,0.000000,0.000000,0.250000,0,0);}
.m64{transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245955,0.000000,0.000000,0.250000,0,0);}
.m70{transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245981,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246148,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246343,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246355,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246425,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246714,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246968,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247130,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247173,0.000000,0.000000,0.250000,0,0);}
.m6b{transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247203,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247307,0.000000,0.000000,0.250000,0,0);}
.m66{transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247364,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247536,0.000000,0.000000,0.250000,0,0);}
.m62{transform:matrix(0.247614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247614,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247755,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247780,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247791,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247809,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248005,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248020,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248168,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248277,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248316,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248334,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248477,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248518,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248523,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248795,0.000000,0.000000,0.250000,0,0);}
.m67{transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248920,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248968,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248975,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248991,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249155,0.000000,0.000000,0.250000,0,0);}
.m65{transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249202,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249243,0.000000,0.000000,0.250000,0,0);}
.m6a{transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249277,0.000000,0.000000,0.250000,0,0);}
.m68{transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249355,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249359,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249405,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249511,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249661,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249730,0.000000,0.000000,0.250000,0,0);}
.m61{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249968,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);}
.m12{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250036,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250089,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250098,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250152,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250402,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250552,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250557,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250577,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250582,0.000000,0.000000,0.250000,0,0);}
.m6c{transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250625,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250720,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250791,0.000000,0.000000,0.250000,0,0);}
.m63{transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250955,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250973,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251014,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251359,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251593,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251686,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251845,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251936,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m45{transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252011,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252295,0.000000,0.000000,0.250000,0,0);}
.m69{transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252307,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252327,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252380,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252557,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252577,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252639,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252732,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252814,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252832,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252914,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252966,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252986,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253086,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253223,0.000000,0.000000,0.250000,0,0);}
.m6e{transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253300,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.253377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253377,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253445,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253450,0.000000,0.000000,0.250000,0,0);}
.m6f{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253580,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253677,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253736,0.000000,0.000000,0.250000,0,0);}
.m71{transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253757,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253918,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254343,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254395,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.254430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254430,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254630,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.254766,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254766,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254766,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254914,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.254948,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254948,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254948,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m6d{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);}
.v2{vertical-align:-23.976000px;}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.ls18{letter-spacing:-5.280000px;}
.ls13{letter-spacing:-4.026000px;}
.ls1a{letter-spacing:-3.828000px;}
.lsb{letter-spacing:-3.630000px;}
.ls28{letter-spacing:-3.348000px;}
.lsc{letter-spacing:-3.036000px;}
.lse{letter-spacing:-2.970000px;}
.ls21{letter-spacing:-2.754000px;}
.ls20{letter-spacing:-2.538000px;}
.ls11{letter-spacing:-2.508000px;}
.lsd{letter-spacing:-2.310000px;}
.ls1c{letter-spacing:-1.728000px;}
.ls2{letter-spacing:-1.518000px;}
.lsf{letter-spacing:-1.122000px;}
.ls10{letter-spacing:-0.858000px;}
.ls24{letter-spacing:-0.810000px;}
.ls19{letter-spacing:-0.792000px;}
.ls16{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.660000px;}
.lsa{letter-spacing:-0.330000px;}
.ls5{letter-spacing:-0.270000px;}
.ls15{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.198000px;}
.ls1d{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.157410px;}
.ls6{letter-spacing:-0.054000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.060000px;}
.ls1f{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.300000px;}
.ls23{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.432000px;}
.ls26{letter-spacing:0.486000px;}
.ls17{letter-spacing:0.528000px;}
.ls27{letter-spacing:0.540000px;}
.ls2b{letter-spacing:0.600000px;}
.ls3{letter-spacing:0.648000px;}
.ls9{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.756000px;}
.ls8{letter-spacing:0.990000px;}
.ls29{letter-spacing:1.188000px;}
.ls14{letter-spacing:1.782000px;}
.ls2a{letter-spacing:2.508000px;}
.ls1{letter-spacing:2.520000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws6d{word-spacing:-67.188000px;}
.ws12{word-spacing:-66.000000px;}
.ws6e{word-spacing:-19.008000px;}
.ws50{word-spacing:-16.500000px;}
.ws6c{word-spacing:-16.302000px;}
.ws13{word-spacing:-15.840000px;}
.ws5{word-spacing:-14.148000px;}
.ws60{word-spacing:-13.986000px;}
.ws5f{word-spacing:-13.878000px;}
.ws1{word-spacing:-13.530000px;}
.ws7{word-spacing:-13.446000px;}
.ws48{word-spacing:-12.672000px;}
.ws2{word-spacing:-10.494000px;}
.ws6{word-spacing:-7.713090px;}
.ws9{word-spacing:-5.256000px;}
.ws44{word-spacing:-3.630000px;}
.ws14{word-spacing:-3.366000px;}
.ws37{word-spacing:-3.300000px;}
.ws40{word-spacing:-3.168000px;}
.ws29{word-spacing:-3.102000px;}
.ws5d{word-spacing:-2.970000px;}
.ws49{word-spacing:-2.904000px;}
.ws28{word-spacing:-2.838000px;}
.ws62{word-spacing:-2.754000px;}
.ws10{word-spacing:-2.700000px;}
.ws17{word-spacing:-2.640000px;}
.wsf{word-spacing:-2.574000px;}
.ws52{word-spacing:-2.508000px;}
.ws54{word-spacing:-2.046000px;}
.ws59{word-spacing:-1.998000px;}
.ws2c{word-spacing:-1.914000px;}
.ws6a{word-spacing:-1.890000px;}
.ws42{word-spacing:-1.782000px;}
.ws3e{word-spacing:-1.584000px;}
.ws26{word-spacing:-1.518000px;}
.ws21{word-spacing:-1.386000px;}
.ws34{word-spacing:-1.320000px;}
.ws8{word-spacing:-1.224000px;}
.ws3f{word-spacing:-1.122000px;}
.wsa{word-spacing:-1.056000px;}
.ws1f{word-spacing:-0.990000px;}
.ws4c{word-spacing:-0.858000px;}
.ws55{word-spacing:-0.726000px;}
.ws46{word-spacing:-0.660000px;}
.ws6f{word-spacing:-0.600000px;}
.ws68{word-spacing:-0.540000px;}
.ws31{word-spacing:-0.528000px;}
.ws6b{word-spacing:-0.486000px;}
.ws67{word-spacing:-0.432000px;}
.ws64{word-spacing:-0.324000px;}
.ws70{word-spacing:-0.300000px;}
.ws56{word-spacing:-0.270000px;}
.ws4{word-spacing:-0.066000px;}
.ws71{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.ws1e{word-spacing:0.066000px;}
.ws58{word-spacing:0.162000px;}
.ws3c{word-spacing:0.198000px;}
.ws11{word-spacing:0.270000px;}
.ws2f{word-spacing:0.330000px;}
.ws1b{word-spacing:0.462000px;}
.ws30{word-spacing:0.528000px;}
.ws18{word-spacing:0.594000px;}
.ws2a{word-spacing:0.660000px;}
.ws47{word-spacing:0.726000px;}
.ws4e{word-spacing:0.792000px;}
.ws2b{word-spacing:0.858000px;}
.ws5a{word-spacing:0.864000px;}
.ws2e{word-spacing:0.924000px;}
.ws4d{word-spacing:0.990000px;}
.ws3b{word-spacing:1.122000px;}
.ws53{word-spacing:1.254000px;}
.ws43{word-spacing:1.320000px;}
.ws23{word-spacing:1.386000px;}
.ws22{word-spacing:1.518000px;}
.ws38{word-spacing:1.650000px;}
.ws15{word-spacing:1.716000px;}
.ws57{word-spacing:1.728000px;}
.ws5b{word-spacing:1.836000px;}
.ws5c{word-spacing:1.944000px;}
.ws63{word-spacing:2.052000px;}
.ws66{word-spacing:2.106000px;}
.ws3a{word-spacing:2.310000px;}
.ws20{word-spacing:2.442000px;}
.ws33{word-spacing:2.508000px;}
.ws5e{word-spacing:2.538000px;}
.ws35{word-spacing:2.640000px;}
.ws4f{word-spacing:2.706000px;}
.ws61{word-spacing:2.754000px;}
.ws3d{word-spacing:2.772000px;}
.ws45{word-spacing:2.904000px;}
.ws32{word-spacing:2.970000px;}
.ws39{word-spacing:3.036000px;}
.wsb{word-spacing:3.102000px;}
.ws65{word-spacing:3.132000px;}
.ws1c{word-spacing:3.168000px;}
.ws16{word-spacing:3.234000px;}
.ws1d{word-spacing:3.300000px;}
.ws69{word-spacing:3.348000px;}
.ws1a{word-spacing:3.366000px;}
.ws24{word-spacing:3.564000px;}
.ws19{word-spacing:3.630000px;}
.ws41{word-spacing:4.026000px;}
.wsd{word-spacing:4.092000px;}
.ws25{word-spacing:4.356000px;}
.ws4a{word-spacing:5.280000px;}
.wsc{word-spacing:5.610000px;}
.ws4b{word-spacing:6.072000px;}
.wse{word-spacing:7.656000px;}
.ws36{word-spacing:8.118000px;}
.ws51{word-spacing:8.712000px;}
.ws27{word-spacing:9.240000px;}
.ws2d{word-spacing:574.360200px;}
._a{margin-left:-1592.845200px;}
._f{margin-left:-16.139971px;}
._6{margin-left:-9.673800px;}
._c{margin-left:-6.870600px;}
._5{margin-left:-5.320800px;}
._7{margin-left:-3.960000px;}
._1{margin-left:-2.527800px;}
._0{margin-left:-1.260600px;}
._3{width:1.755600px;}
._2{width:3.319800px;}
._4{width:4.936800px;}
._b{width:5.992800px;}
._8{width:7.425000px;}
._10{width:8.850600px;}
._15{width:10.044000px;}
._12{width:11.424000px;}
._11{width:15.331800px;}
._16{width:17.062200px;}
._17{width:18.548682px;}
._e{width:20.446800px;}
._d{width:21.568800px;}
._13{width:27.252000px;}
._14{width:28.427118px;}
._9{width:587.859600px;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:31.482000px;}
.fs6{font-size:41.976000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y3c{bottom:82.190550px;}
.y5c{bottom:82.272600px;}
.y7d{bottom:82.272750px;}
.y3b{bottom:98.690550px;}
.y4{bottom:100.995005px;}
.y5b{bottom:101.772600px;}
.y7c{bottom:101.772750px;}
.y3a{bottom:103.186050px;}
.y39{bottom:119.686050px;}
.y5a{bottom:121.272600px;}
.y7b{bottom:121.272750px;}
.y88{bottom:123.245250px;}
.y23{bottom:139.264499px;}
.y87{bottom:139.745250px;}
.y59{bottom:140.772600px;}
.y7a{bottom:140.772750px;}
.y86{bottom:156.245250px;}
.y58{bottom:160.272600px;}
.y79{bottom:160.272750px;}
.y57{bottom:179.772600px;}
.y78{bottom:179.772750px;}
.y85{bottom:181.249200px;}
.y1a{bottom:196.933500px;}
.y84{bottom:197.749200px;}
.y56{bottom:199.272600px;}
.y77{bottom:199.272750px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y55{bottom:218.772600px;}
.y76{bottom:218.772750px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y83{bottom:222.753000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y54{bottom:238.272600px;}
.y75{bottom:238.272750px;}
.y82{bottom:239.253000px;}
.y81{bottom:255.753000px;}
.y53{bottom:257.772600px;}
.y74{bottom:257.772750px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y52{bottom:277.272600px;}
.y73{bottom:277.272750px;}
.y80{bottom:285.009000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y51{bottom:296.772600px;}
.y37{bottom:296.772750px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y50{bottom:316.272600px;}
.y72{bottom:316.272750px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y4f{bottom:335.772600px;}
.y36{bottom:335.772750px;}
.ya5{bottom:336.355950px;}
.y11{bottom:348.133500px;}
.ya4{bottom:352.855950px;}
.y4e{bottom:355.272600px;}
.y35{bottom:355.272750px;}
.y4d{bottom:374.772600px;}
.y34{bottom:374.772750px;}
.ya3{bottom:377.859900px;}
.y10{bottom:386.785499px;}
.y4c{bottom:394.272600px;}
.y71{bottom:394.272750px;}
.ya2{bottom:394.359900px;}
.yf{bottom:408.044999px;}
.ya1{bottom:410.859900px;}
.y4b{bottom:413.772600px;}
.y33{bottom:413.772750px;}
.y4a{bottom:433.272600px;}
.y32{bottom:433.272750px;}
.ya0{bottom:435.863850px;}
.y9f{bottom:452.363850px;}
.y31{bottom:452.772600px;}
.y70{bottom:452.772750px;}
.y30{bottom:472.272600px;}
.y6f{bottom:472.272750px;}
.y9e{bottom:477.367650px;}
.ye{bottom:484.864502px;}
.y2f{bottom:491.772600px;}
.y6e{bottom:491.772750px;}
.y9d{bottom:493.867650px;}
.yd{bottom:502.864502px;}
.y9c{bottom:510.367650px;}
.y2e{bottom:511.272600px;}
.y6d{bottom:511.272750px;}
.yc{bottom:520.864502px;}
.y9b{bottom:526.867800px;}
.y2d{bottom:530.772600px;}
.y6c{bottom:530.772750px;}
.yb{bottom:538.864499px;}
.y2c{bottom:550.272600px;}
.y6b{bottom:550.272750px;}
.y9a{bottom:551.871600px;}
.ya{bottom:556.864499px;}
.yaf{bottom:563.005050px;}
.y99{bottom:568.371600px;}
.y2b{bottom:569.772600px;}
.y6a{bottom:569.772750px;}
.yae{bottom:582.505050px;}
.y98{bottom:584.871600px;}
.y49{bottom:589.272600px;}
.y69{bottom:589.272750px;}
.y2a{bottom:608.772600px;}
.y68{bottom:608.772750px;}
.y97{bottom:609.875550px;}
.yad{bottom:619.012950px;}
.y96{bottom:626.375550px;}
.y48{bottom:628.272600px;}
.y67{bottom:628.272750px;}
.yac{bottom:637.012950px;}
.y9{bottom:645.510000px;}
.y47{bottom:647.772600px;}
.y66{bottom:647.772750px;}
.y95{bottom:651.379650px;}
.yab{bottom:655.012950px;}
.y8{bottom:666.771000px;}
.y46{bottom:667.272600px;}
.y65{bottom:667.272750px;}
.y94{bottom:667.879650px;}
.yaa{bottom:673.012950px;}
.y29{bottom:683.772750px;}
.y45{bottom:686.772600px;}
.y64{bottom:686.772750px;}
.ya9{bottom:691.012950px;}
.y93{bottom:692.883450px;}
.y28{bottom:704.772750px;}
.y44{bottom:706.272600px;}
.y63{bottom:706.272750px;}
.ya8{bottom:709.012950px;}
.y92{bottom:709.383450px;}
.y43{bottom:725.772600px;}
.y27{bottom:725.772750px;}
.y7{bottom:726.298500px;}
.ya7{bottom:727.012950px;}
.y91{bottom:734.387400px;}
.ya6{bottom:745.012950px;}
.y42{bottom:745.272600px;}
.y62{bottom:745.272750px;}
.y90{bottom:750.887400px;}
.y3{bottom:752.599495px;}
.y41{bottom:764.772600px;}
.y61{bottom:764.772750px;}
.y8f{bottom:767.387400px;}
.y40{bottom:784.272600px;}
.y60{bottom:784.272750px;}
.y8e{bottom:792.391350px;}
.y26{bottom:803.772600px;}
.y5f{bottom:803.772750px;}
.y8d{bottom:808.891350px;}
.y3f{bottom:823.272600px;}
.y5e{bottom:823.272750px;}
.y8c{bottom:833.895300px;}
.y38{bottom:842.772750px;}
.y8b{bottom:850.395300px;}
.y7f{bottom:862.272750px;}
.y8a{bottom:875.399250px;}
.y2{bottom:879.369000px;}
.y3e{bottom:881.772600px;}
.y5d{bottom:881.772750px;}
.y89{bottom:891.899250px;}
.y3d{bottom:927.137400px;}
.y7e{bottom:927.137550px;}
.y25{bottom:941.405850px;}
.y24{bottom:960.905850px;}
.y1{bottom:966.726000px;}
.h12{height:21.874456px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h16{height:37.494141px;}
.h13{height:37.520508px;}
.h17{height:41.660156px;}
.h10{height:44.730469px;}
.h11{height:45.826172px;}
.h15{height:45.858398px;}
.h7{height:45.960000px;}
.hc{height:48.049805px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.hf{height:48.796875px;}
.hd{height:53.141941px;}
.h2{height:55.152000px;}
.h14{height:58.620117px;}
.he{height:63.949219px;}
.h5{height:64.344000px;}
.h4{height:119.055004px;}
.ha{height:1020.472500px;}
.hb{height:1020.750000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w4{width:714.000000px;}
.w3{width:714.330000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:89.291400px;}
.x1{left:102.045000px;}
.xc{left:103.330650px;}
.x2{left:106.297500px;}
.xf{left:112.615050px;}
.x8{left:119.055150px;}
.xe{left:121.345050px;}
.x9{left:126.812700px;}
.x10{left:159.932700px;}
.x7{left:181.187250px;}
.x4{left:203.484001px;}
.xb{left:226.828050px;}
.x11{left:251.929200px;}
.x6{left:270.417300px;}
.xd{left:313.677600px;}
.x3{left:454.959000px;}
.xa{left:611.539350px;}
@media print{
.v2{vertical-align:-21.312000pt;}
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls18{letter-spacing:-4.693333pt;}
.ls13{letter-spacing:-3.578667pt;}
.ls1a{letter-spacing:-3.402667pt;}
.lsb{letter-spacing:-3.226667pt;}
.ls28{letter-spacing:-2.976000pt;}
.lsc{letter-spacing:-2.698667pt;}
.lse{letter-spacing:-2.640000pt;}
.ls21{letter-spacing:-2.448000pt;}
.ls20{letter-spacing:-2.256000pt;}
.ls11{letter-spacing:-2.229333pt;}
.lsd{letter-spacing:-2.053333pt;}
.ls1c{letter-spacing:-1.536000pt;}
.ls2{letter-spacing:-1.349333pt;}
.lsf{letter-spacing:-0.997333pt;}
.ls10{letter-spacing:-0.762667pt;}
.ls24{letter-spacing:-0.720000pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls16{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.586667pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls5{letter-spacing:-0.240000pt;}
.ls15{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.176000pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.139920pt;}
.ls6{letter-spacing:-0.048000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.053333pt;}
.ls1f{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.266667pt;}
.ls23{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.384000pt;}
.ls26{letter-spacing:0.432000pt;}
.ls17{letter-spacing:0.469333pt;}
.ls27{letter-spacing:0.480000pt;}
.ls2b{letter-spacing:0.533333pt;}
.ls3{letter-spacing:0.576000pt;}
.ls9{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.672000pt;}
.ls8{letter-spacing:0.880000pt;}
.ls29{letter-spacing:1.056000pt;}
.ls14{letter-spacing:1.584000pt;}
.ls2a{letter-spacing:2.229333pt;}
.ls1{letter-spacing:2.240000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws6d{word-spacing:-59.722667pt;}
.ws12{word-spacing:-58.666667pt;}
.ws6e{word-spacing:-16.896000pt;}
.ws50{word-spacing:-14.666667pt;}
.ws6c{word-spacing:-14.490667pt;}
.ws13{word-spacing:-14.080000pt;}
.ws5{word-spacing:-12.576000pt;}
.ws60{word-spacing:-12.432000pt;}
.ws5f{word-spacing:-12.336000pt;}
.ws1{word-spacing:-12.026667pt;}
.ws7{word-spacing:-11.952000pt;}
.ws48{word-spacing:-11.264000pt;}
.ws2{word-spacing:-9.328000pt;}
.ws6{word-spacing:-6.856080pt;}
.ws9{word-spacing:-4.672000pt;}
.ws44{word-spacing:-3.226667pt;}
.ws14{word-spacing:-2.992000pt;}
.ws37{word-spacing:-2.933333pt;}
.ws40{word-spacing:-2.816000pt;}
.ws29{word-spacing:-2.757333pt;}
.ws5d{word-spacing:-2.640000pt;}
.ws49{word-spacing:-2.581333pt;}
.ws28{word-spacing:-2.522667pt;}
.ws62{word-spacing:-2.448000pt;}
.ws10{word-spacing:-2.400000pt;}
.ws17{word-spacing:-2.346667pt;}
.wsf{word-spacing:-2.288000pt;}
.ws52{word-spacing:-2.229333pt;}
.ws54{word-spacing:-1.818667pt;}
.ws59{word-spacing:-1.776000pt;}
.ws2c{word-spacing:-1.701333pt;}
.ws6a{word-spacing:-1.680000pt;}
.ws42{word-spacing:-1.584000pt;}
.ws3e{word-spacing:-1.408000pt;}
.ws26{word-spacing:-1.349333pt;}
.ws21{word-spacing:-1.232000pt;}
.ws34{word-spacing:-1.173333pt;}
.ws8{word-spacing:-1.088000pt;}
.ws3f{word-spacing:-0.997333pt;}
.wsa{word-spacing:-0.938667pt;}
.ws1f{word-spacing:-0.880000pt;}
.ws4c{word-spacing:-0.762667pt;}
.ws55{word-spacing:-0.645333pt;}
.ws46{word-spacing:-0.586667pt;}
.ws6f{word-spacing:-0.533333pt;}
.ws68{word-spacing:-0.480000pt;}
.ws31{word-spacing:-0.469333pt;}
.ws6b{word-spacing:-0.432000pt;}
.ws67{word-spacing:-0.384000pt;}
.ws64{word-spacing:-0.288000pt;}
.ws70{word-spacing:-0.266667pt;}
.ws56{word-spacing:-0.240000pt;}
.ws4{word-spacing:-0.058667pt;}
.ws71{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e{word-spacing:0.058667pt;}
.ws58{word-spacing:0.144000pt;}
.ws3c{word-spacing:0.176000pt;}
.ws11{word-spacing:0.240000pt;}
.ws2f{word-spacing:0.293333pt;}
.ws1b{word-spacing:0.410667pt;}
.ws30{word-spacing:0.469333pt;}
.ws18{word-spacing:0.528000pt;}
.ws2a{word-spacing:0.586667pt;}
.ws47{word-spacing:0.645333pt;}
.ws4e{word-spacing:0.704000pt;}
.ws2b{word-spacing:0.762667pt;}
.ws5a{word-spacing:0.768000pt;}
.ws2e{word-spacing:0.821333pt;}
.ws4d{word-spacing:0.880000pt;}
.ws3b{word-spacing:0.997333pt;}
.ws53{word-spacing:1.114667pt;}
.ws43{word-spacing:1.173333pt;}
.ws23{word-spacing:1.232000pt;}
.ws22{word-spacing:1.349333pt;}
.ws38{word-spacing:1.466667pt;}
.ws15{word-spacing:1.525333pt;}
.ws57{word-spacing:1.536000pt;}
.ws5b{word-spacing:1.632000pt;}
.ws5c{word-spacing:1.728000pt;}
.ws63{word-spacing:1.824000pt;}
.ws66{word-spacing:1.872000pt;}
.ws3a{word-spacing:2.053333pt;}
.ws20{word-spacing:2.170667pt;}
.ws33{word-spacing:2.229333pt;}
.ws5e{word-spacing:2.256000pt;}
.ws35{word-spacing:2.346667pt;}
.ws4f{word-spacing:2.405333pt;}
.ws61{word-spacing:2.448000pt;}
.ws3d{word-spacing:2.464000pt;}
.ws45{word-spacing:2.581333pt;}
.ws32{word-spacing:2.640000pt;}
.ws39{word-spacing:2.698667pt;}
.wsb{word-spacing:2.757333pt;}
.ws65{word-spacing:2.784000pt;}
.ws1c{word-spacing:2.816000pt;}
.ws16{word-spacing:2.874667pt;}
.ws1d{word-spacing:2.933333pt;}
.ws69{word-spacing:2.976000pt;}
.ws1a{word-spacing:2.992000pt;}
.ws24{word-spacing:3.168000pt;}
.ws19{word-spacing:3.226667pt;}
.ws41{word-spacing:3.578667pt;}
.wsd{word-spacing:3.637333pt;}
.ws25{word-spacing:3.872000pt;}
.ws4a{word-spacing:4.693333pt;}
.wsc{word-spacing:4.986667pt;}
.ws4b{word-spacing:5.397333pt;}
.wse{word-spacing:6.805333pt;}
.ws36{word-spacing:7.216000pt;}
.ws51{word-spacing:7.744000pt;}
.ws27{word-spacing:8.213333pt;}
.ws2d{word-spacing:510.542400pt;}
._a{margin-left:-1415.862400pt;}
._f{margin-left:-14.346640pt;}
._6{margin-left:-8.598933pt;}
._c{margin-left:-6.107200pt;}
._5{margin-left:-4.729600pt;}
._7{margin-left:-3.520000pt;}
._1{margin-left:-2.246933pt;}
._0{margin-left:-1.120533pt;}
._3{width:1.560533pt;}
._2{width:2.950933pt;}
._4{width:4.388267pt;}
._b{width:5.326933pt;}
._8{width:6.600000pt;}
._10{width:7.867200pt;}
._15{width:8.928000pt;}
._12{width:10.154667pt;}
._11{width:13.628267pt;}
._16{width:15.166400pt;}
._17{width:16.487718pt;}
._e{width:18.174933pt;}
._d{width:19.172267pt;}
._13{width:24.224000pt;}
._14{width:25.268549pt;}
._9{width:522.541867pt;}
.fs7{font-size:27.984000pt;}
.fs6{font-size:37.312000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y3c{bottom:73.058267pt;}
.y5c{bottom:73.131200pt;}
.y7d{bottom:73.131333pt;}
.y3b{bottom:87.724933pt;}
.y4{bottom:89.773337pt;}
.y5b{bottom:90.464533pt;}
.y7c{bottom:90.464667pt;}
.y3a{bottom:91.720933pt;}
.y39{bottom:106.387600pt;}
.y5a{bottom:107.797867pt;}
.y7b{bottom:107.798000pt;}
.y88{bottom:109.551333pt;}
.y23{bottom:123.790666pt;}
.y87{bottom:124.218000pt;}
.y59{bottom:125.131200pt;}
.y7a{bottom:125.131333pt;}
.y86{bottom:138.884667pt;}
.y58{bottom:142.464533pt;}
.y79{bottom:142.464667pt;}
.y57{bottom:159.797867pt;}
.y78{bottom:159.798000pt;}
.y85{bottom:161.110400pt;}
.y1a{bottom:175.052000pt;}
.y84{bottom:175.777067pt;}
.y56{bottom:177.131200pt;}
.y77{bottom:177.131333pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y55{bottom:194.464533pt;}
.y76{bottom:194.464667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y83{bottom:198.002667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y54{bottom:211.797867pt;}
.y75{bottom:211.798000pt;}
.y82{bottom:212.669333pt;}
.y81{bottom:227.336000pt;}
.y53{bottom:229.131200pt;}
.y74{bottom:229.131333pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y52{bottom:246.464533pt;}
.y73{bottom:246.464667pt;}
.y80{bottom:253.341333pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y51{bottom:263.797867pt;}
.y37{bottom:263.798000pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y50{bottom:281.131200pt;}
.y72{bottom:281.131333pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y4f{bottom:298.464533pt;}
.y36{bottom:298.464667pt;}
.ya5{bottom:298.983067pt;}
.y11{bottom:309.452000pt;}
.ya4{bottom:313.649733pt;}
.y4e{bottom:315.797867pt;}
.y35{bottom:315.798000pt;}
.y4d{bottom:333.131200pt;}
.y34{bottom:333.131333pt;}
.ya3{bottom:335.875467pt;}
.y10{bottom:343.809333pt;}
.y4c{bottom:350.464533pt;}
.y71{bottom:350.464667pt;}
.ya2{bottom:350.542133pt;}
.yf{bottom:362.706666pt;}
.ya1{bottom:365.208800pt;}
.y4b{bottom:367.797867pt;}
.y33{bottom:367.798000pt;}
.y4a{bottom:385.131200pt;}
.y32{bottom:385.131333pt;}
.ya0{bottom:387.434533pt;}
.y9f{bottom:402.101200pt;}
.y31{bottom:402.464533pt;}
.y70{bottom:402.464667pt;}
.y30{bottom:419.797867pt;}
.y6f{bottom:419.798000pt;}
.y9e{bottom:424.326800pt;}
.ye{bottom:430.990669pt;}
.y2f{bottom:437.131200pt;}
.y6e{bottom:437.131333pt;}
.y9d{bottom:438.993467pt;}
.yd{bottom:446.990669pt;}
.y9c{bottom:453.660133pt;}
.y2e{bottom:454.464533pt;}
.y6d{bottom:454.464667pt;}
.yc{bottom:462.990669pt;}
.y9b{bottom:468.326933pt;}
.y2d{bottom:471.797867pt;}
.y6c{bottom:471.798000pt;}
.yb{bottom:478.990666pt;}
.y2c{bottom:489.131200pt;}
.y6b{bottom:489.131333pt;}
.y9a{bottom:490.552533pt;}
.ya{bottom:494.990666pt;}
.yaf{bottom:500.448933pt;}
.y99{bottom:505.219200pt;}
.y2b{bottom:506.464533pt;}
.y6a{bottom:506.464667pt;}
.yae{bottom:517.782267pt;}
.y98{bottom:519.885867pt;}
.y49{bottom:523.797867pt;}
.y69{bottom:523.798000pt;}
.y2a{bottom:541.131200pt;}
.y68{bottom:541.131333pt;}
.y97{bottom:542.111600pt;}
.yad{bottom:550.233733pt;}
.y96{bottom:556.778267pt;}
.y48{bottom:558.464533pt;}
.y67{bottom:558.464667pt;}
.yac{bottom:566.233733pt;}
.y9{bottom:573.786667pt;}
.y47{bottom:575.797867pt;}
.y66{bottom:575.798000pt;}
.y95{bottom:579.004133pt;}
.yab{bottom:582.233733pt;}
.y8{bottom:592.685334pt;}
.y46{bottom:593.131200pt;}
.y65{bottom:593.131333pt;}
.y94{bottom:593.670800pt;}
.yaa{bottom:598.233733pt;}
.y29{bottom:607.798000pt;}
.y45{bottom:610.464533pt;}
.y64{bottom:610.464667pt;}
.ya9{bottom:614.233733pt;}
.y93{bottom:615.896400pt;}
.y28{bottom:626.464667pt;}
.y44{bottom:627.797867pt;}
.y63{bottom:627.798000pt;}
.ya8{bottom:630.233733pt;}
.y92{bottom:630.563067pt;}
.y43{bottom:645.131200pt;}
.y27{bottom:645.131333pt;}
.y7{bottom:645.598667pt;}
.ya7{bottom:646.233733pt;}
.y91{bottom:652.788800pt;}
.ya6{bottom:662.233733pt;}
.y42{bottom:662.464533pt;}
.y62{bottom:662.464667pt;}
.y90{bottom:667.455467pt;}
.y3{bottom:668.977329pt;}
.y41{bottom:679.797867pt;}
.y61{bottom:679.798000pt;}
.y8f{bottom:682.122133pt;}
.y40{bottom:697.131200pt;}
.y60{bottom:697.131333pt;}
.y8e{bottom:704.347867pt;}
.y26{bottom:714.464533pt;}
.y5f{bottom:714.464667pt;}
.y8d{bottom:719.014533pt;}
.y3f{bottom:731.797867pt;}
.y5e{bottom:731.798000pt;}
.y8c{bottom:741.240267pt;}
.y38{bottom:749.131333pt;}
.y8b{bottom:755.906933pt;}
.y7f{bottom:766.464667pt;}
.y8a{bottom:778.132667pt;}
.y2{bottom:781.661334pt;}
.y3e{bottom:783.797867pt;}
.y5d{bottom:783.798000pt;}
.y89{bottom:792.799333pt;}
.y3d{bottom:824.122133pt;}
.y7e{bottom:824.122267pt;}
.y25{bottom:836.805200pt;}
.y24{bottom:854.138533pt;}
.y1{bottom:859.312000pt;}
.h12{height:19.443961pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h16{height:33.328125pt;}
.h13{height:33.351562pt;}
.h17{height:37.031250pt;}
.h10{height:39.760417pt;}
.h11{height:40.734375pt;}
.h15{height:40.763021pt;}
.h7{height:40.853333pt;}
.hc{height:42.710938pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.hf{height:43.375000pt;}
.hd{height:47.237281pt;}
.h2{height:49.024000pt;}
.h14{height:52.106771pt;}
.he{height:56.843750pt;}
.h5{height:57.194667pt;}
.h4{height:105.826671pt;}
.ha{height:907.086667pt;}
.hb{height:907.333333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w4{width:634.666667pt;}
.w3{width:634.960000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:79.370133pt;}
.x1{left:90.706667pt;}
.xc{left:91.849467pt;}
.x2{left:94.486667pt;}
.xf{left:100.102267pt;}
.x8{left:105.826800pt;}
.xe{left:107.862267pt;}
.x9{left:112.722400pt;}
.x10{left:142.162400pt;}
.x7{left:161.055333pt;}
.x4{left:180.874667pt;}
.xb{left:201.624933pt;}
.x11{left:223.937067pt;}
.x6{left:240.370933pt;}
.xd{left:278.824533pt;}
.x3{left:404.408000pt;}
.xa{left:543.590533pt;}
}




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