
    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_c9079f4e3777ec056f21dd40.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_247bb5c5424404702ecc99e5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_3da81028dfcb637aa56deeb6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_397938fd2c5f6ffc6446d219.woff')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_0664749389970146978422ef.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_29ff80c20f90ec5cec938852.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_27a78122dec13f1d6cce3630.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a6bd6184484fbc1502635a1f.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_77b8c9bc52bb72cbf5920111.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5dbd1ca83e98f45c127fb378.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_16c6589f6927c25cb99929d1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_55780aab1cac330c7227a651.woff')format("woff");}.ffc{font-family:ffc;line-height:1.432129;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_4fa3ce8bbac1c69b12d74be3.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_e555755ebe00ba873d574e5e.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e1fa6fa4d7d574312e73fdc2.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_438bc60e49287948b5d62c5c.woff')format("woff");}.ff10{font-family:ff10;line-height:1.432129;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_b0d712513f31ae518f88d320.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_c37fd73f5c4df4d00985517d.woff')format("woff");}.ff12{font-family:ff12;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;}
.m6{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.m2{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.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.272500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.315000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.500000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-62.640000px;}
.v2{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.160000px;}
.v4{vertical-align:4.320000px;}
.v1{vertical-align:6.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:23.652000px;}
.ls2{letter-spacing:325.080000px;}
.ls4{letter-spacing:327.240000px;}
.ls6{letter-spacing:390.474000px;}
.ls7{letter-spacing:392.634000px;}
.ls3{letter-spacing:408.456000px;}
.ls1{letter-spacing:410.616000px;}
.ls5{letter-spacing:414.936000px;}
.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;}
}
.wsac{word-spacing:-48.006000px;}
.ws54{word-spacing:-43.200000px;}
.ws46{word-spacing:-40.020000px;}
.ws68{word-spacing:-36.000000px;}
.ws21{word-spacing:-32.994000px;}
.ws64{word-spacing:-28.008000px;}
.ws8{word-spacing:-27.972000px;}
.ws67{word-spacing:-25.662000px;}
.ws7e{word-spacing:-24.030000px;}
.ws71{word-spacing:-22.734000px;}
.ws79{word-spacing:-21.978000px;}
.ws7b{word-spacing:-21.222000px;}
.ws58{word-spacing:-20.898000px;}
.ws32{word-spacing:-20.520000px;}
.ws76{word-spacing:-20.250000px;}
.ws77{word-spacing:-19.710000px;}
.ws47{word-spacing:-18.630000px;}
.ws9{word-spacing:-18.366000px;}
.ws3c{word-spacing:-18.360000px;}
.ws0{word-spacing:-17.982000px;}
.ws53{word-spacing:-17.664000px;}
.ws31{word-spacing:-17.550000px;}
.ws2c{word-spacing:-17.280000px;}
.ws2b{word-spacing:-16.794000px;}
.ws41{word-spacing:-16.686000px;}
.ws6a{word-spacing:-16.416000px;}
.ws2f{word-spacing:-16.200000px;}
.ws93{word-spacing:-15.984000px;}
.ws2e{word-spacing:-15.876000px;}
.ws18{word-spacing:-15.822000px;}
.ws6c{word-spacing:-15.768000px;}
.ws42{word-spacing:-15.552000px;}
.ws33{word-spacing:-15.390000px;}
.ws90{word-spacing:-15.012000px;}
.ws7a{word-spacing:-14.904000px;}
.wsb3{word-spacing:-14.796000px;}
.ws30{word-spacing:-14.688000px;}
.ws3a{word-spacing:-14.634000px;}
.ws75{word-spacing:-14.418000px;}
.ws35{word-spacing:-14.040000px;}
.ws1d{word-spacing:-13.716000px;}
.ws4a{word-spacing:-13.554000px;}
.ws34{word-spacing:-13.446000px;}
.ws1f{word-spacing:-13.230000px;}
.wsc2{word-spacing:-12.960000px;}
.ws48{word-spacing:-12.906000px;}
.ws80{word-spacing:-12.528000px;}
.ws38{word-spacing:-12.474000px;}
.ws70{word-spacing:-12.366000px;}
.ws73{word-spacing:-12.258000px;}
.wsbe{word-spacing:-12.042000px;}
.ws2{word-spacing:-11.988000px;}
.ws19{word-spacing:-11.880000px;}
.wsbb{word-spacing:-11.826000px;}
.ws56{word-spacing:-11.730000px;}
.ws6b{word-spacing:-11.664000px;}
.ws4c{word-spacing:-11.394000px;}
.ws7f{word-spacing:-11.286000px;}
.wsba{word-spacing:-11.232000px;}
.ws45{word-spacing:-11.070000px;}
.wsa{word-spacing:-10.596000px;}
.wsb1{word-spacing:-10.530000px;}
.ws1e{word-spacing:-10.368000px;}
.ws20{word-spacing:-10.314000px;}
.wsb5{word-spacing:-10.206000px;}
.ws36{word-spacing:-10.098000px;}
.ws57{word-spacing:-10.080000px;}
.ws44{word-spacing:-10.044000px;}
.ws1{word-spacing:-10.022264px;}
.ws6d{word-spacing:-9.984000px;}
.ws4f{word-spacing:-9.936000px;}
.ws51{word-spacing:-9.720000px;}
.ws9c{word-spacing:-9.612000px;}
.wsa5{word-spacing:-9.396000px;}
.ws4d{word-spacing:-9.234000px;}
.ws3f{word-spacing:-9.126000px;}
.ws22{word-spacing:-9.072000px;}
.ws40{word-spacing:-8.910000px;}
.wsae{word-spacing:-8.856000px;}
.ws7c{word-spacing:-8.748000px;}
.ws5b{word-spacing:-8.316000px;}
.ws15{word-spacing:-8.280000px;}
.ws3d{word-spacing:-8.256000px;}
.ws4{word-spacing:-8.064000px;}
.ws83{word-spacing:-8.046000px;}
.ws25{word-spacing:-7.830000px;}
.wsc3{word-spacing:-7.560000px;}
.ws8d{word-spacing:-7.452000px;}
.ws6f{word-spacing:-7.200000px;}
.ws66{word-spacing:-7.192047px;}
.ws85{word-spacing:-6.480000px;}
.wsa9{word-spacing:-6.210000px;}
.ws2d{word-spacing:-6.048000px;}
.ws84{word-spacing:-5.886000px;}
.ws78{word-spacing:-5.832000px;}
.ws49{word-spacing:-5.778000px;}
.ws5{word-spacing:-5.652000px;}
.ws7d{word-spacing:-5.400000px;}
.ws1b{word-spacing:-5.346000px;}
.wsc4{word-spacing:-5.292000px;}
.ws27{word-spacing:-4.590000px;}
.ws39{word-spacing:-3.888000px;}
.ws9b{word-spacing:-3.726000px;}
.ws4b{word-spacing:-3.456000px;}
.ws98{word-spacing:-3.132000px;}
.wsb4{word-spacing:-2.970000px;}
.ws11{word-spacing:-2.748000px;}
.ws5c{word-spacing:-2.538000px;}
.ws4e{word-spacing:-2.322000px;}
.wsaa{word-spacing:-2.160000px;}
.ws9d{word-spacing:-2.052000px;}
.ws9a{word-spacing:-0.972000px;}
.ws1a{word-spacing:-0.162000px;}
.ws12{word-spacing:0.000000px;}
.ws55{word-spacing:0.384000px;}
.ws99{word-spacing:1.056000px;}
.ws28{word-spacing:1.080000px;}
.wsc6{word-spacing:1.296000px;}
.ws65{word-spacing:1.944000px;}
.wsb2{word-spacing:2.322000px;}
.ws87{word-spacing:2.352000px;}
.ws89{word-spacing:2.472261px;}
.ws14{word-spacing:2.544000px;}
.ws69{word-spacing:2.754000px;}
.wsd{word-spacing:2.862000px;}
.ws7{word-spacing:3.015051px;}
.ws97{word-spacing:3.216000px;}
.wsc7{word-spacing:3.792000px;}
.ws86{word-spacing:3.840000px;}
.ws59{word-spacing:3.888000px;}
.ws8c{word-spacing:3.984000px;}
.wsc{word-spacing:4.476000px;}
.wsc1{word-spacing:4.512000px;}
.wsa8{word-spacing:4.698000px;}
.ws26{word-spacing:4.752000px;}
.ws63{word-spacing:5.400000px;}
.ws50{word-spacing:5.454000px;}
.ws82{word-spacing:5.550000px;}
.wsf{word-spacing:5.622000px;}
.wsa6{word-spacing:5.664000px;}
.wsaf{word-spacing:5.904000px;}
.ws37{word-spacing:6.210000px;}
.ws96{word-spacing:6.432000px;}
.wse{word-spacing:6.438000px;}
.ws74{word-spacing:7.614000px;}
.ws23{word-spacing:7.668000px;}
.ws17{word-spacing:8.310000px;}
.ws95{word-spacing:8.592000px;}
.wsa0{word-spacing:8.832000px;}
.ws8f{word-spacing:9.120000px;}
.ws6e{word-spacing:9.504000px;}
.ws1c{word-spacing:10.152000px;}
.ws3b{word-spacing:10.314000px;}
.wsa1{word-spacing:10.368000px;}
.ws3e{word-spacing:10.584000px;}
.ws88{word-spacing:10.752000px;}
.wsa2{word-spacing:10.848000px;}
.ws8e{word-spacing:11.376000px;}
.ws9e{word-spacing:12.240000px;}
.ws94{word-spacing:12.528000px;}
.ws91{word-spacing:12.912000px;}
.ws8b{word-spacing:13.152000px;}
.wsb{word-spacing:13.350000px;}
.wsbf{word-spacing:13.776000px;}
.ws81{word-spacing:13.950000px;}
.wsa4{word-spacing:14.640000px;}
.wsb8{word-spacing:16.524000px;}
.ws9f{word-spacing:18.198000px;}
.ws13{word-spacing:20.580000px;}
.ws2a{word-spacing:20.628000px;}
.wsab{word-spacing:21.024000px;}
.ws8a{word-spacing:22.001478px;}
.wsc5{word-spacing:22.560000px;}
.wsc0{word-spacing:22.944000px;}
.wsb0{word-spacing:22.992000px;}
.ws92{word-spacing:23.232000px;}
.ws72{word-spacing:23.382000px;}
.ws6{word-spacing:26.028000px;}
.wsad{word-spacing:26.400000px;}
.ws3{word-spacing:29.749811px;}
.ws16{word-spacing:30.384000px;}
.wsb9{word-spacing:35.272286px;}
.ws24{word-spacing:40.284000px;}
.ws10{word-spacing:41.940000px;}
.wsbd{word-spacing:43.200000px;}
.wsa3{word-spacing:44.208000px;}
.wsb6{word-spacing:45.012000px;}
.ws29{word-spacing:57.564000px;}
.wsb7{word-spacing:60.684000px;}
.wsbc{word-spacing:61.614000px;}
.ws43{word-spacing:70.740000px;}
.wsa7{word-spacing:76.734000px;}
.ws5a{word-spacing:103.302000px;}
.ws5e{word-spacing:255.582000px;}
.ws60{word-spacing:285.822000px;}
.ws5d{word-spacing:287.982000px;}
.ws61{word-spacing:289.062000px;}
.ws5f{word-spacing:290.142000px;}
.ws62{word-spacing:292.302000px;}
.ws52{word-spacing:1813.968000px;}
._c{width:1.812000px;}
._2d{width:8.028000px;}
._b{width:10.125000px;}
._3c{width:13.326679px;}
._3a{width:15.282000px;}
._2a{width:16.865774px;}
._27{width:17.942038px;}
._3b{width:19.608226px;}
._23{width:20.782302px;}
._25{width:22.133774px;}
._1b{width:23.847283px;}
._7{width:24.912000px;}
._2{width:26.071698px;}
._24{width:27.720113px;}
._1d{width:29.026189px;}
._6{width:30.312000px;}
._e{width:31.806000px;}
._28{width:32.883849px;}
._8{width:34.020000px;}
._10{width:36.024679px;}
._17{width:37.818000px;}
._1{width:39.791321px;}
._18{width:41.526000px;}
._9{width:43.074000px;}
._14{width:44.514000px;}
._0{width:46.429811px;}
._1e{width:47.695358px;}
._20{width:49.032000px;}
._1f{width:50.220000px;}
._26{width:51.222906px;}
._4{width:53.028000px;}
._1c{width:54.648000px;}
._12{width:56.190000px;}
._2f{width:57.347887px;}
._29{width:58.451321px;}
._21{width:59.562000px;}
._f{width:60.576000px;}
._2b{width:61.742717px;}
._5{width:62.982000px;}
._30{width:64.295660px;}
._a{width:65.538000px;}
._3{width:67.789811px;}
._22{width:69.822000px;}
._2c{width:71.452189px;}
._31{width:72.576000px;}
._d{width:74.346000px;}
._19{width:75.492000px;}
._2e{width:78.081057px;}
._15{width:79.416679px;}
._40{width:81.600000px;}
._44{width:82.894981px;}
._41{width:88.770679px;}
._42{width:92.700000px;}
._3f{width:94.187547px;}
._39{width:99.186340px;}
._43{width:104.466340px;}
._1a{width:106.170679px;}
._45{width:107.838000px;}
._16{width:156.516000px;}
._33{width:228.636000px;}
._38{width:325.080000px;}
._35{width:326.160000px;}
._36{width:327.240000px;}
._34{width:329.400000px;}
._37{width:392.634000px;}
._32{width:607.878000px;}
._3d{width:678.000000px;}
._11{width:700.320000px;}
._13{width:1024.758000px;}
._3e{width:1044.198000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs8{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc7{bottom:23.220000px;}
.y8f{bottom:32.940000px;}
.y53{bottom:36.720000px;}
.yc6{bottom:38.340000px;}
.y8e{bottom:49.140000px;}
.y52{bottom:53.460000px;}
.yc5{bottom:55.080000px;}
.y8d{bottom:65.880000px;}
.y51{bottom:70.200000px;}
.yc4{bottom:71.280000px;}
.y8c{bottom:82.620000px;}
.y50{bottom:86.400000px;}
.yc3{bottom:88.020000px;}
.y8b{bottom:98.820000px;}
.y4f{bottom:103.140000px;}
.yc2{bottom:104.760000px;}
.y8a{bottom:115.560000px;}
.y4e{bottom:119.340000px;}
.yc1{bottom:120.960000px;}
.y89{bottom:132.300000px;}
.y4d{bottom:136.080000px;}
.yc0{bottom:137.160000px;}
.y88{bottom:148.500000px;}
.y4c{bottom:152.280000px;}
.y87{bottom:165.240000px;}
.y4b{bottom:168.480000px;}
.ybf{bottom:170.640000px;}
.y86{bottom:181.440000px;}
.y4a{bottom:185.220000px;}
.ybe{bottom:186.840000px;}
.y85{bottom:198.180000px;}
.y49{bottom:201.960000px;}
.ybd{bottom:203.580000px;}
.y1a{bottom:212.760000px;}
.y84{bottom:214.380000px;}
.y48{bottom:218.700000px;}
.ybc{bottom:219.780000px;}
.y19{bottom:226.800000px;}
.y83{bottom:232.200000px;}
.y47{bottom:234.900000px;}
.ybb{bottom:236.520000px;}
.y82{bottom:247.860000px;}
.y46{bottom:251.640000px;}
.yba{bottom:252.720000px;}
.y18{bottom:259.200000px;}
.y81{bottom:264.600000px;}
.y45{bottom:267.840000px;}
.y17{bottom:280.080000px;}
.y80{bottom:280.800000px;}
.y44{bottom:284.580000px;}
.y7f{bottom:297.540000px;}
.yb9{bottom:299.700000px;}
.y43{bottom:300.780000px;}
.y7e{bottom:313.740000px;}
.y16{bottom:317.520000px;}
.yb8{bottom:329.400000px;}
.y7d{bottom:330.480000px;}
.y42{bottom:333.720000px;}
.y15{bottom:334.800000px;}
.yb7{bottom:345.600000px;}
.y7c{bottom:346.680000px;}
.y41{bottom:350.460000px;}
.y14{bottom:352.080000px;}
.yb6{bottom:362.340000px;}
.y7b{bottom:365.040000px;}
.y40{bottom:366.660000px;}
.y13{bottom:369.360000px;}
.yb5{bottom:378.540000px;}
.y7a{bottom:380.160000px;}
.y3f{bottom:383.400000px;}
.yb4{bottom:395.820000px;}
.y79{bottom:396.900000px;}
.y3e{bottom:399.060000px;}
.y12{bottom:405.000000px;}
.yb3{bottom:411.480000px;}
.y78{bottom:413.640000px;}
.y3d{bottom:416.340000px;}
.y11{bottom:425.160000px;}
.yb2{bottom:428.220000px;}
.y77{bottom:430.380000px;}
.y3c{bottom:432.540000px;}
.yb1{bottom:444.960000px;}
.y76{bottom:447.120000px;}
.y3b{bottom:449.280000px;}
.yb0{bottom:461.160000px;}
.y75{bottom:463.860000px;}
.y3a{bottom:466.020000px;}
.yaf{bottom:477.900000px;}
.y74{bottom:480.060000px;}
.y39{bottom:481.680000px;}
.ya{bottom:489.600000px;}
.yae{bottom:494.100000px;}
.y38{bottom:498.420000px;}
.y9{bottom:507.240000px;}
.y73{bottom:514.620000px;}
.y37{bottom:515.160000px;}
.y8{bottom:524.520000px;}
.yad{bottom:528.660000px;}
.y36{bottom:531.360000px;}
.yac{bottom:544.860000px;}
.y72{bottom:547.560000px;}
.y35{bottom:548.100000px;}
.y7{bottom:552.960000px;}
.yab{bottom:561.060000px;}
.y34{bottom:564.300000px;}
.yaa{bottom:577.800000px;}
.y33{bottom:580.500000px;}
.y6{bottom:588.600000px;}
.ya9{bottom:594.000000px;}
.y32{bottom:597.240000px;}
.y5{bottom:601.920000px;}
.y67{bottom:605.340000px;}
.y4{bottom:607.320000px;}
.ya8{bottom:610.740000px;}
.y31{bottom:613.440000px;}
.y3{bottom:626.760000px;}
.ya7{bottom:627.480000px;}
.y30{bottom:630.180000px;}
.ya6{bottom:643.680000px;}
.y2{bottom:645.480000px;}
.y2f{bottom:646.380000px;}
.y71{bottom:652.320000px;}
.y66{bottom:652.860000px;}
.ya5{bottom:660.420000px;}
.y2e{bottom:663.120000px;}
.y70{bottom:669.060000px;}
.y65{bottom:669.600000px;}
.ya4{bottom:676.620000px;}
.y2d{bottom:679.320000px;}
.y10{bottom:682.920000px;}
.y6f{bottom:685.260000px;}
.y64{bottom:686.340000px;}
.ya3{bottom:693.360000px;}
.y2c{bottom:696.060000px;}
.y6e{bottom:702.000000px;}
.y63{bottom:702.540000px;}
.ya2{bottom:710.100000px;}
.y2b{bottom:712.800000px;}
.yf{bottom:716.040000px;}
.y62{bottom:718.740000px;}
.ya1{bottom:726.300000px;}
.y2a{bottom:730.620000px;}
.y61{bottom:735.480000px;}
.ye{bottom:740.520000px;}
.ya0{bottom:743.040000px;}
.y29{bottom:746.820000px;}
.y60{bottom:752.220000px;}
.y9f{bottom:759.240000px;}
.y28{bottom:763.560000px;}
.y5f{bottom:768.420000px;}
.y6d{bottom:768.960000px;}
.y9e{bottom:775.980000px;}
.y27{bottom:779.760000px;}
.y5e{bottom:785.160000px;}
.y6c{bottom:785.700000px;}
.yd{bottom:788.760000px;}
.y9d{bottom:792.720000px;}
.y26{bottom:795.960000px;}
.y5d{bottom:801.900000px;}
.y6b{bottom:802.440000px;}
.y9c{bottom:808.920000px;}
.y25{bottom:811.620000px;}
.y5c{bottom:818.100000px;}
.yc{bottom:819.000000px;}
.y6a{bottom:819.180000px;}
.y9b{bottom:825.120000px;}
.y24{bottom:828.900000px;}
.y5b{bottom:834.840000px;}
.y69{bottom:835.920000px;}
.y9a{bottom:841.860000px;}
.yb{bottom:844.920000px;}
.y23{bottom:845.100000px;}
.y99{bottom:858.060000px;}
.y22{bottom:861.840000px;}
.y98{bottom:874.260000px;}
.y21{bottom:878.040000px;}
.y5a{bottom:885.600000px;}
.y97{bottom:890.460000px;}
.y20{bottom:894.240000px;}
.y58{bottom:900.720000px;}
.y59{bottom:901.800000px;}
.y68{bottom:902.340000px;}
.y96{bottom:906.660000px;}
.y1{bottom:912.600000px;}
.y95{bottom:922.860000px;}
.y1f{bottom:927.180000px;}
.y94{bottom:939.600000px;}
.y1e{bottom:943.380000px;}
.y57{bottom:950.940000px;}
.y93{bottom:955.800000px;}
.y1d{bottom:959.580000px;}
.y92{bottom:972.000000px;}
.y1c{bottom:977.400000px;}
.y56{bottom:981.180000px;}
.y91{bottom:988.200000px;}
.y1b{bottom:1011.960000px;}
.y54{bottom:1015.740000px;}
.y55{bottom:1016.820000px;}
.y90{bottom:1022.760000px;}
.h4{height:35.332031px;}
.h1b{height:37.546875px;}
.hb{height:43.804688px;}
.h10{height:47.109375px;}
.h15{height:48.375000px;}
.h9{height:50.062500px;}
.hf{height:52.971680px;}
.h1{height:52.998047px;}
.h17{height:54.421875px;}
.h18{height:55.158047px;}
.h5{height:56.320312px;}
.h16{height:57.318047px;}
.h11{height:58.886719px;}
.h1d{height:60.468750px;}
.h1a{height:62.460938px;}
.h2{height:62.578125px;}
.h3{height:64.775391px;}
.h8{height:68.835938px;}
.h14{height:69.095391px;}
.he{height:70.628906px;}
.hd{height:71.255391px;}
.h13{height:74.004654px;}
.h19{height:75.093750px;}
.h1e{height:76.552734px;}
.ha{height:81.351562px;}
.h7{height:82.441406px;}
.h6{height:94.218750px;}
.h0{height:915.000000px;}
.hc{height:1047.000000px;}
.h12{height:1054.500000px;}
.h1c{height:1068.000000px;}
.w0{width:420.000000px;}
.w3{width:742.500000px;}
.w1{width:754.500000px;}
.w2{width:756.000000px;}
.x0{left:0.000000px;}
.x1{left:8.640000px;}
.x5{left:9.720000px;}
.x9{left:10.800000px;}
.x7{left:14.040000px;}
.x45{left:18.360000px;}
.xa{left:24.300000px;}
.x2c{left:27.000000px;}
.x60{left:36.180000px;}
.x5f{left:37.260000px;}
.x5a{left:38.340000px;}
.x54{left:39.420000px;}
.x52{left:40.500000px;}
.x51{left:41.580000px;}
.x4c{left:42.660000px;}
.x46{left:43.740000px;}
.x14{left:50.760000px;}
.x10{left:51.840000px;}
.x30{left:53.460000px;}
.x2f{left:54.540000px;}
.x4f{left:55.620000px;}
.x5e{left:64.260000px;}
.x1c{left:65.880000px;}
.x53{left:66.960000px;}
.x50{left:68.040000px;}
.xb{left:70.740000px;}
.x1b{left:72.900000px;}
.xf{left:77.760000px;}
.x6{left:79.560000px;}
.x2{left:83.160000px;}
.x3d{left:95.040000px;}
.x21{left:109.620000px;}
.x3{left:111.600000px;}
.x35{left:113.400000px;}
.x41{left:116.100000px;}
.x24{left:119.340000px;}
.x5d{left:122.040000px;}
.x42{left:124.740000px;}
.x19{left:127.440000px;}
.x22{left:128.520000px;}
.x28{left:133.920000px;}
.x31{left:135.000000px;}
.x25{left:138.780000px;}
.x1a{left:146.340000px;}
.xd{left:150.120000px;}
.x23{left:151.200000px;}
.x26{left:162.000000px;}
.x4{left:168.480000px;}
.x8{left:182.160000px;}
.x13{left:192.240000px;}
.xe{left:194.940000px;}
.x1e{left:197.100000px;}
.x1f{left:215.460000px;}
.x34{left:216.540000px;}
.x58{left:220.860000px;}
.x2b{left:228.420000px;}
.x3e{left:237.060000px;}
.x15{left:253.260000px;}
.x5c{left:280.260000px;}
.x32{left:302.400000px;}
.x57{left:305.100000px;}
.x2d{left:307.260000px;}
.x16{left:311.580000px;}
.x1d{left:320.220000px;}
.x59{left:325.620000px;}
.x36{left:338.040000px;}
.xc{left:345.600000px;}
.x3f{left:349.380000px;}
.x4d{left:355.860000px;}
.x40{left:357.480000px;}
.x5b{left:366.120000px;}
.x4e{left:367.740000px;}
.x48{left:368.820000px;}
.x61{left:372.060000px;}
.x49{left:386.100000px;}
.x11{left:391.500000px;}
.x37{left:393.120000px;}
.x17{left:399.600000px;}
.x33{left:407.160000px;}
.x38{left:411.480000px;}
.x18{left:417.420000px;}
.x47{left:421.200000px;}
.x62{left:443.340000px;}
.x12{left:464.940000px;}
.x63{left:479.520000px;}
.x29{left:485.460000px;}
.x27{left:500.580000px;}
.x2a{left:509.760000px;}
.x39{left:514.620000px;}
.x64{left:535.680000px;}
.x43{left:568.080000px;}
.x3c{left:570.780000px;}
.x3b{left:571.860000px;}
.x3a{left:572.940000px;}
.x4a{left:578.880000px;}
.x44{left:604.260000px;}
.x4b{left:609.120000px;}
.x55{left:645.300000px;}
.x56{left:662.580000px;}
.x20{left:699.300000px;}
.x2e{left:734.400000px;}
@media print{
.v3{vertical-align:-55.680000pt;}
.v2{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.920000pt;}
.v4{vertical-align:3.840000pt;}
.v1{vertical-align:5.760000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:21.024000pt;}
.ls2{letter-spacing:288.960000pt;}
.ls4{letter-spacing:290.880000pt;}
.ls6{letter-spacing:347.088000pt;}
.ls7{letter-spacing:349.008000pt;}
.ls3{letter-spacing:363.072000pt;}
.ls1{letter-spacing:364.992000pt;}
.ls5{letter-spacing:368.832000pt;}
.wsac{word-spacing:-42.672000pt;}
.ws54{word-spacing:-38.400000pt;}
.ws46{word-spacing:-35.573333pt;}
.ws68{word-spacing:-32.000000pt;}
.ws21{word-spacing:-29.328000pt;}
.ws64{word-spacing:-24.896000pt;}
.ws8{word-spacing:-24.864000pt;}
.ws67{word-spacing:-22.810667pt;}
.ws7e{word-spacing:-21.360000pt;}
.ws71{word-spacing:-20.208000pt;}
.ws79{word-spacing:-19.536000pt;}
.ws7b{word-spacing:-18.864000pt;}
.ws58{word-spacing:-18.576000pt;}
.ws32{word-spacing:-18.240000pt;}
.ws76{word-spacing:-18.000000pt;}
.ws77{word-spacing:-17.520000pt;}
.ws47{word-spacing:-16.560000pt;}
.ws9{word-spacing:-16.325333pt;}
.ws3c{word-spacing:-16.320000pt;}
.ws0{word-spacing:-15.984000pt;}
.ws53{word-spacing:-15.701333pt;}
.ws31{word-spacing:-15.600000pt;}
.ws2c{word-spacing:-15.360000pt;}
.ws2b{word-spacing:-14.928000pt;}
.ws41{word-spacing:-14.832000pt;}
.ws6a{word-spacing:-14.592000pt;}
.ws2f{word-spacing:-14.400000pt;}
.ws93{word-spacing:-14.208000pt;}
.ws2e{word-spacing:-14.112000pt;}
.ws18{word-spacing:-14.064000pt;}
.ws6c{word-spacing:-14.016000pt;}
.ws42{word-spacing:-13.824000pt;}
.ws33{word-spacing:-13.680000pt;}
.ws90{word-spacing:-13.344000pt;}
.ws7a{word-spacing:-13.248000pt;}
.wsb3{word-spacing:-13.152000pt;}
.ws30{word-spacing:-13.056000pt;}
.ws3a{word-spacing:-13.008000pt;}
.ws75{word-spacing:-12.816000pt;}
.ws35{word-spacing:-12.480000pt;}
.ws1d{word-spacing:-12.192000pt;}
.ws4a{word-spacing:-12.048000pt;}
.ws34{word-spacing:-11.952000pt;}
.ws1f{word-spacing:-11.760000pt;}
.wsc2{word-spacing:-11.520000pt;}
.ws48{word-spacing:-11.472000pt;}
.ws80{word-spacing:-11.136000pt;}
.ws38{word-spacing:-11.088000pt;}
.ws70{word-spacing:-10.992000pt;}
.ws73{word-spacing:-10.896000pt;}
.wsbe{word-spacing:-10.704000pt;}
.ws2{word-spacing:-10.656000pt;}
.ws19{word-spacing:-10.560000pt;}
.wsbb{word-spacing:-10.512000pt;}
.ws56{word-spacing:-10.426667pt;}
.ws6b{word-spacing:-10.368000pt;}
.ws4c{word-spacing:-10.128000pt;}
.ws7f{word-spacing:-10.032000pt;}
.wsba{word-spacing:-9.984000pt;}
.ws45{word-spacing:-9.840000pt;}
.wsa{word-spacing:-9.418667pt;}
.wsb1{word-spacing:-9.360000pt;}
.ws1e{word-spacing:-9.216000pt;}
.ws20{word-spacing:-9.168000pt;}
.wsb5{word-spacing:-9.072000pt;}
.ws36{word-spacing:-8.976000pt;}
.ws57{word-spacing:-8.960000pt;}
.ws44{word-spacing:-8.928000pt;}
.ws1{word-spacing:-8.908679pt;}
.ws6d{word-spacing:-8.874667pt;}
.ws4f{word-spacing:-8.832000pt;}
.ws51{word-spacing:-8.640000pt;}
.ws9c{word-spacing:-8.544000pt;}
.wsa5{word-spacing:-8.352000pt;}
.ws4d{word-spacing:-8.208000pt;}
.ws3f{word-spacing:-8.112000pt;}
.ws22{word-spacing:-8.064000pt;}
.ws40{word-spacing:-7.920000pt;}
.wsae{word-spacing:-7.872000pt;}
.ws7c{word-spacing:-7.776000pt;}
.ws5b{word-spacing:-7.392000pt;}
.ws15{word-spacing:-7.360000pt;}
.ws3d{word-spacing:-7.338667pt;}
.ws4{word-spacing:-7.168000pt;}
.ws83{word-spacing:-7.152000pt;}
.ws25{word-spacing:-6.960000pt;}
.wsc3{word-spacing:-6.720000pt;}
.ws8d{word-spacing:-6.624000pt;}
.ws6f{word-spacing:-6.400000pt;}
.ws66{word-spacing:-6.392930pt;}
.ws85{word-spacing:-5.760000pt;}
.wsa9{word-spacing:-5.520000pt;}
.ws2d{word-spacing:-5.376000pt;}
.ws84{word-spacing:-5.232000pt;}
.ws78{word-spacing:-5.184000pt;}
.ws49{word-spacing:-5.136000pt;}
.ws5{word-spacing:-5.024000pt;}
.ws7d{word-spacing:-4.800000pt;}
.ws1b{word-spacing:-4.752000pt;}
.wsc4{word-spacing:-4.704000pt;}
.ws27{word-spacing:-4.080000pt;}
.ws39{word-spacing:-3.456000pt;}
.ws9b{word-spacing:-3.312000pt;}
.ws4b{word-spacing:-3.072000pt;}
.ws98{word-spacing:-2.784000pt;}
.wsb4{word-spacing:-2.640000pt;}
.ws11{word-spacing:-2.442667pt;}
.ws5c{word-spacing:-2.256000pt;}
.ws4e{word-spacing:-2.064000pt;}
.wsaa{word-spacing:-1.920000pt;}
.ws9d{word-spacing:-1.824000pt;}
.ws9a{word-spacing:-0.864000pt;}
.ws1a{word-spacing:-0.144000pt;}
.ws12{word-spacing:0.000000pt;}
.ws55{word-spacing:0.341333pt;}
.ws99{word-spacing:0.938667pt;}
.ws28{word-spacing:0.960000pt;}
.wsc6{word-spacing:1.152000pt;}
.ws65{word-spacing:1.728000pt;}
.wsb2{word-spacing:2.064000pt;}
.ws87{word-spacing:2.090667pt;}
.ws89{word-spacing:2.197565pt;}
.ws14{word-spacing:2.261333pt;}
.ws69{word-spacing:2.448000pt;}
.wsd{word-spacing:2.544000pt;}
.ws7{word-spacing:2.680045pt;}
.ws97{word-spacing:2.858667pt;}
.wsc7{word-spacing:3.370667pt;}
.ws86{word-spacing:3.413333pt;}
.ws59{word-spacing:3.456000pt;}
.ws8c{word-spacing:3.541333pt;}
.wsc{word-spacing:3.978667pt;}
.wsc1{word-spacing:4.010667pt;}
.wsa8{word-spacing:4.176000pt;}
.ws26{word-spacing:4.224000pt;}
.ws63{word-spacing:4.800000pt;}
.ws50{word-spacing:4.848000pt;}
.ws82{word-spacing:4.933333pt;}
.wsf{word-spacing:4.997333pt;}
.wsa6{word-spacing:5.034667pt;}
.wsaf{word-spacing:5.248000pt;}
.ws37{word-spacing:5.520000pt;}
.ws96{word-spacing:5.717333pt;}
.wse{word-spacing:5.722667pt;}
.ws74{word-spacing:6.768000pt;}
.ws23{word-spacing:6.816000pt;}
.ws17{word-spacing:7.386667pt;}
.ws95{word-spacing:7.637333pt;}
.wsa0{word-spacing:7.850667pt;}
.ws8f{word-spacing:8.106667pt;}
.ws6e{word-spacing:8.448000pt;}
.ws1c{word-spacing:9.024000pt;}
.ws3b{word-spacing:9.168000pt;}
.wsa1{word-spacing:9.216000pt;}
.ws3e{word-spacing:9.408000pt;}
.ws88{word-spacing:9.557333pt;}
.wsa2{word-spacing:9.642667pt;}
.ws8e{word-spacing:10.112000pt;}
.ws9e{word-spacing:10.880000pt;}
.ws94{word-spacing:11.136000pt;}
.ws91{word-spacing:11.477333pt;}
.ws8b{word-spacing:11.690667pt;}
.wsb{word-spacing:11.866667pt;}
.wsbf{word-spacing:12.245333pt;}
.ws81{word-spacing:12.400000pt;}
.wsa4{word-spacing:13.013333pt;}
.wsb8{word-spacing:14.688000pt;}
.ws9f{word-spacing:16.176000pt;}
.ws13{word-spacing:18.293333pt;}
.ws2a{word-spacing:18.336000pt;}
.wsab{word-spacing:18.688000pt;}
.ws8a{word-spacing:19.556870pt;}
.wsc5{word-spacing:20.053333pt;}
.wsc0{word-spacing:20.394667pt;}
.wsb0{word-spacing:20.437333pt;}
.ws92{word-spacing:20.650667pt;}
.ws72{word-spacing:20.784000pt;}
.ws6{word-spacing:23.136000pt;}
.wsad{word-spacing:23.466667pt;}
.ws3{word-spacing:26.444277pt;}
.ws16{word-spacing:27.008000pt;}
.wsb9{word-spacing:31.353143pt;}
.ws24{word-spacing:35.808000pt;}
.ws10{word-spacing:37.280000pt;}
.wsbd{word-spacing:38.400000pt;}
.wsa3{word-spacing:39.296000pt;}
.wsb6{word-spacing:40.010667pt;}
.ws29{word-spacing:51.168000pt;}
.wsb7{word-spacing:53.941333pt;}
.wsbc{word-spacing:54.768000pt;}
.ws43{word-spacing:62.880000pt;}
.wsa7{word-spacing:68.208000pt;}
.ws5a{word-spacing:91.824000pt;}
.ws5e{word-spacing:227.184000pt;}
.ws60{word-spacing:254.064000pt;}
.ws5d{word-spacing:255.984000pt;}
.ws61{word-spacing:256.944000pt;}
.ws5f{word-spacing:257.904000pt;}
.ws62{word-spacing:259.824000pt;}
.ws52{word-spacing:1612.416000pt;}
._c{width:1.610667pt;}
._2d{width:7.136000pt;}
._b{width:9.000000pt;}
._3c{width:11.845937pt;}
._3a{width:13.584000pt;}
._2a{width:14.991799pt;}
._27{width:15.948478pt;}
._3b{width:17.429535pt;}
._23{width:18.473157pt;}
._25{width:19.674465pt;}
._1b{width:21.197585pt;}
._7{width:22.144000pt;}
._2{width:23.174843pt;}
._24{width:24.640101pt;}
._1d{width:25.801057pt;}
._6{width:26.944000pt;}
._e{width:28.272000pt;}
._28{width:29.230088pt;}
._8{width:30.240000pt;}
._10{width:32.021937pt;}
._17{width:33.616000pt;}
._1{width:35.370063pt;}
._18{width:36.912000pt;}
._9{width:38.288000pt;}
._14{width:39.568000pt;}
._0{width:41.270943pt;}
._1e{width:42.395874pt;}
._20{width:43.584000pt;}
._1f{width:44.640000pt;}
._26{width:45.531472pt;}
._4{width:47.136000pt;}
._1c{width:48.576000pt;}
._12{width:49.946667pt;}
._2f{width:50.975899pt;}
._29{width:51.956730pt;}
._21{width:52.944000pt;}
._f{width:53.845333pt;}
._2b{width:54.882415pt;}
._5{width:55.984000pt;}
._30{width:57.151698pt;}
._a{width:58.256000pt;}
._3{width:60.257610pt;}
._22{width:62.064000pt;}
._2c{width:63.513057pt;}
._31{width:64.512000pt;}
._d{width:66.085333pt;}
._19{width:67.104000pt;}
._2e{width:69.405384pt;}
._15{width:70.592604pt;}
._40{width:72.533333pt;}
._44{width:73.684428pt;}
._41{width:78.907270pt;}
._42{width:82.400000pt;}
._3f{width:83.722264pt;}
._39{width:88.165635pt;}
._43{width:92.858969pt;}
._1a{width:94.373937pt;}
._45{width:95.856000pt;}
._16{width:139.125333pt;}
._33{width:203.232000pt;}
._38{width:288.960000pt;}
._35{width:289.920000pt;}
._36{width:290.880000pt;}
._34{width:292.800000pt;}
._37{width:349.008000pt;}
._32{width:540.336000pt;}
._3d{width:602.666667pt;}
._11{width:622.506667pt;}
._13{width:910.896000pt;}
._3e{width:928.176000pt;}
.fs3{font-size:32.000000pt;}
.fs8{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc7{bottom:20.640000pt;}
.y8f{bottom:29.280000pt;}
.y53{bottom:32.640000pt;}
.yc6{bottom:34.080000pt;}
.y8e{bottom:43.680000pt;}
.y52{bottom:47.520000pt;}
.yc5{bottom:48.960000pt;}
.y8d{bottom:58.560000pt;}
.y51{bottom:62.400000pt;}
.yc4{bottom:63.360000pt;}
.y8c{bottom:73.440000pt;}
.y50{bottom:76.800000pt;}
.yc3{bottom:78.240000pt;}
.y8b{bottom:87.840000pt;}
.y4f{bottom:91.680000pt;}
.yc2{bottom:93.120000pt;}
.y8a{bottom:102.720000pt;}
.y4e{bottom:106.080000pt;}
.yc1{bottom:107.520000pt;}
.y89{bottom:117.600000pt;}
.y4d{bottom:120.960000pt;}
.yc0{bottom:121.920000pt;}
.y88{bottom:132.000000pt;}
.y4c{bottom:135.360000pt;}
.y87{bottom:146.880000pt;}
.y4b{bottom:149.760000pt;}
.ybf{bottom:151.680000pt;}
.y86{bottom:161.280000pt;}
.y4a{bottom:164.640000pt;}
.ybe{bottom:166.080000pt;}
.y85{bottom:176.160000pt;}
.y49{bottom:179.520000pt;}
.ybd{bottom:180.960000pt;}
.y1a{bottom:189.120000pt;}
.y84{bottom:190.560000pt;}
.y48{bottom:194.400000pt;}
.ybc{bottom:195.360000pt;}
.y19{bottom:201.600000pt;}
.y83{bottom:206.400000pt;}
.y47{bottom:208.800000pt;}
.ybb{bottom:210.240000pt;}
.y82{bottom:220.320000pt;}
.y46{bottom:223.680000pt;}
.yba{bottom:224.640000pt;}
.y18{bottom:230.400000pt;}
.y81{bottom:235.200000pt;}
.y45{bottom:238.080000pt;}
.y17{bottom:248.960000pt;}
.y80{bottom:249.600000pt;}
.y44{bottom:252.960000pt;}
.y7f{bottom:264.480000pt;}
.yb9{bottom:266.400000pt;}
.y43{bottom:267.360000pt;}
.y7e{bottom:278.880000pt;}
.y16{bottom:282.240000pt;}
.yb8{bottom:292.800000pt;}
.y7d{bottom:293.760000pt;}
.y42{bottom:296.640000pt;}
.y15{bottom:297.600000pt;}
.yb7{bottom:307.200000pt;}
.y7c{bottom:308.160000pt;}
.y41{bottom:311.520000pt;}
.y14{bottom:312.960000pt;}
.yb6{bottom:322.080000pt;}
.y7b{bottom:324.480000pt;}
.y40{bottom:325.920000pt;}
.y13{bottom:328.320000pt;}
.yb5{bottom:336.480000pt;}
.y7a{bottom:337.920000pt;}
.y3f{bottom:340.800000pt;}
.yb4{bottom:351.840000pt;}
.y79{bottom:352.800000pt;}
.y3e{bottom:354.720000pt;}
.y12{bottom:360.000000pt;}
.yb3{bottom:365.760000pt;}
.y78{bottom:367.680000pt;}
.y3d{bottom:370.080000pt;}
.y11{bottom:377.920000pt;}
.yb2{bottom:380.640000pt;}
.y77{bottom:382.560000pt;}
.y3c{bottom:384.480000pt;}
.yb1{bottom:395.520000pt;}
.y76{bottom:397.440000pt;}
.y3b{bottom:399.360000pt;}
.yb0{bottom:409.920000pt;}
.y75{bottom:412.320000pt;}
.y3a{bottom:414.240000pt;}
.yaf{bottom:424.800000pt;}
.y74{bottom:426.720000pt;}
.y39{bottom:428.160000pt;}
.ya{bottom:435.200000pt;}
.yae{bottom:439.200000pt;}
.y38{bottom:443.040000pt;}
.y9{bottom:450.880000pt;}
.y73{bottom:457.440000pt;}
.y37{bottom:457.920000pt;}
.y8{bottom:466.240000pt;}
.yad{bottom:469.920000pt;}
.y36{bottom:472.320000pt;}
.yac{bottom:484.320000pt;}
.y72{bottom:486.720000pt;}
.y35{bottom:487.200000pt;}
.y7{bottom:491.520000pt;}
.yab{bottom:498.720000pt;}
.y34{bottom:501.600000pt;}
.yaa{bottom:513.600000pt;}
.y33{bottom:516.000000pt;}
.y6{bottom:523.200000pt;}
.ya9{bottom:528.000000pt;}
.y32{bottom:530.880000pt;}
.y5{bottom:535.040000pt;}
.y67{bottom:538.080000pt;}
.y4{bottom:539.840000pt;}
.ya8{bottom:542.880000pt;}
.y31{bottom:545.280000pt;}
.y3{bottom:557.120000pt;}
.ya7{bottom:557.760000pt;}
.y30{bottom:560.160000pt;}
.ya6{bottom:572.160000pt;}
.y2{bottom:573.760000pt;}
.y2f{bottom:574.560000pt;}
.y71{bottom:579.840000pt;}
.y66{bottom:580.320000pt;}
.ya5{bottom:587.040000pt;}
.y2e{bottom:589.440000pt;}
.y70{bottom:594.720000pt;}
.y65{bottom:595.200000pt;}
.ya4{bottom:601.440000pt;}
.y2d{bottom:603.840000pt;}
.y10{bottom:607.040000pt;}
.y6f{bottom:609.120000pt;}
.y64{bottom:610.080000pt;}
.ya3{bottom:616.320000pt;}
.y2c{bottom:618.720000pt;}
.y6e{bottom:624.000000pt;}
.y63{bottom:624.480000pt;}
.ya2{bottom:631.200000pt;}
.y2b{bottom:633.600000pt;}
.yf{bottom:636.480000pt;}
.y62{bottom:638.880000pt;}
.ya1{bottom:645.600000pt;}
.y2a{bottom:649.440000pt;}
.y61{bottom:653.760000pt;}
.ye{bottom:658.240000pt;}
.ya0{bottom:660.480000pt;}
.y29{bottom:663.840000pt;}
.y60{bottom:668.640000pt;}
.y9f{bottom:674.880000pt;}
.y28{bottom:678.720000pt;}
.y5f{bottom:683.040000pt;}
.y6d{bottom:683.520000pt;}
.y9e{bottom:689.760000pt;}
.y27{bottom:693.120000pt;}
.y5e{bottom:697.920000pt;}
.y6c{bottom:698.400000pt;}
.yd{bottom:701.120000pt;}
.y9d{bottom:704.640000pt;}
.y26{bottom:707.520000pt;}
.y5d{bottom:712.800000pt;}
.y6b{bottom:713.280000pt;}
.y9c{bottom:719.040000pt;}
.y25{bottom:721.440000pt;}
.y5c{bottom:727.200000pt;}
.yc{bottom:728.000000pt;}
.y6a{bottom:728.160000pt;}
.y9b{bottom:733.440000pt;}
.y24{bottom:736.800000pt;}
.y5b{bottom:742.080000pt;}
.y69{bottom:743.040000pt;}
.y9a{bottom:748.320000pt;}
.yb{bottom:751.040000pt;}
.y23{bottom:751.200000pt;}
.y99{bottom:762.720000pt;}
.y22{bottom:766.080000pt;}
.y98{bottom:777.120000pt;}
.y21{bottom:780.480000pt;}
.y5a{bottom:787.200000pt;}
.y97{bottom:791.520000pt;}
.y20{bottom:794.880000pt;}
.y58{bottom:800.640000pt;}
.y59{bottom:801.600000pt;}
.y68{bottom:802.080000pt;}
.y96{bottom:805.920000pt;}
.y1{bottom:811.200000pt;}
.y95{bottom:820.320000pt;}
.y1f{bottom:824.160000pt;}
.y94{bottom:835.200000pt;}
.y1e{bottom:838.560000pt;}
.y57{bottom:845.280000pt;}
.y93{bottom:849.600000pt;}
.y1d{bottom:852.960000pt;}
.y92{bottom:864.000000pt;}
.y1c{bottom:868.800000pt;}
.y56{bottom:872.160000pt;}
.y91{bottom:878.400000pt;}
.y1b{bottom:899.520000pt;}
.y54{bottom:902.880000pt;}
.y55{bottom:903.840000pt;}
.y90{bottom:909.120000pt;}
.h4{height:31.406250pt;}
.h1b{height:33.375000pt;}
.hb{height:38.937500pt;}
.h10{height:41.875000pt;}
.h15{height:43.000000pt;}
.h9{height:44.500000pt;}
.hf{height:47.085938pt;}
.h1{height:47.109375pt;}
.h17{height:48.375000pt;}
.h18{height:49.029375pt;}
.h5{height:50.062500pt;}
.h16{height:50.949375pt;}
.h11{height:52.343750pt;}
.h1d{height:53.750000pt;}
.h1a{height:55.520833pt;}
.h2{height:55.625000pt;}
.h3{height:57.578125pt;}
.h8{height:61.187500pt;}
.h14{height:61.418125pt;}
.he{height:62.781250pt;}
.hd{height:63.338125pt;}
.h13{height:65.781915pt;}
.h19{height:66.750000pt;}
.h1e{height:68.046875pt;}
.ha{height:72.312500pt;}
.h7{height:73.281250pt;}
.h6{height:83.750000pt;}
.h0{height:813.333333pt;}
.hc{height:930.666667pt;}
.h12{height:937.333333pt;}
.h1c{height:949.333333pt;}
.w0{width:373.333333pt;}
.w3{width:660.000000pt;}
.w1{width:670.666667pt;}
.w2{width:672.000000pt;}
.x0{left:0.000000pt;}
.x1{left:7.680000pt;}
.x5{left:8.640000pt;}
.x9{left:9.600000pt;}
.x7{left:12.480000pt;}
.x45{left:16.320000pt;}
.xa{left:21.600000pt;}
.x2c{left:24.000000pt;}
.x60{left:32.160000pt;}
.x5f{left:33.120000pt;}
.x5a{left:34.080000pt;}
.x54{left:35.040000pt;}
.x52{left:36.000000pt;}
.x51{left:36.960000pt;}
.x4c{left:37.920000pt;}
.x46{left:38.880000pt;}
.x14{left:45.120000pt;}
.x10{left:46.080000pt;}
.x30{left:47.520000pt;}
.x2f{left:48.480000pt;}
.x4f{left:49.440000pt;}
.x5e{left:57.120000pt;}
.x1c{left:58.560000pt;}
.x53{left:59.520000pt;}
.x50{left:60.480000pt;}
.xb{left:62.880000pt;}
.x1b{left:64.800000pt;}
.xf{left:69.120000pt;}
.x6{left:70.720000pt;}
.x2{left:73.920000pt;}
.x3d{left:84.480000pt;}
.x21{left:97.440000pt;}
.x3{left:99.200000pt;}
.x35{left:100.800000pt;}
.x41{left:103.200000pt;}
.x24{left:106.080000pt;}
.x5d{left:108.480000pt;}
.x42{left:110.880000pt;}
.x19{left:113.280000pt;}
.x22{left:114.240000pt;}
.x28{left:119.040000pt;}
.x31{left:120.000000pt;}
.x25{left:123.360000pt;}
.x1a{left:130.080000pt;}
.xd{left:133.440000pt;}
.x23{left:134.400000pt;}
.x26{left:144.000000pt;}
.x4{left:149.760000pt;}
.x8{left:161.920000pt;}
.x13{left:170.880000pt;}
.xe{left:173.280000pt;}
.x1e{left:175.200000pt;}
.x1f{left:191.520000pt;}
.x34{left:192.480000pt;}
.x58{left:196.320000pt;}
.x2b{left:203.040000pt;}
.x3e{left:210.720000pt;}
.x15{left:225.120000pt;}
.x5c{left:249.120000pt;}
.x32{left:268.800000pt;}
.x57{left:271.200000pt;}
.x2d{left:273.120000pt;}
.x16{left:276.960000pt;}
.x1d{left:284.640000pt;}
.x59{left:289.440000pt;}
.x36{left:300.480000pt;}
.xc{left:307.200000pt;}
.x3f{left:310.560000pt;}
.x4d{left:316.320000pt;}
.x40{left:317.760000pt;}
.x5b{left:325.440000pt;}
.x4e{left:326.880000pt;}
.x48{left:327.840000pt;}
.x61{left:330.720000pt;}
.x49{left:343.200000pt;}
.x11{left:348.000000pt;}
.x37{left:349.440000pt;}
.x17{left:355.200000pt;}
.x33{left:361.920000pt;}
.x38{left:365.760000pt;}
.x18{left:371.040000pt;}
.x47{left:374.400000pt;}
.x62{left:394.080000pt;}
.x12{left:413.280000pt;}
.x63{left:426.240000pt;}
.x29{left:431.520000pt;}
.x27{left:444.960000pt;}
.x2a{left:453.120000pt;}
.x39{left:457.440000pt;}
.x64{left:476.160000pt;}
.x43{left:504.960000pt;}
.x3c{left:507.360000pt;}
.x3b{left:508.320000pt;}
.x3a{left:509.280000pt;}
.x4a{left:514.560000pt;}
.x44{left:537.120000pt;}
.x4b{left:541.440000pt;}
.x55{left:573.600000pt;}
.x56{left:588.960000pt;}
.x20{left:621.600000pt;}
.x2e{left:652.800000pt;}
}




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