
    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_7597fe6d792dfd4499e93960.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_f582071adc4b63d054c6c10b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_3b86aba82b9db7edc1dc52ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_798970dea374693d86a5ae62.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_257c691715621c20a0d99a86.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_c851bad5b619739146ec205a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_0c6d2a60b65207df9b4eed5a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_d6abbabb641df83debe7f8d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.975586;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_e030ad7cf280dd0131e8a767.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_8daf3d5579835caf94c165a6.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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_cb4f7ec1acebb0f8a317120c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.956543;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_fa7e35fd34c2a90ac5d1e1b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.402354;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;}
.m21{transform:matrix(0.148097,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148097,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148097,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.165564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165564,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197183,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.197743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197743,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.234577,0.000000,-0.078185,0.237460,0,0);-ms-transform:matrix(0.234577,0.000000,-0.078185,0.237460,0,0);-webkit-transform:matrix(0.234577,0.000000,-0.078185,0.237460,0,0);}
.me{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m9{transform:matrix(0.237653,0.000000,-0.079210,0.237120,0,0);-ms-transform:matrix(0.237653,0.000000,-0.079210,0.237120,0,0);-webkit-transform:matrix(0.237653,0.000000,-0.079210,0.237120,0,0);}
.mb{transform:matrix(0.237787,0.000000,-0.079254,0.237105,0,0);-ms-transform:matrix(0.237787,0.000000,-0.079254,0.237105,0,0);-webkit-transform:matrix(0.237787,0.000000,-0.079254,0.237105,0,0);}
.m7{transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);-ms-transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);-webkit-transform:matrix(0.238421,0.000000,-0.079466,0.237034,0,0);}
.m13{transform:matrix(0.241301,0.000000,-0.080426,0.236710,0,0);-ms-transform:matrix(0.241301,0.000000,-0.080426,0.236710,0,0);-webkit-transform:matrix(0.241301,0.000000,-0.080426,0.236710,0,0);}
.m2{transform:matrix(0.241356,0.000000,-0.080444,0.236704,0,0);-ms-transform:matrix(0.241356,0.000000,-0.080444,0.236704,0,0);-webkit-transform:matrix(0.241356,0.000000,-0.080444,0.236704,0,0);}
.m11{transform:matrix(0.242173,0.000000,-0.080716,0.236611,0,0);-ms-transform:matrix(0.242173,0.000000,-0.080716,0.236611,0,0);-webkit-transform:matrix(0.242173,0.000000,-0.080716,0.236611,0,0);}
.m4{transform:matrix(0.243232,0.000000,-0.081069,0.236491,0,0);-ms-transform:matrix(0.243232,0.000000,-0.081069,0.236491,0,0);-webkit-transform:matrix(0.243232,0.000000,-0.081069,0.236491,0,0);}
.m1a{transform:matrix(0.244004,0.000000,-0.081327,0.236402,0,0);-ms-transform:matrix(0.244004,0.000000,-0.081327,0.236402,0,0);-webkit-transform:matrix(0.244004,0.000000,-0.081327,0.236402,0,0);}
.m1d{transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244722,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245568,0.000000,-0.081848,0.236222,0,0);-ms-transform:matrix(0.245568,0.000000,-0.081848,0.236222,0,0);-webkit-transform:matrix(0.245568,0.000000,-0.081848,0.236222,0,0);}
.mc{transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246965,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247066,0.000000,-0.082347,0.236049,0,0);-ms-transform:matrix(0.247066,0.000000,-0.082347,0.236049,0,0);-webkit-transform:matrix(0.247066,0.000000,-0.082347,0.236049,0,0);}
.m23{transform:matrix(0.247902,0.000000,-0.082626,0.235951,0,0);-ms-transform:matrix(0.247902,0.000000,-0.082626,0.235951,0,0);-webkit-transform:matrix(0.247902,0.000000,-0.082626,0.235951,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);}
.m8{transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250563,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250719,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251463,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251482,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254848,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254848,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254848,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254913,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.255854,0.000000,-0.085276,0.235006,0,0);-ms-transform:matrix(0.255854,0.000000,-0.085276,0.235006,0,0);-webkit-transform:matrix(0.255854,0.000000,-0.085276,0.235006,0,0);}
.m10{transform:matrix(0.255877,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255877,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255877,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257127,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257127,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257127,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.258039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258039,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259891,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.261668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261668,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.262662,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262662,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262662,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.269197,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272178,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-82.800000px;}
.vc{vertical-align:-81.360000px;}
.va{vertical-align:-65.355376px;}
.v5{vertical-align:-55.343481px;}
.v3{vertical-align:-52.400097px;}
.v8{vertical-align:-38.381425px;}
.v6{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.360000px;}
.vb{vertical-align:21.626092px;}
.v7{vertical-align:26.640000px;}
.v2{vertical-align:33.120000px;}
.v4{vertical-align:43.713050px;}
.ls19{letter-spacing:-1.440000px;}
.ls50{letter-spacing:-1.431473px;}
.ls12{letter-spacing:-1.008000px;}
.ls52{letter-spacing:-0.903767px;}
.lsc{letter-spacing:-0.720000px;}
.ls45{letter-spacing:-0.712053px;}
.ls44{letter-spacing:-0.706216px;}
.lsa{letter-spacing:-0.587400px;}
.ls32{letter-spacing:-0.576000px;}
.ls3e{letter-spacing:-0.503964px;}
.ls17{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.288000px;}
.ls40{letter-spacing:-0.283258px;}
.ls41{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.025920px;}
.ls59{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.048000px;}
.ls1{letter-spacing:0.069120px;}
.ls15{letter-spacing:0.072000px;}
.ls37{letter-spacing:0.108000px;}
.ls11{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.144000px;}
.ls3b{letter-spacing:0.156000px;}
.ls3d{letter-spacing:0.180000px;}
.ls47{letter-spacing:0.181200px;}
.ls38{letter-spacing:0.181440px;}
.ls1b{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.265200px;}
.ls25{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.298800px;}
.ls6{letter-spacing:0.305400px;}
.ls18{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls57{letter-spacing:0.478800px;}
.ls26{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls3{letter-spacing:0.720000px;}
.ls5b{letter-spacing:0.828000px;}
.ls2{letter-spacing:0.840000px;}
.ls22{letter-spacing:0.864000px;}
.ls49{letter-spacing:0.901440px;}
.ls13{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.440000px;}
.ls3a{letter-spacing:2.160000px;}
.ls2d{letter-spacing:2.880000px;}
.ls24{letter-spacing:3.150000px;}
.ls23{letter-spacing:3.330000px;}
.ls2e{letter-spacing:3.600000px;}
.ls2c{letter-spacing:4.320000px;}
.ls4{letter-spacing:5.040000px;}
.ls5{letter-spacing:5.760000px;}
.ls58{letter-spacing:6.480000px;}
.ls2f{letter-spacing:7.200000px;}
.lsf{letter-spacing:10.080000px;}
.ls35{letter-spacing:16.560000px;}
.ls3f{letter-spacing:17.821661px;}
.ls34{letter-spacing:24.480000px;}
.ls31{letter-spacing:25.920000px;}
.ls39{letter-spacing:26.640000px;}
.ls5c{letter-spacing:34.841280px;}
.ls4f{letter-spacing:39.389125px;}
.ls7{letter-spacing:49.140000px;}
.ls5a{letter-spacing:67.961280px;}
.ls20{letter-spacing:83.520000px;}
.ls46{letter-spacing:83.621282px;}
.ls1f{letter-spacing:84.240000px;}
.ls55{letter-spacing:107.595375px;}
.ls29{letter-spacing:107.625060px;}
.ls4e{letter-spacing:107.800155px;}
.ls56{letter-spacing:120.033511px;}
.ls4a{letter-spacing:130.816787px;}
.ls3c{letter-spacing:132.422394px;}
.ls54{letter-spacing:134.893230px;}
.ls27{letter-spacing:135.756990px;}
.ls4c{letter-spacing:135.932085px;}
.ls2b{letter-spacing:149.881320px;}
.ls8{letter-spacing:151.176000px;}
.ls42{letter-spacing:151.569137px;}
.ls33{letter-spacing:165.454624px;}
.ls28{letter-spacing:253.654290px;}
.ls4d{letter-spacing:253.829385px;}
.ls1d{letter-spacing:267.705664px;}
.ls51{letter-spacing:341.345689px;}
.ls4b{letter-spacing:365.234673px;}
.ls53{letter-spacing:379.482217px;}
.ls48{letter-spacing:413.805318px;}
.ls1e{letter-spacing:441.808465px;}
.ls30{letter-spacing:484.605695px;}
.ls2a{letter-spacing:657.831915px;}
.ls43{letter-spacing:714.854520px;}
.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;}
}
.wsd{word-spacing:-123.844623px;}
.ws4{word-spacing:-84.060000px;}
.ws10{word-spacing:-72.000000px;}
.ws11{word-spacing:-71.712000px;}
.ws1f{word-spacing:-39.528000px;}
.ws12{word-spacing:-21.430328px;}
.ws19{word-spacing:-21.198630px;}
.ws27{word-spacing:-21.022607px;}
.ws1a{word-spacing:-20.915372px;}
.ws1{word-spacing:-19.465920px;}
.ws0{word-spacing:-19.440000px;}
.wsc{word-spacing:-18.504000px;}
.ws7{word-spacing:-18.360000px;}
.ws8{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws20{word-spacing:-17.784000px;}
.ws1b{word-spacing:-17.712000px;}
.ws3{word-spacing:-16.865400px;}
.ws39{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.972600px;}
.ws24{word-spacing:-12.241200px;}
.wsb{word-spacing:-12.060000px;}
.ws1c{word-spacing:-11.790600px;}
.ws5{word-spacing:0.000000px;}
.wsf{word-spacing:13.524764px;}
.wse{word-spacing:14.994255px;}
.ws1e{word-spacing:22.175143px;}
.ws14{word-spacing:25.030623px;}
.ws26{word-spacing:26.461495px;}
.ws37{word-spacing:33.551788px;}
.ws29{word-spacing:40.027043px;}
.ws2f{word-spacing:42.888188px;}
.ws1d{word-spacing:47.518163px;}
.ws25{word-spacing:48.134719px;}
.ws2e{word-spacing:49.863665px;}
.ws21{word-spacing:62.351411px;}
.ws23{word-spacing:75.940289px;}
.ws13{word-spacing:81.520968px;}
.ws17{word-spacing:85.225559px;}
.ws18{word-spacing:86.488783px;}
.ws16{word-spacing:90.446887px;}
.ws36{word-spacing:101.315899px;}
.ws22{word-spacing:101.393727px;}
.ws2b{word-spacing:103.050987px;}
.ws2d{word-spacing:103.396228px;}
.ws35{word-spacing:116.497885px;}
.ws2c{word-spacing:118.269333px;}
.ws38{word-spacing:121.907227px;}
.ws15{word-spacing:132.807022px;}
.ws28{word-spacing:134.376502px;}
.ws32{word-spacing:201.990699px;}
.ws31{word-spacing:361.074505px;}
.ws30{word-spacing:366.579507px;}
.ws2a{word-spacing:631.764668px;}
.ws34{word-spacing:967.628361px;}
.ws33{word-spacing:1157.374409px;}
._1a{margin-left:-499.782173px;}
._2d{margin-left:-378.490178px;}
._1e{margin-left:-79.920000px;}
._19{margin-left:-66.240000px;}
._3f{margin-left:-9.360000px;}
._49{margin-left:-7.200000px;}
._11{margin-left:-2.036160px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._9{width:2.531520px;}
._8{width:4.205760px;}
._7{width:5.376000px;}
._6{width:6.955200px;}
._a{width:8.691840px;}
._b{width:9.964320px;}
._e{width:11.131680px;}
._12{width:12.176160px;}
._14{width:13.608000px;}
._13{width:14.616000px;}
._d{width:16.128000px;}
._f{width:19.296000px;}
._10{width:20.643840px;}
._29{width:23.040000px;}
._27{width:24.336000px;}
._24{width:25.416000px;}
._25{width:26.451840px;}
._26{width:28.143840px;}
._2a{width:29.148000px;}
._38{width:44.640000px;}
._2f{width:46.800000px;}
._c{width:48.355200px;}
._3c{width:72.000000px;}
._51{width:75.600000px;}
._3b{width:77.704389px;}
._28{width:79.200000px;}
._18{width:81.568607px;}
._1c{width:82.806788px;}
._23{width:84.665212px;}
._2b{width:86.020059px;}
._48{width:87.632974px;}
._17{width:95.849413px;}
._2c{width:99.666301px;}
._31{width:111.726310px;}
._2e{width:119.079704px;}
._34{width:121.470861px;}
._4c{width:128.142052px;}
._35{width:135.919677px;}
._43{width:137.917226px;}
._33{width:139.363871px;}
._45{width:140.418748px;}
._46{width:143.087038px;}
._47{width:147.506393px;}
._42{width:151.175291px;}
._1d{width:159.098756px;}
._36{width:161.373114px;}
._15{width:162.452552px;}
._1b{width:166.813674px;}
._22{width:172.724922px;}
._37{width:179.098115px;}
._50{width:184.173435px;}
._3e{width:194.248886px;}
._32{width:200.603330px;}
._4e{width:208.374399px;}
._4f{width:259.073367px;}
._30{width:260.582717px;}
._20{width:272.772317px;}
._3d{width:274.555244px;}
._1f{width:295.594576px;}
._21{width:327.764698px;}
._41{width:382.760815px;}
._3a{width:403.474788px;}
._44{width:415.669513px;}
._16{width:445.309151px;}
._4b{width:454.535814px;}
._4a{width:466.893520px;}
._1{width:480.335520px;}
._40{width:670.626636px;}
._4d{width:680.336395px;}
._39{width:705.387840px;}
._4{width:736.860000px;}
._3{width:812.448480px;}
._52{width:841.836000px;}
._54{width:846.120000px;}
._2{width:854.940000px;}
._53{width:1015.819200px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs18{font-size:40.547771px;}
.fs6{font-size:42.003540px;}
.fsd{font-size:42.034069px;}
.fs26{font-size:42.116903px;}
.fsf{font-size:42.469255px;}
.fs14{font-size:42.892503px;}
.fsa{font-size:42.930581px;}
.fs24{font-size:46.992487px;}
.fs2c{font-size:47.472651px;}
.fs21{font-size:48.194512px;}
.fs5{font-size:48.240000px;}
.fs1c{font-size:48.611092px;}
.fs9{font-size:51.120000px;}
.fs27{font-size:60.087472px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs17{font-size:75.893905px;}
.fs0{font-size:77.760000px;}
.fs19{font-size:81.227629px;}
.fs2d{font-size:82.037165px;}
.fs22{font-size:83.384055px;}
.fs7{font-size:84.004744px;}
.fs1d{font-size:84.090427px;}
.fse{font-size:84.214979px;}
.fs3{font-size:84.240000px;}
.fs10{font-size:84.794520px;}
.fsb{font-size:85.721312px;}
.fs15{font-size:85.782621px;}
.fs25{font-size:86.410033px;}
.fs2e{font-size:86.921732px;}
.fs23{font-size:88.180296px;}
.fs1b{font-size:88.721075px;}
.fs8{font-size:88.723404px;}
.fs1a{font-size:88.758194px;}
.fs1f{font-size:88.995062px;}
.fs1e{font-size:89.060483px;}
.fs12{font-size:89.400512px;}
.fs13{font-size:89.406108px;}
.fs11{font-size:89.432800px;}
.fs16{font-size:90.312766px;}
.fsc{font-size:90.618130px;}
.fs2a{font-size:107.579184px;}
.fs28{font-size:107.852300px;}
.fs29{font-size:128.956187px;}
.fs20{font-size:131.017189px;}
.fs2b{font-size:143.391496px;}
.fs4{font-size:336.240000px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.180000px;}
.y10d{bottom:3.144789px;}
.y7f{bottom:3.168198px;}
.y11c{bottom:3.423789px;}
.yd8{bottom:3.457361px;}
.y121{bottom:3.704223px;}
.yb4{bottom:3.779136px;}
.y92{bottom:3.945000px;}
.y3a{bottom:4.306500px;}
.y91{bottom:4.485000px;}
.y94{bottom:4.492500px;}
.y16d{bottom:4.500000px;}
.y8f{bottom:5.385000px;}
.yf9{bottom:6.530521px;}
.y122{bottom:7.477052px;}
.yc5{bottom:7.779023px;}
.yd9{bottom:8.693761px;}
.y97{bottom:9.169110px;}
.yb7{bottom:9.213858px;}
.y12d{bottom:10.792627px;}
.yfa{bottom:11.978420px;}
.ya4{bottom:11.989518px;}
.y12a{bottom:12.527766px;}
.y128{bottom:13.673003px;}
.y10c{bottom:13.921626px;}
.ye3{bottom:14.096461px;}
.y129{bottom:14.610274px;}
.y127{bottom:14.679975px;}
.y16f{bottom:14.760000px;}
.y12e{bottom:16.102454px;}
.y10b{bottom:16.854378px;}
.y96{bottom:18.764466px;}
.y110{bottom:19.328149px;}
.y80{bottom:19.507042px;}
.y9{bottom:21.240000px;}
.ya1{bottom:21.450455px;}
.yc4{bottom:24.427157px;}
.yb5{bottom:25.698304px;}
.y8e{bottom:26.085000px;}
.y12c{bottom:28.630220px;}
.ye4{bottom:29.296312px;}
.y10e{bottom:29.362276px;}
.ya{bottom:31.140000px;}
.yc2{bottom:32.315248px;}
.y7e{bottom:32.607066px;}
.y12b{bottom:32.759674px;}
.yb3{bottom:33.508559px;}
.ye5{bottom:34.671728px;}
.y10f{bottom:34.768944px;}
.yc3{bottom:37.840190px;}
.yb6{bottom:38.943575px;}
.y8{bottom:41.940000px;}
.y7d{bottom:42.040309px;}
.ya3{bottom:43.587750px;}
.ya0{bottom:53.014049px;}
.y5{bottom:57.600000px;}
.y7{bottom:62.670000px;}
.ya2{bottom:75.151344px;}
.y9f{bottom:84.611689px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.y93{bottom:141.163500px;}
.y6b{bottom:145.656000px;}
.y39{bottom:147.283500px;}
.yec{bottom:150.330000px;}
.y149{bottom:150.690000px;}
.y38{bottom:151.770000px;}
.yb1{bottom:156.090000px;}
.y8d{bottom:162.585000px;}
.y15d{bottom:163.830000px;}
.y125{bottom:166.530000px;}
.y6a{bottom:166.710000px;}
.yeb{bottom:171.030000px;}
.y148{bottom:171.390000px;}
.y37{bottom:172.470000px;}
.yb0{bottom:176.790000px;}
.y15c{bottom:182.910000px;}
.y90{bottom:185.085000px;}
.y124{bottom:187.230000px;}
.y69{bottom:187.410000px;}
.yea{bottom:191.730000px;}
.y147{bottom:192.090000px;}
.yaf{bottom:197.490000px;}
.y15b{bottom:201.810000px;}
.y123{bottom:207.930000px;}
.y68{bottom:208.110000px;}
.y8c{bottom:210.990000px;}
.ye9{bottom:212.430000px;}
.y146{bottom:212.790000px;}
.yae{bottom:213.690000px;}
.y36{bottom:213.870000px;}
.y15a{bottom:220.890000px;}
.y11f{bottom:228.630000px;}
.y120{bottom:228.690000px;}
.y67{bottom:228.810000px;}
.y8b{bottom:231.690000px;}
.ye8{bottom:233.130000px;}
.y145{bottom:233.490000px;}
.y35{bottom:234.210000px;}
.y159{bottom:239.790000px;}
.y66{bottom:249.510000px;}
.y8a{bottom:252.390000px;}
.y34{bottom:253.110000px;}
.ye7{bottom:253.830000px;}
.y144{bottom:254.190000px;}
.y11e{bottom:255.090000px;}
.y158{bottom:259.230000px;}
.ye2{bottom:270.090000px;}
.y65{bottom:270.210000px;}
.y11b{bottom:271.365000px;}
.y33{bottom:272.010000px;}
.y89{bottom:273.090000px;}
.y143{bottom:274.890000px;}
.y11d{bottom:280.290000px;}
.ye6{bottom:289.470000px;}
.y64{bottom:290.910000px;}
.y32{bottom:291.090000px;}
.y88{bottom:293.790000px;}
.y142{bottom:295.590000px;}
.y157{bottom:300.630000px;}
.y11a{bottom:303.330000px;}
.y31{bottom:309.990000px;}
.y63{bottom:311.610000px;}
.y87{bottom:314.490000px;}
.y141{bottom:316.290000px;}
.y156{bottom:321.330000px;}
.y119{bottom:324.030000px;}
.ye1{bottom:328.530000px;}
.y30{bottom:329.070000px;}
.y62{bottom:332.310000px;}
.y86{bottom:335.190000px;}
.y140{bottom:336.990000px;}
.y155{bottom:342.030000px;}
.y118{bottom:344.730000px;}
.y2f{bottom:347.970000px;}
.ye0{bottom:349.230000px;}
.y61{bottom:353.010000px;}
.y85{bottom:355.890000px;}
.y13f{bottom:357.690000px;}
.y154{bottom:362.730000px;}
.y117{bottom:365.430000px;}
.y2e{bottom:366.870000px;}
.ydf{bottom:369.750000px;}
.y60{bottom:373.710000px;}
.y84{bottom:376.590000px;}
.y13e{bottom:378.390000px;}
.y153{bottom:383.475000px;}
.y2d{bottom:385.995000px;}
.y116{bottom:386.175000px;}
.yde{bottom:391.935000px;}
.y5f{bottom:394.455000px;}
.y83{bottom:397.335000px;}
.y13d{bottom:399.135000px;}
.y152{bottom:404.175000px;}
.y2c{bottom:404.895000px;}
.y115{bottom:406.695000px;}
.ydd{bottom:414.075000px;}
.y5e{bottom:415.155000px;}
.y82{bottom:418.035000px;}
.y13c{bottom:419.835000px;}
.y2b{bottom:423.975000px;}
.y151{bottom:424.875000px;}
.y114{bottom:427.395000px;}
.y7c{bottom:434.265000px;}
.ydc{bottom:434.775000px;}
.y5d{bottom:435.855000px;}
.y13b{bottom:436.035000px;}
.y2a{bottom:442.875000px;}
.y150{bottom:445.575000px;}
.y113{bottom:448.095000px;}
.y81{bottom:453.675000px;}
.ydb{bottom:455.475000px;}
.y5c{bottom:456.555000px;}
.y29{bottom:461.775000px;}
.y14f{bottom:466.275000px;}
.y112{bottom:468.795000px;}
.yd7{bottom:471.690000px;}
.y5b{bottom:477.255000px;}
.yda{bottom:480.675000px;}
.y28{bottom:480.855000px;}
.y10a{bottom:485.040000px;}
.y14e{bottom:486.975000px;}
.y7b{bottom:492.735000px;}
.y5a{bottom:497.955000px;}
.y27{bottom:499.755000px;}
.yd6{bottom:503.715000px;}
.y111{bottom:504.435000px;}
.y14d{bottom:507.675000px;}
.y7a{bottom:513.435000px;}
.y26{bottom:518.475000px;}
.y59{bottom:518.655000px;}
.yd5{bottom:524.415000px;}
.y14c{bottom:528.375000px;}
.y79{bottom:534.135000px;}
.y25{bottom:537.735000px;}
.y58{bottom:539.355000px;}
.y109{bottom:544.575000px;}
.yd4{bottom:545.115000px;}
.y14b{bottom:549.075000px;}
.y78{bottom:554.835000px;}
.y24{bottom:556.635000px;}
.y57{bottom:560.055000px;}
.y108{bottom:565.275000px;}
.y14a{bottom:565.455000px;}
.yd3{bottom:565.635000px;}
.y77{bottom:575.535000px;}
.y23{bottom:575.715000px;}
.yad{bottom:576.435000px;}
.y56{bottom:580.755000px;}
.yd2{bottom:586.335000px;}
.y107{bottom:587.415000px;}
.y22{bottom:594.615000px;}
.y76{bottom:596.235000px;}
.yac{bottom:597.135000px;}
.y55{bottom:601.455000px;}
.yd1{bottom:607.035000px;}
.y106{bottom:607.935000px;}
.y21{bottom:613.695000px;}
.y75{bottom:616.935000px;}
.yab{bottom:617.835000px;}
.y54{bottom:622.155000px;}
.yd0{bottom:627.735000px;}
.y105{bottom:629.175000px;}
.y20{bottom:632.625000px;}
.y74{bottom:637.665000px;}
.yaa{bottom:638.565000px;}
.y53{bottom:642.885000px;}
.ycf{bottom:648.465000px;}
.y104{bottom:649.905000px;}
.y1f{bottom:651.525000px;}
.y73{bottom:658.365000px;}
.ya9{bottom:659.265000px;}
.y52{bottom:663.585000px;}
.yce{bottom:669.165000px;}
.y1e{bottom:670.605000px;}
.y72{bottom:679.065000px;}
.ya8{bottom:679.965000px;}
.y51{bottom:684.285000px;}
.y1d{bottom:689.505000px;}
.ycd{bottom:689.865000px;}
.y103{bottom:691.305000px;}
.y71{bottom:695.445000px;}
.ya7{bottom:700.665000px;}
.y50{bottom:704.985000px;}
.y101{bottom:707.490000px;}
.y1c{bottom:708.585000px;}
.ycc{bottom:710.565000px;}
.y102{bottom:719.565000px;}
.ya6{bottom:721.365000px;}
.y4f{bottom:725.685000px;}
.y1b{bottom:727.485000px;}
.ycb{bottom:728.925000px;}
.yca{bottom:731.265000px;}
.y9e{bottom:737.715000px;}
.y100{bottom:743.505000px;}
.y4e{bottom:746.385000px;}
.y1a{bottom:746.925000px;}
.yc9{bottom:753.405000px;}
.yff{bottom:764.205000px;}
.y4d{bottom:767.085000px;}
.y19{bottom:767.985000px;}
.y171{bottom:772.305000px;}
.yc8{bottom:774.105000px;}
.ya5{bottom:781.305000px;}
.yfe{bottom:784.905000px;}
.y4c{bottom:787.785000px;}
.y18{bottom:789.765000px;}
.y170{bottom:793.005000px;}
.yc7{bottom:794.805000px;}
.yfd{bottom:805.605000px;}
.y4b{bottom:808.485000px;}
.y16e{bottom:809.205000px;}
.yc1{bottom:810.990000px;}
.y17{bottom:812.445000px;}
.yfc{bottom:826.305000px;}
.y4a{bottom:829.185000px;}
.y16c{bottom:829.905000px;}
.y16{bottom:833.505000px;}
.yc6{bottom:834.945000px;}
.y9d{bottom:839.985000px;}
.yf8{bottom:842.640000px;}
.y49{bottom:849.885000px;}
.yfb{bottom:854.745000px;}
.y15{bottom:855.285000px;}
.y9c{bottom:860.685000px;}
.y48{bottom:870.585000px;}
.yc0{bottom:873.465000px;}
.y16b{bottom:875.265000px;}
.y14{bottom:877.245000px;}
.yf7{bottom:878.685000px;}
.y9b{bottom:881.385000px;}
.y47{bottom:891.330000px;}
.ybf{bottom:894.210000px;}
.y13{bottom:897.270000px;}
.y13a{bottom:897.810000px;}
.yf6{bottom:899.430000px;}
.y9a{bottom:902.130000px;}
.y46{bottom:912.030000px;}
.y16a{bottom:913.290000px;}
.ybe{bottom:914.910000px;}
.y139{bottom:918.510000px;}
.yf5{bottom:920.130000px;}
.y12{bottom:921.390000px;}
.y99{bottom:922.830000px;}
.y169{bottom:932.190000px;}
.y45{bottom:932.730000px;}
.ybd{bottom:935.610000px;}
.y95{bottom:938.940000px;}
.y138{bottom:939.210000px;}
.yf4{bottom:940.830000px;}
.y11{bottom:945.510000px;}
.y98{bottom:948.030000px;}
.y168{bottom:951.270000px;}
.y44{bottom:953.430000px;}
.ybc{bottom:956.310000px;}
.y137{bottom:959.910000px;}
.yf3{bottom:961.530000px;}
.y10{bottom:969.090000px;}
.y167{bottom:970.170000px;}
.y43{bottom:974.130000px;}
.ybb{bottom:977.010000px;}
.y136{bottom:980.610000px;}
.yf2{bottom:982.230000px;}
.y166{bottom:989.070000px;}
.yf{bottom:990.330000px;}
.y42{bottom:994.830000px;}
.y70{bottom:995.550000px;}
.yba{bottom:997.710000px;}
.y135{bottom:1001.310000px;}
.yf1{bottom:1002.930000px;}
.y165{bottom:1008.150000px;}
.ye{bottom:1014.630000px;}
.y6f{bottom:1014.990000px;}
.y41{bottom:1015.530000px;}
.yb9{bottom:1018.410000px;}
.y134{bottom:1022.010000px;}
.yf0{bottom:1023.630000px;}
.y164{bottom:1027.050000px;}
.yb2{bottom:1034.715000px;}
.y6e{bottom:1035.690000px;}
.y40{bottom:1036.230000px;}
.yd{bottom:1038.750000px;}
.y133{bottom:1042.710000px;}
.yef{bottom:1044.330000px;}
.y163{bottom:1046.130000px;}
.y6d{bottom:1056.390000px;}
.y3f{bottom:1056.930000px;}
.yb8{bottom:1060.350000px;}
.yed{bottom:1060.440000px;}
.yc{bottom:1062.150000px;}
.y132{bottom:1063.140000px;}
.y131{bottom:1063.230000px;}
.y162{bottom:1065.030000px;}
.y6{bottom:1077.090000px;}
.y3e{bottom:1077.630000px;}
.yee{bottom:1079.970000px;}
.y161{bottom:1083.930000px;}
.y130{bottom:1089.690000px;}
.y6c{bottom:1097.790000px;}
.y3d{bottom:1098.330000px;}
.y160{bottom:1103.010000px;}
.y126{bottom:1106.040000px;}
.y3c{bottom:1119.030000px;}
.y15f{bottom:1121.910000px;}
.y12f{bottom:1122.630000px;}
.y3b{bottom:1139.760000px;}
.y15e{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h1e{height:20.685000px;}
.h21{height:20.692500px;}
.h67{height:20.700000px;}
.h1f{height:21.765000px;}
.h57{height:22.499764px;}
.h3b{height:27.524878px;}
.h22{height:30.599146px;}
.h42{height:31.499555px;}
.h3e{height:35.645582px;}
.h58{height:35.741786px;}
.h3c{height:39.795420px;}
.h54{height:39.879366px;}
.h61{height:40.286849px;}
.h4e{height:40.899444px;}
.h3f{height:41.203667px;}
.h16{height:41.224177px;}
.h45{height:41.252968px;}
.h28{height:41.254140px;}
.h68{height:41.400000px;}
.h2d{height:41.681251px;}
.h35{height:42.096646px;}
.h1d{height:43.185000px;}
.h3{height:45.184219px;}
.h23{height:45.749355px;}
.h5f{height:46.591811px;}
.h4f{height:47.276745px;}
.h43{height:47.709128px;}
.h5a{height:49.799541px;}
.h15{height:54.000757px;}
.h4a{height:55.050103px;}
.he{height:56.213437px;}
.h39{height:56.216335px;}
.h34{height:58.125131px;}
.h59{height:58.943228px;}
.h2c{height:59.026876px;}
.h56{height:60.167145px;}
.h64{height:60.766787px;}
.h65{height:61.101562px;}
.h52{height:61.764458px;}
.h11{height:62.092500px;}
.h1b{height:62.224217px;}
.h48{height:62.287684px;}
.h2b{height:62.379943px;}
.h31{height:62.809222px;}
.h25{height:63.495718px;}
.h38{height:63.541131px;}
.h55{height:64.005869px;}
.h63{height:64.384896px;}
.h10{height:64.546875px;}
.hf{height:64.978594px;}
.h4{height:65.010937px;}
.h51{height:65.317143px;}
.h41{height:65.717711px;}
.h1a{height:65.719435px;}
.h40{height:65.745205px;}
.h49{height:65.920659px;}
.h47{height:65.969117px;}
.h32{height:66.220984px;}
.h33{height:66.225130px;}
.h30{height:66.244901px;}
.hb{height:66.757500px;}
.h37{height:66.896712px;}
.h24{height:67.122902px;}
.h66{height:68.084282px;}
.hd{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:72.562500px;}
.h8{height:72.846211px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.h14{height:76.366406px;}
.h26{height:76.546406px;}
.hc{height:78.367500px;}
.h6{height:78.870000px;}
.h3d{height:79.680814px;}
.h5d{height:79.686339px;}
.h53{height:79.720476px;}
.h5b{height:79.888642px;}
.h3a{height:80.024063px;}
.h1c{height:80.464922px;}
.h62{height:80.474934px;}
.h60{height:80.514991px;}
.h50{height:81.796175px;}
.h4d{height:81.836890px;}
.h19{height:82.405045px;}
.h17{height:82.446063px;}
.h46{height:82.489096px;}
.h44{height:82.530155px;}
.h2a{height:82.611276px;}
.h29{height:82.652396px;}
.h2f{height:83.179781px;}
.h2e{height:83.221184px;}
.h36{height:84.149065px;}
.h9{height:84.898125px;}
.h18{height:84.916718px;}
.h13{height:91.687500px;}
.h20{height:91.738125px;}
.h5c{height:95.520770px;}
.h4b{height:97.047400px;}
.h27{height:97.720875px;}
.h4c{height:103.462981px;}
.h5e{height:106.213330px;}
.h12{height:330.001172px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1a{width:23.400925px;}
.w4{width:82.470000px;}
.w5{width:84.814500px;}
.w13{width:95.695233px;}
.w10{width:120.225410px;}
.w11{width:121.273741px;}
.w9{width:121.341000px;}
.w12{width:121.349342px;}
.wd{width:121.350000px;}
.wb{width:121.485000px;}
.wc{width:121.521000px;}
.wa{width:121.536000px;}
.w7{width:126.574500px;}
.w19{width:133.348093px;}
.w14{width:140.778513px;}
.w17{width:154.793139px;}
.we{width:155.851517px;}
.w3{width:180.735000px;}
.wf{width:199.575739px;}
.w16{width:236.544685px;}
.w6{width:254.473129px;}
.w15{width:268.876040px;}
.w1c{width:337.753500px;}
.w18{width:351.380518px;}
.w1b{width:393.149790px;}
.w1d{width:401.325000px;}
.w2{width:475.843500px;}
.w8{width:610.155000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:1.996329px;}
.x32{left:3.033726px;}
.x36{left:4.867665px;}
.x3{left:7.918500px;}
.x69{left:12.824956px;}
.x59{left:14.620556px;}
.x41{left:17.014794px;}
.x31{left:18.129238px;}
.x21{left:22.031327px;}
.x25{left:25.774500px;}
.x35{left:27.389362px;}
.x3f{left:28.454445px;}
.x45{left:29.507410px;}
.x66{left:30.513375px;}
.x52{left:32.534240px;}
.x37{left:34.800303px;}
.x38{left:36.107678px;}
.x1f{left:38.472992px;}
.x42{left:41.053050px;}
.x47{left:42.853466px;}
.x2f{left:44.820000px;}
.x2a{left:48.045000px;}
.x2e{left:49.125000px;}
.x5e{left:50.692675px;}
.x27{left:52.725000px;}
.x20{left:55.968020px;}
.x2d{left:59.254500px;}
.x56{left:61.723542px;}
.x4b{left:62.803768px;}
.x1c{left:63.953037px;}
.x40{left:68.746236px;}
.x46{left:70.412051px;}
.x1d{left:72.155272px;}
.x72{left:74.960899px;}
.x2{left:77.041500px;}
.x58{left:79.097417px;}
.x55{left:81.064487px;}
.x65{left:83.100638px;}
.x1{left:84.960000px;}
.x7{left:86.790000px;}
.x1b{left:88.379720px;}
.x23{left:92.016000px;}
.x71{left:97.347391px;}
.x77{left:99.396000px;}
.xe{left:100.476000px;}
.x9{left:108.216000px;}
.x5a{left:110.020503px;}
.x3c{left:111.636000px;}
.x78{left:113.616000px;}
.x18{left:120.276000px;}
.x15{left:127.476000px;}
.xb{left:132.336000px;}
.xd{left:134.136000px;}
.x39{left:136.549235px;}
.x4d{left:139.356000px;}
.xa{left:141.696000px;}
.x57{left:146.644561px;}
.x6f{left:150.827480px;}
.x12{left:159.690000px;}
.x51{left:163.918208px;}
.x16{left:169.770000px;}
.x5{left:172.650000px;}
.x6d{left:177.997947px;}
.x19{left:182.370000px;}
.x6b{left:185.978712px;}
.x62{left:190.631966px;}
.x26{left:204.885000px;}
.xf{left:220.350000px;}
.x61{left:222.025248px;}
.x5f{left:229.290550px;}
.x60{left:233.222185px;}
.x50{left:237.185584px;}
.x4f{left:251.492585px;}
.x3e{left:259.290000px;}
.x5d{left:271.365000px;}
.x14{left:277.095000px;}
.x6c{left:301.415835px;}
.x24{left:317.955000px;}
.x1a{left:319.440000px;}
.x28{left:326.955000px;}
.x54{left:335.790000px;}
.x70{left:351.796279px;}
.x34{left:361.365000px;}
.x5b{left:368.940000px;}
.x30{left:370.365000px;}
.x74{left:373.440000px;}
.x6e{left:375.499448px;}
.x43{left:379.515000px;}
.x3d{left:382.935000px;}
.x64{left:386.940000px;}
.x68{left:392.490000px;}
.x44{left:394.140000px;}
.x4a{left:395.940000px;}
.x79{left:414.795000px;}
.x6a{left:415.875000px;}
.xc{left:446.505000px;}
.x29{left:449.220000px;}
.x11{left:463.065000px;}
.x10{left:467.745000px;}
.x13{left:479.085000px;}
.x4c{left:491.685000px;}
.x4e{left:511.125000px;}
.x48{left:515.445000px;}
.x67{left:520.305000px;}
.x5c{left:523.725000px;}
.x33{left:526.245000px;}
.x4{left:552.900000px;}
.x3a{left:560.985000px;}
.x2b{left:571.440000px;}
.x22{left:573.945000px;}
.x53{left:588.345000px;}
.x63{left:622.725000px;}
.x49{left:647.070000px;}
.x73{left:652.470000px;}
.x2c{left:693.690000px;}
.x17{left:711.870000px;}
.x3b{left:722.130000px;}
.x6{left:733.650000px;}
.x76{left:779.190000px;}
.x75{left:798.090000px;}
.x8{left:808.020000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.vc{vertical-align:-72.320000pt;}
.va{vertical-align:-58.093668pt;}
.v5{vertical-align:-49.194205pt;}
.v3{vertical-align:-46.577864pt;}
.v8{vertical-align:-34.116822pt;}
.v6{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.320000pt;}
.vb{vertical-align:19.223193pt;}
.v7{vertical-align:23.680000pt;}
.v2{vertical-align:29.440000pt;}
.v4{vertical-align:38.856045pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls50{letter-spacing:-1.272420pt;}
.ls12{letter-spacing:-0.896000pt;}
.ls52{letter-spacing:-0.803348pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls45{letter-spacing:-0.632936pt;}
.ls44{letter-spacing:-0.627748pt;}
.lsa{letter-spacing:-0.522133pt;}
.ls32{letter-spacing:-0.512000pt;}
.ls3e{letter-spacing:-0.447968pt;}
.ls17{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.256000pt;}
.ls40{letter-spacing:-0.251785pt;}
.ls41{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.023040pt;}
.ls59{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.042667pt;}
.ls1{letter-spacing:0.061440pt;}
.ls15{letter-spacing:0.064000pt;}
.ls37{letter-spacing:0.096000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.128000pt;}
.ls3b{letter-spacing:0.138667pt;}
.ls3d{letter-spacing:0.160000pt;}
.ls47{letter-spacing:0.161067pt;}
.ls38{letter-spacing:0.161280pt;}
.ls1b{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.235733pt;}
.ls25{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.265600pt;}
.ls6{letter-spacing:0.271467pt;}
.ls18{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls57{letter-spacing:0.425600pt;}
.ls26{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls5b{letter-spacing:0.736000pt;}
.ls2{letter-spacing:0.746667pt;}
.ls22{letter-spacing:0.768000pt;}
.ls49{letter-spacing:0.801280pt;}
.ls13{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.920000pt;}
.ls2d{letter-spacing:2.560000pt;}
.ls24{letter-spacing:2.800000pt;}
.ls23{letter-spacing:2.960000pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls4{letter-spacing:4.480000pt;}
.ls5{letter-spacing:5.120000pt;}
.ls58{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:6.400000pt;}
.lsf{letter-spacing:8.960000pt;}
.ls35{letter-spacing:14.720000pt;}
.ls3f{letter-spacing:15.841477pt;}
.ls34{letter-spacing:21.760000pt;}
.ls31{letter-spacing:23.040000pt;}
.ls39{letter-spacing:23.680000pt;}
.ls5c{letter-spacing:30.970027pt;}
.ls4f{letter-spacing:35.012555pt;}
.ls7{letter-spacing:43.680000pt;}
.ls5a{letter-spacing:60.410027pt;}
.ls20{letter-spacing:74.240000pt;}
.ls46{letter-spacing:74.330028pt;}
.ls1f{letter-spacing:74.880000pt;}
.ls55{letter-spacing:95.640334pt;}
.ls29{letter-spacing:95.666720pt;}
.ls4e{letter-spacing:95.822360pt;}
.ls56{letter-spacing:106.696454pt;}
.ls4a{letter-spacing:116.281588pt;}
.ls3c{letter-spacing:117.708795pt;}
.ls54{letter-spacing:119.905093pt;}
.ls27{letter-spacing:120.672880pt;}
.ls4c{letter-spacing:120.828520pt;}
.ls2b{letter-spacing:133.227840pt;}
.ls8{letter-spacing:134.378667pt;}
.ls42{letter-spacing:134.728122pt;}
.ls33{letter-spacing:147.070777pt;}
.ls28{letter-spacing:225.470480pt;}
.ls4d{letter-spacing:225.626120pt;}
.ls1d{letter-spacing:237.960590pt;}
.ls51{letter-spacing:303.418390pt;}
.ls4b{letter-spacing:324.653043pt;}
.ls53{letter-spacing:337.317526pt;}
.ls48{letter-spacing:367.826950pt;}
.ls1e{letter-spacing:392.718635pt;}
.ls30{letter-spacing:430.760618pt;}
.ls2a{letter-spacing:584.739480pt;}
.ls43{letter-spacing:635.426240pt;}
.wsd{word-spacing:-110.084110pt;}
.ws4{word-spacing:-74.720000pt;}
.ws10{word-spacing:-64.000000pt;}
.ws11{word-spacing:-63.744000pt;}
.ws1f{word-spacing:-35.136000pt;}
.ws12{word-spacing:-19.049181pt;}
.ws19{word-spacing:-18.843227pt;}
.ws27{word-spacing:-18.686762pt;}
.ws1a{word-spacing:-18.591442pt;}
.ws1{word-spacing:-17.303040pt;}
.ws0{word-spacing:-17.280000pt;}
.wsc{word-spacing:-16.448000pt;}
.ws7{word-spacing:-16.320000pt;}
.ws8{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws20{word-spacing:-15.808000pt;}
.ws1b{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.991467pt;}
.ws39{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.197867pt;}
.ws24{word-spacing:-10.881067pt;}
.wsb{word-spacing:-10.720000pt;}
.ws1c{word-spacing:-10.480533pt;}
.ws5{word-spacing:0.000000pt;}
.wsf{word-spacing:12.022012pt;}
.wse{word-spacing:13.328227pt;}
.ws1e{word-spacing:19.711238pt;}
.ws14{word-spacing:22.249443pt;}
.ws26{word-spacing:23.521328pt;}
.ws37{word-spacing:29.823812pt;}
.ws29{word-spacing:35.579594pt;}
.ws2f{word-spacing:38.122834pt;}
.ws1d{word-spacing:42.238367pt;}
.ws25{word-spacing:42.786417pt;}
.ws2e{word-spacing:44.323258pt;}
.ws21{word-spacing:55.423477pt;}
.ws23{word-spacing:67.502479pt;}
.ws13{word-spacing:72.463083pt;}
.ws17{word-spacing:75.756052pt;}
.ws18{word-spacing:76.878919pt;}
.ws16{word-spacing:80.397233pt;}
.ws36{word-spacing:90.058577pt;}
.ws22{word-spacing:90.127757pt;}
.ws2b{word-spacing:91.600878pt;}
.ws2d{word-spacing:91.907758pt;}
.ws35{word-spacing:103.553676pt;}
.ws2c{word-spacing:105.128296pt;}
.ws38{word-spacing:108.361980pt;}
.ws15{word-spacing:118.050686pt;}
.ws28{word-spacing:119.445780pt;}
.ws32{word-spacing:179.547288pt;}
.ws31{word-spacing:320.955115pt;}
.ws30{word-spacing:325.848451pt;}
.ws2a{word-spacing:561.568594pt;}
.ws34{word-spacing:860.114099pt;}
.ws33{word-spacing:1028.777253pt;}
._1a{margin-left:-444.250820pt;}
._2d{margin-left:-336.435714pt;}
._1e{margin-left:-71.040000pt;}
._19{margin-left:-58.880000pt;}
._3f{margin-left:-8.320000pt;}
._49{margin-left:-6.400000pt;}
._11{margin-left:-1.809920pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._9{width:2.250240pt;}
._8{width:3.738453pt;}
._7{width:4.778667pt;}
._6{width:6.182400pt;}
._a{width:7.726080pt;}
._b{width:8.857173pt;}
._e{width:9.894827pt;}
._12{width:10.823253pt;}
._14{width:12.096000pt;}
._13{width:12.992000pt;}
._d{width:14.336000pt;}
._f{width:17.152000pt;}
._10{width:18.350080pt;}
._29{width:20.480000pt;}
._27{width:21.632000pt;}
._24{width:22.592000pt;}
._25{width:23.512747pt;}
._26{width:25.016747pt;}
._2a{width:25.909333pt;}
._38{width:39.680000pt;}
._2f{width:41.600000pt;}
._c{width:42.982400pt;}
._3c{width:64.000000pt;}
._51{width:67.200000pt;}
._3b{width:69.070568pt;}
._28{width:70.400000pt;}
._18{width:72.505428pt;}
._1c{width:73.606034pt;}
._23{width:75.257966pt;}
._2b{width:76.462275pt;}
._48{width:77.895977pt;}
._17{width:85.199479pt;}
._2c{width:88.592267pt;}
._31{width:99.312276pt;}
._2e{width:105.848626pt;}
._34{width:107.974098pt;}
._4c{width:113.904046pt;}
._35{width:120.817490pt;}
._43{width:122.593090pt;}
._33{width:123.878997pt;}
._45{width:124.816665pt;}
._46{width:127.188478pt;}
._47{width:131.116794pt;}
._42{width:134.378037pt;}
._1d{width:141.421116pt;}
._36{width:143.442768pt;}
._15{width:144.402269pt;}
._1b{width:148.278821pt;}
._22{width:153.533264pt;}
._37{width:159.198325pt;}
._50{width:163.709720pt;}
._3e{width:172.665677pt;}
._32{width:178.314071pt;}
._4e{width:185.221688pt;}
._4f{width:230.287437pt;}
._30{width:231.629082pt;}
._20{width:242.464281pt;}
._3d{width:244.049106pt;}
._1f{width:262.750734pt;}
._21{width:291.346398pt;}
._41{width:340.231835pt;}
._3a{width:358.644256pt;}
._44{width:369.484011pt;}
._16{width:395.830356pt;}
._4b{width:404.031834pt;}
._4a{width:415.016462pt;}
._1{width:426.964907pt;}
._40{width:596.112565pt;}
._4d{width:604.743462pt;}
._39{width:627.011413pt;}
._4{width:654.986667pt;}
._3{width:722.176427pt;}
._52{width:748.298667pt;}
._54{width:752.106667pt;}
._2{width:759.946667pt;}
._53{width:902.950400pt;}
.fs18{font-size:36.042463pt;}
.fs6{font-size:37.336480pt;}
.fsd{font-size:37.363616pt;}
.fs26{font-size:37.437247pt;}
.fsf{font-size:37.750449pt;}
.fs14{font-size:38.126669pt;}
.fsa{font-size:38.160516pt;}
.fs24{font-size:41.771099pt;}
.fs2c{font-size:42.197912pt;}
.fs21{font-size:42.839566pt;}
.fs5{font-size:42.880000pt;}
.fs1c{font-size:43.209860pt;}
.fs9{font-size:45.440000pt;}
.fs27{font-size:53.411086pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs17{font-size:67.461249pt;}
.fs0{font-size:69.120000pt;}
.fs19{font-size:72.202337pt;}
.fs2d{font-size:72.921924pt;}
.fs22{font-size:74.119160pt;}
.fs7{font-size:74.670884pt;}
.fs1d{font-size:74.747046pt;}
.fse{font-size:74.857759pt;}
.fs3{font-size:74.880000pt;}
.fs10{font-size:75.372907pt;}
.fsb{font-size:76.196722pt;}
.fs15{font-size:76.251219pt;}
.fs25{font-size:76.808919pt;}
.fs2e{font-size:77.263762pt;}
.fs23{font-size:78.382486pt;}
.fs1b{font-size:78.863178pt;}
.fs8{font-size:78.865248pt;}
.fs1a{font-size:78.896172pt;}
.fs1f{font-size:79.106722pt;}
.fs1e{font-size:79.164873pt;}
.fs12{font-size:79.467121pt;}
.fs13{font-size:79.472096pt;}
.fs11{font-size:79.495822pt;}
.fs16{font-size:80.278014pt;}
.fsc{font-size:80.549449pt;}
.fs2a{font-size:95.625942pt;}
.fs28{font-size:95.868711pt;}
.fs29{font-size:114.627722pt;}
.fs20{font-size:116.459723pt;}
.fs2b{font-size:127.459108pt;}
.fs4{font-size:298.880000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.160000pt;}
.y10d{bottom:2.795368pt;}
.y7f{bottom:2.816176pt;}
.y11c{bottom:3.043368pt;}
.yd8{bottom:3.073210pt;}
.y121{bottom:3.292642pt;}
.yb4{bottom:3.359232pt;}
.y92{bottom:3.506667pt;}
.y3a{bottom:3.828000pt;}
.y91{bottom:3.986667pt;}
.y94{bottom:3.993333pt;}
.y16d{bottom:4.000000pt;}
.y8f{bottom:4.786667pt;}
.yf9{bottom:5.804908pt;}
.y122{bottom:6.646269pt;}
.yc5{bottom:6.914687pt;}
.yd9{bottom:7.727788pt;}
.y97{bottom:8.150320pt;}
.yb7{bottom:8.190096pt;}
.y12d{bottom:9.593446pt;}
.yfa{bottom:10.647484pt;}
.ya4{bottom:10.657349pt;}
.y12a{bottom:11.135792pt;}
.y128{bottom:12.153781pt;}
.y10c{bottom:12.374779pt;}
.ye3{bottom:12.530187pt;}
.y129{bottom:12.986910pt;}
.y127{bottom:13.048867pt;}
.y16f{bottom:13.120000pt;}
.y12e{bottom:14.313292pt;}
.y10b{bottom:14.981669pt;}
.y96{bottom:16.679525pt;}
.y110{bottom:17.180577pt;}
.y80{bottom:17.339593pt;}
.y9{bottom:18.880000pt;}
.ya1{bottom:19.067071pt;}
.yc4{bottom:21.713029pt;}
.yb5{bottom:22.842937pt;}
.y8e{bottom:23.186667pt;}
.y12c{bottom:25.449084pt;}
.ye4{bottom:26.041166pt;}
.y10e{bottom:26.099801pt;}
.ya{bottom:27.680000pt;}
.yc2{bottom:28.724665pt;}
.y7e{bottom:28.984059pt;}
.y12b{bottom:29.119710pt;}
.yb3{bottom:29.785386pt;}
.ye5{bottom:30.819314pt;}
.y10f{bottom:30.905728pt;}
.yc3{bottom:33.635725pt;}
.yb6{bottom:34.616512pt;}
.y8{bottom:37.280000pt;}
.y7d{bottom:37.369164pt;}
.ya3{bottom:38.744667pt;}
.ya0{bottom:47.123599pt;}
.y5{bottom:51.200000pt;}
.y7{bottom:55.706667pt;}
.ya2{bottom:66.801195pt;}
.y9f{bottom:75.210390pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.y93{bottom:125.478667pt;}
.y6b{bottom:129.472000pt;}
.y39{bottom:130.918667pt;}
.yec{bottom:133.626667pt;}
.y149{bottom:133.946667pt;}
.y38{bottom:134.906667pt;}
.yb1{bottom:138.746667pt;}
.y8d{bottom:144.520000pt;}
.y15d{bottom:145.626667pt;}
.y125{bottom:148.026667pt;}
.y6a{bottom:148.186667pt;}
.yeb{bottom:152.026667pt;}
.y148{bottom:152.346667pt;}
.y37{bottom:153.306667pt;}
.yb0{bottom:157.146667pt;}
.y15c{bottom:162.586667pt;}
.y90{bottom:164.520000pt;}
.y124{bottom:166.426667pt;}
.y69{bottom:166.586667pt;}
.yea{bottom:170.426667pt;}
.y147{bottom:170.746667pt;}
.yaf{bottom:175.546667pt;}
.y15b{bottom:179.386667pt;}
.y123{bottom:184.826667pt;}
.y68{bottom:184.986667pt;}
.y8c{bottom:187.546667pt;}
.ye9{bottom:188.826667pt;}
.y146{bottom:189.146667pt;}
.yae{bottom:189.946667pt;}
.y36{bottom:190.106667pt;}
.y15a{bottom:196.346667pt;}
.y11f{bottom:203.226667pt;}
.y120{bottom:203.280000pt;}
.y67{bottom:203.386667pt;}
.y8b{bottom:205.946667pt;}
.ye8{bottom:207.226667pt;}
.y145{bottom:207.546667pt;}
.y35{bottom:208.186667pt;}
.y159{bottom:213.146667pt;}
.y66{bottom:221.786667pt;}
.y8a{bottom:224.346667pt;}
.y34{bottom:224.986667pt;}
.ye7{bottom:225.626667pt;}
.y144{bottom:225.946667pt;}
.y11e{bottom:226.746667pt;}
.y158{bottom:230.426667pt;}
.ye2{bottom:240.080000pt;}
.y65{bottom:240.186667pt;}
.y11b{bottom:241.213333pt;}
.y33{bottom:241.786667pt;}
.y89{bottom:242.746667pt;}
.y143{bottom:244.346667pt;}
.y11d{bottom:249.146667pt;}
.ye6{bottom:257.306667pt;}
.y64{bottom:258.586667pt;}
.y32{bottom:258.746667pt;}
.y88{bottom:261.146667pt;}
.y142{bottom:262.746667pt;}
.y157{bottom:267.226667pt;}
.y11a{bottom:269.626667pt;}
.y31{bottom:275.546667pt;}
.y63{bottom:276.986667pt;}
.y87{bottom:279.546667pt;}
.y141{bottom:281.146667pt;}
.y156{bottom:285.626667pt;}
.y119{bottom:288.026667pt;}
.ye1{bottom:292.026667pt;}
.y30{bottom:292.506667pt;}
.y62{bottom:295.386667pt;}
.y86{bottom:297.946667pt;}
.y140{bottom:299.546667pt;}
.y155{bottom:304.026667pt;}
.y118{bottom:306.426667pt;}
.y2f{bottom:309.306667pt;}
.ye0{bottom:310.426667pt;}
.y61{bottom:313.786667pt;}
.y85{bottom:316.346667pt;}
.y13f{bottom:317.946667pt;}
.y154{bottom:322.426667pt;}
.y117{bottom:324.826667pt;}
.y2e{bottom:326.106667pt;}
.ydf{bottom:328.666667pt;}
.y60{bottom:332.186667pt;}
.y84{bottom:334.746667pt;}
.y13e{bottom:336.346667pt;}
.y153{bottom:340.866667pt;}
.y2d{bottom:343.106667pt;}
.y116{bottom:343.266667pt;}
.yde{bottom:348.386667pt;}
.y5f{bottom:350.626667pt;}
.y83{bottom:353.186667pt;}
.y13d{bottom:354.786667pt;}
.y152{bottom:359.266667pt;}
.y2c{bottom:359.906667pt;}
.y115{bottom:361.506667pt;}
.ydd{bottom:368.066667pt;}
.y5e{bottom:369.026667pt;}
.y82{bottom:371.586667pt;}
.y13c{bottom:373.186667pt;}
.y2b{bottom:376.866667pt;}
.y151{bottom:377.666667pt;}
.y114{bottom:379.906667pt;}
.y7c{bottom:386.013333pt;}
.ydc{bottom:386.466667pt;}
.y5d{bottom:387.426667pt;}
.y13b{bottom:387.586667pt;}
.y2a{bottom:393.666667pt;}
.y150{bottom:396.066667pt;}
.y113{bottom:398.306667pt;}
.y81{bottom:403.266667pt;}
.ydb{bottom:404.866667pt;}
.y5c{bottom:405.826667pt;}
.y29{bottom:410.466667pt;}
.y14f{bottom:414.466667pt;}
.y112{bottom:416.706667pt;}
.yd7{bottom:419.280000pt;}
.y5b{bottom:424.226667pt;}
.yda{bottom:427.266667pt;}
.y28{bottom:427.426667pt;}
.y10a{bottom:431.146667pt;}
.y14e{bottom:432.866667pt;}
.y7b{bottom:437.986667pt;}
.y5a{bottom:442.626667pt;}
.y27{bottom:444.226667pt;}
.yd6{bottom:447.746667pt;}
.y111{bottom:448.386667pt;}
.y14d{bottom:451.266667pt;}
.y7a{bottom:456.386667pt;}
.y26{bottom:460.866667pt;}
.y59{bottom:461.026667pt;}
.yd5{bottom:466.146667pt;}
.y14c{bottom:469.666667pt;}
.y79{bottom:474.786667pt;}
.y25{bottom:477.986667pt;}
.y58{bottom:479.426667pt;}
.y109{bottom:484.066667pt;}
.yd4{bottom:484.546667pt;}
.y14b{bottom:488.066667pt;}
.y78{bottom:493.186667pt;}
.y24{bottom:494.786667pt;}
.y57{bottom:497.826667pt;}
.y108{bottom:502.466667pt;}
.y14a{bottom:502.626667pt;}
.yd3{bottom:502.786667pt;}
.y77{bottom:511.586667pt;}
.y23{bottom:511.746667pt;}
.yad{bottom:512.386667pt;}
.y56{bottom:516.226667pt;}
.yd2{bottom:521.186667pt;}
.y107{bottom:522.146667pt;}
.y22{bottom:528.546667pt;}
.y76{bottom:529.986667pt;}
.yac{bottom:530.786667pt;}
.y55{bottom:534.626667pt;}
.yd1{bottom:539.586667pt;}
.y106{bottom:540.386667pt;}
.y21{bottom:545.506667pt;}
.y75{bottom:548.386667pt;}
.yab{bottom:549.186667pt;}
.y54{bottom:553.026667pt;}
.yd0{bottom:557.986667pt;}
.y105{bottom:559.266667pt;}
.y20{bottom:562.333333pt;}
.y74{bottom:566.813333pt;}
.yaa{bottom:567.613333pt;}
.y53{bottom:571.453333pt;}
.ycf{bottom:576.413333pt;}
.y104{bottom:577.693333pt;}
.y1f{bottom:579.133333pt;}
.y73{bottom:585.213333pt;}
.ya9{bottom:586.013333pt;}
.y52{bottom:589.853333pt;}
.yce{bottom:594.813333pt;}
.y1e{bottom:596.093333pt;}
.y72{bottom:603.613333pt;}
.ya8{bottom:604.413333pt;}
.y51{bottom:608.253333pt;}
.y1d{bottom:612.893333pt;}
.ycd{bottom:613.213333pt;}
.y103{bottom:614.493333pt;}
.y71{bottom:618.173333pt;}
.ya7{bottom:622.813333pt;}
.y50{bottom:626.653333pt;}
.y101{bottom:628.880000pt;}
.y1c{bottom:629.853333pt;}
.ycc{bottom:631.613333pt;}
.y102{bottom:639.613333pt;}
.ya6{bottom:641.213333pt;}
.y4f{bottom:645.053333pt;}
.y1b{bottom:646.653333pt;}
.ycb{bottom:647.933333pt;}
.yca{bottom:650.013333pt;}
.y9e{bottom:655.746667pt;}
.y100{bottom:660.893333pt;}
.y4e{bottom:663.453333pt;}
.y1a{bottom:663.933333pt;}
.yc9{bottom:669.693333pt;}
.yff{bottom:679.293333pt;}
.y4d{bottom:681.853333pt;}
.y19{bottom:682.653333pt;}
.y171{bottom:686.493333pt;}
.yc8{bottom:688.093333pt;}
.ya5{bottom:694.493333pt;}
.yfe{bottom:697.693333pt;}
.y4c{bottom:700.253333pt;}
.y18{bottom:702.013333pt;}
.y170{bottom:704.893333pt;}
.yc7{bottom:706.493333pt;}
.yfd{bottom:716.093333pt;}
.y4b{bottom:718.653333pt;}
.y16e{bottom:719.293333pt;}
.yc1{bottom:720.880000pt;}
.y17{bottom:722.173333pt;}
.yfc{bottom:734.493333pt;}
.y4a{bottom:737.053333pt;}
.y16c{bottom:737.693333pt;}
.y16{bottom:740.893333pt;}
.yc6{bottom:742.173333pt;}
.y9d{bottom:746.653333pt;}
.yf8{bottom:749.013333pt;}
.y49{bottom:755.453333pt;}
.yfb{bottom:759.773333pt;}
.y15{bottom:760.253333pt;}
.y9c{bottom:765.053333pt;}
.y48{bottom:773.853333pt;}
.yc0{bottom:776.413333pt;}
.y16b{bottom:778.013333pt;}
.y14{bottom:779.773333pt;}
.yf7{bottom:781.053333pt;}
.y9b{bottom:783.453333pt;}
.y47{bottom:792.293333pt;}
.ybf{bottom:794.853333pt;}
.y13{bottom:797.573333pt;}
.y13a{bottom:798.053333pt;}
.yf6{bottom:799.493333pt;}
.y9a{bottom:801.893333pt;}
.y46{bottom:810.693333pt;}
.y16a{bottom:811.813333pt;}
.ybe{bottom:813.253333pt;}
.y139{bottom:816.453333pt;}
.yf5{bottom:817.893333pt;}
.y12{bottom:819.013333pt;}
.y99{bottom:820.293333pt;}
.y169{bottom:828.613333pt;}
.y45{bottom:829.093333pt;}
.ybd{bottom:831.653333pt;}
.y95{bottom:834.613333pt;}
.y138{bottom:834.853333pt;}
.yf4{bottom:836.293333pt;}
.y11{bottom:840.453333pt;}
.y98{bottom:842.693333pt;}
.y168{bottom:845.573333pt;}
.y44{bottom:847.493333pt;}
.ybc{bottom:850.053333pt;}
.y137{bottom:853.253333pt;}
.yf3{bottom:854.693333pt;}
.y10{bottom:861.413333pt;}
.y167{bottom:862.373333pt;}
.y43{bottom:865.893333pt;}
.ybb{bottom:868.453333pt;}
.y136{bottom:871.653333pt;}
.yf2{bottom:873.093333pt;}
.y166{bottom:879.173333pt;}
.yf{bottom:880.293333pt;}
.y42{bottom:884.293333pt;}
.y70{bottom:884.933333pt;}
.yba{bottom:886.853333pt;}
.y135{bottom:890.053333pt;}
.yf1{bottom:891.493333pt;}
.y165{bottom:896.133333pt;}
.ye{bottom:901.893333pt;}
.y6f{bottom:902.213333pt;}
.y41{bottom:902.693333pt;}
.yb9{bottom:905.253333pt;}
.y134{bottom:908.453333pt;}
.yf0{bottom:909.893333pt;}
.y164{bottom:912.933333pt;}
.yb2{bottom:919.746667pt;}
.y6e{bottom:920.613333pt;}
.y40{bottom:921.093333pt;}
.yd{bottom:923.333333pt;}
.y133{bottom:926.853333pt;}
.yef{bottom:928.293333pt;}
.y163{bottom:929.893333pt;}
.y6d{bottom:939.013333pt;}
.y3f{bottom:939.493333pt;}
.yb8{bottom:942.533333pt;}
.yed{bottom:942.613333pt;}
.yc{bottom:944.133333pt;}
.y132{bottom:945.013333pt;}
.y131{bottom:945.093333pt;}
.y162{bottom:946.693333pt;}
.y6{bottom:957.413333pt;}
.y3e{bottom:957.893333pt;}
.yee{bottom:959.973333pt;}
.y161{bottom:963.493333pt;}
.y130{bottom:968.613333pt;}
.y6c{bottom:975.813333pt;}
.y3d{bottom:976.293333pt;}
.y160{bottom:980.453333pt;}
.y126{bottom:983.146667pt;}
.y3c{bottom:994.693333pt;}
.y15f{bottom:997.253333pt;}
.y12f{bottom:997.893333pt;}
.y3b{bottom:1013.120000pt;}
.y15e{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h1e{height:18.386667pt;}
.h21{height:18.393333pt;}
.h67{height:18.400000pt;}
.h1f{height:19.346667pt;}
.h57{height:19.999790pt;}
.h3b{height:24.466558pt;}
.h22{height:27.199241pt;}
.h42{height:27.999604pt;}
.h3e{height:31.684962pt;}
.h58{height:31.770476pt;}
.h3c{height:35.373707pt;}
.h54{height:35.448325pt;}
.h61{height:35.810533pt;}
.h4e{height:36.355062pt;}
.h3f{height:36.625482pt;}
.h16{height:36.643713pt;}
.h45{height:36.669305pt;}
.h28{height:36.670346pt;}
.h68{height:36.800000pt;}
.h2d{height:37.050001pt;}
.h35{height:37.419241pt;}
.h1d{height:38.386667pt;}
.h3{height:40.163750pt;}
.h23{height:40.666094pt;}
.h5f{height:41.414943pt;}
.h4f{height:42.023774pt;}
.h43{height:42.408114pt;}
.h5a{height:44.266258pt;}
.h15{height:48.000673pt;}
.h4a{height:48.933425pt;}
.he{height:49.967500pt;}
.h39{height:49.970075pt;}
.h34{height:51.666783pt;}
.h59{height:52.393980pt;}
.h2c{height:52.468334pt;}
.h56{height:53.481907pt;}
.h64{height:54.014922pt;}
.h65{height:54.312500pt;}
.h52{height:54.901741pt;}
.h11{height:55.193333pt;}
.h1b{height:55.310416pt;}
.h48{height:55.366831pt;}
.h2b{height:55.448838pt;}
.h31{height:55.830420pt;}
.h25{height:56.440638pt;}
.h38{height:56.481005pt;}
.h55{height:56.894106pt;}
.h63{height:57.231019pt;}
.h10{height:57.375000pt;}
.hf{height:57.758750pt;}
.h4{height:57.787500pt;}
.h51{height:58.059683pt;}
.h41{height:58.415743pt;}
.h1a{height:58.417276pt;}
.h40{height:58.440182pt;}
.h49{height:58.596141pt;}
.h47{height:58.639215pt;}
.h32{height:58.863097pt;}
.h33{height:58.866782pt;}
.h30{height:58.884356pt;}
.hb{height:59.340000pt;}
.h37{height:59.463744pt;}
.h24{height:59.664802pt;}
.h66{height:60.519362pt;}
.hd{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:64.500000pt;}
.h8{height:64.752187pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.h14{height:67.881250pt;}
.h26{height:68.041250pt;}
.hc{height:69.660000pt;}
.h6{height:70.106667pt;}
.h3d{height:70.827390pt;}
.h5d{height:70.832301pt;}
.h53{height:70.862645pt;}
.h5b{height:71.012126pt;}
.h3a{height:71.132500pt;}
.h1c{height:71.524375pt;}
.h62{height:71.533275pt;}
.h60{height:71.568881pt;}
.h50{height:72.707711pt;}
.h4d{height:72.743902pt;}
.h19{height:73.248929pt;}
.h17{height:73.285389pt;}
.h46{height:73.323641pt;}
.h44{height:73.360138pt;}
.h2a{height:73.432245pt;}
.h29{height:73.468797pt;}
.h2f{height:73.937583pt;}
.h2e{height:73.974386pt;}
.h36{height:74.799169pt;}
.h9{height:75.465000pt;}
.h18{height:75.481527pt;}
.h13{height:81.500000pt;}
.h20{height:81.545000pt;}
.h5c{height:84.907351pt;}
.h4b{height:86.264356pt;}
.h27{height:86.863000pt;}
.h4c{height:91.967094pt;}
.h5e{height:94.411849pt;}
.h12{height:293.334375pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1a{width:20.800822pt;}
.w4{width:73.306667pt;}
.w5{width:75.390667pt;}
.w13{width:85.062429pt;}
.w10{width:106.867031pt;}
.w11{width:107.798881pt;}
.w9{width:107.858667pt;}
.w12{width:107.866082pt;}
.wd{width:107.866667pt;}
.wb{width:107.986667pt;}
.wc{width:108.018667pt;}
.wa{width:108.032000pt;}
.w7{width:112.510667pt;}
.w19{width:118.531638pt;}
.w14{width:125.136456pt;}
.w17{width:137.593901pt;}
.we{width:138.534681pt;}
.w3{width:160.653333pt;}
.wf{width:177.400657pt;}
.w16{width:210.261943pt;}
.w6{width:226.198337pt;}
.w15{width:239.000924pt;}
.w1c{width:300.225333pt;}
.w18{width:312.338238pt;}
.w1b{width:349.466480pt;}
.w1d{width:356.733333pt;}
.w2{width:422.972000pt;}
.w8{width:542.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:1.774514pt;}
.x32{left:2.696645pt;}
.x36{left:4.326813pt;}
.x3{left:7.038667pt;}
.x69{left:11.399961pt;}
.x59{left:12.996050pt;}
.x41{left:15.124261pt;}
.x31{left:16.114878pt;}
.x21{left:19.583401pt;}
.x25{left:22.910667pt;}
.x35{left:24.346099pt;}
.x3f{left:25.292840pt;}
.x45{left:26.228809pt;}
.x66{left:27.123000pt;}
.x52{left:28.919324pt;}
.x37{left:30.933603pt;}
.x38{left:32.095714pt;}
.x1f{left:34.198216pt;}
.x42{left:36.491600pt;}
.x47{left:38.091970pt;}
.x2f{left:39.840000pt;}
.x2a{left:42.706667pt;}
.x2e{left:43.666667pt;}
.x5e{left:45.060156pt;}
.x27{left:46.866667pt;}
.x20{left:49.749351pt;}
.x2d{left:52.670667pt;}
.x56{left:54.865370pt;}
.x4b{left:55.825572pt;}
.x1c{left:56.847144pt;}
.x40{left:61.107766pt;}
.x46{left:62.588489pt;}
.x1d{left:64.138020pt;}
.x72{left:66.631910pt;}
.x2{left:68.481333pt;}
.x58{left:70.308815pt;}
.x55{left:72.057322pt;}
.x65{left:73.867234pt;}
.x1{left:75.520000pt;}
.x7{left:77.146667pt;}
.x1b{left:78.559751pt;}
.x23{left:81.792000pt;}
.x71{left:86.531014pt;}
.x77{left:88.352000pt;}
.xe{left:89.312000pt;}
.x9{left:96.192000pt;}
.x5a{left:97.796003pt;}
.x3c{left:99.232000pt;}
.x78{left:100.992000pt;}
.x18{left:106.912000pt;}
.x15{left:113.312000pt;}
.xb{left:117.632000pt;}
.xd{left:119.232000pt;}
.x39{left:121.377098pt;}
.x4d{left:123.872000pt;}
.xa{left:125.952000pt;}
.x57{left:130.350721pt;}
.x6f{left:134.068871pt;}
.x12{left:141.946667pt;}
.x51{left:145.705074pt;}
.x16{left:150.906667pt;}
.x5{left:153.466667pt;}
.x6d{left:158.220397pt;}
.x19{left:162.106667pt;}
.x6b{left:165.314410pt;}
.x62{left:169.450637pt;}
.x26{left:182.120000pt;}
.xf{left:195.866667pt;}
.x61{left:197.355776pt;}
.x5f{left:203.813823pt;}
.x60{left:207.308609pt;}
.x50{left:210.831631pt;}
.x4f{left:223.548965pt;}
.x3e{left:230.480000pt;}
.x5d{left:241.213333pt;}
.x14{left:246.306667pt;}
.x6c{left:267.925187pt;}
.x24{left:282.626667pt;}
.x1a{left:283.946667pt;}
.x28{left:290.626667pt;}
.x54{left:298.480000pt;}
.x70{left:312.707803pt;}
.x34{left:321.213333pt;}
.x5b{left:327.946667pt;}
.x30{left:329.213333pt;}
.x74{left:331.946667pt;}
.x6e{left:333.777287pt;}
.x43{left:337.346667pt;}
.x3d{left:340.386667pt;}
.x64{left:343.946667pt;}
.x68{left:348.880000pt;}
.x44{left:350.346667pt;}
.x4a{left:351.946667pt;}
.x79{left:368.706667pt;}
.x6a{left:369.666667pt;}
.xc{left:396.893333pt;}
.x29{left:399.306667pt;}
.x11{left:411.613333pt;}
.x10{left:415.773333pt;}
.x13{left:425.853333pt;}
.x4c{left:437.053333pt;}
.x4e{left:454.333333pt;}
.x48{left:458.173333pt;}
.x67{left:462.493333pt;}
.x5c{left:465.533333pt;}
.x33{left:467.773333pt;}
.x4{left:491.466667pt;}
.x3a{left:498.653333pt;}
.x2b{left:507.946667pt;}
.x22{left:510.173333pt;}
.x53{left:522.973333pt;}
.x63{left:553.533333pt;}
.x49{left:575.173333pt;}
.x73{left:579.973333pt;}
.x2c{left:616.613333pt;}
.x17{left:632.773333pt;}
.x3b{left:641.893333pt;}
.x6{left:652.133333pt;}
.x76{left:692.613333pt;}
.x75{left:709.413333pt;}
.x8{left:718.240000pt;}
}




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