
    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_bc92595f9f2e9c581a1ef320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_7622f1cca1a526f65ff3612d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e294fc0e6f02da585b9afd5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.929688;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_f958317e2d88d15a4cc5eeb4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.950684;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_c04512fe5f57852e8bbabb72.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.971191;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_0f0592ce48b1aea13cc1a898.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.971191;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_8e7f9fe9bc6f4a496889c514.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239258;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_6ff45cd0c49eebdd1090652f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.860840;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_42efa3b458b06905b2862418.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_ce12fce42632bf276d077c00.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_3de5af39f6629187bc017f9a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;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;}
.mf{transform:matrix(0.099750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123695,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.130617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130617,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.134463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134463,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.134527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134527,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.134755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134755,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.137043,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137043,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137043,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.137563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137563,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144645,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145270,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.147503,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147503,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147503,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158790,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158985,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170455,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.171668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171668,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173420,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173620,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212355,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218645,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219968,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);}
.me{transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249375,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m24{transform:matrix(0.256863,0.000000,-0.068826,0.240339,0,0);-ms-transform:matrix(0.256863,0.000000,-0.068826,0.240339,0,0);-webkit-transform:matrix(0.256863,0.000000,-0.068826,0.240339,0,0);}
.m18{transform:matrix(0.260364,0.000000,-0.069764,0.240069,0,0);-ms-transform:matrix(0.260364,0.000000,-0.069764,0.240069,0,0);-webkit-transform:matrix(0.260364,0.000000,-0.069764,0.240069,0,0);}
.m7{transform:matrix(0.264078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264078,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264570,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265910,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.266607,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.266607,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.266607,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267188,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268278,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271135,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.271163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.271163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.271163,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272203,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.308952,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310252,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.311530,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.311530,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.311530,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.324400,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.352215,0.000000,-0.094374,0.231503,0,0);-ms-transform:matrix(0.352215,0.000000,-0.094374,0.231503,0,0);-webkit-transform:matrix(0.352215,0.000000,-0.094374,0.231503,0,0);}
.m1f{transform:matrix(0.380357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380357,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.445773,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445773,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445773,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.451925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.451925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.451925,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.452672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452672,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v6{vertical-align:-136.800000px;}
.v8{vertical-align:-59.400000px;}
.v7{vertical-align:-54.000000px;}
.v2{vertical-align:-25.800000px;}
.v3{vertical-align:-16.800000px;}
.v5{vertical-align:-13.200000px;}
.v4{vertical-align:-5.400000px;}
.v9{vertical-align:-4.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.024000px;}
.lsb{letter-spacing:0.060000px;}
.ls3{letter-spacing:0.064800px;}
.ls10{letter-spacing:0.096000px;}
.ls8{letter-spacing:0.102000px;}
.ls6{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.360000px;}
.ls2{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.480000px;}
.ls5{letter-spacing:25.236600px;}
.ls4{letter-spacing:86.700000px;}
.lsf{letter-spacing:114.474000px;}
.lsd{letter-spacing:119.874000px;}
.lsc{letter-spacing:120.663204px;}
.ls7{letter-spacing:326.371860px;}
.lsa{letter-spacing:1223.563200px;}
.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;}
}
.ws11{word-spacing:-21.060000px;}
.ws32{word-spacing:-20.460000px;}
.ws2{word-spacing:-18.634928px;}
.ws3e{word-spacing:-17.690400px;}
.ws38{word-spacing:-16.944000px;}
.ws35{word-spacing:-16.848000px;}
.ws0{word-spacing:-14.742000px;}
.ws33{word-spacing:-14.322000px;}
.ws14{word-spacing:-12.214800px;}
.ws1{word-spacing:-10.500000px;}
.ws12{word-spacing:-0.044400px;}
.ws3{word-spacing:0.000000px;}
.ws2b{word-spacing:16.866779px;}
.ws15{word-spacing:17.694600px;}
.ws1a{word-spacing:17.843400px;}
.ws9{word-spacing:18.170400px;}
.ws7{word-spacing:20.280000px;}
.ws8{word-spacing:21.480000px;}
.ws18{word-spacing:27.158400px;}
.ws5{word-spacing:30.230400px;}
.ws2e{word-spacing:43.100400px;}
.ws1e{word-spacing:56.035200px;}
.ws22{word-spacing:88.250400px;}
.wsa{word-spacing:93.223800px;}
.ws24{word-spacing:96.343800px;}
.ws26{word-spacing:96.886200px;}
.ws29{word-spacing:104.276400px;}
.ws23{word-spacing:105.121800px;}
.ws30{word-spacing:111.249600px;}
.ws1d{word-spacing:113.880000px;}
.ws4{word-spacing:114.773535px;}
.ws28{word-spacing:114.921000px;}
.ws27{word-spacing:115.531200px;}
.ws2a{word-spacing:117.301800px;}
.ws13{word-spacing:124.491600px;}
.ws25{word-spacing:128.142000px;}
.ws2c{word-spacing:164.756266px;}
.ws17{word-spacing:168.958311px;}
.ws31{word-spacing:217.620000px;}
.ws3b{word-spacing:243.528000px;}
.ws3a{word-spacing:244.200000px;}
.ws3c{word-spacing:248.376000px;}
.ws37{word-spacing:250.368000px;}
.ws3d{word-spacing:252.384000px;}
.ws39{word-spacing:259.800000px;}
.wsf{word-spacing:267.600000px;}
.wsd{word-spacing:274.080000px;}
.wse{word-spacing:301.080000px;}
.wsc{word-spacing:306.480000px;}
.wsb{word-spacing:307.680000px;}
.ws6{word-spacing:332.614800px;}
.ws21{word-spacing:399.634200px;}
.ws1f{word-spacing:459.888000px;}
.ws20{word-spacing:464.256000px;}
.ws10{word-spacing:566.699400px;}
.ws16{word-spacing:567.309600px;}
.ws2f{word-spacing:573.368400px;}
.ws1c{word-spacing:950.833800px;}
.ws19{word-spacing:985.670400px;}
.ws34{word-spacing:1049.868000px;}
.ws1b{word-spacing:1050.442200px;}
.ws36{word-spacing:1052.580000px;}
.ws2d{word-spacing:1058.224662px;}
._e{margin-left:-385.933314px;}
._10{margin-left:-227.832269px;}
._17{margin-left:-16.522970px;}
._8{margin-left:-13.727731px;}
._12{margin-left:-11.715158px;}
._1{margin-left:-10.559793px;}
._6{margin-left:-9.006882px;}
._2{margin-left:-7.578204px;}
._0{margin-left:-5.901061px;}
._3{margin-left:-4.472383px;}
._4{margin-left:-2.484657px;}
._7{margin-left:-1.428678px;}
._9{width:1.158000px;}
._14{width:2.304000px;}
._c{width:3.313314px;}
._18{width:4.732008px;}
._d{width:6.169335px;}
._19{width:7.291948px;}
._5{width:8.509951px;}
._15{width:9.726678px;}
._1a{width:10.986657px;}
._13{width:12.136049px;}
._1b{width:13.369273px;}
._a{width:14.382678px;}
._b{width:16.380678px;}
._34{width:17.817396px;}
._16{width:19.649322px;}
._24{width:23.340000px;}
._22{width:24.540000px;}
._1d{width:31.476600px;}
._53{width:40.068799px;}
._2d{width:46.409400px;}
._1c{width:48.120000px;}
._36{width:58.035600px;}
._38{width:59.858400px;}
._59{width:64.800000px;}
._55{width:65.880000px;}
._54{width:67.140000px;}
._3c{width:96.096000px;}
._42{width:101.142000px;}
._26{width:112.254642px;}
._57{width:113.580000px;}
._40{width:114.746400px;}
._5a{width:128.868678px;}
._5b{width:129.893322px;}
._46{width:131.394000px;}
._56{width:133.998204px;}
._39{width:148.881600px;}
._2e{width:152.310600px;}
._43{width:156.822000px;}
._47{width:158.580000px;}
._4b{width:162.780000px;}
._4c{width:177.288000px;}
._48{width:182.898000px;}
._4a{width:200.466000px;}
._49{width:205.104000px;}
._25{width:211.140000px;}
._11{width:212.340000px;}
._58{width:226.920000px;}
._23{width:250.230678px;}
._45{width:254.274000px;}
._44{width:263.376000px;}
._20{width:275.048400px;}
._1e{width:276.254400px;}
._4d{width:278.976000px;}
._32{width:308.998222px;}
._4e{width:311.400000px;}
._27{width:321.278400px;}
._41{width:360.678000px;}
._f{width:369.540000px;}
._31{width:380.027000px;}
._37{width:420.243600px;}
._2f{width:484.161600px;}
._3f{width:499.212000px;}
._30{width:533.332800px;}
._21{width:542.659800px;}
._3e{width:543.762000px;}
._1f{width:547.443600px;}
._3a{width:554.072400px;}
._2a{width:566.340000px;}
._29{width:568.740000px;}
._50{width:571.704000px;}
._2b{width:575.340000px;}
._51{width:576.552000px;}
._4f{width:579.144000px;}
._52{width:580.560000px;}
._2c{width:598.567200px;}
._28{width:603.241200px;}
._33{width:610.671600px;}
._3d{width:693.378000px;}
._3b{width:764.802000px;}
._35{width:780.217200px;}
.fc3{color:rgb(0,0,128);}
.fc6{color:rgb(208,4,3);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(17,17,17);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(171,56,52);}
.fs22{font-size:27.600000px;}
.fs9{font-size:34.800000px;}
.fs1f{font-size:39.600000px;}
.fs7{font-size:40.200000px;}
.fs12{font-size:41.400000px;}
.fs1{font-size:42.000000px;}
.fsa{font-size:44.400000px;}
.fsc{font-size:46.200000px;}
.fs21{font-size:48.000000px;}
.fs24{font-size:50.400000px;}
.fs23{font-size:54.000000px;}
.fs1e{font-size:58.800000px;}
.fs4{font-size:60.000000px;}
.fs16{font-size:61.800000px;}
.fs0{font-size:62.116428px;}
.fs13{font-size:62.400000px;}
.fs14{font-size:64.981395px;}
.fsf{font-size:65.400000px;}
.fs8{font-size:66.600000px;}
.fs17{font-size:66.737896px;}
.fs18{font-size:67.800000px;}
.fs19{font-size:69.000000px;}
.fsd{font-size:69.600000px;}
.fs1a{font-size:71.773526px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:74.539714px;}
.fs1c{font-size:81.600000px;}
.fs11{font-size:87.000000px;}
.fs2{font-size:96.000000px;}
.fs6{font-size:102.000000px;}
.fs1d{font-size:108.600000px;}
.fs20{font-size:111.600000px;}
.fs15{font-size:118.200000px;}
.fs10{font-size:124.800000px;}
.fsb{font-size:125.400000px;}
.fs1b{font-size:130.200000px;}
.fse{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.150000px;}
.yaa{bottom:3.750000px;}
.yb1{bottom:4.050000px;}
.y99{bottom:4.350000px;}
.y86{bottom:4.500000px;}
.yb5{bottom:4.650000px;}
.y62{bottom:4.800000px;}
.y6f{bottom:4.950000px;}
.y88{bottom:5.100000px;}
.y74{bottom:5.250000px;}
.y9f{bottom:6.150000px;}
.y7e{bottom:6.750000px;}
.yc3{bottom:8.400000px;}
.yc2{bottom:9.000000px;}
.y66{bottom:9.150000px;}
.ya2{bottom:10.650000px;}
.yc0{bottom:10.800000px;}
.ybf{bottom:12.450000px;}
.yc1{bottom:13.200000px;}
.ya9{bottom:17.250000px;}
.yb0{bottom:18.900000px;}
.y6e{bottom:19.050000px;}
.ya5{bottom:19.200000px;}
.y98{bottom:19.800000px;}
.y8f{bottom:21.000000px;}
.y8b{bottom:21.600000px;}
.y77{bottom:21.750000px;}
.y82{bottom:23.400000px;}
.y80{bottom:24.000000px;}
.ya3{bottom:24.300000px;}
.y8e{bottom:26.400000px;}
.y7a{bottom:26.550000px;}
.yb7{bottom:26.700000px;}
.yab{bottom:28.800000px;}
.y81{bottom:29.100000px;}
.yaf{bottom:30.900000px;}
.y9e{bottom:31.500000px;}
.y97{bottom:33.600000px;}
.y65{bottom:34.050000px;}
.y6d{bottom:34.800000px;}
.y9a{bottom:35.400000px;}
.y96{bottom:37.500000px;}
.y69{bottom:38.100000px;}
.ya1{bottom:38.250000px;}
.y67{bottom:42.300000px;}
.y9d{bottom:43.950000px;}
.y5f{bottom:44.550000px;}
.y68{bottom:46.650000px;}
.yb6{bottom:48.300000px;}
.ya4{bottom:48.600000px;}
.y9c{bottom:49.200000px;}
.y8a{bottom:50.250000px;}
.y76{bottom:50.550000px;}
.y6c{bottom:50.700000px;}
.y7f{bottom:50.850000px;}
.y1e{bottom:53.100000px;}
.ya0{bottom:53.700000px;}
.y61{bottom:54.750000px;}
.y8d{bottom:55.050000px;}
.y79{bottom:55.350000px;}
.y64{bottom:59.100000px;}
.y89{bottom:62.550000px;}
.y75{bottom:65.100000px;}
.y6b{bottom:66.600000px;}
.y8c{bottom:67.350000px;}
.y78{bottom:69.900000px;}
.y9b{bottom:73.200000px;}
.y60{bottom:79.800000px;}
.y6a{bottom:82.350000px;}
.y63{bottom:84.150000px;}
.y16c{bottom:87.450000px;}
.yf2{bottom:93.300000px;}
.y41{bottom:99.300000px;}
.y71{bottom:108.150000px;}
.y1d{bottom:110.400000px;}
.y16b{bottom:114.750000px;}
.yf1{bottom:120.600000px;}
.y40{bottom:126.600000px;}
.yae{bottom:135.600000px;}
.y17d{bottom:140.250000px;}
.y1c{bottom:140.850000px;}
.y16a{bottom:142.050000px;}
.y5e{bottom:145.050000px;}
.y3f{bottom:153.900000px;}
.yb2{bottom:154.950000px;}
.yf0{bottom:165.300000px;}
.y17c{bottom:167.550000px;}
.y169{bottom:169.350000px;}
.y1b{bottom:171.150000px;}
.y146{bottom:177.600000px;}
.y3e{bottom:181.200000px;}
.y70{bottom:189.900000px;}
.yd2{bottom:194.700000px;}
.y168{bottom:196.650000px;}
.y1a{bottom:201.600000px;}
.y145{bottom:204.900000px;}
.y3d{bottom:208.500000px;}
.yef{bottom:210.000000px;}
.y17b{bottom:212.250000px;}
.yd1{bottom:222.000000px;}
.yad{bottom:222.750000px;}
.y167{bottom:223.950000px;}
.y106{bottom:225.900000px;}
.y19{bottom:231.900000px;}
.y3c{bottom:235.800000px;}
.yee{bottom:237.300000px;}
.y17a{bottom:239.550000px;}
.y119{bottom:245.700000px;}
.y144{bottom:248.400000px;}
.yd0{bottom:249.300000px;}
.y166{bottom:251.250000px;}
.ya8{bottom:259.650000px;}
.y3b{bottom:263.100000px;}
.yed{bottom:264.600000px;}
.y179{bottom:266.850000px;}
.y105{bottom:270.600000px;}
.y118{bottom:273.000000px;}
.ycf{bottom:276.600000px;}
.yac{bottom:276.750000px;}
.y143{bottom:277.350000px;}
.y165{bottom:278.550000px;}
.y18{bottom:279.750000px;}
.y5d{bottom:280.500000px;}
.y3a{bottom:290.400000px;}
.yec{bottom:291.900000px;}
.y104{bottom:297.900000px;}
.y117{bottom:300.300000px;}
.y142{bottom:300.600000px;}
.y17{bottom:310.050000px;}
.y178{bottom:311.550000px;}
.y13f{bottom:312.150000px;}
.y39{bottom:317.700000px;}
.yeb{bottom:319.200000px;}
.yce{bottom:321.300000px;}
.y164{bottom:323.250000px;}
.y141{bottom:323.850000px;}
.y5c{bottom:325.200000px;}
.y177{bottom:338.850000px;}
.y16{bottom:340.500000px;}
.ya7{bottom:342.300000px;}
.y38{bottom:345.000000px;}
.y140{bottom:347.100000px;}
.y192{bottom:347.250000px;}
.y163{bottom:350.550000px;}
.y5b{bottom:352.500000px;}
.yea{bottom:363.900000px;}
.ycd{bottom:366.000000px;}
.y191{bottom:366.450000px;}
.y13e{bottom:370.350000px;}
.y15{bottom:370.800000px;}
.y37{bottom:372.300000px;}
.y162{bottom:377.850000px;}
.y95{bottom:379.200000px;}
.y5a{bottom:379.800000px;}
.y176{bottom:383.550000px;}
.y190{bottom:385.500000px;}
.ycc{bottom:393.300000px;}
.y13d{bottom:393.600000px;}
.y36{bottom:399.600000px;}
.y14{bottom:401.250000px;}
.y18f{bottom:404.700000px;}
.y13a{bottom:405.150000px;}
.ye9{bottom:408.600000px;}
.ya6{bottom:416.550000px;}
.y13c{bottom:416.850000px;}
.ycb{bottom:420.600000px;}
.y59{bottom:424.500000px;}
.y35{bottom:426.900000px;}
.y175{bottom:427.050000px;}
.y13{bottom:431.550000px;}
.y161{bottom:432.450000px;}
.ye8{bottom:435.900000px;}
.y13b{bottom:440.100000px;}
.yca{bottom:447.900000px;}
.y12f{bottom:451.650000px;}
.y58{bottom:451.800000px;}
.y34{bottom:454.200000px;}
.y160{bottom:459.750000px;}
.y12{bottom:462.000000px;}
.ye7{bottom:463.200000px;}
.y139{bottom:463.350000px;}
.y103{bottom:469.200000px;}
.y116{bottom:471.600000px;}
.y33{bottom:481.500000px;}
.y18e{bottom:485.850000px;}
.y138{bottom:486.600000px;}
.ye6{bottom:490.500000px;}
.y11{bottom:492.300000px;}
.yc9{bottom:492.600000px;}
.y57{bottom:496.500000px;}
.y135{bottom:498.150000px;}
.y94{bottom:502.350000px;}
.y15f{bottom:504.450000px;}
.y32{bottom:508.800000px;}
.y137{bottom:509.850000px;}
.y115{bottom:516.300000px;}
.ye5{bottom:517.800000px;}
.y102{bottom:523.800000px;}
.y136{bottom:533.100000px;}
.y31{bottom:536.100000px;}
.yc8{bottom:537.300000px;}
.y10{bottom:540.150000px;}
.y56{bottom:541.200000px;}
.y114{bottom:543.600000px;}
.y93{bottom:547.050000px;}
.y15e{bottom:549.150000px;}
.y101{bottom:551.100000px;}
.y134{bottom:556.350000px;}
.ye4{bottom:562.500000px;}
.y18d{bottom:567.900000px;}
.yf{bottom:570.450000px;}
.y113{bottom:570.900000px;}
.y15d{bottom:576.450000px;}
.y100{bottom:578.400000px;}
.y133{bottom:579.600000px;}
.y30{bottom:580.800000px;}
.yc7{bottom:582.000000px;}
.y55{bottom:585.900000px;}
.y92{bottom:586.950000px;}
.y130{bottom:591.150000px;}
.y18c{bottom:591.450000px;}
.y112{bottom:598.200000px;}
.ye{bottom:600.900000px;}
.y132{bottom:602.850000px;}
.y15c{bottom:603.750000px;}
.yff{bottom:605.700000px;}
.ye3{bottom:607.200000px;}
.y2f{bottom:608.100000px;}
.y54{bottom:613.200000px;}
.y18b{bottom:618.750000px;}
.y111{bottom:625.500000px;}
.y131{bottom:626.100000px;}
.yc6{bottom:626.700000px;}
.y15b{bottom:631.050000px;}
.yfe{bottom:633.000000px;}
.ye2{bottom:634.500000px;}
.y2e{bottom:635.400000px;}
.y91{bottom:638.250000px;}
.y53{bottom:640.500000px;}
.yd{bottom:648.600000px;}
.y12e{bottom:648.900000px;}
.y110{bottom:652.800000px;}
.y15a{bottom:658.350000px;}
.yfd{bottom:660.300000px;}
.ye1{bottom:661.800000px;}
.y2d{bottom:662.700000px;}
.y18a{bottom:663.450000px;}
.yc5{bottom:671.400000px;}
.y87{bottom:675.150000px;}
.y10f{bottom:680.100000px;}
.y52{bottom:685.200000px;}
.y159{bottom:685.650000px;}
.yfc{bottom:687.600000px;}
.ye0{bottom:689.100000px;}
.y2c{bottom:690.000000px;}
.y189{bottom:690.750000px;}
.y12d{bottom:706.200000px;}
.y10e{bottom:707.400000px;}
.ybe{bottom:708.300000px;}
.y158{bottom:712.950000px;}
.y90{bottom:714.150000px;}
.y2b{bottom:717.300000px;}
.y188{bottom:718.050000px;}
.yc4{bottom:719.400000px;}
.y51{bottom:729.900000px;}
.yc{bottom:731.700000px;}
.yfb{bottom:732.300000px;}
.y12c{bottom:733.500000px;}
.ydf{bottom:733.800000px;}
.y2a{bottom:744.600000px;}
.yb{bottom:748.950000px;}
.y10d{bottom:752.100000px;}
.y157{bottom:756.450000px;}
.y50{bottom:757.200000px;}
.y12b{bottom:760.800000px;}
.y187{bottom:762.750000px;}
.y29{bottom:771.900000px;}
.ybd{bottom:776.550000px;}
.yfa{bottom:777.000000px;}
.yde{bottom:778.500000px;}
.ya{bottom:783.150000px;}
.y4f{bottom:784.500000px;}
.y156{bottom:785.400000px;}
.y186{bottom:790.050000px;}
.y85{bottom:796.800000px;}
.y28{bottom:799.200000px;}
.yf9{bottom:804.300000px;}
.y84{bottom:805.050000px;}
.y12a{bottom:805.500000px;}
.y155{bottom:808.650000px;}
.y4e{bottom:811.800000px;}
.y185{bottom:817.350000px;}
.y152{bottom:820.200000px;}
.ybc{bottom:821.250000px;}
.ydd{bottom:823.200000px;}
.y10c{bottom:824.100000px;}
.y27{bottom:826.500000px;}
.yf8{bottom:831.600000px;}
.y154{bottom:831.900000px;}
.y9{bottom:834.750000px;}
.y4d{bottom:839.100000px;}
.y7d{bottom:848.550000px;}
.y129{bottom:850.200000px;}
.ydc{bottom:850.500000px;}
.y10b{bottom:851.400000px;}
.y26{bottom:853.800000px;}
.y153{bottom:855.150000px;}
.y174{bottom:856.500000px;}
.yf7{bottom:858.900000px;}
.y184{bottom:860.100000px;}
.y8{bottom:865.200000px;}
.y4c{bottom:866.400000px;}
.y83{bottom:875.400000px;}
.y128{bottom:877.500000px;}
.ydb{bottom:877.800000px;}
.y151{bottom:878.400000px;}
.y183{bottom:883.500000px;}
.y173{bottom:883.800000px;}
.yf6{bottom:886.200000px;}
.ybb{bottom:893.250000px;}
.y4b{bottom:893.700000px;}
.y10a{bottom:896.100000px;}
.y25{bottom:898.500000px;}
.y150{bottom:901.650000px;}
.yda{bottom:905.100000px;}
.y7{bottom:906.450000px;}
.y182{bottom:910.800000px;}
.y172{bottom:911.100000px;}
.y14d{bottom:913.200000px;}
.yf5{bottom:913.500000px;}
.y4a{bottom:921.000000px;}
.yba{bottom:921.900000px;}
.y14f{bottom:924.900000px;}
.y171{bottom:938.400000px;}
.yf4{bottom:940.800000px;}
.y14e{bottom:948.150000px;}
.y49{bottom:948.300000px;}
.yd9{bottom:949.800000px;}
.y127{bottom:949.950000px;}
.y7c{bottom:950.550000px;}
.yb9{bottom:951.150000px;}
.y181{bottom:955.500000px;}
.y170{bottom:965.700000px;}
.y109{bottom:968.100000px;}
.y14c{bottom:971.400000px;}
.y126{bottom:973.200000px;}
.y48{bottom:975.600000px;}
.y180{bottom:982.800000px;}
.yf3{bottom:985.500000px;}
.y122{bottom:986.550000px;}
.y73{bottom:987.450000px;}
.yb4{bottom:988.050000px;}
.y16f{bottom:993.000000px;}
.yd8{bottom:994.500000px;}
.y14b{bottom:994.650000px;}
.y108{bottom:995.400000px;}
.y125{bottom:996.450000px;}
.y24{bottom:1000.050000px;}
.y47{bottom:1002.900000px;}
.y121{bottom:1005.750000px;}
.y148{bottom:1006.200000px;}
.y6{bottom:1006.950000px;}
.y17f{bottom:1010.100000px;}
.yb8{bottom:1013.550000px;}
.y14a{bottom:1017.900000px;}
.y124{bottom:1019.700000px;}
.y16e{bottom:1020.300000px;}
.yd7{bottom:1021.800000px;}
.y7b{bottom:1025.700000px;}
.y46{bottom:1030.200000px;}
.y107{bottom:1040.100000px;}
.y149{bottom:1041.150000px;}
.y123{bottom:1042.650000px;}
.y5{bottom:1047.450000px;}
.y16d{bottom:1047.600000px;}
.y23{bottom:1047.900000px;}
.yd6{bottom:1049.100000px;}
.y17e{bottom:1052.850000px;}
.y120{bottom:1064.400000px;}
.y45{bottom:1074.900000px;}
.yd5{bottom:1076.400000px;}
.y22{bottom:1078.200000px;}
.yb3{bottom:1084.800000px;}
.y11f{bottom:1087.650000px;}
.y147{bottom:1099.200000px;}
.y11b{bottom:1101.000000px;}
.y44{bottom:1102.200000px;}
.yd4{bottom:1103.700000px;}
.y11e{bottom:1110.900000px;}
.y72{bottom:1112.100000px;}
.y11a{bottom:1120.050000px;}
.y21{bottom:1126.050000px;}
.y43{bottom:1129.500000px;}
.y11d{bottom:1134.150000px;}
.yd3{bottom:1148.400000px;}
.y20{bottom:1156.350000px;}
.y42{bottom:1156.800000px;}
.y11c{bottom:1156.950000px;}
.y4{bottom:1161.750000px;}
.y3{bottom:1179.150000px;}
.y1f{bottom:1197.150000px;}
.y2{bottom:1198.350000px;}
.h3a{height:27.495703px;}
.he{height:27.912305px;}
.h24{height:28.745508px;}
.h6{height:29.162109px;}
.h1d{height:30.000000px;}
.h13{height:30.828516px;}
.h17{height:32.078320px;}
.h3e{height:32.115234px;}
.h3{height:34.371094px;}
.h36{height:34.500000px;}
.hf{height:37.236035px;}
.h27{height:38.347559px;}
.h3f{height:39.281250px;}
.h1c{height:39.990234px;}
.h39{height:40.826953px;}
.h15{height:41.126367px;}
.h41{height:41.245313px;}
.h7{height:41.660156px;}
.h19{height:42.793652px;}
.h2b{height:42.909961px;}
.h2{height:43.250989px;}
.h25{height:43.326563px;}
.h40{height:44.191406px;}
.h1e{height:45.409570px;}
.h3d{height:45.585938px;}
.ha{height:45.878906px;}
.h14{height:46.242773px;}
.h2a{height:46.500000px;}
.h2f{height:47.075977px;}
.h32{height:47.909180px;}
.h9{height:47.988281px;}
.h18{height:48.325781px;}
.hb{height:49.101562px;}
.h2e{height:51.000000px;}
.h8{height:51.901187px;}
.h21{height:52.409766px;}
.h5{height:53.793164px;}
.h3b{height:54.464648px;}
.h10{height:55.576172px;}
.h2d{height:57.243457px;}
.h28{height:57.799219px;}
.h26{height:60.190286px;}
.h11{height:61.689551px;}
.h2c{height:61.817280px;}
.h30{height:62.801074px;}
.h31{height:63.000000px;}
.h34{height:63.912598px;}
.h1a{height:64.468359px;}
.h16{height:66.000000px;}
.h33{height:66.481630px;}
.h4{height:66.843750px;}
.h37{height:75.583594px;}
.h23{height:80.585449px;}
.h22{height:87.000000px;}
.h12{height:88.500000px;}
.h1f{height:90.000000px;}
.hd{height:94.479492px;}
.h38{height:100.592871px;}
.hc{height:101.550000px;}
.h3c{height:103.371680px;}
.h29{height:109.485059px;}
.h20{height:115.598438px;}
.h35{height:120.600293px;}
.h1b{height:122.267578px;}
.h1{height:1262.700000px;}
.h0{height:1263.000000px;}
.w4{width:21.000000px;}
.w2{width:88.500000px;}
.w8{width:124.500000px;}
.w3{width:127.650000px;}
.w9{width:133.800000px;}
.w5{width:148.800000px;}
.w7{width:160.050000px;}
.wa{width:235.650000px;}
.w1{width:298.200000px;}
.w6{width:339.600000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x29{left:3.900000px;}
.x1e{left:5.850000px;}
.x36{left:12.900000px;}
.x25{left:13.950000px;}
.x42{left:15.600000px;}
.x57{left:18.750000px;}
.x30{left:20.850000px;}
.x54{left:21.900000px;}
.x20{left:23.100000px;}
.x2c{left:27.450000px;}
.x33{left:36.300000px;}
.x15{left:39.000000px;}
.x3e{left:41.550000px;}
.x27{left:46.650000px;}
.x4d{left:49.200000px;}
.x2b{left:50.850000px;}
.x28{left:54.900000px;}
.x1c{left:56.550000px;}
.x58{left:60.750000px;}
.x24{left:62.100000px;}
.x31{left:64.200000px;}
.x5b{left:65.850000px;}
.x2a{left:67.200000px;}
.x2f{left:69.450000px;}
.x32{left:70.650000px;}
.x50{left:71.850000px;}
.x26{left:74.400000px;}
.x55{left:77.850000px;}
.x2e{left:79.200000px;}
.x5a{left:80.400000px;}
.x3d{left:81.750000px;}
.x1f{left:83.400000px;}
.xa{left:85.200000px;}
.x6e{left:86.400000px;}
.x5c{left:88.350000px;}
.x3b{left:90.000000px;}
.x39{left:91.500000px;}
.x5e{left:93.750000px;}
.x53{left:95.250000px;}
.x49{left:97.200000px;}
.x7{left:98.400000px;}
.x4{left:107.550000px;}
.x3c{left:111.150000px;}
.x13{left:112.200000px;}
.x69{left:114.300000px;}
.x65{left:116.250000px;}
.x34{left:117.450000px;}
.x40{left:118.500000px;}
.x51{left:121.650000px;}
.x21{left:123.450000px;}
.x3a{left:128.550000px;}
.x4b{left:130.050000px;}
.x1d{left:133.050000px;}
.x19{left:137.250000px;}
.xb{left:139.200000px;}
.x16{left:140.850000px;}
.x35{left:144.300000px;}
.x17{left:148.200000px;}
.x12{left:149.700000px;}
.x64{left:151.650000px;}
.x48{left:152.850000px;}
.x37{left:165.450000px;}
.x8{left:167.850000px;}
.x47{left:172.950000px;}
.x6f{left:193.200000px;}
.xc{left:196.800000px;}
.xe{left:203.700000px;}
.x18{left:223.500000px;}
.x6b{left:230.700000px;}
.x45{left:235.350000px;}
.x10{left:237.900000px;}
.x5{left:241.950000px;}
.x62{left:248.550000px;}
.x6d{left:252.750000px;}
.x11{left:256.800000px;}
.x4e{left:258.450000px;}
.x3f{left:259.500000px;}
.x46{left:264.750000px;}
.x43{left:269.100000px;}
.x4c{left:270.300000px;}
.x1a{left:273.600000px;}
.x1b{left:274.800000px;}
.x41{left:277.650000px;}
.x14{left:280.200000px;}
.x4a{left:289.500000px;}
.x60{left:297.450000px;}
.x44{left:298.800000px;}
.x5f{left:307.200000px;}
.x9{left:308.400000px;}
.x59{left:311.400000px;}
.x6c{left:313.800000px;}
.x70{left:316.500000px;}
.x61{left:330.000000px;}
.xd{left:334.200000px;}
.x4f{left:349.500000px;}
.x6{left:353.400000px;}
.x38{left:354.900000px;}
.x56{left:362.400000px;}
.x2d{left:365.550000px;}
.x52{left:367.050000px;}
.x2{left:375.000000px;}
.x6a{left:378.300000px;}
.x66{left:380.100000px;}
.x63{left:382.500000px;}
.x23{left:384.900000px;}
.xf{left:431.850000px;}
.x67{left:446.400000px;}
.x68{left:540.750000px;}
.x1{left:543.900000px;}
.x3{left:614.400000px;}
.x5d{left:775.500000px;}
.x22{left:784.950000px;}
@media print{
.v6{vertical-align:-121.600000pt;}
.v8{vertical-align:-52.800000pt;}
.v7{vertical-align:-48.000000pt;}
.v2{vertical-align:-22.933333pt;}
.v3{vertical-align:-14.933333pt;}
.v5{vertical-align:-11.733333pt;}
.v4{vertical-align:-4.800000pt;}
.v9{vertical-align:-3.733333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.021333pt;}
.lsb{letter-spacing:0.053333pt;}
.ls3{letter-spacing:0.057600pt;}
.ls10{letter-spacing:0.085333pt;}
.ls8{letter-spacing:0.090667pt;}
.ls6{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.320000pt;}
.ls2{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.426667pt;}
.ls5{letter-spacing:22.432533pt;}
.ls4{letter-spacing:77.066667pt;}
.lsf{letter-spacing:101.754667pt;}
.lsd{letter-spacing:106.554667pt;}
.lsc{letter-spacing:107.256181pt;}
.ls7{letter-spacing:290.108320pt;}
.lsa{letter-spacing:1087.611733pt;}
.ws11{word-spacing:-18.720000pt;}
.ws32{word-spacing:-18.186667pt;}
.ws2{word-spacing:-16.564381pt;}
.ws3e{word-spacing:-15.724800pt;}
.ws38{word-spacing:-15.061333pt;}
.ws35{word-spacing:-14.976000pt;}
.ws0{word-spacing:-13.104000pt;}
.ws33{word-spacing:-12.730667pt;}
.ws14{word-spacing:-10.857600pt;}
.ws1{word-spacing:-9.333333pt;}
.ws12{word-spacing:-0.039467pt;}
.ws3{word-spacing:0.000000pt;}
.ws2b{word-spacing:14.992692pt;}
.ws15{word-spacing:15.728533pt;}
.ws1a{word-spacing:15.860800pt;}
.ws9{word-spacing:16.151467pt;}
.ws7{word-spacing:18.026667pt;}
.ws8{word-spacing:19.093333pt;}
.ws18{word-spacing:24.140800pt;}
.ws5{word-spacing:26.871467pt;}
.ws2e{word-spacing:38.311467pt;}
.ws1e{word-spacing:49.809067pt;}
.ws22{word-spacing:78.444800pt;}
.wsa{word-spacing:82.865600pt;}
.ws24{word-spacing:85.638933pt;}
.ws26{word-spacing:86.121067pt;}
.ws29{word-spacing:92.690133pt;}
.ws23{word-spacing:93.441600pt;}
.ws30{word-spacing:98.888533pt;}
.ws1d{word-spacing:101.226667pt;}
.ws4{word-spacing:102.020920pt;}
.ws28{word-spacing:102.152000pt;}
.ws27{word-spacing:102.694400pt;}
.ws2a{word-spacing:104.268267pt;}
.ws13{word-spacing:110.659200pt;}
.ws25{word-spacing:113.904000pt;}
.ws2c{word-spacing:146.450015pt;}
.ws17{word-spacing:150.185165pt;}
.ws31{word-spacing:193.440000pt;}
.ws3b{word-spacing:216.469333pt;}
.ws3a{word-spacing:217.066667pt;}
.ws3c{word-spacing:220.778667pt;}
.ws37{word-spacing:222.549333pt;}
.ws3d{word-spacing:224.341333pt;}
.ws39{word-spacing:230.933333pt;}
.wsf{word-spacing:237.866667pt;}
.wsd{word-spacing:243.626667pt;}
.wse{word-spacing:267.626667pt;}
.wsc{word-spacing:272.426667pt;}
.wsb{word-spacing:273.493333pt;}
.ws6{word-spacing:295.657600pt;}
.ws21{word-spacing:355.230400pt;}
.ws1f{word-spacing:408.789333pt;}
.ws20{word-spacing:412.672000pt;}
.ws10{word-spacing:503.732800pt;}
.ws16{word-spacing:504.275200pt;}
.ws2f{word-spacing:509.660800pt;}
.ws1c{word-spacing:845.185600pt;}
.ws19{word-spacing:876.151467pt;}
.ws34{word-spacing:933.216000pt;}
.ws1b{word-spacing:933.726400pt;}
.ws36{word-spacing:935.626667pt;}
.ws2d{word-spacing:940.644144pt;}
._e{margin-left:-343.051835pt;}
._10{margin-left:-202.517573pt;}
._17{margin-left:-14.687084pt;}
._8{margin-left:-12.202427pt;}
._12{margin-left:-10.413474pt;}
._1{margin-left:-9.386482pt;}
._6{margin-left:-8.006117pt;}
._2{margin-left:-6.736182pt;}
._0{margin-left:-5.245387pt;}
._3{margin-left:-3.975451pt;}
._4{margin-left:-2.208584pt;}
._7{margin-left:-1.269936pt;}
._9{width:1.029333pt;}
._14{width:2.048000pt;}
._c{width:2.945168pt;}
._18{width:4.206229pt;}
._d{width:5.483853pt;}
._19{width:6.481731pt;}
._5{width:7.564401pt;}
._15{width:8.645936pt;}
._1a{width:9.765917pt;}
._13{width:10.787599pt;}
._1b{width:11.883798pt;}
._a{width:12.784603pt;}
._b{width:14.560603pt;}
._34{width:15.837685pt;}
._16{width:17.466064pt;}
._24{width:20.746667pt;}
._22{width:21.813333pt;}
._1d{width:27.979200pt;}
._53{width:35.616710pt;}
._2d{width:41.252800pt;}
._1c{width:42.773333pt;}
._36{width:51.587200pt;}
._38{width:53.207467pt;}
._59{width:57.600000pt;}
._55{width:58.560000pt;}
._54{width:59.680000pt;}
._3c{width:85.418667pt;}
._42{width:89.904000pt;}
._26{width:99.781904pt;}
._57{width:100.960000pt;}
._40{width:101.996800pt;}
._5a{width:114.549936pt;}
._5b{width:115.460731pt;}
._46{width:116.794667pt;}
._56{width:119.109515pt;}
._39{width:132.339200pt;}
._2e{width:135.387200pt;}
._43{width:139.397333pt;}
._47{width:140.960000pt;}
._4b{width:144.693333pt;}
._4c{width:157.589333pt;}
._48{width:162.576000pt;}
._4a{width:178.192000pt;}
._49{width:182.314667pt;}
._25{width:187.680000pt;}
._11{width:188.746667pt;}
._58{width:201.706667pt;}
._23{width:222.427269pt;}
._45{width:226.021333pt;}
._44{width:234.112000pt;}
._20{width:244.487467pt;}
._1e{width:245.559467pt;}
._4d{width:247.978667pt;}
._32{width:274.665086pt;}
._4e{width:276.800000pt;}
._27{width:285.580800pt;}
._41{width:320.602667pt;}
._f{width:328.480000pt;}
._31{width:337.801778pt;}
._37{width:373.549867pt;}
._2f{width:430.365867pt;}
._3f{width:443.744000pt;}
._30{width:474.073600pt;}
._21{width:482.364267pt;}
._3e{width:483.344000pt;}
._1f{width:486.616533pt;}
._3a{width:492.508800pt;}
._2a{width:503.413333pt;}
._29{width:505.546667pt;}
._50{width:508.181333pt;}
._2b{width:511.413333pt;}
._51{width:512.490667pt;}
._4f{width:514.794667pt;}
._52{width:516.053333pt;}
._2c{width:532.059733pt;}
._28{width:536.214400pt;}
._33{width:542.819200pt;}
._3d{width:616.336000pt;}
._3b{width:679.824000pt;}
._35{width:693.526400pt;}
.fs22{font-size:24.533333pt;}
.fs9{font-size:30.933333pt;}
.fs1f{font-size:35.200000pt;}
.fs7{font-size:35.733333pt;}
.fs12{font-size:36.800000pt;}
.fs1{font-size:37.333333pt;}
.fsa{font-size:39.466667pt;}
.fsc{font-size:41.066667pt;}
.fs21{font-size:42.666667pt;}
.fs24{font-size:44.800000pt;}
.fs23{font-size:48.000000pt;}
.fs1e{font-size:52.266667pt;}
.fs4{font-size:53.333333pt;}
.fs16{font-size:54.933333pt;}
.fs0{font-size:55.214603pt;}
.fs13{font-size:55.466667pt;}
.fs14{font-size:57.761240pt;}
.fsf{font-size:58.133333pt;}
.fs8{font-size:59.200000pt;}
.fs17{font-size:59.322574pt;}
.fs18{font-size:60.266667pt;}
.fs19{font-size:61.333333pt;}
.fsd{font-size:61.866667pt;}
.fs1a{font-size:63.798690pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:66.257523pt;}
.fs1c{font-size:72.533333pt;}
.fs11{font-size:77.333333pt;}
.fs2{font-size:85.333333pt;}
.fs6{font-size:90.666667pt;}
.fs1d{font-size:96.533333pt;}
.fs20{font-size:99.200000pt;}
.fs15{font-size:105.066667pt;}
.fs10{font-size:110.933333pt;}
.fsb{font-size:111.466667pt;}
.fs1b{font-size:115.733333pt;}
.fse{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.133333pt;}
.yaa{bottom:3.333333pt;}
.yb1{bottom:3.600000pt;}
.y99{bottom:3.866667pt;}
.y86{bottom:4.000000pt;}
.yb5{bottom:4.133333pt;}
.y62{bottom:4.266667pt;}
.y6f{bottom:4.400000pt;}
.y88{bottom:4.533333pt;}
.y74{bottom:4.666667pt;}
.y9f{bottom:5.466667pt;}
.y7e{bottom:6.000000pt;}
.yc3{bottom:7.466667pt;}
.yc2{bottom:8.000000pt;}
.y66{bottom:8.133333pt;}
.ya2{bottom:9.466667pt;}
.yc0{bottom:9.600000pt;}
.ybf{bottom:11.066667pt;}
.yc1{bottom:11.733333pt;}
.ya9{bottom:15.333333pt;}
.yb0{bottom:16.800000pt;}
.y6e{bottom:16.933333pt;}
.ya5{bottom:17.066667pt;}
.y98{bottom:17.600000pt;}
.y8f{bottom:18.666667pt;}
.y8b{bottom:19.200000pt;}
.y77{bottom:19.333333pt;}
.y82{bottom:20.800000pt;}
.y80{bottom:21.333333pt;}
.ya3{bottom:21.600000pt;}
.y8e{bottom:23.466667pt;}
.y7a{bottom:23.600000pt;}
.yb7{bottom:23.733333pt;}
.yab{bottom:25.600000pt;}
.y81{bottom:25.866667pt;}
.yaf{bottom:27.466667pt;}
.y9e{bottom:28.000000pt;}
.y97{bottom:29.866667pt;}
.y65{bottom:30.266667pt;}
.y6d{bottom:30.933333pt;}
.y9a{bottom:31.466667pt;}
.y96{bottom:33.333333pt;}
.y69{bottom:33.866667pt;}
.ya1{bottom:34.000000pt;}
.y67{bottom:37.600000pt;}
.y9d{bottom:39.066667pt;}
.y5f{bottom:39.600000pt;}
.y68{bottom:41.466667pt;}
.yb6{bottom:42.933333pt;}
.ya4{bottom:43.200000pt;}
.y9c{bottom:43.733333pt;}
.y8a{bottom:44.666667pt;}
.y76{bottom:44.933333pt;}
.y6c{bottom:45.066667pt;}
.y7f{bottom:45.200000pt;}
.y1e{bottom:47.200000pt;}
.ya0{bottom:47.733333pt;}
.y61{bottom:48.666667pt;}
.y8d{bottom:48.933333pt;}
.y79{bottom:49.200000pt;}
.y64{bottom:52.533333pt;}
.y89{bottom:55.600000pt;}
.y75{bottom:57.866667pt;}
.y6b{bottom:59.200000pt;}
.y8c{bottom:59.866667pt;}
.y78{bottom:62.133333pt;}
.y9b{bottom:65.066667pt;}
.y60{bottom:70.933333pt;}
.y6a{bottom:73.200000pt;}
.y63{bottom:74.800000pt;}
.y16c{bottom:77.733333pt;}
.yf2{bottom:82.933333pt;}
.y41{bottom:88.266667pt;}
.y71{bottom:96.133333pt;}
.y1d{bottom:98.133333pt;}
.y16b{bottom:102.000000pt;}
.yf1{bottom:107.200000pt;}
.y40{bottom:112.533333pt;}
.yae{bottom:120.533333pt;}
.y17d{bottom:124.666667pt;}
.y1c{bottom:125.200000pt;}
.y16a{bottom:126.266667pt;}
.y5e{bottom:128.933333pt;}
.y3f{bottom:136.800000pt;}
.yb2{bottom:137.733333pt;}
.yf0{bottom:146.933333pt;}
.y17c{bottom:148.933333pt;}
.y169{bottom:150.533333pt;}
.y1b{bottom:152.133333pt;}
.y146{bottom:157.866667pt;}
.y3e{bottom:161.066667pt;}
.y70{bottom:168.800000pt;}
.yd2{bottom:173.066667pt;}
.y168{bottom:174.800000pt;}
.y1a{bottom:179.200000pt;}
.y145{bottom:182.133333pt;}
.y3d{bottom:185.333333pt;}
.yef{bottom:186.666667pt;}
.y17b{bottom:188.666667pt;}
.yd1{bottom:197.333333pt;}
.yad{bottom:198.000000pt;}
.y167{bottom:199.066667pt;}
.y106{bottom:200.800000pt;}
.y19{bottom:206.133333pt;}
.y3c{bottom:209.600000pt;}
.yee{bottom:210.933333pt;}
.y17a{bottom:212.933333pt;}
.y119{bottom:218.400000pt;}
.y144{bottom:220.800000pt;}
.yd0{bottom:221.600000pt;}
.y166{bottom:223.333333pt;}
.ya8{bottom:230.800000pt;}
.y3b{bottom:233.866667pt;}
.yed{bottom:235.200000pt;}
.y179{bottom:237.200000pt;}
.y105{bottom:240.533333pt;}
.y118{bottom:242.666667pt;}
.ycf{bottom:245.866667pt;}
.yac{bottom:246.000000pt;}
.y143{bottom:246.533333pt;}
.y165{bottom:247.600000pt;}
.y18{bottom:248.666667pt;}
.y5d{bottom:249.333333pt;}
.y3a{bottom:258.133333pt;}
.yec{bottom:259.466667pt;}
.y104{bottom:264.800000pt;}
.y117{bottom:266.933333pt;}
.y142{bottom:267.200000pt;}
.y17{bottom:275.600000pt;}
.y178{bottom:276.933333pt;}
.y13f{bottom:277.466667pt;}
.y39{bottom:282.400000pt;}
.yeb{bottom:283.733333pt;}
.yce{bottom:285.600000pt;}
.y164{bottom:287.333333pt;}
.y141{bottom:287.866667pt;}
.y5c{bottom:289.066667pt;}
.y177{bottom:301.200000pt;}
.y16{bottom:302.666667pt;}
.ya7{bottom:304.266667pt;}
.y38{bottom:306.666667pt;}
.y140{bottom:308.533333pt;}
.y192{bottom:308.666667pt;}
.y163{bottom:311.600000pt;}
.y5b{bottom:313.333333pt;}
.yea{bottom:323.466667pt;}
.ycd{bottom:325.333333pt;}
.y191{bottom:325.733333pt;}
.y13e{bottom:329.200000pt;}
.y15{bottom:329.600000pt;}
.y37{bottom:330.933333pt;}
.y162{bottom:335.866667pt;}
.y95{bottom:337.066667pt;}
.y5a{bottom:337.600000pt;}
.y176{bottom:340.933333pt;}
.y190{bottom:342.666667pt;}
.ycc{bottom:349.600000pt;}
.y13d{bottom:349.866667pt;}
.y36{bottom:355.200000pt;}
.y14{bottom:356.666667pt;}
.y18f{bottom:359.733333pt;}
.y13a{bottom:360.133333pt;}
.ye9{bottom:363.200000pt;}
.ya6{bottom:370.266667pt;}
.y13c{bottom:370.533333pt;}
.ycb{bottom:373.866667pt;}
.y59{bottom:377.333333pt;}
.y35{bottom:379.466667pt;}
.y175{bottom:379.600000pt;}
.y13{bottom:383.600000pt;}
.y161{bottom:384.400000pt;}
.ye8{bottom:387.466667pt;}
.y13b{bottom:391.200000pt;}
.yca{bottom:398.133333pt;}
.y12f{bottom:401.466667pt;}
.y58{bottom:401.600000pt;}
.y34{bottom:403.733333pt;}
.y160{bottom:408.666667pt;}
.y12{bottom:410.666667pt;}
.ye7{bottom:411.733333pt;}
.y139{bottom:411.866667pt;}
.y103{bottom:417.066667pt;}
.y116{bottom:419.200000pt;}
.y33{bottom:428.000000pt;}
.y18e{bottom:431.866667pt;}
.y138{bottom:432.533333pt;}
.ye6{bottom:436.000000pt;}
.y11{bottom:437.600000pt;}
.yc9{bottom:437.866667pt;}
.y57{bottom:441.333333pt;}
.y135{bottom:442.800000pt;}
.y94{bottom:446.533333pt;}
.y15f{bottom:448.400000pt;}
.y32{bottom:452.266667pt;}
.y137{bottom:453.200000pt;}
.y115{bottom:458.933333pt;}
.ye5{bottom:460.266667pt;}
.y102{bottom:465.600000pt;}
.y136{bottom:473.866667pt;}
.y31{bottom:476.533333pt;}
.yc8{bottom:477.600000pt;}
.y10{bottom:480.133333pt;}
.y56{bottom:481.066667pt;}
.y114{bottom:483.200000pt;}
.y93{bottom:486.266667pt;}
.y15e{bottom:488.133333pt;}
.y101{bottom:489.866667pt;}
.y134{bottom:494.533333pt;}
.ye4{bottom:500.000000pt;}
.y18d{bottom:504.800000pt;}
.yf{bottom:507.066667pt;}
.y113{bottom:507.466667pt;}
.y15d{bottom:512.400000pt;}
.y100{bottom:514.133333pt;}
.y133{bottom:515.200000pt;}
.y30{bottom:516.266667pt;}
.yc7{bottom:517.333333pt;}
.y55{bottom:520.800000pt;}
.y92{bottom:521.733333pt;}
.y130{bottom:525.466667pt;}
.y18c{bottom:525.733333pt;}
.y112{bottom:531.733333pt;}
.ye{bottom:534.133333pt;}
.y132{bottom:535.866667pt;}
.y15c{bottom:536.666667pt;}
.yff{bottom:538.400000pt;}
.ye3{bottom:539.733333pt;}
.y2f{bottom:540.533333pt;}
.y54{bottom:545.066667pt;}
.y18b{bottom:550.000000pt;}
.y111{bottom:556.000000pt;}
.y131{bottom:556.533333pt;}
.yc6{bottom:557.066667pt;}
.y15b{bottom:560.933333pt;}
.yfe{bottom:562.666667pt;}
.ye2{bottom:564.000000pt;}
.y2e{bottom:564.800000pt;}
.y91{bottom:567.333333pt;}
.y53{bottom:569.333333pt;}
.yd{bottom:576.533333pt;}
.y12e{bottom:576.800000pt;}
.y110{bottom:580.266667pt;}
.y15a{bottom:585.200000pt;}
.yfd{bottom:586.933333pt;}
.ye1{bottom:588.266667pt;}
.y2d{bottom:589.066667pt;}
.y18a{bottom:589.733333pt;}
.yc5{bottom:596.800000pt;}
.y87{bottom:600.133333pt;}
.y10f{bottom:604.533333pt;}
.y52{bottom:609.066667pt;}
.y159{bottom:609.466667pt;}
.yfc{bottom:611.200000pt;}
.ye0{bottom:612.533333pt;}
.y2c{bottom:613.333333pt;}
.y189{bottom:614.000000pt;}
.y12d{bottom:627.733333pt;}
.y10e{bottom:628.800000pt;}
.ybe{bottom:629.600000pt;}
.y158{bottom:633.733333pt;}
.y90{bottom:634.800000pt;}
.y2b{bottom:637.600000pt;}
.y188{bottom:638.266667pt;}
.yc4{bottom:639.466667pt;}
.y51{bottom:648.800000pt;}
.yc{bottom:650.400000pt;}
.yfb{bottom:650.933333pt;}
.y12c{bottom:652.000000pt;}
.ydf{bottom:652.266667pt;}
.y2a{bottom:661.866667pt;}
.yb{bottom:665.733333pt;}
.y10d{bottom:668.533333pt;}
.y157{bottom:672.400000pt;}
.y50{bottom:673.066667pt;}
.y12b{bottom:676.266667pt;}
.y187{bottom:678.000000pt;}
.y29{bottom:686.133333pt;}
.ybd{bottom:690.266667pt;}
.yfa{bottom:690.666667pt;}
.yde{bottom:692.000000pt;}
.ya{bottom:696.133333pt;}
.y4f{bottom:697.333333pt;}
.y156{bottom:698.133333pt;}
.y186{bottom:702.266667pt;}
.y85{bottom:708.266667pt;}
.y28{bottom:710.400000pt;}
.yf9{bottom:714.933333pt;}
.y84{bottom:715.600000pt;}
.y12a{bottom:716.000000pt;}
.y155{bottom:718.800000pt;}
.y4e{bottom:721.600000pt;}
.y185{bottom:726.533333pt;}
.y152{bottom:729.066667pt;}
.ybc{bottom:730.000000pt;}
.ydd{bottom:731.733333pt;}
.y10c{bottom:732.533333pt;}
.y27{bottom:734.666667pt;}
.yf8{bottom:739.200000pt;}
.y154{bottom:739.466667pt;}
.y9{bottom:742.000000pt;}
.y4d{bottom:745.866667pt;}
.y7d{bottom:754.266667pt;}
.y129{bottom:755.733333pt;}
.ydc{bottom:756.000000pt;}
.y10b{bottom:756.800000pt;}
.y26{bottom:758.933333pt;}
.y153{bottom:760.133333pt;}
.y174{bottom:761.333333pt;}
.yf7{bottom:763.466667pt;}
.y184{bottom:764.533333pt;}
.y8{bottom:769.066667pt;}
.y4c{bottom:770.133333pt;}
.y83{bottom:778.133333pt;}
.y128{bottom:780.000000pt;}
.ydb{bottom:780.266667pt;}
.y151{bottom:780.800000pt;}
.y183{bottom:785.333333pt;}
.y173{bottom:785.600000pt;}
.yf6{bottom:787.733333pt;}
.ybb{bottom:794.000000pt;}
.y4b{bottom:794.400000pt;}
.y10a{bottom:796.533333pt;}
.y25{bottom:798.666667pt;}
.y150{bottom:801.466667pt;}
.yda{bottom:804.533333pt;}
.y7{bottom:805.733333pt;}
.y182{bottom:809.600000pt;}
.y172{bottom:809.866667pt;}
.y14d{bottom:811.733333pt;}
.yf5{bottom:812.000000pt;}
.y4a{bottom:818.666667pt;}
.yba{bottom:819.466667pt;}
.y14f{bottom:822.133333pt;}
.y171{bottom:834.133333pt;}
.yf4{bottom:836.266667pt;}
.y14e{bottom:842.800000pt;}
.y49{bottom:842.933333pt;}
.yd9{bottom:844.266667pt;}
.y127{bottom:844.400000pt;}
.y7c{bottom:844.933333pt;}
.yb9{bottom:845.466667pt;}
.y181{bottom:849.333333pt;}
.y170{bottom:858.400000pt;}
.y109{bottom:860.533333pt;}
.y14c{bottom:863.466667pt;}
.y126{bottom:865.066667pt;}
.y48{bottom:867.200000pt;}
.y180{bottom:873.600000pt;}
.yf3{bottom:876.000000pt;}
.y122{bottom:876.933333pt;}
.y73{bottom:877.733333pt;}
.yb4{bottom:878.266667pt;}
.y16f{bottom:882.666667pt;}
.yd8{bottom:884.000000pt;}
.y14b{bottom:884.133333pt;}
.y108{bottom:884.800000pt;}
.y125{bottom:885.733333pt;}
.y24{bottom:888.933333pt;}
.y47{bottom:891.466667pt;}
.y121{bottom:894.000000pt;}
.y148{bottom:894.400000pt;}
.y6{bottom:895.066667pt;}
.y17f{bottom:897.866667pt;}
.yb8{bottom:900.933333pt;}
.y14a{bottom:904.800000pt;}
.y124{bottom:906.400000pt;}
.y16e{bottom:906.933333pt;}
.yd7{bottom:908.266667pt;}
.y7b{bottom:911.733333pt;}
.y46{bottom:915.733333pt;}
.y107{bottom:924.533333pt;}
.y149{bottom:925.466667pt;}
.y123{bottom:926.800000pt;}
.y5{bottom:931.066667pt;}
.y16d{bottom:931.200000pt;}
.y23{bottom:931.466667pt;}
.yd6{bottom:932.533333pt;}
.y17e{bottom:935.866667pt;}
.y120{bottom:946.133333pt;}
.y45{bottom:955.466667pt;}
.yd5{bottom:956.800000pt;}
.y22{bottom:958.400000pt;}
.yb3{bottom:964.266667pt;}
.y11f{bottom:966.800000pt;}
.y147{bottom:977.066667pt;}
.y11b{bottom:978.666667pt;}
.y44{bottom:979.733333pt;}
.yd4{bottom:981.066667pt;}
.y11e{bottom:987.466667pt;}
.y72{bottom:988.533333pt;}
.y11a{bottom:995.600000pt;}
.y21{bottom:1000.933333pt;}
.y43{bottom:1004.000000pt;}
.y11d{bottom:1008.133333pt;}
.yd3{bottom:1020.800000pt;}
.y20{bottom:1027.866667pt;}
.y42{bottom:1028.266667pt;}
.y11c{bottom:1028.400000pt;}
.y4{bottom:1032.666667pt;}
.y3{bottom:1048.133333pt;}
.y1f{bottom:1064.133333pt;}
.y2{bottom:1065.200000pt;}
.h3a{height:24.440625pt;}
.he{height:24.810937pt;}
.h24{height:25.551563pt;}
.h6{height:25.921875pt;}
.h1d{height:26.666667pt;}
.h13{height:27.403125pt;}
.h17{height:28.514063pt;}
.h3e{height:28.546875pt;}
.h3{height:30.552083pt;}
.h36{height:30.666667pt;}
.hf{height:33.098698pt;}
.h27{height:34.086719pt;}
.h3f{height:34.916667pt;}
.h1c{height:35.546875pt;}
.h39{height:36.290625pt;}
.h15{height:36.556771pt;}
.h41{height:36.662500pt;}
.h7{height:37.031250pt;}
.h19{height:38.038802pt;}
.h2b{height:38.142187pt;}
.h2{height:38.445324pt;}
.h25{height:38.512500pt;}
.h40{height:39.281250pt;}
.h1e{height:40.364062pt;}
.h3d{height:40.520833pt;}
.ha{height:40.781250pt;}
.h14{height:41.104687pt;}
.h2a{height:41.333333pt;}
.h2f{height:41.845313pt;}
.h32{height:42.585938pt;}
.h9{height:42.656250pt;}
.h18{height:42.956250pt;}
.hb{height:43.645833pt;}
.h2e{height:45.333333pt;}
.h8{height:46.134389pt;}
.h21{height:46.586458pt;}
.h5{height:47.816146pt;}
.h3b{height:48.413021pt;}
.h10{height:49.401042pt;}
.h2d{height:50.883073pt;}
.h28{height:51.377083pt;}
.h26{height:53.502476pt;}
.h11{height:54.835156pt;}
.h2c{height:54.948693pt;}
.h30{height:55.823177pt;}
.h31{height:56.000000pt;}
.h34{height:56.811198pt;}
.h1a{height:57.305208pt;}
.h16{height:58.666667pt;}
.h33{height:59.094782pt;}
.h4{height:59.416667pt;}
.h37{height:67.185417pt;}
.h23{height:71.631510pt;}
.h22{height:77.333333pt;}
.h12{height:78.666667pt;}
.h1f{height:80.000000pt;}
.hd{height:83.981771pt;}
.h38{height:89.415885pt;}
.hc{height:90.266667pt;}
.h3c{height:91.885937pt;}
.h29{height:97.320052pt;}
.h20{height:102.754167pt;}
.h35{height:107.200260pt;}
.h1b{height:108.682292pt;}
.h1{height:1122.400000pt;}
.h0{height:1122.666667pt;}
.w4{width:18.666667pt;}
.w2{width:78.666667pt;}
.w8{width:110.666667pt;}
.w3{width:113.466667pt;}
.w9{width:118.933333pt;}
.w5{width:132.266667pt;}
.w7{width:142.266667pt;}
.wa{width:209.466667pt;}
.w1{width:265.066667pt;}
.w6{width:301.866667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x29{left:3.466667pt;}
.x1e{left:5.200000pt;}
.x36{left:11.466667pt;}
.x25{left:12.400000pt;}
.x42{left:13.866667pt;}
.x57{left:16.666667pt;}
.x30{left:18.533333pt;}
.x54{left:19.466667pt;}
.x20{left:20.533333pt;}
.x2c{left:24.400000pt;}
.x33{left:32.266667pt;}
.x15{left:34.666667pt;}
.x3e{left:36.933333pt;}
.x27{left:41.466667pt;}
.x4d{left:43.733333pt;}
.x2b{left:45.200000pt;}
.x28{left:48.800000pt;}
.x1c{left:50.266667pt;}
.x58{left:54.000000pt;}
.x24{left:55.200000pt;}
.x31{left:57.066667pt;}
.x5b{left:58.533333pt;}
.x2a{left:59.733333pt;}
.x2f{left:61.733333pt;}
.x32{left:62.800000pt;}
.x50{left:63.866667pt;}
.x26{left:66.133333pt;}
.x55{left:69.200000pt;}
.x2e{left:70.400000pt;}
.x5a{left:71.466667pt;}
.x3d{left:72.666667pt;}
.x1f{left:74.133333pt;}
.xa{left:75.733333pt;}
.x6e{left:76.800000pt;}
.x5c{left:78.533333pt;}
.x3b{left:80.000000pt;}
.x39{left:81.333333pt;}
.x5e{left:83.333333pt;}
.x53{left:84.666667pt;}
.x49{left:86.400000pt;}
.x7{left:87.466667pt;}
.x4{left:95.600000pt;}
.x3c{left:98.800000pt;}
.x13{left:99.733333pt;}
.x69{left:101.600000pt;}
.x65{left:103.333333pt;}
.x34{left:104.400000pt;}
.x40{left:105.333333pt;}
.x51{left:108.133333pt;}
.x21{left:109.733333pt;}
.x3a{left:114.266667pt;}
.x4b{left:115.600000pt;}
.x1d{left:118.266667pt;}
.x19{left:122.000000pt;}
.xb{left:123.733333pt;}
.x16{left:125.200000pt;}
.x35{left:128.266667pt;}
.x17{left:131.733333pt;}
.x12{left:133.066667pt;}
.x64{left:134.800000pt;}
.x48{left:135.866667pt;}
.x37{left:147.066667pt;}
.x8{left:149.200000pt;}
.x47{left:153.733333pt;}
.x6f{left:171.733333pt;}
.xc{left:174.933333pt;}
.xe{left:181.066667pt;}
.x18{left:198.666667pt;}
.x6b{left:205.066667pt;}
.x45{left:209.200000pt;}
.x10{left:211.466667pt;}
.x5{left:215.066667pt;}
.x62{left:220.933333pt;}
.x6d{left:224.666667pt;}
.x11{left:228.266667pt;}
.x4e{left:229.733333pt;}
.x3f{left:230.666667pt;}
.x46{left:235.333333pt;}
.x43{left:239.200000pt;}
.x4c{left:240.266667pt;}
.x1a{left:243.200000pt;}
.x1b{left:244.266667pt;}
.x41{left:246.800000pt;}
.x14{left:249.066667pt;}
.x4a{left:257.333333pt;}
.x60{left:264.400000pt;}
.x44{left:265.600000pt;}
.x5f{left:273.066667pt;}
.x9{left:274.133333pt;}
.x59{left:276.800000pt;}
.x6c{left:278.933333pt;}
.x70{left:281.333333pt;}
.x61{left:293.333333pt;}
.xd{left:297.066667pt;}
.x4f{left:310.666667pt;}
.x6{left:314.133333pt;}
.x38{left:315.466667pt;}
.x56{left:322.133333pt;}
.x2d{left:324.933333pt;}
.x52{left:326.266667pt;}
.x2{left:333.333333pt;}
.x6a{left:336.266667pt;}
.x66{left:337.866667pt;}
.x63{left:340.000000pt;}
.x23{left:342.133333pt;}
.xf{left:383.866667pt;}
.x67{left:396.800000pt;}
.x68{left:480.666667pt;}
.x1{left:483.466667pt;}
.x3{left:546.133333pt;}
.x5d{left:689.333333pt;}
.x22{left:697.733333pt;}
}




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