
    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_68944335d53f5771126da3c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.049000;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_f0594fd9c1172e70b41e2cb1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.960000;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_2f382dfff298e96bc19c300e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.044000;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_22b1c741af77fbf3c1b9c8cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.988000;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_0d4f1f05618e3137c5f10e0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.988000;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_bc56bba9cf055d1886d65046.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.232000;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_3a0e40d73bca0a05904d49ab.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.890000;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_213f2c0d4ce8a6360e33f5d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.845000;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_ee039bf91ed6d481fdf0d5bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.230000;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_acc0e492bcaa5c6fe600e9e0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.874023;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_bef3b51c8b518ff1d0fb9c27.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f555c047efa04a9b92452dd2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.880371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_15310c3fcf1722112d876281.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.668945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_93b52a1c35a058c910322395.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.816406;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:fff;src:url('chunks/assets/font_e716fbe00480bedd3253716a.woff2')format("woff");}.fff{font-family:fff;line-height:0.948730;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:ff10;src:url('chunks/assets/font_f8cc4e085036d7ee9853d7fc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.000000;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:ff11;src:url('chunks/assets/font_5c9a8503be26d600445071b5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.689000;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:ff12;src:url('chunks/assets/font_646b9835c39e5d03c59acc1e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.684000;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:ff13;src:url('chunks/assets/font_f57df5fb82913fdfc19fd8f9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.689000;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;}
.m24{transform:matrix(0.096001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096001,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167151,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.192499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192499,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.197853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197853,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.209372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209372,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213990,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.220696,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220696,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220696,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.238753,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238753,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238753,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.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);}
.m1d{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250854,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.289975,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295571,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.298662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.298662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.298662,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302472,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.303359,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.383481,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.383481,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.383481,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.425231,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.425231,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.425231,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.482750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.489237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489237,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.489614,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.642644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642644,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.663517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.663517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.663517,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.699739,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.699739,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.699739,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.706777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.706777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.706777,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.815644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815644,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(1.197564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.197564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.197564,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(1.205271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205271,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.226162,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.226162,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.226162,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.303048,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.303048,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.303048,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(1.331192,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.331192,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.331192,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(1.408237,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.408237,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.408237,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);}
.md{transform:matrix(1.526078,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.526078,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.526078,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(1.684186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.684186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.684186,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(1.886406,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.886406,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.886406,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(2.263010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.263010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.263010,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(2.769485,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.769485,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.769485,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-34.791000px;}
.v7{vertical-align:-29.730600px;}
.v9{vertical-align:-21.978000px;}
.vc{vertical-align:-19.939800px;}
.v4{vertical-align:-18.781200px;}
.v3{vertical-align:-15.964200px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.693200px;}
.vd{vertical-align:5.205000px;}
.v6{vertical-align:8.169600px;}
.vb{vertical-align:10.941600px;}
.v2{vertical-align:15.964200px;}
.v1{vertical-align:19.054200px;}
.v8{vertical-align:26.471400px;}
.ve{vertical-align:50.776200px;}
.ls12{letter-spacing:-1.993860px;}
.ls11{letter-spacing:-0.664620px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000053px;}
.ls2{letter-spacing:0.000156px;}
.ls4{letter-spacing:0.000234px;}
.ls1{letter-spacing:0.000300px;}
.ls3{letter-spacing:0.000396px;}
.lsd{letter-spacing:0.000600px;}
.lse{letter-spacing:0.004200px;}
.lsf{letter-spacing:0.006490px;}
.lsb{letter-spacing:0.009600px;}
.lsc{letter-spacing:0.010200px;}
.lsa{letter-spacing:1.410000px;}
.ls10{letter-spacing:2.400000px;}
.ls5{letter-spacing:9.619500px;}
.ls8{letter-spacing:14.100000px;}
.ls9{letter-spacing:15.000000px;}
.ls6{letter-spacing:69.392400px;}
.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;}
}
.ws52{word-spacing:-56.400000px;}
.ws68{word-spacing:-16.200000px;}
.ws3e{word-spacing:-15.000000px;}
.ws3d{word-spacing:-14.100000px;}
.ws3c{word-spacing:-13.500000px;}
.ws18{word-spacing:-12.690000px;}
.ws63{word-spacing:-12.000000px;}
.ws0{word-spacing:-11.400000px;}
.ws1a{word-spacing:-10.786500px;}
.ws53{word-spacing:-9.600000px;}
.ws3f{word-spacing:-8.745000px;}
.ws19{word-spacing:-8.220300px;}
.ws38{word-spacing:-8.176500px;}
.ws3b{word-spacing:-7.870500px;}
.ws17{word-spacing:-7.398270px;}
.ws4e{word-spacing:-7.233864px;}
.ws1c{word-spacing:-6.987300px;}
.ws1b{word-spacing:-6.288570px;}
.ws3a{word-spacing:-5.608200px;}
.ws54{word-spacing:-5.596800px;}
.ws39{word-spacing:-4.767000px;}
.ws2{word-spacing:-4.698000px;}
.ws1d{word-spacing:-4.313250px;}
.ws88{word-spacing:-3.600000px;}
.ws5e{word-spacing:-2.368800px;}
.ws41{word-spacing:-2.143200px;}
.ws20{word-spacing:-1.974000px;}
.ws49{word-spacing:-1.917600px;}
.ws4d{word-spacing:-1.804800px;}
.ws87{word-spacing:-1.776000px;}
.ws2f{word-spacing:-1.748400px;}
.ws30{word-spacing:-1.635600px;}
.ws2c{word-spacing:-1.522800px;}
.ws84{word-spacing:-1.440000px;}
.ws70{word-spacing:-1.425000px;}
.ws4c{word-spacing:-1.410000px;}
.ws6{word-spacing:-1.404000px;}
.ws6f{word-spacing:-1.368000px;}
.ws33{word-spacing:-1.353600px;}
.ws2d{word-spacing:-1.297200px;}
.ws2e{word-spacing:-1.128000px;}
.ws32{word-spacing:-0.958800px;}
.ws71{word-spacing:-0.912000px;}
.ws5b{word-spacing:-0.902400px;}
.ws5c{word-spacing:-0.846000px;}
.ws65{word-spacing:-0.624000px;}
.ws64{word-spacing:-0.576000px;}
.ws37{word-spacing:-0.564000px;}
.ws4b{word-spacing:-0.507600px;}
.ws4a{word-spacing:-0.451200px;}
.wsa{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.282000px;}
.ws21{word-spacing:-0.112800px;}
.ws34{word-spacing:-0.056400px;}
.ws50{word-spacing:-0.056100px;}
.ws4f{word-spacing:-0.038478px;}
.ws40{word-spacing:-0.032881px;}
.ws51{word-spacing:-0.032706px;}
.ws1{word-spacing:0.000000px;}
.ws6b{word-spacing:0.057000px;}
.ws36{word-spacing:0.112800px;}
.ws35{word-spacing:0.225600px;}
.ws5{word-spacing:0.270000px;}
.ws57{word-spacing:0.282000px;}
.ws90{word-spacing:0.288000px;}
.ws12{word-spacing:0.338400px;}
.wsc{word-spacing:0.378000px;}
.ws92{word-spacing:0.384000px;}
.ws58{word-spacing:0.394800px;}
.ws48{word-spacing:0.507600px;}
.ws67{word-spacing:0.528000px;}
.ws26{word-spacing:0.564000px;}
.ws6c{word-spacing:0.664620px;}
.ws8f{word-spacing:0.672000px;}
.ws5d{word-spacing:0.676800px;}
.ws69{word-spacing:0.789600px;}
.ws66{word-spacing:0.816000px;}
.ws1f{word-spacing:0.846000px;}
.ws6e{word-spacing:0.912000px;}
.ws5f{word-spacing:1.128000px;}
.ws4{word-spacing:1.134000px;}
.ws42{word-spacing:1.240800px;}
.ws91{word-spacing:1.344000px;}
.ws22{word-spacing:1.410000px;}
.ws1e{word-spacing:1.522800px;}
.ws3{word-spacing:1.728000px;}
.ws31{word-spacing:1.748400px;}
.ws89{word-spacing:1.872000px;}
.ws24{word-spacing:1.917600px;}
.ws14{word-spacing:1.974000px;}
.ws6d{word-spacing:1.993860px;}
.ws46{word-spacing:2.086800px;}
.ws47{word-spacing:2.199600px;}
.ws60{word-spacing:2.312400px;}
.ws5a{word-spacing:2.481600px;}
.ws15{word-spacing:2.707200px;}
.ws2a{word-spacing:2.763600px;}
.wsb{word-spacing:2.808000px;}
.ws7{word-spacing:2.970000px;}
.ws8d{word-spacing:3.024000px;}
.ws56{word-spacing:3.158400px;}
.ws7d{word-spacing:3.168000px;}
.ws55{word-spacing:3.214800px;}
.ws43{word-spacing:3.271200px;}
.ws61{word-spacing:3.496800px;}
.ws6a{word-spacing:3.591000px;}
.wsf{word-spacing:3.666000px;}
.ws9{word-spacing:3.726000px;}
.wse{word-spacing:3.835200px;}
.ws74{word-spacing:3.840000px;}
.ws25{word-spacing:3.948000px;}
.ws10{word-spacing:4.004400px;}
.ws76{word-spacing:4.224000px;}
.ws72{word-spacing:4.230000px;}
.wsd{word-spacing:4.320000px;}
.ws29{word-spacing:4.342800px;}
.ws11{word-spacing:4.455600px;}
.ws44{word-spacing:4.512000px;}
.ws28{word-spacing:4.681200px;}
.ws2b{word-spacing:4.794000px;}
.ws59{word-spacing:4.906800px;}
.ws8e{word-spacing:5.280000px;}
.ws7f{word-spacing:5.520000px;}
.ws7a{word-spacing:5.616000px;}
.ws73{word-spacing:5.752800px;}
.ws8{word-spacing:5.778000px;}
.ws13{word-spacing:5.922000px;}
.ws62{word-spacing:6.096000px;}
.ws7c{word-spacing:6.144000px;}
.ws75{word-spacing:6.240000px;}
.ws23{word-spacing:6.429600px;}
.ws27{word-spacing:6.711600px;}
.ws86{word-spacing:7.152000px;}
.ws79{word-spacing:7.344000px;}
.ws45{word-spacing:7.388400px;}
.ws78{word-spacing:7.920000px;}
.ws85{word-spacing:9.120000px;}
.ws82{word-spacing:9.456000px;}
.ws7b{word-spacing:13.056000px;}
.ws77{word-spacing:13.632000px;}
.ws81{word-spacing:16.704000px;}
.ws83{word-spacing:17.040000px;}
.ws8b{word-spacing:17.328000px;}
.ws8a{word-spacing:20.400000px;}
.ws7e{word-spacing:22.608000px;}
.ws8c{word-spacing:28.848000px;}
.ws80{word-spacing:56.016000px;}
._14{margin-left:-15.000000px;}
._10{margin-left:-13.819200px;}
._a{margin-left:-12.690000px;}
._9{margin-left:-11.338200px;}
._d{margin-left:-10.235460px;}
._16{margin-left:-9.188426px;}
._12{margin-left:-8.077800px;}
._15{margin-left:-6.995400px;}
._b{margin-left:-5.641200px;}
._2{margin-left:-4.311600px;}
._6{margin-left:-2.503080px;}
._3{margin-left:-1.404000px;}
._0{width:1.506600px;}
._4{width:3.120000px;}
._13{width:9.776400px;}
._c{width:11.744400px;}
._17{width:14.438400px;}
._18{width:17.727000px;}
._11{width:19.875000px;}
._f{width:26.706600px;}
._1c{width:27.722694px;}
._1b{width:31.712694px;}
._1a{width:32.966694px;}
._19{width:35.246694px;}
._5{width:48.582000px;}
._e{width:80.712600px;}
._1{width:591.645600px;}
._7{width:989.819400px;}
._8{width:1548.105000px;}
.fc3{color:transparent;}
.fc2{color:rgb(33,58,126);}
.fc1{color:rgb(0,84,152);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:19.068000px;}
.fsf{font-size:19.170000px;}
.fs17{font-size:22.432800px;}
.fsb{font-size:27.949200px;}
.fs24{font-size:27.984000px;}
.fs11{font-size:32.706000px;}
.fs7{font-size:32.881200px;}
.fs25{font-size:33.231000px;}
.fs1d{font-size:34.980000px;}
.fse{font-size:38.352000px;}
.fs10{font-size:38.478000px;}
.fs13{font-size:44.880000px;}
.fs9{font-size:45.120000px;}
.fsd{font-size:47.704200px;}
.fsa{font-size:47.940000px;}
.fs1f{font-size:48.000000px;}
.fs16{font-size:48.916800px;}
.fsc{font-size:50.198400px;}
.fs1{font-size:51.000000px;}
.fs4{font-size:52.200000px;}
.fs18{font-size:52.800000px;}
.fs0{font-size:54.000000px;}
.fs23{font-size:56.100000px;}
.fs1b{font-size:56.208000px;}
.fs1a{font-size:56.368800px;}
.fs6{font-size:56.400000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:59.056800px;}
.fs1c{font-size:60.000000px;}
.fs15{font-size:63.549000px;}
.fs19{font-size:65.890800px;}
.fs21{font-size:66.000000px;}
.fs20{font-size:71.265000px;}
.fs14{font-size:77.738400px;}
.fs1e{font-size:77.922600px;}
.fs5{font-size:81.000000px;}
.fs2{font-size:114.000000px;}
.fs22{font-size:171.873600px;}
.y0{bottom:0.000000px;}
.y23{bottom:125.755050px;}
.y61{bottom:125.776650px;}
.yc1{bottom:125.783850px;}
.yac{bottom:125.787450px;}
.y104{bottom:126.271650px;}
.y103{bottom:142.771650px;}
.ycb{bottom:143.592150px;}
.y22{bottom:148.258650px;}
.y60{bottom:148.280250px;}
.yc0{bottom:148.283850px;}
.yca{bottom:148.287450px;}
.yf6{bottom:149.149500px;}
.y102{bottom:159.271650px;}
.yf5{bottom:165.649500px;}
.yaa{bottom:166.092150px;}
.y21{bottom:170.762250px;}
.ybf{bottom:170.773050px;}
.yc9{bottom:170.780250px;}
.y5f{bottom:170.783850px;}
.ya9{bottom:170.787450px;}
.yab{bottom:171.256950px;}
.yf4{bottom:182.149500px;}
.y20{bottom:193.265850px;}
.ybe{bottom:193.276650px;}
.yc8{bottom:193.283850px;}
.y5e{bottom:193.287450px;}
.y101{bottom:198.649500px;}
.yf3{bottom:205.027500px;}
.yc7{bottom:211.092150px;}
.y100{bottom:215.149500px;}
.y1f{bottom:215.769450px;}
.ybd{bottom:215.780250px;}
.ya8{bottom:215.783850px;}
.y5d{bottom:215.787450px;}
.yf2{bottom:221.527500px;}
.yff{bottom:231.649500px;}
.yc6{bottom:233.592150px;}
.yf1{bottom:238.027500px;}
.y1e{bottom:238.273050px;}
.ybc{bottom:238.283850px;}
.y5c{bottom:238.287450px;}
.yfe{bottom:254.527500px;}
.y1d{bottom:260.776650px;}
.yc5{bottom:260.780100px;}
.y5b{bottom:260.787450px;}
.yf0{bottom:260.905500px;}
.yfd{bottom:271.027500px;}
.yef{bottom:277.405500px;}
.y56{bottom:278.592150px;}
.y59{bottom:281.245050px;}
.y58{bottom:282.864150px;}
.y1c{bottom:283.280250px;}
.yc4{bottom:283.283700px;}
.y55{bottom:283.287450px;}
.ya7{bottom:283.309950px;}
.y57{bottom:287.493300px;}
.yfc{bottom:287.527500px;}
.y5a{bottom:290.720100px;}
.yee{bottom:293.905500px;}
.y9f{bottom:300.792300px;}
.yc3{bottom:301.092000px;}
.ya3{bottom:303.051900px;}
.ya4{bottom:303.805950px;}
.yfb{bottom:304.027500px;}
.ya6{bottom:304.486050px;}
.y1b{bottom:305.783850px;}
.y9e{bottom:305.787300px;}
.ya0{bottom:305.811450px;}
.yed{bottom:310.405500px;}
.ya1{bottom:310.693650px;}
.ya5{bottom:310.772250px;}
.ya2{bottom:310.843500px;}
.y4d{bottom:317.038800px;}
.y4c{bottom:321.029850px;}
.y53{bottom:323.592000px;}
.y4e{bottom:325.020900px;}
.y4f{bottom:326.306250px;}
.yec{bottom:326.905500px;}
.y47{bottom:328.287300px;}
.y1a{bottom:328.287450px;}
.y54{bottom:332.982600px;}
.y4b{bottom:333.054300px;}
.y51{bottom:334.258650px;}
.y49{bottom:334.384200px;}
.y4a{bottom:337.074900px;}
.y52{bottom:338.082900px;}
.y50{bottom:338.249550px;}
.y48{bottom:338.375250px;}
.yf9{bottom:343.399500px;}
.yfa{bottom:343.405500px;}
.yeb{bottom:349.783500px;}
.y9d{bottom:350.787300px;}
.yf8{bottom:359.899500px;}
.yea{bottom:366.283500px;}
.y45{bottom:368.592000px;}
.ybb{bottom:373.276500px;}
.y44{bottom:373.287300px;}
.y19{bottom:373.287450px;}
.y46{bottom:373.324050px;}
.yf7{bottom:376.399500px;}
.ye9{bottom:382.783500px;}
.y41{bottom:391.092150px;}
.y9b{bottom:394.003500px;}
.y42{bottom:394.257450px;}
.y40{bottom:395.776500px;}
.yba{bottom:395.780100px;}
.y43{bottom:395.787300px;}
.y9c{bottom:395.809950px;}
.ye8{bottom:399.283500px;}
.yd3{bottom:410.122650px;}
.ye7{bottom:415.783500px;}
.y3f{bottom:418.280100px;}
.yb9{bottom:418.283700px;}
.yd2{bottom:426.622650px;}
.y99{bottom:436.092150px;}
.y9a{bottom:438.306000px;}
.y18{bottom:440.733450px;}
.y3e{bottom:440.783700px;}
.y98{bottom:440.787300px;}
.yd1{bottom:443.122650px;}
.yd0{bottom:455.626650px;}
.ycf{bottom:459.622650px;}
.y17{bottom:463.237950px;}
.y97{bottom:463.272900px;}
.y3d{bottom:463.287300px;}
.yb2{bottom:471.446250px;}
.yb8{bottom:472.982550px;}
.yb7{bottom:477.652800px;}
.yb0{bottom:481.092150px;}
.yb1{bottom:485.557950px;}
.y16{bottom:485.742450px;}
.y96{bottom:485.776500px;}
.yaf{bottom:485.787300px;}
.yb6{bottom:490.709250px;}
.yb4{bottom:493.810950px;}
.yb5{bottom:503.151600px;}
.y15{bottom:508.246950px;}
.y95{bottom:508.280100px;}
.y3c{bottom:508.287300px;}
.yb3{bottom:512.209350px;}
.y14{bottom:530.751450px;}
.yae{bottom:530.780100px;}
.y94{bottom:530.783700px;}
.y93{bottom:548.592150px;}
.y13{bottom:553.255950px;}
.yad{bottom:553.283700px;}
.y92{bottom:553.287300px;}
.y91{bottom:571.092150px;}
.y12{bottom:575.760450px;}
.y3b{bottom:575.780100px;}
.y90{bottom:575.787300px;}
.y11{bottom:598.264950px;}
.y8f{bottom:598.276500px;}
.y3a{bottom:598.283700px;}
.y39{bottom:620.719050px;}
.y10{bottom:620.769450px;}
.y8e{bottom:620.780100px;}
.ye6{bottom:620.787300px;}
.yc2{bottom:641.925900px;}
.y38{bottom:643.222650px;}
.yf{bottom:643.273950px;}
.y8d{bottom:643.283700px;}
.y37{bottom:665.726250px;}
.ye{bottom:665.778450px;}
.y8c{bottom:665.787300px;}
.y36{bottom:688.229850px;}
.yd{bottom:688.282950px;}
.ye5{bottom:693.781050px;}
.y35{bottom:710.733450px;}
.y8b{bottom:710.787300px;}
.yc{bottom:710.787450px;}
.ye4{bottom:714.030300px;}
.y34{bottom:733.237050px;}
.yb{bottom:733.287450px;}
.ye3{bottom:734.279550px;}
.ye2{bottom:754.529550px;}
.ye0{bottom:754.530300px;}
.y33{bottom:755.740650px;}
.ye1{bottom:759.274800px;}
.ydf{bottom:774.779550px;}
.yce{bottom:777.038550px;}
.y32{bottom:778.244250px;}
.y8a{bottom:778.269450px;}
.ya{bottom:778.287450px;}
.ycd{bottom:781.034550px;}
.yde{bottom:795.030300px;}
.ycc{bottom:797.534550px;}
.y31{bottom:800.747850px;}
.y89{bottom:800.773050px;}
.y9{bottom:800.787450px;}
.ydd{bottom:815.279550px;}
.y30{bottom:823.251450px;}
.y88{bottom:823.276650px;}
.ydc{bottom:835.530300px;}
.y2f{bottom:845.755050px;}
.y87{bottom:845.780250px;}
.ydb{bottom:855.779550px;}
.yd9{bottom:855.780300px;}
.yda{bottom:860.524800px;}
.y2e{bottom:868.258650px;}
.y86{bottom:868.283850px;}
.y10d{bottom:869.533500px;}
.yd8{bottom:876.029550px;}
.y10c{bottom:886.033500px;}
.y2d{bottom:890.762250px;}
.y85{bottom:890.783850px;}
.y8{bottom:890.787450px;}
.y7{bottom:890.789250px;}
.y10b{bottom:902.533500px;}
.y2c{bottom:913.265850px;}
.y6{bottom:913.287450px;}
.y10a{bottom:919.033500px;}
.y109{bottom:935.533500px;}
.y2b{bottom:935.769450px;}
.y5{bottom:935.787450px;}
.y84{bottom:953.592150px;}
.y2a{bottom:958.273050px;}
.y83{bottom:958.287450px;}
.y108{bottom:960.538200px;}
.y7e{bottom:976.092150px;}
.y81{bottom:978.288000px;}
.y7f{bottom:979.679400px;}
.y29{bottom:980.776650px;}
.yd7{bottom:980.783850px;}
.y4{bottom:980.787450px;}
.y82{bottom:985.482750px;}
.y80{bottom:996.553200px;}
.yd6{bottom:998.592150px;}
.y28{bottom:1003.280250px;}
.yd5{bottom:1003.287450px;}
.yd4{bottom:1021.092150px;}
.y107{bottom:1025.676300px;}
.y27{bottom:1025.783850px;}
.y3{bottom:1025.787450px;}
.y76{bottom:1035.084600px;}
.y6a{bottom:1037.026650px;}
.y74{bottom:1037.032200px;}
.y73{bottom:1037.690850px;}
.y68{bottom:1038.974250px;}
.y6c{bottom:1039.120650px;}
.y72{bottom:1041.702450px;}
.y106{bottom:1042.176300px;}
.y69{bottom:1043.644500px;}
.y6b{bottom:1046.367300px;}
.y26{bottom:1048.287450px;}
.y75{bottom:1050.308850px;}
.y67{bottom:1052.756850px;}
.y62{bottom:1053.781950px;}
.y7c{bottom:1053.918300px;}
.y7a{bottom:1054.618650px;}
.y65{bottom:1054.704300px;}
.y70{bottom:1055.405700px;}
.y78{bottom:1056.566100px;}
.y63{bottom:1056.651900px;}
.y7d{bottom:1056.985200px;}
.y6d{bottom:1057.353150px;}
.y71{bottom:1057.430400px;}
.y105{bottom:1058.676300px;}
.y7b{bottom:1060.166400px;}
.y66{bottom:1060.252200px;}
.y6e{bottom:1061.145600px;}
.y79{bottom:1061.236500px;}
.y64{bottom:1061.322300px;}
.y6f{bottom:1062.023400px;}
.y77{bottom:1067.659650px;}
.y2{bottom:1138.287300px;}
.y25{bottom:1138.287450px;}
.y1{bottom:1160.787300px;}
.y24{bottom:1160.787450px;}
.h22{height:13.023444px;}
.h1f{height:14.856750px;}
.h26{height:18.553164px;}
.h53{height:19.113072px;}
.h14{height:21.660630px;}
.h2c{height:21.827114px;}
.h4e{height:22.038223px;}
.h24{height:22.338198px;}
.h40{height:22.457860px;}
.h19{height:25.482930px;}
.h56{height:25.754025px;}
.h1c{height:26.886600px;}
.h17{height:29.722800px;}
.h20{height:29.820450px;}
.h21{height:31.822938px;}
.h31{height:31.993408px;}
.h54{height:32.784000px;}
.h10{height:34.968000px;}
.h3d{height:35.251800px;}
.h18{height:36.096000px;}
.h15{height:36.970755px;}
.h11{height:37.153500px;}
.h39{height:37.200000px;}
.h27{height:37.439094px;}
.h45{height:37.590820px;}
.h4f{height:37.801758px;}
.h3c{height:38.521200px;}
.h52{height:38.880000px;}
.h13{height:38.903760px;}
.h48{height:40.920000px;}
.h44{height:40.980000px;}
.h3{height:41.310000px;}
.h6{height:41.325000px;}
.h7{height:42.282000px;}
.h34{height:43.561200px;}
.h23{height:43.668240px;}
.ha{height:43.710000px;}
.h8{height:43.740000px;}
.hc{height:43.753200px;}
.h33{height:43.767600px;}
.h3b{height:43.901760px;}
.h2{height:43.956000px;}
.h49{height:43.989258px;}
.h55{height:44.175000px;}
.h32{height:44.278530px;}
.h4a{height:44.472656px;}
.hb{height:44.537130px;}
.h1d{height:45.403200px;}
.he{height:45.769020px;}
.h5{height:46.398000px;}
.h38{height:46.500000px;}
.h43{height:46.704000px;}
.h2a{height:47.596046px;}
.h46{height:51.150000px;}
.h2d{height:51.374400px;}
.h51{height:52.519514px;}
.h16{height:53.117100px;}
.h12{height:53.117700px;}
.h30{height:54.877200px;}
.h50{height:56.482758px;}
.h4d{height:56.483358px;}
.h25{height:58.294338px;}
.h35{height:58.380000px;}
.h9{height:58.725000px;}
.h41{height:60.082200px;}
.h2f{height:60.089141px;}
.h37{height:60.390015px;}
.h29{height:61.833177px;}
.hd{height:62.490600px;}
.hf{height:62.491200px;}
.h1a{height:63.045330px;}
.h1e{height:63.046800px;}
.h2e{height:64.111748px;}
.h36{height:65.280600px;}
.h3e{height:65.818800px;}
.h3f{height:69.340845px;}
.h47{height:69.930600px;}
.h2b{height:70.050000px;}
.h1b{height:73.658400px;}
.h3a{height:74.857200px;}
.h42{height:77.161200px;}
.h4{height:82.650000px;}
.h4c{height:88.577958px;}
.h28{height:121.738334px;}
.h4b{height:159.872660px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:131.811000px;}
.x6a{left:139.702050px;}
.x6b{left:146.988900px;}
.x4{left:148.815600px;}
.x6c{left:152.149500px;}
.x6d{left:158.593050px;}
.x6e{left:163.753500px;}
.x96{left:173.274150px;}
.x2c{left:179.585700px;}
.x8c{left:181.614900px;}
.x68{left:182.624850px;}
.x8d{left:187.919850px;}
.x8e{left:198.803850px;}
.x9a{left:224.437500px;}
.x3{left:225.936300px;}
.x8b{left:229.803600px;}
.x1{left:231.307050px;}
.x89{left:260.065200px;}
.x69{left:283.504200px;}
.x63{left:297.894000px;}
.xa{left:320.237850px;}
.x33{left:323.874750px;}
.x37{left:326.251950px;}
.x34{left:329.133150px;}
.xb{left:330.850050px;}
.x35{left:334.469850px;}
.xc{left:335.545200px;}
.xf{left:336.770400px;}
.x38{left:337.947900px;}
.x36{left:339.140100px;}
.x39{left:340.220850px;}
.xd{left:342.003000px;}
.x10{left:343.181100px;}
.xe{left:346.698150px;}
.x8f{left:348.240900px;}
.x65{left:349.884450px;}
.x11{left:351.495900px;}
.x6f{left:354.131400px;}
.x12{left:355.486650px;}
.x97{left:357.299100px;}
.x15{left:358.627050px;}
.x16{left:361.400700px;}
.x17{left:363.011550px;}
.x18{left:366.994350px;}
.x70{left:368.016450px;}
.x77{left:371.563500px;}
.x3a{left:374.948100px;}
.x7e{left:377.942850px;}
.x3b{left:379.880850px;}
.x78{left:381.188850px;}
.x44{left:384.241200px;}
.x13{left:385.317000px;}
.x83{left:387.533850px;}
.x14{left:389.307900px;}
.x79{left:390.454500px;}
.x66{left:392.684700px;}
.x3c{left:397.010700px;}
.x2d{left:398.047800px;}
.x3d{left:401.680950px;}
.x3e{left:402.703050px;}
.x64{left:404.840700px;}
.x3f{left:408.156750px;}
.x40{left:409.648200px;}
.x84{left:410.749650px;}
.x7c{left:413.176800px;}
.x41{left:414.318300px;}
.x46{left:415.645200px;}
.x7d{left:418.171800px;}
.x42{left:419.772000px;}
.x19{left:422.675700px;}
.x47{left:424.876500px;}
.x1a{left:427.371000px;}
.x7a{left:429.189750px;}
.x71{left:431.310600px;}
.x48{left:432.464400px;}
.x4a{left:434.256900px;}
.x72{left:436.800600px;}
.x4b{left:439.367250px;}
.x7f{left:441.087900px;}
.x4c{left:442.997550px;}
.x49{left:445.030650px;}
.x1b{left:447.547800px;}
.x73{left:448.965450px;}
.x1c{left:452.242950px;}
.x1d{left:454.653450px;}
.x43{left:457.857900px;}
.x67{left:459.874350px;}
.x1e{left:461.061300px;}
.x22{left:462.565050px;}
.x80{left:464.825400px;}
.x45{left:468.328350px;}
.x1f{left:470.081700px;}
.x4d{left:471.400500px;}
.x20{left:474.072600px;}
.x85{left:477.309750px;}
.x5{left:478.938450px;}
.x4e{left:482.130450px;}
.x21{left:483.552450px;}
.x53{left:485.337300px;}
.x7b{left:487.083900px;}
.x6{left:488.720550px;}
.x4f{left:490.741200px;}
.x7{left:493.415700px;}
.x50{left:495.411450px;}
.x51{left:499.254300px;}
.x55{left:500.681550px;}
.x56{left:501.850200px;}
.x52{left:503.924400px;}
.x54{left:507.106350px;}
.x87{left:510.001800px;}
.x74{left:511.999350px;}
.x86{left:513.198750px;}
.x81{left:516.045300px;}
.x88{left:517.260150px;}
.x57{left:523.675650px;}
.x8{left:528.510000px;}
.x9{left:533.205150px;}
.x58{left:538.789500px;}
.x23{left:541.608900px;}
.x75{left:542.853750px;}
.x59{left:545.787450px;}
.x76{left:548.343750px;}
.x2a{left:551.744550px;}
.x24{left:553.431450px;}
.x25{left:559.839300px;}
.x2b{left:561.343050px;}
.x5a{left:566.326650px;}
.x5b{left:567.791700px;}
.x26{left:568.859700px;}
.x27{left:572.850600px;}
.x5c{left:574.937400px;}
.x28{left:578.339700px;}
.x5d{left:579.607650px;}
.x29{left:582.330450px;}
.x5e{left:583.450500px;}
.x61{left:584.877750px;}
.x62{left:586.046400px;}
.x5f{left:588.120750px;}
.x60{left:591.302700px;}
.x93{left:595.033200px;}
.x99{left:599.128950px;}
.x90{left:609.855900px;}
.x91{left:616.629450px;}
.x94{left:622.683450px;}
.x95{left:628.382400px;}
.x8a{left:636.263400px;}
.x82{left:647.173500px;}
.x92{left:653.145900px;}
.x2e{left:669.106800px;}
.x2f{left:699.138000px;}
.x98{left:700.227300px;}
.x30{left:705.586650px;}
.x31{left:709.363950px;}
.x32{left:755.614950px;}
@media print{
.va{vertical-align:-30.925333pt;}
.v7{vertical-align:-26.427200pt;}
.v9{vertical-align:-19.536000pt;}
.vc{vertical-align:-17.724267pt;}
.v4{vertical-align:-16.694400pt;}
.v3{vertical-align:-14.190400pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.505067pt;}
.vd{vertical-align:4.626667pt;}
.v6{vertical-align:7.261867pt;}
.vb{vertical-align:9.725867pt;}
.v2{vertical-align:14.190400pt;}
.v1{vertical-align:16.937067pt;}
.v8{vertical-align:23.530133pt;}
.ve{vertical-align:45.134400pt;}
.ls12{letter-spacing:-1.772320pt;}
.ls11{letter-spacing:-0.590773pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000047pt;}
.ls2{letter-spacing:0.000139pt;}
.ls4{letter-spacing:0.000208pt;}
.ls1{letter-spacing:0.000267pt;}
.ls3{letter-spacing:0.000352pt;}
.lsd{letter-spacing:0.000533pt;}
.lse{letter-spacing:0.003733pt;}
.lsf{letter-spacing:0.005769pt;}
.lsb{letter-spacing:0.008533pt;}
.lsc{letter-spacing:0.009067pt;}
.lsa{letter-spacing:1.253333pt;}
.ls10{letter-spacing:2.133333pt;}
.ls5{letter-spacing:8.550667pt;}
.ls8{letter-spacing:12.533333pt;}
.ls9{letter-spacing:13.333333pt;}
.ls6{letter-spacing:61.682133pt;}
.ws52{word-spacing:-50.133333pt;}
.ws68{word-spacing:-14.400000pt;}
.ws3e{word-spacing:-13.333333pt;}
.ws3d{word-spacing:-12.533333pt;}
.ws3c{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.280000pt;}
.ws63{word-spacing:-10.666667pt;}
.ws0{word-spacing:-10.133333pt;}
.ws1a{word-spacing:-9.588000pt;}
.ws53{word-spacing:-8.533333pt;}
.ws3f{word-spacing:-7.773333pt;}
.ws19{word-spacing:-7.306933pt;}
.ws38{word-spacing:-7.268000pt;}
.ws3b{word-spacing:-6.996000pt;}
.ws17{word-spacing:-6.576240pt;}
.ws4e{word-spacing:-6.430101pt;}
.ws1c{word-spacing:-6.210933pt;}
.ws1b{word-spacing:-5.589840pt;}
.ws3a{word-spacing:-4.985067pt;}
.ws54{word-spacing:-4.974933pt;}
.ws39{word-spacing:-4.237333pt;}
.ws2{word-spacing:-4.176000pt;}
.ws1d{word-spacing:-3.834000pt;}
.ws88{word-spacing:-3.200000pt;}
.ws5e{word-spacing:-2.105600pt;}
.ws41{word-spacing:-1.905067pt;}
.ws20{word-spacing:-1.754667pt;}
.ws49{word-spacing:-1.704533pt;}
.ws4d{word-spacing:-1.604267pt;}
.ws87{word-spacing:-1.578667pt;}
.ws2f{word-spacing:-1.554133pt;}
.ws30{word-spacing:-1.453867pt;}
.ws2c{word-spacing:-1.353600pt;}
.ws84{word-spacing:-1.280000pt;}
.ws70{word-spacing:-1.266667pt;}
.ws4c{word-spacing:-1.253333pt;}
.ws6{word-spacing:-1.248000pt;}
.ws6f{word-spacing:-1.216000pt;}
.ws33{word-spacing:-1.203200pt;}
.ws2d{word-spacing:-1.153067pt;}
.ws2e{word-spacing:-1.002667pt;}
.ws32{word-spacing:-0.852267pt;}
.ws71{word-spacing:-0.810667pt;}
.ws5b{word-spacing:-0.802133pt;}
.ws5c{word-spacing:-0.752000pt;}
.ws65{word-spacing:-0.554667pt;}
.ws64{word-spacing:-0.512000pt;}
.ws37{word-spacing:-0.501333pt;}
.ws4b{word-spacing:-0.451200pt;}
.ws4a{word-spacing:-0.401067pt;}
.wsa{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.250667pt;}
.ws21{word-spacing:-0.100267pt;}
.ws34{word-spacing:-0.050133pt;}
.ws50{word-spacing:-0.049867pt;}
.ws4f{word-spacing:-0.034203pt;}
.ws40{word-spacing:-0.029228pt;}
.ws51{word-spacing:-0.029072pt;}
.ws1{word-spacing:0.000000pt;}
.ws6b{word-spacing:0.050667pt;}
.ws36{word-spacing:0.100267pt;}
.ws35{word-spacing:0.200533pt;}
.ws5{word-spacing:0.240000pt;}
.ws57{word-spacing:0.250667pt;}
.ws90{word-spacing:0.256000pt;}
.ws12{word-spacing:0.300800pt;}
.wsc{word-spacing:0.336000pt;}
.ws92{word-spacing:0.341333pt;}
.ws58{word-spacing:0.350933pt;}
.ws48{word-spacing:0.451200pt;}
.ws67{word-spacing:0.469333pt;}
.ws26{word-spacing:0.501333pt;}
.ws6c{word-spacing:0.590773pt;}
.ws8f{word-spacing:0.597333pt;}
.ws5d{word-spacing:0.601600pt;}
.ws69{word-spacing:0.701867pt;}
.ws66{word-spacing:0.725333pt;}
.ws1f{word-spacing:0.752000pt;}
.ws6e{word-spacing:0.810667pt;}
.ws5f{word-spacing:1.002667pt;}
.ws4{word-spacing:1.008000pt;}
.ws42{word-spacing:1.102933pt;}
.ws91{word-spacing:1.194667pt;}
.ws22{word-spacing:1.253333pt;}
.ws1e{word-spacing:1.353600pt;}
.ws3{word-spacing:1.536000pt;}
.ws31{word-spacing:1.554133pt;}
.ws89{word-spacing:1.664000pt;}
.ws24{word-spacing:1.704533pt;}
.ws14{word-spacing:1.754667pt;}
.ws6d{word-spacing:1.772320pt;}
.ws46{word-spacing:1.854933pt;}
.ws47{word-spacing:1.955200pt;}
.ws60{word-spacing:2.055467pt;}
.ws5a{word-spacing:2.205867pt;}
.ws15{word-spacing:2.406400pt;}
.ws2a{word-spacing:2.456533pt;}
.wsb{word-spacing:2.496000pt;}
.ws7{word-spacing:2.640000pt;}
.ws8d{word-spacing:2.688000pt;}
.ws56{word-spacing:2.807467pt;}
.ws7d{word-spacing:2.816000pt;}
.ws55{word-spacing:2.857600pt;}
.ws43{word-spacing:2.907733pt;}
.ws61{word-spacing:3.108267pt;}
.ws6a{word-spacing:3.192000pt;}
.wsf{word-spacing:3.258667pt;}
.ws9{word-spacing:3.312000pt;}
.wse{word-spacing:3.409067pt;}
.ws74{word-spacing:3.413333pt;}
.ws25{word-spacing:3.509333pt;}
.ws10{word-spacing:3.559467pt;}
.ws76{word-spacing:3.754667pt;}
.ws72{word-spacing:3.760000pt;}
.wsd{word-spacing:3.840000pt;}
.ws29{word-spacing:3.860267pt;}
.ws11{word-spacing:3.960533pt;}
.ws44{word-spacing:4.010667pt;}
.ws28{word-spacing:4.161067pt;}
.ws2b{word-spacing:4.261333pt;}
.ws59{word-spacing:4.361600pt;}
.ws8e{word-spacing:4.693333pt;}
.ws7f{word-spacing:4.906667pt;}
.ws7a{word-spacing:4.992000pt;}
.ws73{word-spacing:5.113600pt;}
.ws8{word-spacing:5.136000pt;}
.ws13{word-spacing:5.264000pt;}
.ws62{word-spacing:5.418667pt;}
.ws7c{word-spacing:5.461333pt;}
.ws75{word-spacing:5.546667pt;}
.ws23{word-spacing:5.715200pt;}
.ws27{word-spacing:5.965867pt;}
.ws86{word-spacing:6.357333pt;}
.ws79{word-spacing:6.528000pt;}
.ws45{word-spacing:6.567467pt;}
.ws78{word-spacing:7.040000pt;}
.ws85{word-spacing:8.106667pt;}
.ws82{word-spacing:8.405333pt;}
.ws7b{word-spacing:11.605333pt;}
.ws77{word-spacing:12.117333pt;}
.ws81{word-spacing:14.848000pt;}
.ws83{word-spacing:15.146667pt;}
.ws8b{word-spacing:15.402667pt;}
.ws8a{word-spacing:18.133333pt;}
.ws7e{word-spacing:20.096000pt;}
.ws8c{word-spacing:25.642667pt;}
.ws80{word-spacing:49.792000pt;}
._14{margin-left:-13.333333pt;}
._10{margin-left:-12.283733pt;}
._a{margin-left:-11.280000pt;}
._9{margin-left:-10.078400pt;}
._d{margin-left:-9.098187pt;}
._16{margin-left:-8.167490pt;}
._12{margin-left:-7.180267pt;}
._15{margin-left:-6.218133pt;}
._b{margin-left:-5.014400pt;}
._2{margin-left:-3.832533pt;}
._6{margin-left:-2.224960pt;}
._3{margin-left:-1.248000pt;}
._0{width:1.339200pt;}
._4{width:2.773333pt;}
._13{width:8.690133pt;}
._c{width:10.439467pt;}
._17{width:12.834133pt;}
._18{width:15.757333pt;}
._11{width:17.666667pt;}
._f{width:23.739200pt;}
._1c{width:24.642395pt;}
._1b{width:28.189061pt;}
._1a{width:29.303728pt;}
._19{width:31.330395pt;}
._5{width:43.184000pt;}
._e{width:71.744533pt;}
._1{width:525.907200pt;}
._7{width:879.839467pt;}
._8{width:1376.093333pt;}
.fs12{font-size:16.949333pt;}
.fsf{font-size:17.040000pt;}
.fs17{font-size:19.940267pt;}
.fsb{font-size:24.843733pt;}
.fs24{font-size:24.874667pt;}
.fs11{font-size:29.072000pt;}
.fs7{font-size:29.227733pt;}
.fs25{font-size:29.538667pt;}
.fs1d{font-size:31.093333pt;}
.fse{font-size:34.090667pt;}
.fs10{font-size:34.202667pt;}
.fs13{font-size:39.893333pt;}
.fs9{font-size:40.106667pt;}
.fsd{font-size:42.403733pt;}
.fsa{font-size:42.613333pt;}
.fs1f{font-size:42.666667pt;}
.fs16{font-size:43.481600pt;}
.fsc{font-size:44.620800pt;}
.fs1{font-size:45.333333pt;}
.fs4{font-size:46.400000pt;}
.fs18{font-size:46.933333pt;}
.fs0{font-size:48.000000pt;}
.fs23{font-size:49.866667pt;}
.fs1b{font-size:49.962667pt;}
.fs1a{font-size:50.105600pt;}
.fs6{font-size:50.133333pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:52.494933pt;}
.fs1c{font-size:53.333333pt;}
.fs15{font-size:56.488000pt;}
.fs19{font-size:58.569600pt;}
.fs21{font-size:58.666667pt;}
.fs20{font-size:63.346667pt;}
.fs14{font-size:69.100800pt;}
.fs1e{font-size:69.264533pt;}
.fs5{font-size:72.000000pt;}
.fs2{font-size:101.333333pt;}
.fs22{font-size:152.776533pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:111.782267pt;}
.y61{bottom:111.801467pt;}
.yc1{bottom:111.807867pt;}
.yac{bottom:111.811067pt;}
.y104{bottom:112.241467pt;}
.y103{bottom:126.908133pt;}
.ycb{bottom:127.637467pt;}
.y22{bottom:131.785467pt;}
.y60{bottom:131.804667pt;}
.yc0{bottom:131.807867pt;}
.yca{bottom:131.811067pt;}
.yf6{bottom:132.577333pt;}
.y102{bottom:141.574800pt;}
.yf5{bottom:147.244000pt;}
.yaa{bottom:147.637467pt;}
.y21{bottom:151.788667pt;}
.ybf{bottom:151.798267pt;}
.yc9{bottom:151.804667pt;}
.y5f{bottom:151.807867pt;}
.ya9{bottom:151.811067pt;}
.yab{bottom:152.228400pt;}
.yf4{bottom:161.910667pt;}
.y20{bottom:171.791867pt;}
.ybe{bottom:171.801467pt;}
.yc8{bottom:171.807867pt;}
.y5e{bottom:171.811067pt;}
.y101{bottom:176.577333pt;}
.yf3{bottom:182.246667pt;}
.yc7{bottom:187.637467pt;}
.y100{bottom:191.244000pt;}
.y1f{bottom:191.795067pt;}
.ybd{bottom:191.804667pt;}
.ya8{bottom:191.807867pt;}
.y5d{bottom:191.811067pt;}
.yf2{bottom:196.913333pt;}
.yff{bottom:205.910667pt;}
.yc6{bottom:207.637467pt;}
.yf1{bottom:211.580000pt;}
.y1e{bottom:211.798267pt;}
.ybc{bottom:211.807867pt;}
.y5c{bottom:211.811067pt;}
.yfe{bottom:226.246667pt;}
.y1d{bottom:231.801467pt;}
.yc5{bottom:231.804533pt;}
.y5b{bottom:231.811067pt;}
.yf0{bottom:231.916000pt;}
.yfd{bottom:240.913333pt;}
.yef{bottom:246.582667pt;}
.y56{bottom:247.637467pt;}
.y59{bottom:249.995600pt;}
.y58{bottom:251.434800pt;}
.y1c{bottom:251.804667pt;}
.yc4{bottom:251.807733pt;}
.y55{bottom:251.811067pt;}
.ya7{bottom:251.831067pt;}
.y57{bottom:255.549600pt;}
.yfc{bottom:255.580000pt;}
.y5a{bottom:258.417867pt;}
.yee{bottom:261.249333pt;}
.y9f{bottom:267.370933pt;}
.yc3{bottom:267.637333pt;}
.ya3{bottom:269.379467pt;}
.ya4{bottom:270.049733pt;}
.yfb{bottom:270.246667pt;}
.ya6{bottom:270.654267pt;}
.y1b{bottom:271.807867pt;}
.y9e{bottom:271.810933pt;}
.ya0{bottom:271.832400pt;}
.yed{bottom:275.916000pt;}
.ya1{bottom:276.172133pt;}
.ya5{bottom:276.242000pt;}
.ya2{bottom:276.305333pt;}
.y4d{bottom:281.812267pt;}
.y4c{bottom:285.359867pt;}
.y53{bottom:287.637333pt;}
.y4e{bottom:288.907467pt;}
.y4f{bottom:290.050000pt;}
.yec{bottom:290.582667pt;}
.y47{bottom:291.810933pt;}
.y1a{bottom:291.811067pt;}
.y54{bottom:295.984533pt;}
.y4b{bottom:296.048267pt;}
.y51{bottom:297.118800pt;}
.y49{bottom:297.230400pt;}
.y4a{bottom:299.622133pt;}
.y52{bottom:300.518133pt;}
.y50{bottom:300.666267pt;}
.y48{bottom:300.778000pt;}
.yf9{bottom:305.244000pt;}
.yfa{bottom:305.249333pt;}
.yeb{bottom:310.918667pt;}
.y9d{bottom:311.810933pt;}
.yf8{bottom:319.910667pt;}
.yea{bottom:325.585333pt;}
.y45{bottom:327.637333pt;}
.ybb{bottom:331.801333pt;}
.y44{bottom:331.810933pt;}
.y19{bottom:331.811067pt;}
.y46{bottom:331.843600pt;}
.yf7{bottom:334.577333pt;}
.ye9{bottom:340.252000pt;}
.y41{bottom:347.637467pt;}
.y9b{bottom:350.225333pt;}
.y42{bottom:350.451067pt;}
.y40{bottom:351.801333pt;}
.yba{bottom:351.804533pt;}
.y43{bottom:351.810933pt;}
.y9c{bottom:351.831067pt;}
.ye8{bottom:354.918667pt;}
.yd3{bottom:364.553467pt;}
.ye7{bottom:369.585333pt;}
.y3f{bottom:371.804533pt;}
.yb9{bottom:371.807733pt;}
.yd2{bottom:379.220133pt;}
.y99{bottom:387.637467pt;}
.y9a{bottom:389.605333pt;}
.y18{bottom:391.763067pt;}
.y3e{bottom:391.807733pt;}
.y98{bottom:391.810933pt;}
.yd1{bottom:393.886800pt;}
.yd0{bottom:405.001467pt;}
.ycf{bottom:408.553467pt;}
.y17{bottom:411.767067pt;}
.y97{bottom:411.798133pt;}
.y3d{bottom:411.810933pt;}
.yb2{bottom:419.063333pt;}
.yb8{bottom:420.428933pt;}
.yb7{bottom:424.580267pt;}
.yb0{bottom:427.637467pt;}
.yb1{bottom:431.607067pt;}
.y16{bottom:431.771067pt;}
.y96{bottom:431.801333pt;}
.yaf{bottom:431.810933pt;}
.yb6{bottom:436.186000pt;}
.yb4{bottom:438.943067pt;}
.yb5{bottom:447.245867pt;}
.y15{bottom:451.775067pt;}
.y95{bottom:451.804533pt;}
.y3c{bottom:451.810933pt;}
.yb3{bottom:455.297200pt;}
.y14{bottom:471.779067pt;}
.yae{bottom:471.804533pt;}
.y94{bottom:471.807733pt;}
.y93{bottom:487.637467pt;}
.y13{bottom:491.783067pt;}
.yad{bottom:491.807733pt;}
.y92{bottom:491.810933pt;}
.y91{bottom:507.637467pt;}
.y12{bottom:511.787067pt;}
.y3b{bottom:511.804533pt;}
.y90{bottom:511.810933pt;}
.y11{bottom:531.791067pt;}
.y8f{bottom:531.801333pt;}
.y3a{bottom:531.807733pt;}
.y39{bottom:551.750267pt;}
.y10{bottom:551.795067pt;}
.y8e{bottom:551.804533pt;}
.ye6{bottom:551.810933pt;}
.yc2{bottom:570.600800pt;}
.y38{bottom:571.753467pt;}
.yf{bottom:571.799067pt;}
.y8d{bottom:571.807733pt;}
.y37{bottom:591.756667pt;}
.ye{bottom:591.803067pt;}
.y8c{bottom:591.810933pt;}
.y36{bottom:611.759867pt;}
.yd{bottom:611.807067pt;}
.ye5{bottom:616.694267pt;}
.y35{bottom:631.763067pt;}
.y8b{bottom:631.810933pt;}
.yc{bottom:631.811067pt;}
.ye4{bottom:634.693600pt;}
.y34{bottom:651.766267pt;}
.yb{bottom:651.811067pt;}
.ye3{bottom:652.692933pt;}
.ye2{bottom:670.692933pt;}
.ye0{bottom:670.693600pt;}
.y33{bottom:671.769467pt;}
.ye1{bottom:674.910933pt;}
.ydf{bottom:688.692933pt;}
.yce{bottom:690.700933pt;}
.y32{bottom:691.772667pt;}
.y8a{bottom:691.795067pt;}
.ya{bottom:691.811067pt;}
.ycd{bottom:694.252933pt;}
.yde{bottom:706.693600pt;}
.ycc{bottom:708.919600pt;}
.y31{bottom:711.775867pt;}
.y89{bottom:711.798267pt;}
.y9{bottom:711.811067pt;}
.ydd{bottom:724.692933pt;}
.y30{bottom:731.779067pt;}
.y88{bottom:731.801467pt;}
.ydc{bottom:742.693600pt;}
.y2f{bottom:751.782267pt;}
.y87{bottom:751.804667pt;}
.ydb{bottom:760.692933pt;}
.yd9{bottom:760.693600pt;}
.yda{bottom:764.910933pt;}
.y2e{bottom:771.785467pt;}
.y86{bottom:771.807867pt;}
.y10d{bottom:772.918667pt;}
.yd8{bottom:778.692933pt;}
.y10c{bottom:787.585333pt;}
.y2d{bottom:791.788667pt;}
.y85{bottom:791.807867pt;}
.y8{bottom:791.811067pt;}
.y7{bottom:791.812667pt;}
.y10b{bottom:802.252000pt;}
.y2c{bottom:811.791867pt;}
.y6{bottom:811.811067pt;}
.y10a{bottom:816.918667pt;}
.y109{bottom:831.585333pt;}
.y2b{bottom:831.795067pt;}
.y5{bottom:831.811067pt;}
.y84{bottom:847.637467pt;}
.y2a{bottom:851.798267pt;}
.y83{bottom:851.811067pt;}
.y108{bottom:853.811733pt;}
.y7e{bottom:867.637467pt;}
.y81{bottom:869.589333pt;}
.y7f{bottom:870.826133pt;}
.y29{bottom:871.801467pt;}
.yd7{bottom:871.807867pt;}
.y4{bottom:871.811067pt;}
.y82{bottom:875.984667pt;}
.y80{bottom:885.825067pt;}
.yd6{bottom:887.637467pt;}
.y28{bottom:891.804667pt;}
.yd5{bottom:891.811067pt;}
.yd4{bottom:907.637467pt;}
.y107{bottom:911.712267pt;}
.y27{bottom:911.807867pt;}
.y3{bottom:911.811067pt;}
.y76{bottom:920.075200pt;}
.y6a{bottom:921.801467pt;}
.y74{bottom:921.806400pt;}
.y73{bottom:922.391867pt;}
.y68{bottom:923.532667pt;}
.y6c{bottom:923.662800pt;}
.y72{bottom:925.957733pt;}
.y106{bottom:926.378933pt;}
.y69{bottom:927.684000pt;}
.y6b{bottom:930.104267pt;}
.y26{bottom:931.811067pt;}
.y75{bottom:933.607867pt;}
.y67{bottom:935.783867pt;}
.y62{bottom:936.695067pt;}
.y7c{bottom:936.816267pt;}
.y7a{bottom:937.438800pt;}
.y65{bottom:937.514933pt;}
.y70{bottom:938.138400pt;}
.y78{bottom:939.169867pt;}
.y63{bottom:939.246133pt;}
.y7d{bottom:939.542400pt;}
.y6d{bottom:939.869467pt;}
.y71{bottom:939.938133pt;}
.y105{bottom:941.045600pt;}
.y7b{bottom:942.370133pt;}
.y66{bottom:942.446400pt;}
.y6e{bottom:943.240533pt;}
.y79{bottom:943.321333pt;}
.y64{bottom:943.397600pt;}
.y6f{bottom:944.020800pt;}
.y77{bottom:949.030800pt;}
.y2{bottom:1011.810933pt;}
.y25{bottom:1011.811067pt;}
.y1{bottom:1031.810933pt;}
.y24{bottom:1031.811067pt;}
.h22{height:11.576395pt;}
.h1f{height:13.206000pt;}
.h26{height:16.491701pt;}
.h53{height:16.989397pt;}
.h14{height:19.253893pt;}
.h2c{height:19.401879pt;}
.h4e{height:19.589531pt;}
.h24{height:19.856176pt;}
.h40{height:19.962542pt;}
.h19{height:22.651493pt;}
.h56{height:22.892467pt;}
.h1c{height:23.899200pt;}
.h17{height:26.420267pt;}
.h20{height:26.507067pt;}
.h21{height:28.287056pt;}
.h31{height:28.438585pt;}
.h54{height:29.141333pt;}
.h10{height:31.082667pt;}
.h3d{height:31.334933pt;}
.h18{height:32.085333pt;}
.h15{height:32.862893pt;}
.h11{height:33.025333pt;}
.h39{height:33.066667pt;}
.h27{height:33.279195pt;}
.h45{height:33.414063pt;}
.h4f{height:33.601563pt;}
.h3c{height:34.241067pt;}
.h52{height:34.560000pt;}
.h13{height:34.581120pt;}
.h48{height:36.373333pt;}
.h44{height:36.426667pt;}
.h3{height:36.720000pt;}
.h6{height:36.733333pt;}
.h7{height:37.584000pt;}
.h34{height:38.721067pt;}
.h23{height:38.816213pt;}
.ha{height:38.853333pt;}
.h8{height:38.880000pt;}
.hc{height:38.891733pt;}
.h33{height:38.904533pt;}
.h3b{height:39.023787pt;}
.h2{height:39.072000pt;}
.h49{height:39.101562pt;}
.h55{height:39.266667pt;}
.h32{height:39.358693pt;}
.h4a{height:39.531250pt;}
.hb{height:39.588560pt;}
.h1d{height:40.358400pt;}
.he{height:40.683573pt;}
.h5{height:41.242667pt;}
.h38{height:41.333333pt;}
.h43{height:41.514667pt;}
.h2a{height:42.307597pt;}
.h46{height:45.466667pt;}
.h2d{height:45.666133pt;}
.h51{height:46.684012pt;}
.h16{height:47.215200pt;}
.h12{height:47.215733pt;}
.h30{height:48.779733pt;}
.h50{height:50.206896pt;}
.h4d{height:50.207429pt;}
.h25{height:51.817189pt;}
.h35{height:51.893333pt;}
.h9{height:52.200000pt;}
.h41{height:53.406400pt;}
.h2f{height:53.412570pt;}
.h37{height:53.680013pt;}
.h29{height:54.962824pt;}
.hd{height:55.547200pt;}
.hf{height:55.547733pt;}
.h1a{height:56.040293pt;}
.h1e{height:56.041600pt;}
.h2e{height:56.988221pt;}
.h36{height:58.027200pt;}
.h3e{height:58.505600pt;}
.h3f{height:61.636307pt;}
.h47{height:62.160533pt;}
.h2b{height:62.266667pt;}
.h1b{height:65.474133pt;}
.h3a{height:66.539733pt;}
.h42{height:68.587733pt;}
.h4{height:73.466667pt;}
.h4c{height:78.735963pt;}
.h28{height:108.211853pt;}
.h4b{height:142.109031pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:117.165333pt;}
.x6a{left:124.179600pt;}
.x6b{left:130.656800pt;}
.x4{left:132.280533pt;}
.x6c{left:135.244000pt;}
.x6d{left:140.971600pt;}
.x6e{left:145.558667pt;}
.x96{left:154.021467pt;}
.x2c{left:159.631733pt;}
.x8c{left:161.435467pt;}
.x68{left:162.333200pt;}
.x8d{left:167.039867pt;}
.x8e{left:176.714533pt;}
.x9a{left:199.500000pt;}
.x3{left:200.832267pt;}
.x8b{left:204.269867pt;}
.x1{left:205.606267pt;}
.x89{left:231.169067pt;}
.x69{left:252.003733pt;}
.x63{left:264.794667pt;}
.xa{left:284.655867pt;}
.x33{left:287.888667pt;}
.x37{left:290.001733pt;}
.x34{left:292.562800pt;}
.xb{left:294.088933pt;}
.x35{left:297.306533pt;}
.xc{left:298.262400pt;}
.xf{left:299.351467pt;}
.x38{left:300.398133pt;}
.x36{left:301.457867pt;}
.x39{left:302.418533pt;}
.xd{left:304.002667pt;}
.x10{left:305.049867pt;}
.xe{left:308.176133pt;}
.x8f{left:309.547467pt;}
.x65{left:311.008400pt;}
.x11{left:312.440800pt;}
.x6f{left:314.783467pt;}
.x12{left:315.988133pt;}
.x97{left:317.599200pt;}
.x15{left:318.779600pt;}
.x16{left:321.245067pt;}
.x17{left:322.676933pt;}
.x18{left:326.217200pt;}
.x70{left:327.125733pt;}
.x77{left:330.278667pt;}
.x3a{left:333.287200pt;}
.x7e{left:335.949200pt;}
.x3b{left:337.671867pt;}
.x78{left:338.834533pt;}
.x44{left:341.547733pt;}
.x13{left:342.504000pt;}
.x83{left:344.474533pt;}
.x14{left:346.051467pt;}
.x79{left:347.070667pt;}
.x66{left:349.053067pt;}
.x3c{left:352.898400pt;}
.x2d{left:353.820267pt;}
.x3d{left:357.049733pt;}
.x3e{left:357.958267pt;}
.x64{left:359.858400pt;}
.x3f{left:362.806000pt;}
.x40{left:364.131733pt;}
.x84{left:365.110800pt;}
.x7c{left:367.268267pt;}
.x41{left:368.282933pt;}
.x46{left:369.462400pt;}
.x7d{left:371.708267pt;}
.x42{left:373.130667pt;}
.x19{left:375.711733pt;}
.x47{left:377.668000pt;}
.x1a{left:379.885333pt;}
.x7a{left:381.502000pt;}
.x71{left:383.387200pt;}
.x48{left:384.412800pt;}
.x4a{left:386.006133pt;}
.x72{left:388.267200pt;}
.x4b{left:390.548667pt;}
.x7f{left:392.078133pt;}
.x4c{left:393.775600pt;}
.x49{left:395.582800pt;}
.x1b{left:397.820267pt;}
.x73{left:399.080400pt;}
.x1c{left:401.993733pt;}
.x1d{left:404.136400pt;}
.x43{left:406.984800pt;}
.x67{left:408.777200pt;}
.x1e{left:409.832267pt;}
.x22{left:411.168933pt;}
.x80{left:413.178133pt;}
.x45{left:416.291867pt;}
.x1f{left:417.850400pt;}
.x4d{left:419.022667pt;}
.x20{left:421.397867pt;}
.x85{left:424.275333pt;}
.x5{left:425.723067pt;}
.x4e{left:428.560400pt;}
.x21{left:429.824400pt;}
.x53{left:431.410933pt;}
.x7b{left:432.963467pt;}
.x6{left:434.418267pt;}
.x4f{left:436.214400pt;}
.x7{left:438.591733pt;}
.x50{left:440.365733pt;}
.x51{left:443.781600pt;}
.x55{left:445.050267pt;}
.x56{left:446.089067pt;}
.x52{left:447.932800pt;}
.x54{left:450.761200pt;}
.x87{left:453.334933pt;}
.x74{left:455.110533pt;}
.x86{left:456.176667pt;}
.x81{left:458.706933pt;}
.x88{left:459.786800pt;}
.x57{left:465.489467pt;}
.x8{left:469.786667pt;}
.x9{left:473.960133pt;}
.x58{left:478.924000pt;}
.x23{left:481.430133pt;}
.x75{left:482.536667pt;}
.x59{left:485.144400pt;}
.x76{left:487.416667pt;}
.x2a{left:490.439600pt;}
.x24{left:491.939067pt;}
.x25{left:497.634933pt;}
.x2b{left:498.971600pt;}
.x5a{left:503.401467pt;}
.x5b{left:504.703733pt;}
.x26{left:505.653067pt;}
.x27{left:509.200533pt;}
.x5c{left:511.055467pt;}
.x28{left:514.079733pt;}
.x5d{left:515.206800pt;}
.x29{left:517.627067pt;}
.x5e{left:518.622667pt;}
.x61{left:519.891333pt;}
.x62{left:520.930133pt;}
.x5f{left:522.774000pt;}
.x60{left:525.602400pt;}
.x93{left:528.918400pt;}
.x99{left:532.559067pt;}
.x90{left:542.094133pt;}
.x91{left:548.115067pt;}
.x94{left:553.496400pt;}
.x95{left:558.562133pt;}
.x8a{left:565.567467pt;}
.x82{left:575.265333pt;}
.x92{left:580.574133pt;}
.x2e{left:594.761600pt;}
.x2f{left:621.456000pt;}
.x98{left:622.424267pt;}
.x30{left:627.188133pt;}
.x31{left:630.545733pt;}
.x32{left:671.657733pt;}
}




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