
    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_5d9313b1796ab2eaea701c38.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a83d875a653d0e6d4d46d4ef.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_626b19b37e37a16766e3aa72.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b0b5859c8469ea406c4257e9.woff')format("woff");}.ff5{font-family:ff5;line-height:1.331331;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_a09ed6ec37b7b253cae5f007.woff')format("woff");}.ff6{font-family:ff6;line-height:1.331331;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_f6fc656afe75f7ab438ae9c1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.331331;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.736816;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_1ea400bb0d613bfa8d093d35.woff')format("woff");}.ff9{font-family:ff9;line-height:1.331331;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_63a2584ddd0a303b163e39aa.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;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_7ffd22f7a899e62f7a1b0bca.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_bc028c4ce419803ec287b299.woff')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_23f4e57b2d9f5ade4a31d453.woff')format("woff");}.ffd{font-family:ffd;line-height:0.869141;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_a8c6ca8008cb45461e486366.woff')format("woff");}.ffe{font-family:ffe;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_469418ccb5b9487eda1867f9.woff')format("woff");}.fff{font-family:fff;line-height:2.230469;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_6ee90ee5a6d12daf5120a394.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_d09d06a2ceb68141a407dd63.woff')format("woff");}.ff11{font-family:ff11;line-height:1.003906;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_ace309ae1704aa9de26af86e.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_ce477046666267d378842540.woff')format("woff");}.ff13{font-family:ff13;line-height:0.766602;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:ff14;src:url('chunks/assets/font_b72b61a27401c03631ee22f5.woff')format("woff");}.ff14{font-family:ff14;line-height:2.230469;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:ff15;src:url('chunks/assets/font_fbb3e5aba7bcaac9a62790e9.woff')format("woff");}.ff15{font-family:ff15;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;}
.m1{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);}
.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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-32.400000px;}
.v6{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.600000px;}
.v4{vertical-align:30.240000px;}
.v3{vertical-align:33.120000px;}
.v2{vertical-align:35.280000px;}
.v5{vertical-align:65.520000px;}
.ls1e{letter-spacing:-0.810000px;}
.ls24{letter-spacing:-0.774000px;}
.ls21{letter-spacing:-0.645098px;}
.ls78{letter-spacing:-0.357000px;}
.ls7a{letter-spacing:-0.341400px;}
.ls40{letter-spacing:-0.339600px;}
.ls77{letter-spacing:-0.331200px;}
.ls1b{letter-spacing:-0.280200px;}
.ls1d{letter-spacing:-0.259800px;}
.ls1f{letter-spacing:-0.226200px;}
.ls26{letter-spacing:-0.108000px;}
.ls23{letter-spacing:-0.106800px;}
.ls25{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.018973px;}
.ls1a{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.012960px;}
.ls50{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.018973px;}
.ls39{letter-spacing:0.021600px;}
.ls31{letter-spacing:0.037440px;}
.ls20{letter-spacing:0.037947px;}
.ls48{letter-spacing:0.046080px;}
.ls80{letter-spacing:0.053280px;}
.ls3d{letter-spacing:0.075600px;}
.ls66{letter-spacing:0.079200px;}
.ls37{letter-spacing:0.090720px;}
.ls79{letter-spacing:0.092400px;}
.ls22{letter-spacing:0.094867px;}
.ls3e{letter-spacing:0.105600px;}
.ls30{letter-spacing:0.105840px;}
.ls47{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.113841px;}
.ls3a{letter-spacing:0.144000px;}
.ls53{letter-spacing:0.162000px;}
.lsa{letter-spacing:0.170761px;}
.ls65{letter-spacing:0.172800px;}
.ls6a{letter-spacing:0.200400px;}
.ls3c{letter-spacing:0.206400px;}
.ls27{letter-spacing:0.208708px;}
.ls4d{letter-spacing:0.216000px;}
.ls6d{letter-spacing:0.227400px;}
.ls5{letter-spacing:0.227682px;}
.ls3f{letter-spacing:0.259800px;}
.ls33{letter-spacing:0.259920px;}
.ls7d{letter-spacing:0.274800px;}
.ls6c{letter-spacing:0.301200px;}
.ls16{letter-spacing:0.303576px;}
.ls7b{letter-spacing:0.320400px;}
.ls72{letter-spacing:0.337680px;}
.ls54{letter-spacing:0.338400px;}
.ls1{letter-spacing:0.341280px;}
.ls64{letter-spacing:0.352800px;}
.ls0{letter-spacing:0.360000px;}
.ls6b{letter-spacing:0.380400px;}
.ls32{letter-spacing:0.403920px;}
.ls43{letter-spacing:0.490320px;}
.ls38{letter-spacing:0.532800px;}
.ls60{letter-spacing:0.604080px;}
.ls68{letter-spacing:0.612000px;}
.ls59{letter-spacing:0.666000px;}
.ls35{letter-spacing:0.666720px;}
.ls45{letter-spacing:0.738000px;}
.ls82{letter-spacing:0.924000px;}
.ls34{letter-spacing:0.979920px;}
.ls2c{letter-spacing:2.106720px;}
.ls4a{letter-spacing:2.286720px;}
.lsd{letter-spacing:2.390658px;}
.ls5a{letter-spacing:2.826000px;}
.ls49{letter-spacing:2.826720px;}
.ls3{letter-spacing:3.149597px;}
.ls7c{letter-spacing:3.546000px;}
.ls42{letter-spacing:3.546720px;}
.ls4{letter-spacing:3.908536px;}
.ls41{letter-spacing:4.266720px;}
.ls55{letter-spacing:4.446720px;}
.ls7{letter-spacing:4.667475px;}
.ls58{letter-spacing:4.986000px;}
.ls4b{letter-spacing:4.986720px;}
.ls6{letter-spacing:5.426414px;}
.ls3b{letter-spacing:5.706000px;}
.ls2e{letter-spacing:5.706720px;}
.ls2{letter-spacing:6.185353px;}
.ls4e{letter-spacing:6.426720px;}
.ls10{letter-spacing:6.944292px;}
.ls17{letter-spacing:7.146720px;}
.lsf{letter-spacing:7.703231px;}
.ls11{letter-spacing:7.829721px;}
.ls5e{letter-spacing:7.866720px;}
.lse{letter-spacing:8.462170px;}
.ls2a{letter-spacing:8.586720px;}
.ls2d{letter-spacing:9.306720px;}
.ls9{letter-spacing:9.980048px;}
.ls18{letter-spacing:10.026720px;}
.ls8{letter-spacing:10.169783px;}
.lsc{letter-spacing:10.738988px;}
.ls76{letter-spacing:10.746720px;}
.ls81{letter-spacing:11.460000px;}
.ls2b{letter-spacing:11.466720px;}
.lsb{letter-spacing:11.497927px;}
.ls19{letter-spacing:14.346720px;}
.ls5b{letter-spacing:15.066720px;}
.ls57{letter-spacing:15.780000px;}
.ls2f{letter-spacing:15.786720px;}
.ls56{letter-spacing:17.226720px;}
.ls15{letter-spacing:23.640951px;}
.ls14{letter-spacing:24.399890px;}
.ls44{letter-spacing:29.466720px;}
.ls70{letter-spacing:31.626720px;}
.ls6f{letter-spacing:32.572800px;}
.ls4f{letter-spacing:37.548000px;}
.ls46{letter-spacing:38.988000px;}
.ls62{letter-spacing:41.148000px;}
.ls63{letter-spacing:41.706720px;}
.ls4c{letter-spacing:41.868000px;}
.ls5f{letter-spacing:52.506720px;}
.ls69{letter-spacing:66.180000px;}
.ls71{letter-spacing:68.346720px;}
.ls7f{letter-spacing:82.740000px;}
.ls67{letter-spacing:88.506720px;}
.ls7e{letter-spacing:103.626720px;}
.ls75{letter-spacing:165.780000px;}
.ls29{letter-spacing:199.530720px;}
.ls36{letter-spacing:254.946720px;}
.ls74{letter-spacing:648.912000px;}
.ls52{letter-spacing:775.686720px;}
.ls6e{letter-spacing:785.046720px;}
.ls5c{letter-spacing:914.602080px;}
.ls5d{letter-spacing:934.662720px;}
.ls61{letter-spacing:1017.462720px;}
.ls51{letter-spacing:1024.042080px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws20{word-spacing:-72.000000px;}
.ws1b{word-spacing:-66.240000px;}
.ws1e{word-spacing:-54.000000px;}
.ws22{word-spacing:-17.225280px;}
.ws23{word-spacing:-16.813680px;}
.ws36{word-spacing:-16.666560px;}
.ws5{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.ws1d{word-spacing:-16.506480px;}
.ws37{word-spacing:-16.353480px;}
.wsa{word-spacing:-16.127455px;}
.wsf{word-spacing:-16.032587px;}
.wsb{word-spacing:-15.918747px;}
.ws9{word-spacing:-15.861826px;}
.wsc{word-spacing:-15.842853px;}
.ws8{word-spacing:-15.823879px;}
.ws10{word-spacing:-15.804906px;}
.ws1{word-spacing:-15.300000px;}
.ws1f{word-spacing:-15.228000px;}
.wse{word-spacing:-13.392000px;}
.ws32{word-spacing:-13.160160px;}
.ws1a{word-spacing:-13.147200px;}
.ws7{word-spacing:-10.440000px;}
.ws6{word-spacing:-10.213800px;}
.ws28{word-spacing:-9.488400px;}
.ws2d{word-spacing:-9.414600px;}
.ws30{word-spacing:-9.279600px;}
.ws26{word-spacing:-9.187200px;}
.wsd{word-spacing:-8.928000px;}
.ws2e{word-spacing:-8.856000px;}
.ws31{word-spacing:-8.845800px;}
.ws2f{word-spacing:-8.830200px;}
.ws39{word-spacing:-0.983760px;}
.ws33{word-spacing:-0.380160px;}
.ws35{word-spacing:-0.334560px;}
.ws15{word-spacing:-0.266160px;}
.ws19{word-spacing:-0.203760px;}
.ws17{word-spacing:-0.135360px;}
.ws13{word-spacing:-0.081360px;}
.ws4{word-spacing:-0.059760px;}
.ws1c{word-spacing:-0.054000px;}
.ws25{word-spacing:-0.041760px;}
.ws18{word-spacing:-0.006480px;}
.ws11{word-spacing:0.000000px;}
.ws3{word-spacing:0.200040px;}
.ws16{word-spacing:0.220440px;}
.ws2b{word-spacing:13.625640px;}
.ws2a{word-spacing:18.591120px;}
.ws29{word-spacing:19.385640px;}
.ws2c{word-spacing:20.105640px;}
.ws27{word-spacing:26.114400px;}
.ws24{word-spacing:159.464160px;}
.ws38{word-spacing:220.780080px;}
.ws2{word-spacing:263.677320px;}
.ws21{word-spacing:287.085360px;}
.ws12{word-spacing:346.803600px;}
.ws34{word-spacing:1379.347440px;}
.ws14{word-spacing:1774.212240px;}
._3d{margin-left:-2493.556080px;}
._3e{margin-left:-2487.427432px;}
._31{margin-left:-1869.730800px;}
._32{margin-left:-1861.674240px;}
._21{margin-left:-1522.378560px;}
._5c{margin-left:-1120.149360px;}
._7c{margin-left:-1101.754560px;}
._7d{margin-left:-1079.730088px;}
._4f{margin-left:-1043.842800px;}
._50{margin-left:-1022.673824px;}
._19{margin-left:-986.440080px;}
._1a{margin-left:-982.201200px;}
._53{margin-left:-935.122800px;}
._54{margin-left:-912.745200px;}
._3b{margin-left:-818.560080px;}
._4a{margin-left:-798.563040px;}
._61{margin-left:-769.600080px;}
._56{margin-left:-677.440080px;}
._57{margin-left:-673.895520px;}
._2f{margin-left:-616.485166px;}
._2e{margin-left:-614.776080px;}
._41{margin-left:-606.252000px;}
._42{margin-left:-605.218320px;}
._83{margin-left:-524.146560px;}
._64{margin-left:-484.420080px;}
._46{margin-left:-466.236000px;}
._49{margin-left:-349.891337px;}
._84{margin-left:-341.395696px;}
._2c{margin-left:-332.022000px;}
._24{margin-left:-325.306800px;}
._25{margin-left:-305.595840px;}
._29{margin-left:-275.133360px;}
._16{margin-left:-270.460080px;}
._2{margin-left:-262.800000px;}
._4d{margin-left:-234.191520px;}
._37{margin-left:-223.593360px;}
._4c{margin-left:-218.620080px;}
._36{margin-left:-215.884080px;}
._76{margin-left:-202.133280px;}
._38{margin-left:-188.492160px;}
._77{margin-left:-186.460560px;}
._35{margin-left:-184.060080px;}
._65{margin-left:-178.067520px;}
._67{margin-left:-161.262000px;}
._68{margin-left:-158.328000px;}
._45{margin-left:-153.252000px;}
._89{margin-left:-141.077381px;}
._8d{margin-left:-133.112400px;}
._88{margin-left:-117.779040px;}
._1c{margin-left:-115.803406px;}
._7b{margin-left:-112.366274px;}
._1d{margin-left:-110.765760px;}
._87{margin-left:-108.751541px;}
._73{margin-left:-105.120000px;}
._8a{margin-left:-103.434480px;}
._1e{margin-left:-98.818560px;}
._15{margin-left:-96.818400px;}
._14{margin-left:-94.720320px;}
._1f{margin-left:-92.943120px;}
._20{margin-left:-90.959040px;}
._7a{margin-left:-89.819040px;}
._74{margin-left:-87.005760px;}
._75{margin-left:-85.857360px;}
._6f{margin-left:-67.644720px;}
._4b{margin-left:-36.749280px;}
._52{margin-left:-33.732673px;}
._47{margin-left:-32.292000px;}
._10{margin-left:-9.707520px;}
._4{margin-left:-8.665200px;}
._43{margin-left:-7.560000px;}
._d{margin-left:-3.946483px;}
._8{margin-left:-2.376256px;}
._0{margin-left:-1.093680px;}
._1{width:1.007760px;}
._6{width:2.343600px;}
._c{width:3.874050px;}
._9{width:5.065918px;}
._7{width:6.621743px;}
._5{width:8.605440px;}
._a{width:10.020189px;}
._b{width:11.630741px;}
._11{width:13.798320px;}
._f{width:15.354480px;}
._12{width:17.278800px;}
._13{width:18.406320px;}
._6a{width:19.808497px;}
._2a{width:21.180000px;}
._e{width:24.627572px;}
._28{width:34.899840px;}
._27{width:36.080640px;}
._86{width:41.757120px;}
._79{width:43.536720px;}
._5b{width:51.832320px;}
._59{width:53.007120px;}
._5a{width:55.257600px;}
._5d{width:65.624640px;}
._5e{width:66.819840px;}
._7f{width:79.421040px;}
._80{width:80.743920px;}
._81{width:83.192656px;}
._5f{width:105.179280px;}
._71{width:107.226720px;}
._8e{width:111.753360px;}
._17{width:117.059042px;}
._6e{width:120.926040px;}
._8c{width:132.644400px;}
._44{width:137.710560px;}
._70{width:146.646000px;}
._66{width:158.148000px;}
._69{width:161.388000px;}
._6c{width:185.549520px;}
._6d{width:199.506720px;}
._6b{width:233.860560px;}
._8b{width:249.966720px;}
._3{width:264.148080px;}
._23{width:307.206960px;}
._2b{width:314.076000px;}
._26{width:326.286720px;}
._22{width:338.160586px;}
._82{width:344.005325px;}
._39{width:408.906720px;}
._34{width:422.188320px;}
._85{width:441.426720px;}
._48{width:465.858000px;}
._72{width:468.531840px;}
._63{width:477.728692px;}
._78{width:482.346720px;}
._40{width:605.604000px;}
._2d{width:618.713760px;}
._30{width:621.462720px;}
._55{width:675.358560px;}
._58{width:677.646720px;}
._62{width:770.229840px;}
._3a{width:799.471088px;}
._60{width:836.952960px;}
._18{width:983.883120px;}
._1b{width:988.086720px;}
._4e{width:1018.693200px;}
._51{width:1044.102720px;}
._7e{width:1399.902720px;}
._33{width:1869.342720px;}
._3c{width:2489.288640px;}
._3f{width:2494.482720px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs7{font-size:56.920429px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.yc4{bottom:-5.400000px;}
.yae{bottom:-5.220000px;}
.y0{bottom:0.000000px;}
.y37{bottom:0.345000px;}
.y43{bottom:2.700000px;}
.ycf{bottom:3.585000px;}
.y90{bottom:3.780000px;}
.y5{bottom:4.140000px;}
.y91{bottom:4.320000px;}
.y50{bottom:5.010000px;}
.ybd{bottom:5.040000px;}
.y36{bottom:5.745000px;}
.y93{bottom:6.300000px;}
.yce{bottom:6.465000px;}
.y96{bottom:6.480000px;}
.y2{bottom:9.900000px;}
.y42{bottom:10.260000px;}
.yeb{bottom:10.470000px;}
.yc2{bottom:15.300000px;}
.ybf{bottom:15.480000px;}
.yec{bottom:17.130000px;}
.yf1{bottom:19.980000px;}
.yef{bottom:20.160000px;}
.yee{bottom:20.340000px;}
.y4{bottom:23.070000px;}
.y4e{bottom:25.380000px;}
.yc0{bottom:27.180000px;}
.y35{bottom:28.785000px;}
.y41{bottom:40.320000px;}
.y4d{bottom:45.180000px;}
.y3{bottom:48.090000px;}
.y40{bottom:51.480000px;}
.y34{bottom:55.065000px;}
.y7{bottom:57.600000px;}
.y3f{bottom:62.640000px;}
.y4c{bottom:67.500000px;}
.y3e{bottom:74.340000px;}
.y33{bottom:81.165000px;}
.y4b{bottom:86.580000px;}
.y3d{bottom:87.300000px;}
.yda{bottom:92.880000px;}
.y134{bottom:94.860000px;}
.y79{bottom:98.280000px;}
.y3c{bottom:100.260000px;}
.y38{bottom:102.060000px;}
.y4a{bottom:104.430000px;}
.ya9{bottom:104.580000px;}
.y32{bottom:107.265000px;}
.y49{bottom:112.350000px;}
.yd9{bottom:113.040000px;}
.y107{bottom:115.200000px;}
.y133{bottom:120.960000px;}
.y78{bottom:121.320000px;}
.y3b{bottom:122.250000px;}
.ya8{bottom:124.560000px;}
.y48{bottom:128.190000px;}
.yd8{bottom:133.200000px;}
.y31{bottom:133.410000px;}
.y106{bottom:134.640000px;}
.y105{bottom:142.200000px;}
.y47{bottom:143.670000px;}
.y132{bottom:144.180000px;}
.ya7{bottom:144.720000px;}
.y77{bottom:151.380000px;}
.yd7{bottom:156.240000px;}
.y46{bottom:159.150000px;}
.y30{bottom:159.510000px;}
.y104{bottom:161.280000px;}
.y131{bottom:164.160000px;}
.ya6{bottom:164.880000px;}
.y103{bottom:168.840000px;}
.y45{bottom:174.810000px;}
.yd6{bottom:179.460000px;}
.y76{bottom:181.080000px;}
.y3a{bottom:184.350000px;}
.y2f{bottom:185.610000px;}
.y130{bottom:187.200000px;}
.ya5{bottom:187.920000px;}
.y102{bottom:188.100000px;}
.y44{bottom:189.930000px;}
.y39{bottom:194.970000px;}
.y101{bottom:195.660000px;}
.yd5{bottom:202.500000px;}
.y75{bottom:204.120000px;}
.y12f{bottom:210.450000px;}
.y2e{bottom:211.890000px;}
.ya4{bottom:214.050000px;}
.y100{bottom:223.410000px;}
.yd4{bottom:228.630000px;}
.y74{bottom:230.250000px;}
.y12e{bottom:233.490000px;}
.ya3{bottom:237.270000px;}
.y2d{bottom:237.990000px;}
.y1f{bottom:239.250000px;}
.yff{bottom:249.510000px;}
.yd3{bottom:254.730000px;}
.y73{bottom:256.350000px;}
.ya2{bottom:257.250000px;}
.y12d{bottom:259.590000px;}
.y2c{bottom:263.370000px;}
.y1e{bottom:263.550000px;}
.yfe{bottom:275.610000px;}
.yd2{bottom:277.950000px;}
.ya1{bottom:280.470000px;}
.y72{bottom:282.630000px;}
.y12c{bottom:282.810000px;}
.y2b{bottom:286.950000px;}
.y1d{bottom:287.670000px;}
.yfd{bottom:295.050000px;}
.yd1{bottom:300.990000px;}
.yfc{bottom:302.610000px;}
.ya0{bottom:303.510000px;}
.y71{bottom:305.670000px;}
.y12b{bottom:305.850000px;}
.y2a{bottom:310.530000px;}
.y1c{bottom:311.790000px;}
.yd0{bottom:320.805000px;}
.yfb{bottom:324.750000px;}
.y9f{bottom:326.550000px;}
.y11{bottom:326.925000px;}
.y70{bottom:328.890000px;}
.y12a{bottom:329.070000px;}
.yfa{bottom:333.030000px;}
.y29{bottom:333.930000px;}
.y1b{bottom:335.910000px;}
.ycd{bottom:345.105000px;}
.y129{bottom:349.230000px;}
.y9e{bottom:352.830000px;}
.y6f{bottom:354.990000px;}
.y28{bottom:357.540000px;}
.y1a{bottom:360.060000px;}
.yf9{bottom:362.010000px;}
.y128{bottom:372.270000px;}
.ycc{bottom:373.350000px;}
.y9d{bottom:378.930000px;}
.y6e{bottom:381.090000px;}
.y27{bottom:381.120000px;}
.y19{bottom:384.180000px;}
.yf8{bottom:385.230000px;}
.ycb{bottom:393.510000px;}
.y127{bottom:398.370000px;}
.y26{bottom:404.520000px;}
.y9c{bottom:405.030000px;}
.y6d{bottom:407.190000px;}
.y18{bottom:408.300000px;}
.yf7{bottom:412.230000px;}
.yca{bottom:413.670000px;}
.y126{bottom:424.470000px;}
.y25{bottom:428.100000px;}
.y9b{bottom:428.250000px;}
.y17{bottom:432.600000px;}
.y6c{bottom:433.290000px;}
.yc9{bottom:433.650000px;}
.yf6{bottom:441.975000px;}
.y125{bottom:450.615000px;}
.y9a{bottom:451.335000px;}
.y24{bottom:451.680000px;}
.y16{bottom:456.720000px;}
.yc8{bottom:456.915000px;}
.y6b{bottom:459.435000px;}
.yf5{bottom:465.015000px;}
.y23{bottom:475.080000px;}
.y124{bottom:476.895000px;}
.y99{bottom:477.435000px;}
.y15{bottom:480.840000px;}
.y6a{bottom:482.655000px;}
.yc7{bottom:483.015000px;}
.yf4{bottom:484.815000px;}
.y22{bottom:498.660000px;}
.y123{bottom:499.935000px;}
.y98{bottom:500.655000px;}
.y14{bottom:504.960000px;}
.y69{bottom:505.695000px;}
.yc6{bottom:506.055000px;}
.y21{bottom:522.240000px;}
.yf3{bottom:522.975000px;}
.y97{bottom:523.695000px;}
.y13{bottom:529.080000px;}
.yc5{bottom:529.275000px;}
.y68{bottom:531.795000px;}
.y95{bottom:543.495000px;}
.y20{bottom:545.640000px;}
.y122{bottom:546.195000px;}
.yc3{bottom:549.075000px;}
.y12{bottom:553.200000px;}
.y67{bottom:555.015000px;}
.yf2{bottom:561.135000px;}
.y94{bottom:567.795000px;}
.y121{bottom:569.235000px;}
.yc1{bottom:573.375000px;}
.y66{bottom:578.055000px;}
.y92{bottom:592.095000px;}
.y120{bottom:595.335000px;}
.yf0{bottom:599.295000px;}
.y65{bottom:601.275000px;}
.ybe{bottom:615.675000px;}
.y8f{bottom:616.215000px;}
.y11f{bottom:621.615000px;}
.y64{bottom:624.315000px;}
.yed{bottom:637.275000px;}
.y8e{bottom:640.515000px;}
.y11e{bottom:647.715000px;}
.y63{bottom:650.415000px;}
.ybc{bottom:657.975000px;}
.y8d{bottom:660.675000px;}
.y11d{bottom:673.815000px;}
.yea{bottom:675.435000px;}
.y62{bottom:676.545000px;}
.y142{bottom:678.165000px;}
.y8c{bottom:680.685000px;}
.ybb{bottom:686.445000px;}
.y61{bottom:699.765000px;}
.y11b{bottom:699.945000px;}
.y8b{bottom:700.845000px;}
.y141{bottom:702.825000px;}
.y11c{bottom:708.045000px;}
.yba{bottom:709.485000px;}
.ye9{bottom:711.825000px;}
.y60{bottom:719.925000px;}
.y8a{bottom:723.885000px;}
.y140{bottom:725.865000px;}
.y11a{bottom:730.185000px;}
.ye8{bottom:731.985000px;}
.yb9{bottom:732.705000px;}
.y5f{bottom:742.965000px;}
.y89{bottom:746.925000px;}
.y13f{bottom:748.905000px;}
.ye7{bottom:755.025000px;}
.yb8{bottom:755.745000px;}
.y119{bottom:762.765000px;}
.y5e{bottom:769.065000px;}
.y88{bottom:770.145000px;}
.y13e{bottom:775.185000px;}
.yb7{bottom:778.785000px;}
.ye6{bottom:781.125000px;}
.y118{bottom:788.865000px;}
.y87{bottom:790.305000px;}
.y5d{bottom:795.165000px;}
.yb6{bottom:798.945000px;}
.y13d{bottom:801.285000px;}
.ye5{bottom:807.225000px;}
.y86{bottom:813.345000px;}
.y117{bottom:814.965000px;}
.y5c{bottom:821.445000px;}
.yb5{bottom:821.985000px;}
.y13c{bottom:827.385000px;}
.ye4{bottom:833.505000px;}
.y85{bottom:839.445000px;}
.y116{bottom:841.065000px;}
.y5b{bottom:844.485000px;}
.yb4{bottom:848.085000px;}
.y13b{bottom:853.485000px;}
.ye3{bottom:856.545000px;}
.y115{bottom:862.665000px;}
.y84{bottom:865.545000px;}
.y5a{bottom:867.525000px;}
.y114{bottom:870.225000px;}
.yb3{bottom:874.365000px;}
.ye2{bottom:879.585000px;}
.y83{bottom:888.765000px;}
.y113{bottom:891.645000px;}
.y10{bottom:892.365000px;}
.y59{bottom:893.805000px;}
.yb2{bottom:897.405000px;}
.yf{bottom:898.125000px;}
.y112{bottom:899.205000px;}
.y13a{bottom:902.805000px;}
.ye1{bottom:905.865000px;}
.y82{bottom:908.925000px;}
.y58{bottom:916.890000px;}
.yb1{bottom:920.490000px;}
.ye{bottom:921.210000px;}
.y139{bottom:923.010000px;}
.y111{bottom:925.170000px;}
.ye0{bottom:928.950000px;}
.y81{bottom:932.010000px;}
.y57{bottom:939.930000px;}
.yb0{bottom:943.710000px;}
.y110{bottom:944.430000px;}
.y138{bottom:946.050000px;}
.yd{bottom:947.310000px;}
.ydf{bottom:951.990000px;}
.y80{bottom:958.110000px;}
.y56{bottom:963.150000px;}
.yaf{bottom:966.750000px;}
.yc{bottom:970.530000px;}
.y10f{bottom:971.070000px;}
.y137{bottom:972.150000px;}
.yde{bottom:975.210000px;}
.y10e{bottom:978.630000px;}
.y7f{bottom:981.330000px;}
.y55{bottom:983.310000px;}
.yad{bottom:986.550000px;}
.yb{bottom:990.510000px;}
.y10d{bottom:997.890000px;}
.ydd{bottom:998.250000px;}
.y7e{bottom:1001.310000px;}
.y10c{bottom:1005.450000px;}
.y54{bottom:1006.350000px;}
.ya{bottom:1010.670000px;}
.yac{bottom:1010.850000px;}
.ydc{bottom:1021.470000px;}
.y7d{bottom:1024.350000px;}
.y10b{bottom:1024.530000px;}
.y10a{bottom:1032.090000px;}
.y53{bottom:1032.450000px;}
.yab{bottom:1035.150000px;}
.y9{bottom:1036.770000px;}
.y136{bottom:1041.630000px;}
.ydb{bottom:1044.510000px;}
.y7c{bottom:1047.570000px;}
.y109{bottom:1051.170000px;}
.y52{bottom:1058.550000px;}
.y108{bottom:1058.730000px;}
.yaa{bottom:1059.450000px;}
.y135{bottom:1061.610000px;}
.y7b{bottom:1067.730000px;}
.y8{bottom:1072.230000px;}
.y4f{bottom:1075.680000px;}
.y51{bottom:1084.650000px;}
.y7a{bottom:1087.710000px;}
.y6{bottom:1108.410000px;}
.y1{bottom:1123.890000px;}
.ha{height:4.165313px;}
.h10{height:5.653125px;}
.h16{height:12.006914px;}
.h1c{height:19.425000px;}
.h1e{height:23.385000px;}
.h1f{height:23.565000px;}
.h20{height:23.610000px;}
.h19{height:27.540000px;}
.h13{height:29.678906px;}
.h23{height:31.530000px;}
.h12{height:35.332031px;}
.h25{height:37.245000px;}
.h24{height:37.425000px;}
.hf{height:39.313477px;}
.hd{height:40.985156px;}
.h22{height:41.565000px;}
.hc{height:42.086250px;}
.h2d{height:51.556641px;}
.h14{height:52.971680px;}
.h2c{height:53.184023px;}
.h15{height:54.421875px;}
.h1d{height:57.243164px;}
.h7{height:57.324375px;}
.h18{height:58.621992px;}
.h6{height:58.651172px;}
.he{height:60.338990px;}
.h9{height:63.349102px;}
.h1a{height:64.002656px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h17{height:70.218281px;}
.h21{height:71.613281px;}
.h2{height:84.990000px;}
.h2b{height:85.584023px;}
.h1b{height:89.184023px;}
.h8{height:89.299336px;}
.h2a{height:93.589102px;}
.h26{height:95.085703px;}
.h27{height:96.469102px;}
.h29{height:115.824023px;}
.h4{height:117.180000px;}
.h28{height:125.325703px;}
.h11{height:224.130000px;}
.hb{height:562.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:68.205000px;}
.w7{width:74.901000px;}
.w12{width:87.501000px;}
.we{width:88.545000px;}
.w10{width:101.325000px;}
.w2{width:104.074500px;}
.w16{width:115.774500px;}
.w11{width:120.621000px;}
.w4{width:132.694500px;}
.w14{width:140.976000px;}
.w13{width:141.300000px;}
.wb{width:141.501000px;}
.wd{width:142.761000px;}
.w9{width:151.755000px;}
.wc{width:153.750000px;}
.w15{width:154.635000px;}
.w6{width:162.720000px;}
.w18{width:180.030000px;}
.w19{width:205.620000px;}
.w17{width:222.495000px;}
.w8{width:231.870000px;}
.wf{width:261.060000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:3.765000px;}
.x29{left:6.876000px;}
.x1a{left:8.134500px;}
.x3f{left:10.965000px;}
.x4{left:12.765000px;}
.x19{left:16.054500px;}
.x20{left:18.214500px;}
.x17{left:19.654500px;}
.x43{left:22.845000px;}
.x51{left:24.514500px;}
.x18{left:26.134500px;}
.x46{left:27.930000px;}
.x22{left:29.194500px;}
.x3a{left:30.225000px;}
.x11{left:33.334500px;}
.x6{left:35.985000px;}
.x58{left:37.245000px;}
.x39{left:39.405000px;}
.x30{left:41.220000px;}
.x45{left:43.185000px;}
.x47{left:44.265000px;}
.x21{left:47.734500px;}
.x37{left:48.990000px;}
.x12{left:50.794500px;}
.x55{left:54.034500px;}
.x10{left:55.114500px;}
.x24{left:57.094500px;}
.x2f{left:58.845000px;}
.x3c{left:60.150000px;}
.x1c{left:62.130000px;}
.x59{left:63.750000px;}
.x23{left:66.268500px;}
.x3b{left:69.330000px;}
.x4d{left:72.165000px;}
.x15{left:73.288500px;}
.x56{left:76.890000px;}
.x1{left:78.301500px;}
.x16{left:79.588500px;}
.x4e{left:80.820000px;}
.x14{left:82.468500px;}
.x7{left:86.400000px;}
.x57{left:89.490000px;}
.x4f{left:91.296000px;}
.x2{left:95.788500px;}
.x25{left:102.808500px;}
.x1f{left:106.768500px;}
.x44{left:108.390000px;}
.x41{left:111.090000px;}
.x5a{left:113.436000px;}
.x48{left:117.030000px;}
.x13{left:124.588500px;}
.x6b{left:128.916000px;}
.x5{left:141.330000px;}
.x49{left:154.470000px;}
.x3e{left:159.525000px;}
.x26{left:164.730000px;}
.x27{left:169.950000px;}
.x3{left:182.385000px;}
.x60{left:185.430000px;}
.x34{left:192.285000px;}
.x52{left:199.845000px;}
.x2b{left:216.585000px;}
.x1b{left:219.105000px;}
.x5b{left:233.490000px;}
.x40{left:248.985000px;}
.x67{left:259.410000px;}
.x35{left:261.225000px;}
.x4a{left:271.515000px;}
.x50{left:272.955000px;}
.x68{left:275.475000px;}
.x3d{left:278.355000px;}
.x5e{left:281.055000px;}
.x2d{left:292.215000px;}
.x65{left:303.375000px;}
.x61{left:306.975000px;}
.x5c{left:312.915000px;}
.x64{left:315.075000px;}
.x2a{left:321.015000px;}
.x33{left:364.935000px;}
.x62{left:387.615000px;}
.x5d{left:397.155000px;}
.x36{left:403.455000px;}
.x1d{left:407.265000px;}
.x4b{left:413.535000px;}
.x1e{left:414.825000px;}
.x53{left:423.075000px;}
.x28{left:449.205000px;}
.x69{left:464.505000px;}
.x32{left:473.505000px;}
.x63{left:492.225000px;}
.x66{left:494.025000px;}
.x5f{left:504.825000px;}
.x42{left:510.780000px;}
.x2e{left:524.820000px;}
.xd{left:530.745000px;}
.x4c{left:555.240000px;}
.x38{left:558.120000px;}
.x6a{left:572.505000px;}
.x54{left:604.020000px;}
.x31{left:606.705000px;}
.xe{left:613.185000px;}
.xa{left:686.850000px;}
.xb{left:703.590000px;}
.xc{left:717.090000px;}
.x9{left:766.050000px;}
.x8{left:784.230000px;}
.xf{left:806.760000px;}
@media print{
.v7{vertical-align:-28.800000pt;}
.v6{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.200000pt;}
.v4{vertical-align:26.880000pt;}
.v3{vertical-align:29.440000pt;}
.v2{vertical-align:31.360000pt;}
.v5{vertical-align:58.240000pt;}
.ls1e{letter-spacing:-0.720000pt;}
.ls24{letter-spacing:-0.688000pt;}
.ls21{letter-spacing:-0.573421pt;}
.ls78{letter-spacing:-0.317333pt;}
.ls7a{letter-spacing:-0.303467pt;}
.ls40{letter-spacing:-0.301867pt;}
.ls77{letter-spacing:-0.294400pt;}
.ls1b{letter-spacing:-0.249067pt;}
.ls1d{letter-spacing:-0.230933pt;}
.ls1f{letter-spacing:-0.201067pt;}
.ls26{letter-spacing:-0.096000pt;}
.ls23{letter-spacing:-0.094933pt;}
.ls25{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.016865pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.011520pt;}
.ls50{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.016865pt;}
.ls39{letter-spacing:0.019200pt;}
.ls31{letter-spacing:0.033280pt;}
.ls20{letter-spacing:0.033731pt;}
.ls48{letter-spacing:0.040960pt;}
.ls80{letter-spacing:0.047360pt;}
.ls3d{letter-spacing:0.067200pt;}
.ls66{letter-spacing:0.070400pt;}
.ls37{letter-spacing:0.080640pt;}
.ls79{letter-spacing:0.082133pt;}
.ls22{letter-spacing:0.084327pt;}
.ls3e{letter-spacing:0.093867pt;}
.ls30{letter-spacing:0.094080pt;}
.ls47{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.101192pt;}
.ls3a{letter-spacing:0.128000pt;}
.ls53{letter-spacing:0.144000pt;}
.lsa{letter-spacing:0.151788pt;}
.ls65{letter-spacing:0.153600pt;}
.ls6a{letter-spacing:0.178133pt;}
.ls3c{letter-spacing:0.183467pt;}
.ls27{letter-spacing:0.185518pt;}
.ls4d{letter-spacing:0.192000pt;}
.ls6d{letter-spacing:0.202133pt;}
.ls5{letter-spacing:0.202384pt;}
.ls3f{letter-spacing:0.230933pt;}
.ls33{letter-spacing:0.231040pt;}
.ls7d{letter-spacing:0.244267pt;}
.ls6c{letter-spacing:0.267733pt;}
.ls16{letter-spacing:0.269845pt;}
.ls7b{letter-spacing:0.284800pt;}
.ls72{letter-spacing:0.300160pt;}
.ls54{letter-spacing:0.300800pt;}
.ls1{letter-spacing:0.303360pt;}
.ls64{letter-spacing:0.313600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6b{letter-spacing:0.338133pt;}
.ls32{letter-spacing:0.359040pt;}
.ls43{letter-spacing:0.435840pt;}
.ls38{letter-spacing:0.473600pt;}
.ls60{letter-spacing:0.536960pt;}
.ls68{letter-spacing:0.544000pt;}
.ls59{letter-spacing:0.592000pt;}
.ls35{letter-spacing:0.592640pt;}
.ls45{letter-spacing:0.656000pt;}
.ls82{letter-spacing:0.821333pt;}
.ls34{letter-spacing:0.871040pt;}
.ls2c{letter-spacing:1.872640pt;}
.ls4a{letter-spacing:2.032640pt;}
.lsd{letter-spacing:2.125029pt;}
.ls5a{letter-spacing:2.512000pt;}
.ls49{letter-spacing:2.512640pt;}
.ls3{letter-spacing:2.799642pt;}
.ls7c{letter-spacing:3.152000pt;}
.ls42{letter-spacing:3.152640pt;}
.ls4{letter-spacing:3.474254pt;}
.ls41{letter-spacing:3.792640pt;}
.ls55{letter-spacing:3.952640pt;}
.ls7{letter-spacing:4.148867pt;}
.ls58{letter-spacing:4.432000pt;}
.ls4b{letter-spacing:4.432640pt;}
.ls6{letter-spacing:4.823479pt;}
.ls3b{letter-spacing:5.072000pt;}
.ls2e{letter-spacing:5.072640pt;}
.ls2{letter-spacing:5.498092pt;}
.ls4e{letter-spacing:5.712640pt;}
.ls10{letter-spacing:6.172704pt;}
.ls17{letter-spacing:6.352640pt;}
.lsf{letter-spacing:6.847317pt;}
.ls11{letter-spacing:6.959752pt;}
.ls5e{letter-spacing:6.992640pt;}
.lse{letter-spacing:7.521929pt;}
.ls2a{letter-spacing:7.632640pt;}
.ls2d{letter-spacing:8.272640pt;}
.ls9{letter-spacing:8.871154pt;}
.ls18{letter-spacing:8.912640pt;}
.ls8{letter-spacing:9.039807pt;}
.lsc{letter-spacing:9.545767pt;}
.ls76{letter-spacing:9.552640pt;}
.ls81{letter-spacing:10.186667pt;}
.ls2b{letter-spacing:10.192640pt;}
.lsb{letter-spacing:10.220379pt;}
.ls19{letter-spacing:12.752640pt;}
.ls5b{letter-spacing:13.392640pt;}
.ls57{letter-spacing:14.026667pt;}
.ls2f{letter-spacing:14.032640pt;}
.ls56{letter-spacing:15.312640pt;}
.ls15{letter-spacing:21.014179pt;}
.ls14{letter-spacing:21.688791pt;}
.ls44{letter-spacing:26.192640pt;}
.ls70{letter-spacing:28.112640pt;}
.ls6f{letter-spacing:28.953600pt;}
.ls4f{letter-spacing:33.376000pt;}
.ls46{letter-spacing:34.656000pt;}
.ls62{letter-spacing:36.576000pt;}
.ls63{letter-spacing:37.072640pt;}
.ls4c{letter-spacing:37.216000pt;}
.ls5f{letter-spacing:46.672640pt;}
.ls69{letter-spacing:58.826667pt;}
.ls71{letter-spacing:60.752640pt;}
.ls7f{letter-spacing:73.546667pt;}
.ls67{letter-spacing:78.672640pt;}
.ls7e{letter-spacing:92.112640pt;}
.ls75{letter-spacing:147.360000pt;}
.ls29{letter-spacing:177.360640pt;}
.ls36{letter-spacing:226.619307pt;}
.ls74{letter-spacing:576.810667pt;}
.ls52{letter-spacing:689.499307pt;}
.ls6e{letter-spacing:697.819307pt;}
.ls5c{letter-spacing:812.979627pt;}
.ls5d{letter-spacing:830.811307pt;}
.ls61{letter-spacing:904.411307pt;}
.ls51{letter-spacing:910.259627pt;}
.ws20{word-spacing:-64.000000pt;}
.ws1b{word-spacing:-58.880000pt;}
.ws1e{word-spacing:-48.000000pt;}
.ws22{word-spacing:-15.311360pt;}
.ws23{word-spacing:-14.945493pt;}
.ws36{word-spacing:-14.814720pt;}
.ws5{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1d{word-spacing:-14.672427pt;}
.ws37{word-spacing:-14.536427pt;}
.wsa{word-spacing:-14.335515pt;}
.wsf{word-spacing:-14.251189pt;}
.wsb{word-spacing:-14.149997pt;}
.ws9{word-spacing:-14.099401pt;}
.wsc{word-spacing:-14.082536pt;}
.ws8{word-spacing:-14.065670pt;}
.ws10{word-spacing:-14.048805pt;}
.ws1{word-spacing:-13.600000pt;}
.ws1f{word-spacing:-13.536000pt;}
.wse{word-spacing:-11.904000pt;}
.ws32{word-spacing:-11.697920pt;}
.ws1a{word-spacing:-11.686400pt;}
.ws7{word-spacing:-9.280000pt;}
.ws6{word-spacing:-9.078933pt;}
.ws28{word-spacing:-8.434133pt;}
.ws2d{word-spacing:-8.368533pt;}
.ws30{word-spacing:-8.248533pt;}
.ws26{word-spacing:-8.166400pt;}
.wsd{word-spacing:-7.936000pt;}
.ws2e{word-spacing:-7.872000pt;}
.ws31{word-spacing:-7.862933pt;}
.ws2f{word-spacing:-7.849067pt;}
.ws39{word-spacing:-0.874453pt;}
.ws33{word-spacing:-0.337920pt;}
.ws35{word-spacing:-0.297387pt;}
.ws15{word-spacing:-0.236587pt;}
.ws19{word-spacing:-0.181120pt;}
.ws17{word-spacing:-0.120320pt;}
.ws13{word-spacing:-0.072320pt;}
.ws4{word-spacing:-0.053120pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws25{word-spacing:-0.037120pt;}
.ws18{word-spacing:-0.005760pt;}
.ws11{word-spacing:0.000000pt;}
.ws3{word-spacing:0.177813pt;}
.ws16{word-spacing:0.195947pt;}
.ws2b{word-spacing:12.111680pt;}
.ws2a{word-spacing:16.525440pt;}
.ws29{word-spacing:17.231680pt;}
.ws2c{word-spacing:17.871680pt;}
.ws27{word-spacing:23.212800pt;}
.ws24{word-spacing:141.745920pt;}
.ws38{word-spacing:196.248960pt;}
.ws2{word-spacing:234.379840pt;}
.ws21{word-spacing:255.186987pt;}
.ws12{word-spacing:308.269867pt;}
.ws34{word-spacing:1226.086613pt;}
.ws14{word-spacing:1577.077547pt;}
._3d{margin-left:-2216.494293pt;}
._3e{margin-left:-2211.046606pt;}
._31{margin-left:-1661.982933pt;}
._32{margin-left:-1654.821547pt;}
._21{margin-left:-1353.225387pt;}
._5c{margin-left:-995.688320pt;}
._7c{margin-left:-979.337387pt;}
._7d{margin-left:-959.760078pt;}
._4f{margin-left:-927.860267pt;}
._50{margin-left:-909.043399pt;}
._19{margin-left:-876.835627pt;}
._1a{margin-left:-873.067733pt;}
._53{margin-left:-831.220267pt;}
._54{margin-left:-811.329067pt;}
._3b{margin-left:-727.608960pt;}
._4a{margin-left:-709.833813pt;}
._61{margin-left:-684.088960pt;}
._56{margin-left:-602.168960pt;}
._57{margin-left:-599.018240pt;}
._2f{margin-left:-547.986815pt;}
._2e{margin-left:-546.467627pt;}
._41{margin-left:-538.890667pt;}
._42{margin-left:-537.971840pt;}
._83{margin-left:-465.908053pt;}
._64{margin-left:-430.595627pt;}
._46{margin-left:-414.432000pt;}
._49{margin-left:-311.014522pt;}
._84{margin-left:-303.462841pt;}
._2c{margin-left:-295.130667pt;}
._24{margin-left:-289.161600pt;}
._25{margin-left:-271.640747pt;}
._29{margin-left:-244.562987pt;}
._16{margin-left:-240.408960pt;}
._2{margin-left:-233.600000pt;}
._4d{margin-left:-208.170240pt;}
._37{margin-left:-198.749653pt;}
._4c{margin-left:-194.328960pt;}
._36{margin-left:-191.896960pt;}
._76{margin-left:-179.674027pt;}
._38{margin-left:-167.548587pt;}
._77{margin-left:-165.742720pt;}
._35{margin-left:-163.608960pt;}
._65{margin-left:-158.282240pt;}
._67{margin-left:-143.344000pt;}
._68{margin-left:-140.736000pt;}
._45{margin-left:-136.224000pt;}
._89{margin-left:-125.402116pt;}
._8d{margin-left:-118.322133pt;}
._88{margin-left:-104.692480pt;}
._1c{margin-left:-102.936361pt;}
._7b{margin-left:-99.881132pt;}
._1d{margin-left:-98.458453pt;}
._87{margin-left:-96.668036pt;}
._73{margin-left:-93.440000pt;}
._8a{margin-left:-91.941760pt;}
._1e{margin-left:-87.838720pt;}
._15{margin-left:-86.060800pt;}
._14{margin-left:-84.195840pt;}
._1f{margin-left:-82.616107pt;}
._20{margin-left:-80.852480pt;}
._7a{margin-left:-79.839147pt;}
._74{margin-left:-77.338453pt;}
._75{margin-left:-76.317653pt;}
._6f{margin-left:-60.128640pt;}
._4b{margin-left:-32.666027pt;}
._52{margin-left:-29.984598pt;}
._47{margin-left:-28.704000pt;}
._10{margin-left:-8.628907pt;}
._4{margin-left:-7.702400pt;}
._43{margin-left:-6.720000pt;}
._d{margin-left:-3.507985pt;}
._8{margin-left:-2.112228pt;}
._0{margin-left:-0.972160pt;}
._1{width:0.895787pt;}
._6{width:2.083200pt;}
._c{width:3.443600pt;}
._9{width:4.503038pt;}
._7{width:5.885994pt;}
._5{width:7.649280pt;}
._a{width:8.906835pt;}
._b{width:10.338436pt;}
._11{width:12.265173pt;}
._f{width:13.648427pt;}
._12{width:15.358933pt;}
._13{width:16.361173pt;}
._6a{width:17.607553pt;}
._2a{width:18.826667pt;}
._e{width:21.891175pt;}
._28{width:31.022080pt;}
._27{width:32.071680pt;}
._86{width:37.117440pt;}
._79{width:38.699307pt;}
._5b{width:46.073173pt;}
._59{width:47.117440pt;}
._5a{width:49.117867pt;}
._5d{width:58.333013pt;}
._5e{width:59.395413pt;}
._7f{width:70.596480pt;}
._80{width:71.772373pt;}
._81{width:73.949028pt;}
._5f{width:93.492693pt;}
._71{width:95.312640pt;}
._8e{width:99.336320pt;}
._17{width:104.052482pt;}
._6e{width:107.489813pt;}
._8c{width:117.906133pt;}
._44{width:122.409387pt;}
._70{width:130.352000pt;}
._66{width:140.576000pt;}
._69{width:143.456000pt;}
._6c{width:164.932907pt;}
._6d{width:177.339307pt;}
._6b{width:207.876053pt;}
._8b{width:222.192640pt;}
._3{width:234.798293pt;}
._23{width:273.072853pt;}
._2b{width:279.178667pt;}
._26{width:290.032640pt;}
._22{width:300.587188pt;}
._82{width:305.782511pt;}
._39{width:363.472640pt;}
._34{width:375.278507pt;}
._85{width:392.379307pt;}
._48{width:414.096000pt;}
._72{width:416.472747pt;}
._63{width:424.647726pt;}
._78{width:428.752640pt;}
._40{width:538.314667pt;}
._2d{width:549.967787pt;}
._30{width:552.411307pt;}
._55{width:600.318720pt;}
._58{width:602.352640pt;}
._62{width:684.648747pt;}
._3a{width:710.640967pt;}
._60{width:743.958187pt;}
._18{width:874.562773pt;}
._1b{width:878.299307pt;}
._4e{width:905.505067pt;}
._51{width:928.091307pt;}
._7e{width:1244.357973pt;}
._33{width:1661.637973pt;}
._3c{width:2212.701013pt;}
._3f{width:2217.317973pt;}
.fs5{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs7{font-size:50.595937pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.yc4{bottom:-4.800000pt;}
.yae{bottom:-4.640000pt;}
.y0{bottom:0.000000pt;}
.y37{bottom:0.306667pt;}
.y43{bottom:2.400000pt;}
.ycf{bottom:3.186667pt;}
.y90{bottom:3.360000pt;}
.y5{bottom:3.680000pt;}
.y91{bottom:3.840000pt;}
.y50{bottom:4.453333pt;}
.ybd{bottom:4.480000pt;}
.y36{bottom:5.106667pt;}
.y93{bottom:5.600000pt;}
.yce{bottom:5.746667pt;}
.y96{bottom:5.760000pt;}
.y2{bottom:8.800000pt;}
.y42{bottom:9.120000pt;}
.yeb{bottom:9.306667pt;}
.yc2{bottom:13.600000pt;}
.ybf{bottom:13.760000pt;}
.yec{bottom:15.226667pt;}
.yf1{bottom:17.760000pt;}
.yef{bottom:17.920000pt;}
.yee{bottom:18.080000pt;}
.y4{bottom:20.506667pt;}
.y4e{bottom:22.560000pt;}
.yc0{bottom:24.160000pt;}
.y35{bottom:25.586667pt;}
.y41{bottom:35.840000pt;}
.y4d{bottom:40.160000pt;}
.y3{bottom:42.746667pt;}
.y40{bottom:45.760000pt;}
.y34{bottom:48.946667pt;}
.y7{bottom:51.200000pt;}
.y3f{bottom:55.680000pt;}
.y4c{bottom:60.000000pt;}
.y3e{bottom:66.080000pt;}
.y33{bottom:72.146667pt;}
.y4b{bottom:76.960000pt;}
.y3d{bottom:77.600000pt;}
.yda{bottom:82.560000pt;}
.y134{bottom:84.320000pt;}
.y79{bottom:87.360000pt;}
.y3c{bottom:89.120000pt;}
.y38{bottom:90.720000pt;}
.y4a{bottom:92.826667pt;}
.ya9{bottom:92.960000pt;}
.y32{bottom:95.346667pt;}
.y49{bottom:99.866667pt;}
.yd9{bottom:100.480000pt;}
.y107{bottom:102.400000pt;}
.y133{bottom:107.520000pt;}
.y78{bottom:107.840000pt;}
.y3b{bottom:108.666667pt;}
.ya8{bottom:110.720000pt;}
.y48{bottom:113.946667pt;}
.yd8{bottom:118.400000pt;}
.y31{bottom:118.586667pt;}
.y106{bottom:119.680000pt;}
.y105{bottom:126.400000pt;}
.y47{bottom:127.706667pt;}
.y132{bottom:128.160000pt;}
.ya7{bottom:128.640000pt;}
.y77{bottom:134.560000pt;}
.yd7{bottom:138.880000pt;}
.y46{bottom:141.466667pt;}
.y30{bottom:141.786667pt;}
.y104{bottom:143.360000pt;}
.y131{bottom:145.920000pt;}
.ya6{bottom:146.560000pt;}
.y103{bottom:150.080000pt;}
.y45{bottom:155.386667pt;}
.yd6{bottom:159.520000pt;}
.y76{bottom:160.960000pt;}
.y3a{bottom:163.866667pt;}
.y2f{bottom:164.986667pt;}
.y130{bottom:166.400000pt;}
.ya5{bottom:167.040000pt;}
.y102{bottom:167.200000pt;}
.y44{bottom:168.826667pt;}
.y39{bottom:173.306667pt;}
.y101{bottom:173.920000pt;}
.yd5{bottom:180.000000pt;}
.y75{bottom:181.440000pt;}
.y12f{bottom:187.066667pt;}
.y2e{bottom:188.346667pt;}
.ya4{bottom:190.266667pt;}
.y100{bottom:198.586667pt;}
.yd4{bottom:203.226667pt;}
.y74{bottom:204.666667pt;}
.y12e{bottom:207.546667pt;}
.ya3{bottom:210.906667pt;}
.y2d{bottom:211.546667pt;}
.y1f{bottom:212.666667pt;}
.yff{bottom:221.786667pt;}
.yd3{bottom:226.426667pt;}
.y73{bottom:227.866667pt;}
.ya2{bottom:228.666667pt;}
.y12d{bottom:230.746667pt;}
.y2c{bottom:234.106667pt;}
.y1e{bottom:234.266667pt;}
.yfe{bottom:244.986667pt;}
.yd2{bottom:247.066667pt;}
.ya1{bottom:249.306667pt;}
.y72{bottom:251.226667pt;}
.y12c{bottom:251.386667pt;}
.y2b{bottom:255.066667pt;}
.y1d{bottom:255.706667pt;}
.yfd{bottom:262.266667pt;}
.yd1{bottom:267.546667pt;}
.yfc{bottom:268.986667pt;}
.ya0{bottom:269.786667pt;}
.y71{bottom:271.706667pt;}
.y12b{bottom:271.866667pt;}
.y2a{bottom:276.026667pt;}
.y1c{bottom:277.146667pt;}
.yd0{bottom:285.160000pt;}
.yfb{bottom:288.666667pt;}
.y9f{bottom:290.266667pt;}
.y11{bottom:290.600000pt;}
.y70{bottom:292.346667pt;}
.y12a{bottom:292.506667pt;}
.yfa{bottom:296.026667pt;}
.y29{bottom:296.826667pt;}
.y1b{bottom:298.586667pt;}
.ycd{bottom:306.760000pt;}
.y129{bottom:310.426667pt;}
.y9e{bottom:313.626667pt;}
.y6f{bottom:315.546667pt;}
.y28{bottom:317.813333pt;}
.y1a{bottom:320.053333pt;}
.yf9{bottom:321.786667pt;}
.y128{bottom:330.906667pt;}
.ycc{bottom:331.866667pt;}
.y9d{bottom:336.826667pt;}
.y6e{bottom:338.746667pt;}
.y27{bottom:338.773333pt;}
.y19{bottom:341.493333pt;}
.yf8{bottom:342.426667pt;}
.ycb{bottom:349.786667pt;}
.y127{bottom:354.106667pt;}
.y26{bottom:359.573333pt;}
.y9c{bottom:360.026667pt;}
.y6d{bottom:361.946667pt;}
.y18{bottom:362.933333pt;}
.yf7{bottom:366.426667pt;}
.yca{bottom:367.706667pt;}
.y126{bottom:377.306667pt;}
.y25{bottom:380.533333pt;}
.y9b{bottom:380.666667pt;}
.y17{bottom:384.533333pt;}
.y6c{bottom:385.146667pt;}
.yc9{bottom:385.466667pt;}
.yf6{bottom:392.866667pt;}
.y125{bottom:400.546667pt;}
.y9a{bottom:401.186667pt;}
.y24{bottom:401.493333pt;}
.y16{bottom:405.973333pt;}
.yc8{bottom:406.146667pt;}
.y6b{bottom:408.386667pt;}
.yf5{bottom:413.346667pt;}
.y23{bottom:422.293333pt;}
.y124{bottom:423.906667pt;}
.y99{bottom:424.386667pt;}
.y15{bottom:427.413333pt;}
.y6a{bottom:429.026667pt;}
.yc7{bottom:429.346667pt;}
.yf4{bottom:430.946667pt;}
.y22{bottom:443.253333pt;}
.y123{bottom:444.386667pt;}
.y98{bottom:445.026667pt;}
.y14{bottom:448.853333pt;}
.y69{bottom:449.506667pt;}
.yc6{bottom:449.826667pt;}
.y21{bottom:464.213333pt;}
.yf3{bottom:464.866667pt;}
.y97{bottom:465.506667pt;}
.y13{bottom:470.293333pt;}
.yc5{bottom:470.466667pt;}
.y68{bottom:472.706667pt;}
.y95{bottom:483.106667pt;}
.y20{bottom:485.013333pt;}
.y122{bottom:485.506667pt;}
.yc3{bottom:488.066667pt;}
.y12{bottom:491.733333pt;}
.y67{bottom:493.346667pt;}
.yf2{bottom:498.786667pt;}
.y94{bottom:504.706667pt;}
.y121{bottom:505.986667pt;}
.yc1{bottom:509.666667pt;}
.y66{bottom:513.826667pt;}
.y92{bottom:526.306667pt;}
.y120{bottom:529.186667pt;}
.yf0{bottom:532.706667pt;}
.y65{bottom:534.466667pt;}
.ybe{bottom:547.266667pt;}
.y8f{bottom:547.746667pt;}
.y11f{bottom:552.546667pt;}
.y64{bottom:554.946667pt;}
.yed{bottom:566.466667pt;}
.y8e{bottom:569.346667pt;}
.y11e{bottom:575.746667pt;}
.y63{bottom:578.146667pt;}
.ybc{bottom:584.866667pt;}
.y8d{bottom:587.266667pt;}
.y11d{bottom:598.946667pt;}
.yea{bottom:600.386667pt;}
.y62{bottom:601.373333pt;}
.y142{bottom:602.813333pt;}
.y8c{bottom:605.053333pt;}
.ybb{bottom:610.173333pt;}
.y61{bottom:622.013333pt;}
.y11b{bottom:622.173333pt;}
.y8b{bottom:622.973333pt;}
.y141{bottom:624.733333pt;}
.y11c{bottom:629.373333pt;}
.yba{bottom:630.653333pt;}
.ye9{bottom:632.733333pt;}
.y60{bottom:639.933333pt;}
.y8a{bottom:643.453333pt;}
.y140{bottom:645.213333pt;}
.y11a{bottom:649.053333pt;}
.ye8{bottom:650.653333pt;}
.yb9{bottom:651.293333pt;}
.y5f{bottom:660.413333pt;}
.y89{bottom:663.933333pt;}
.y13f{bottom:665.693333pt;}
.ye7{bottom:671.133333pt;}
.yb8{bottom:671.773333pt;}
.y119{bottom:678.013333pt;}
.y5e{bottom:683.613333pt;}
.y88{bottom:684.573333pt;}
.y13e{bottom:689.053333pt;}
.yb7{bottom:692.253333pt;}
.ye6{bottom:694.333333pt;}
.y118{bottom:701.213333pt;}
.y87{bottom:702.493333pt;}
.y5d{bottom:706.813333pt;}
.yb6{bottom:710.173333pt;}
.y13d{bottom:712.253333pt;}
.ye5{bottom:717.533333pt;}
.y86{bottom:722.973333pt;}
.y117{bottom:724.413333pt;}
.y5c{bottom:730.173333pt;}
.yb5{bottom:730.653333pt;}
.y13c{bottom:735.453333pt;}
.ye4{bottom:740.893333pt;}
.y85{bottom:746.173333pt;}
.y116{bottom:747.613333pt;}
.y5b{bottom:750.653333pt;}
.yb4{bottom:753.853333pt;}
.y13b{bottom:758.653333pt;}
.ye3{bottom:761.373333pt;}
.y115{bottom:766.813333pt;}
.y84{bottom:769.373333pt;}
.y5a{bottom:771.133333pt;}
.y114{bottom:773.533333pt;}
.yb3{bottom:777.213333pt;}
.ye2{bottom:781.853333pt;}
.y83{bottom:790.013333pt;}
.y113{bottom:792.573333pt;}
.y10{bottom:793.213333pt;}
.y59{bottom:794.493333pt;}
.yb2{bottom:797.693333pt;}
.yf{bottom:798.333333pt;}
.y112{bottom:799.293333pt;}
.y13a{bottom:802.493333pt;}
.ye1{bottom:805.213333pt;}
.y82{bottom:807.933333pt;}
.y58{bottom:815.013333pt;}
.yb1{bottom:818.213333pt;}
.ye{bottom:818.853333pt;}
.y139{bottom:820.453333pt;}
.y111{bottom:822.373333pt;}
.ye0{bottom:825.733333pt;}
.y81{bottom:828.453333pt;}
.y57{bottom:835.493333pt;}
.yb0{bottom:838.853333pt;}
.y110{bottom:839.493333pt;}
.y138{bottom:840.933333pt;}
.yd{bottom:842.053333pt;}
.ydf{bottom:846.213333pt;}
.y80{bottom:851.653333pt;}
.y56{bottom:856.133333pt;}
.yaf{bottom:859.333333pt;}
.yc{bottom:862.693333pt;}
.y10f{bottom:863.173333pt;}
.y137{bottom:864.133333pt;}
.yde{bottom:866.853333pt;}
.y10e{bottom:869.893333pt;}
.y7f{bottom:872.293333pt;}
.y55{bottom:874.053333pt;}
.yad{bottom:876.933333pt;}
.yb{bottom:880.453333pt;}
.y10d{bottom:887.013333pt;}
.ydd{bottom:887.333333pt;}
.y7e{bottom:890.053333pt;}
.y10c{bottom:893.733333pt;}
.y54{bottom:894.533333pt;}
.ya{bottom:898.373333pt;}
.yac{bottom:898.533333pt;}
.ydc{bottom:907.973333pt;}
.y7d{bottom:910.533333pt;}
.y10b{bottom:910.693333pt;}
.y10a{bottom:917.413333pt;}
.y53{bottom:917.733333pt;}
.yab{bottom:920.133333pt;}
.y9{bottom:921.573333pt;}
.y136{bottom:925.893333pt;}
.ydb{bottom:928.453333pt;}
.y7c{bottom:931.173333pt;}
.y109{bottom:934.373333pt;}
.y52{bottom:940.933333pt;}
.y108{bottom:941.093333pt;}
.yaa{bottom:941.733333pt;}
.y135{bottom:943.653333pt;}
.y7b{bottom:949.093333pt;}
.y8{bottom:953.093333pt;}
.y4f{bottom:956.160000pt;}
.y51{bottom:964.133333pt;}
.y7a{bottom:966.853333pt;}
.y6{bottom:985.253333pt;}
.y1{bottom:999.013333pt;}
.ha{height:3.702500pt;}
.h10{height:5.025000pt;}
.h16{height:10.672812pt;}
.h1c{height:17.266667pt;}
.h1e{height:20.786667pt;}
.h1f{height:20.946667pt;}
.h20{height:20.986667pt;}
.h19{height:24.480000pt;}
.h13{height:26.381250pt;}
.h23{height:28.026667pt;}
.h12{height:31.406250pt;}
.h25{height:33.106667pt;}
.h24{height:33.266667pt;}
.hf{height:34.945312pt;}
.hd{height:36.431250pt;}
.h22{height:36.946667pt;}
.hc{height:37.410000pt;}
.h2d{height:45.828125pt;}
.h14{height:47.085938pt;}
.h2c{height:47.274687pt;}
.h15{height:48.375000pt;}
.h1d{height:50.882812pt;}
.h7{height:50.955000pt;}
.h18{height:52.108438pt;}
.h6{height:52.134375pt;}
.he{height:53.634657pt;}
.h9{height:56.310313pt;}
.h1a{height:56.891250pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h17{height:62.416250pt;}
.h21{height:63.656250pt;}
.h2{height:75.546667pt;}
.h2b{height:76.074687pt;}
.h1b{height:79.274688pt;}
.h8{height:79.377187pt;}
.h2a{height:83.190312pt;}
.h26{height:84.520625pt;}
.h27{height:85.750313pt;}
.h29{height:102.954688pt;}
.h4{height:104.160000pt;}
.h28{height:111.400625pt;}
.h11{height:199.226667pt;}
.hb{height:500.213333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:60.626667pt;}
.w7{width:66.578667pt;}
.w12{width:77.778667pt;}
.we{width:78.706667pt;}
.w10{width:90.066667pt;}
.w2{width:92.510667pt;}
.w16{width:102.910667pt;}
.w11{width:107.218667pt;}
.w4{width:117.950667pt;}
.w14{width:125.312000pt;}
.w13{width:125.600000pt;}
.wb{width:125.778667pt;}
.wd{width:126.898667pt;}
.w9{width:134.893333pt;}
.wc{width:136.666667pt;}
.w15{width:137.453333pt;}
.w6{width:144.640000pt;}
.w18{width:160.026667pt;}
.w19{width:182.773333pt;}
.w17{width:197.773333pt;}
.w8{width:206.106667pt;}
.wf{width:232.053333pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:3.346667pt;}
.x29{left:6.112000pt;}
.x1a{left:7.230667pt;}
.x3f{left:9.746667pt;}
.x4{left:11.346667pt;}
.x19{left:14.270667pt;}
.x20{left:16.190667pt;}
.x17{left:17.470667pt;}
.x43{left:20.306667pt;}
.x51{left:21.790667pt;}
.x18{left:23.230667pt;}
.x46{left:24.826667pt;}
.x22{left:25.950667pt;}
.x3a{left:26.866667pt;}
.x11{left:29.630667pt;}
.x6{left:31.986667pt;}
.x58{left:33.106667pt;}
.x39{left:35.026667pt;}
.x30{left:36.640000pt;}
.x45{left:38.386667pt;}
.x47{left:39.346667pt;}
.x21{left:42.430667pt;}
.x37{left:43.546667pt;}
.x12{left:45.150667pt;}
.x55{left:48.030667pt;}
.x10{left:48.990667pt;}
.x24{left:50.750667pt;}
.x2f{left:52.306667pt;}
.x3c{left:53.466667pt;}
.x1c{left:55.226667pt;}
.x59{left:56.666667pt;}
.x23{left:58.905333pt;}
.x3b{left:61.626667pt;}
.x4d{left:64.146667pt;}
.x15{left:65.145333pt;}
.x56{left:68.346667pt;}
.x1{left:69.601333pt;}
.x16{left:70.745333pt;}
.x4e{left:71.840000pt;}
.x14{left:73.305333pt;}
.x7{left:76.800000pt;}
.x57{left:79.546667pt;}
.x4f{left:81.152000pt;}
.x2{left:85.145333pt;}
.x25{left:91.385333pt;}
.x1f{left:94.905333pt;}
.x44{left:96.346667pt;}
.x41{left:98.746667pt;}
.x5a{left:100.832000pt;}
.x48{left:104.026667pt;}
.x13{left:110.745333pt;}
.x6b{left:114.592000pt;}
.x5{left:125.626667pt;}
.x49{left:137.306667pt;}
.x3e{left:141.800000pt;}
.x26{left:146.426667pt;}
.x27{left:151.066667pt;}
.x3{left:162.120000pt;}
.x60{left:164.826667pt;}
.x34{left:170.920000pt;}
.x52{left:177.640000pt;}
.x2b{left:192.520000pt;}
.x1b{left:194.760000pt;}
.x5b{left:207.546667pt;}
.x40{left:221.320000pt;}
.x67{left:230.586667pt;}
.x35{left:232.200000pt;}
.x4a{left:241.346667pt;}
.x50{left:242.626667pt;}
.x68{left:244.866667pt;}
.x3d{left:247.426667pt;}
.x5e{left:249.826667pt;}
.x2d{left:259.746667pt;}
.x65{left:269.666667pt;}
.x61{left:272.866667pt;}
.x5c{left:278.146667pt;}
.x64{left:280.066667pt;}
.x2a{left:285.346667pt;}
.x33{left:324.386667pt;}
.x62{left:344.546667pt;}
.x5d{left:353.026667pt;}
.x36{left:358.626667pt;}
.x1d{left:362.013333pt;}
.x4b{left:367.586667pt;}
.x1e{left:368.733333pt;}
.x53{left:376.066667pt;}
.x28{left:399.293333pt;}
.x69{left:412.893333pt;}
.x32{left:420.893333pt;}
.x63{left:437.533333pt;}
.x66{left:439.133333pt;}
.x5f{left:448.733333pt;}
.x42{left:454.026667pt;}
.x2e{left:466.506667pt;}
.xd{left:471.773333pt;}
.x4c{left:493.546667pt;}
.x38{left:496.106667pt;}
.x6a{left:508.893333pt;}
.x54{left:536.906667pt;}
.x31{left:539.293333pt;}
.xe{left:545.053333pt;}
.xa{left:610.533333pt;}
.xb{left:625.413333pt;}
.xc{left:637.413333pt;}
.x9{left:680.933333pt;}
.x8{left:697.093333pt;}
.xf{left:717.120000pt;}
}




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