
    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_98d8afb962e8c10971088a66.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_a4cf5945071fdbaedfb3782d.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0f59b75a3e797e04fe31615d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_f6fbad1aac74fb62ed8f3381.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_b87444467a102aee52b375a9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_d74b4ace65817fba3430d716.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_6212d4b387a412ee87742b65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_3fea48e0227b72dfa3a8a5db.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_7db1b210a1152ee5fab63c73.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.172852;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_ea224f8ca17c9cbbf70611e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923340;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_545942472678226bfe8c1a39.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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_f43f57dac96752f4335254a4.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921387;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_248f8051e4b3216981d77bfc.woff2')format("woff");}.fff{font-family:fff;line-height:0.914062;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_4a6b0990c6d50aab3d4e4963.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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_761feb977504755b18f24bec.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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_78d2170a28f9b53d869e236e.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.921387;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_2bb919720fa87f18f8955be6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.761719;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m3{transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371425,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-5.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v1{vertical-align:20.880000px;}
.ls46{letter-spacing:-6.600000px;}
.ls44{letter-spacing:-4.116000px;}
.ls39{letter-spacing:-1.800000px;}
.ls3a{letter-spacing:-1.572000px;}
.ls2a{letter-spacing:-1.548000px;}
.ls1e{letter-spacing:-1.386000px;}
.ls29{letter-spacing:-1.332000px;}
.ls1b{letter-spacing:-1.236000px;}
.ls1f{letter-spacing:-1.182000px;}
.ls19{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-0.978000px;}
.ls33{letter-spacing:-0.774000px;}
.ls1a{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.460200px;}
.ls1c{letter-spacing:-0.413400px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.298200px;}
.ls45{letter-spacing:-0.259800px;}
.ls28{letter-spacing:-0.223200px;}
.ls1d{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.127200px;}
.ls32{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls34{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.004320px;}
.ls20{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.053280px;}
.lse{letter-spacing:0.087600px;}
.ls17{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls2c{letter-spacing:0.135600px;}
.ls16{letter-spacing:0.153600px;}
.ls8{letter-spacing:0.174240px;}
.ls25{letter-spacing:0.174960px;}
.ls12{letter-spacing:0.180000px;}
.ls31{letter-spacing:0.206400px;}
.ls26{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls41{letter-spacing:0.288000px;}
.ls2d{letter-spacing:0.358560px;}
.ls7{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.439920px;}
.ls4{letter-spacing:0.447840px;}
.ls2f{letter-spacing:0.478560px;}
.ls5{letter-spacing:0.627840px;}
.ls3e{letter-spacing:0.666000px;}
.ls40{letter-spacing:0.666720px;}
.ls3{letter-spacing:0.786240px;}
.ls6{letter-spacing:0.894240px;}
.ls13{letter-spacing:0.900000px;}
.ls3d{letter-spacing:1.080000px;}
.ls2e{letter-spacing:1.620000px;}
.ls15{letter-spacing:2.340000px;}
.ls22{letter-spacing:5.220000px;}
.ls23{letter-spacing:13.860000px;}
.ls3b{letter-spacing:14.580000px;}
.ls10{letter-spacing:16.501680px;}
.ls30{letter-spacing:16.681680px;}
.ls2b{letter-spacing:20.340000px;}
.ls11{letter-spacing:27.504000px;}
.lsf{letter-spacing:28.224000px;}
.ls43{letter-spacing:33.264000px;}
.ls42{letter-spacing:33.984000px;}
.ls38{letter-spacing:147.021696px;}
.ls37{letter-spacing:147.741696px;}
.ls36{letter-spacing:162.141696px;}
.ls3f{letter-spacing:278.220000px;}
.ls35{letter-spacing:957.180000px;}
.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;}
}
.wsc{word-spacing:-18.000000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws25{word-spacing:-16.020000px;}
.ws26{word-spacing:-15.606000px;}
.ws7{word-spacing:-15.300000px;}
.ws1a{word-spacing:-15.199800px;}
.ws1d{word-spacing:-15.146400px;}
.wsd{word-spacing:-15.093600px;}
.wse{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws8{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.886720px;}
.ws1e{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.733600px;}
.ws29{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.526600px;}
.ws19{word-spacing:-14.479800px;}
.ws1f{word-spacing:-14.166000px;}
.ws24{word-spacing:-13.962000px;}
.ws11{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.758000px;}
.ws14{word-spacing:-13.704000px;}
.ws1b{word-spacing:-13.608000px;}
.ws17{word-spacing:-13.554000px;}
.ws22{word-spacing:-13.538304px;}
.wsa{word-spacing:-13.505760px;}
.ws1c{word-spacing:-13.392000px;}
.ws21{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.854880px;}
.ws5{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws23{word-spacing:-11.966304px;}
.ws28{word-spacing:-10.824000px;}
.ws27{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws20{word-spacing:-9.711360px;}
.ws13{word-spacing:-9.000000px;}
.ws3{word-spacing:-8.786880px;}
.ws2a{word-spacing:-8.340000px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._3{margin-left:-6.153120px;}
._4{margin-left:-4.240080px;}
._2{margin-left:-3.048240px;}
._0{margin-left:-1.248000px;}
._1{width:1.188000px;}
._5{width:2.340000px;}
._8{width:4.307760px;}
._b{width:5.744400px;}
._a{width:6.812640px;}
._f{width:8.449920px;}
._e{width:9.509040px;}
._14{width:11.385600px;}
._10{width:12.915360px;}
._11{width:13.924080px;}
._9{width:16.030080px;}
._19{width:17.151120px;}
._1c{width:18.372000px;}
._1b{width:19.488960px;}
._c{width:20.557440px;}
._d{width:21.886560px;}
._6{width:23.638320px;}
._7{width:25.099200px;}
._1a{width:26.241840px;}
._1d{width:28.200000px;}
._17{width:29.293200px;}
._12{width:30.926880px;}
._13{width:32.330160px;}
._16{width:36.281760px;}
._18{width:37.424400px;}
._15{width:38.524800px;}
._20{width:80.100000px;}
._1f{width:145.050960px;}
._1e{width:215.461680px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y115{bottom:-10.335000px;}
.y118{bottom:-7.455000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:0.180000px;}
.y11d{bottom:1.440000px;}
.y41{bottom:3.240000px;}
.y44{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y140{bottom:3.960000px;}
.ye2{bottom:7.200000px;}
.ye4{bottom:7.380000px;}
.ye0{bottom:7.560000px;}
.ye{bottom:9.540000px;}
.y1d{bottom:12.600000px;}
.yc{bottom:13.860000px;}
.y45{bottom:14.940000px;}
.y4{bottom:17.496000px;}
.y43{bottom:18.000000px;}
.y117{bottom:18.465000px;}
.y2{bottom:20.196000px;}
.y40{bottom:20.520000px;}
.y13f{bottom:21.240000px;}
.y114{bottom:23.145000px;}
.y1a{bottom:23.760000px;}
.yb{bottom:30.240000px;}
.y3f{bottom:37.800000px;}
.y19{bottom:40.320000px;}
.y5{bottom:41.940000px;}
.y11a{bottom:42.945000px;}
.ya{bottom:46.620000px;}
.y3e{bottom:54.900000px;}
.y113{bottom:56.265000px;}
.y18{bottom:56.700000px;}
.y1{bottom:64.440000px;}
.y3d{bottom:72.180000px;}
.y17{bottom:73.305000px;}
.y9{bottom:73.440000px;}
.y112{bottom:85.425000px;}
.y3c{bottom:89.460000px;}
.y16{bottom:89.685000px;}
.y8{bottom:93.090000px;}
.y15{bottom:102.825000px;}
.y3b{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y193{bottom:111.816000px;}
.y55{bottom:112.176000px;}
.y172{bottom:115.236000px;}
.y90{bottom:116.676000px;}
.y2c{bottom:117.000000px;}
.yb8{bottom:117.216000px;}
.y14{bottom:121.185000px;}
.y3a{bottom:124.020000px;}
.y110{bottom:124.596000px;}
.y14f{bottom:124.956000px;}
.y192{bottom:129.276000px;}
.y54{bottom:129.456000px;}
.y2b{bottom:131.580000px;}
.y8f{bottom:133.956000px;}
.yb7{bottom:134.496000px;}
.y14e{bottom:138.996000px;}
.y13{bottom:139.365000px;}
.y39{bottom:141.300000px;}
.y10f{bottom:142.596000px;}
.y53{bottom:146.736000px;}
.y2a{bottom:148.860000px;}
.y191{bottom:149.256000px;}
.y8e{bottom:151.230000px;}
.yb6{bottom:151.770000px;}
.y38{bottom:158.400000px;}
.y12{bottom:158.445000px;}
.y10e{bottom:160.590000px;}
.y52{bottom:164.010000px;}
.y29{bottom:165.960000px;}
.y190{bottom:166.530000px;}
.y8d{bottom:168.510000px;}
.yb5{bottom:169.050000px;}
.y37{bottom:175.680000px;}
.y10d{bottom:178.590000px;}
.y51{bottom:181.110000px;}
.y28{bottom:183.780000px;}
.y11{bottom:184.185000px;}
.y8c{bottom:185.610000px;}
.y18f{bottom:186.510000px;}
.yb4{bottom:187.050000px;}
.y36{bottom:192.990000px;}
.y10c{bottom:196.590000px;}
.y50{bottom:198.390000px;}
.y27{bottom:201.270000px;}
.y8b{bottom:202.890000px;}
.yb3{bottom:204.510000px;}
.y18e{bottom:206.490000px;}
.y10{bottom:208.485000px;}
.y35{bottom:210.270000px;}
.ye8{bottom:212.790000px;}
.y10b{bottom:214.590000px;}
.y4f{bottom:215.670000px;}
.y26{bottom:218.550000px;}
.y8a{bottom:220.170000px;}
.yb2{bottom:222.510000px;}
.y18d{bottom:223.770000px;}
.y34{bottom:227.550000px;}
.y4e{bottom:232.950000px;}
.y25{bottom:236.010000px;}
.y89{bottom:237.450000px;}
.yb1{bottom:240.510000px;}
.y18c{bottom:243.750000px;}
.y33{bottom:244.830000px;}
.ye7{bottom:249.690000px;}
.y4d{bottom:250.230000px;}
.y24{bottom:253.470000px;}
.y88{bottom:254.730000px;}
.yb0{bottom:258.510000px;}
.y18b{bottom:261.030000px;}
.y32{bottom:261.930000px;}
.y4c{bottom:267.510000px;}
.y10a{bottom:270.390000px;}
.y23{bottom:270.750000px;}
.y87{bottom:271.830000px;}
.ye6{bottom:272.010000px;}
.y171{bottom:272.370000px;}
.yaf{bottom:276.510000px;}
.y18a{bottom:278.310000px;}
.y31{bottom:279.210000px;}
.y4b{bottom:284.610000px;}
.y109{bottom:287.670000px;}
.y22{bottom:288.210000px;}
.y86{bottom:289.830000px;}
.y170{bottom:290.370000px;}
.ye5{bottom:294.330000px;}
.y30{bottom:296.490000px;}
.yae{bottom:297.750000px;}
.y189{bottom:298.290000px;}
.y4a{bottom:301.890000px;}
.y108{bottom:304.770000px;}
.y21{bottom:305.850000px;}
.y85{bottom:307.290000px;}
.y16f{bottom:308.370000px;}
.y14d{bottom:308.730000px;}
.y2f{bottom:313.770000px;}
.yad{bottom:315.030000px;}
.y188{bottom:315.750000px;}
.ye3{bottom:316.650000px;}
.y49{bottom:319.170000px;}
.y107{bottom:322.050000px;}
.y14c{bottom:323.490000px;}
.y84{bottom:325.290000px;}
.y16e{bottom:326.370000px;}
.y2e{bottom:331.050000px;}
.yac{bottom:332.130000px;}
.y20{bottom:333.210000px;}
.y187{bottom:335.730000px;}
.y48{bottom:336.495000px;}
.ye1{bottom:338.835000px;}
.y14b{bottom:341.535000px;}
.y83{bottom:343.335000px;}
.y16d{bottom:344.415000px;}
.y2d{bottom:348.330000px;}
.yab{bottom:349.455000px;}
.y1f{bottom:350.850000px;}
.y47{bottom:353.775000px;}
.y14a{bottom:359.535000px;}
.ydf{bottom:360.795000px;}
.y82{bottom:361.335000px;}
.y16c{bottom:362.415000px;}
.yaa{bottom:366.735000px;}
.y186{bottom:369.975000px;}
.y46{bottom:371.775000px;}
.y149{bottom:377.535000px;}
.y81{bottom:379.335000px;}
.y16b{bottom:380.415000px;}
.ya9{bottom:384.015000px;}
.y42{bottom:385.995000px;}
.yde{bottom:386.355000px;}
.y185{bottom:390.315000px;}
.y148{bottom:395.535000px;}
.y80{bottom:397.335000px;}
.y16a{bottom:398.415000px;}
.ya8{bottom:401.295000px;}
.ydd{bottom:403.635000px;}
.y184{bottom:407.595000px;}
.y147{bottom:413.535000px;}
.y1e{bottom:415.335000px;}
.y169{bottom:416.415000px;}
.ya7{bottom:418.575000px;}
.ydc{bottom:420.915000px;}
.y183{bottom:424.875000px;}
.y146{bottom:431.535000px;}
.y7f{bottom:433.335000px;}
.y168{bottom:434.415000px;}
.ya6{bottom:435.675000px;}
.ydb{bottom:438.195000px;}
.y182{bottom:442.155000px;}
.y145{bottom:449.535000px;}
.y7e{bottom:451.335000px;}
.y167{bottom:452.415000px;}
.ya5{bottom:452.955000px;}
.yda{bottom:455.475000px;}
.y181{bottom:459.435000px;}
.y144{bottom:467.535000px;}
.y7d{bottom:469.335000px;}
.ya4{bottom:470.235000px;}
.y165{bottom:470.415000px;}
.yd9{bottom:472.575000px;}
.y143{bottom:485.535000px;}
.y7c{bottom:487.335000px;}
.ya3{bottom:487.515000px;}
.y166{bottom:488.415000px;}
.yd8{bottom:489.855000px;}
.y142{bottom:503.535000px;}
.ya2{bottom:504.795000px;}
.yd7{bottom:507.135000px;}
.y7b{bottom:508.575000px;}
.y164{bottom:509.655000px;}
.y106{bottom:512.715000px;}
.y13e{bottom:521.535000px;}
.ya1{bottom:522.075000px;}
.yd6{bottom:524.415000px;}
.y7a{bottom:526.035000px;}
.y163{bottom:526.755000px;}
.y105{bottom:529.995000px;}
.ya0{bottom:539.175000px;}
.y141{bottom:539.535000px;}
.yd5{bottom:541.695000px;}
.y162{bottom:544.035000px;}
.y79{bottom:546.015000px;}
.y104{bottom:547.095000px;}
.y9f{bottom:556.455000px;}
.yd4{bottom:558.795000px;}
.y13d{bottom:560.775000px;}
.y161{bottom:561.315000px;}
.y119{bottom:561.960000px;}
.y103{bottom:564.375000px;}
.y78{bottom:565.995000px;}
.y9e{bottom:573.735000px;}
.y11b{bottom:575.715000px;}
.yd3{bottom:576.075000px;}
.y13c{bottom:577.875000px;}
.y160{bottom:578.595000px;}
.y102{bottom:581.655000px;}
.y77{bottom:586.155000px;}
.y9d{bottom:591.015000px;}
.y13b{bottom:592.635000px;}
.yd2{bottom:593.355000px;}
.y15f{bottom:595.875000px;}
.y180{bottom:598.035000px;}
.y101{bottom:598.935000px;}
.y76{bottom:606.165000px;}
.y9c{bottom:608.325000px;}
.yd1{bottom:610.665000px;}
.y17f{bottom:612.645000px;}
.y15e{bottom:613.185000px;}
.y100{bottom:616.245000px;}
.y111{bottom:621.900000px;}
.y9b{bottom:625.605000px;}
.y75{bottom:626.145000px;}
.yd0{bottom:627.945000px;}
.y13a{bottom:628.665000px;}
.y15d{bottom:630.285000px;}
.yff{bottom:633.525000px;}
.y9a{bottom:642.705000px;}
.y74{bottom:643.425000px;}
.ycf{bottom:645.225000px;}
.y11c{bottom:645.405000px;}
.y139{bottom:646.665000px;}
.yfe{bottom:650.625000px;}
.y99{bottom:659.985000px;}
.yce{bottom:662.325000px;}
.y73{bottom:663.405000px;}
.y138{bottom:664.665000px;}
.yfd{bottom:667.905000px;}
.y98{bottom:677.265000px;}
.ycd{bottom:679.605000px;}
.y72{bottom:680.685000px;}
.y137{bottom:682.665000px;}
.y116{bottom:684.000000px;}
.yfc{bottom:685.185000px;}
.y97{bottom:694.545000px;}
.ycc{bottom:696.885000px;}
.y71{bottom:697.965000px;}
.y136{bottom:700.665000px;}
.yfb{bottom:702.465000px;}
.y96{bottom:711.825000px;}
.ycb{bottom:714.165000px;}
.y70{bottom:715.245000px;}
.y135{bottom:718.665000px;}
.yfa{bottom:719.745000px;}
.y95{bottom:728.925000px;}
.y17e{bottom:730.185000px;}
.yca{bottom:731.445000px;}
.y6f{bottom:732.525000px;}
.y134{bottom:736.665000px;}
.yf9{bottom:737.025000px;}
.y17d{bottom:745.665000px;}
.y94{bottom:746.205000px;}
.yc9{bottom:748.725000px;}
.y6e{bottom:749.625000px;}
.yf8{bottom:751.785000px;}
.y133{bottom:754.665000px;}
.y93{bottom:763.485000px;}
.y17c{bottom:764.385000px;}
.yc8{bottom:765.825000px;}
.y6d{bottom:766.905000px;}
.yf7{bottom:769.785000px;}
.y132{bottom:772.665000px;}
.y1b{bottom:777.525000px;}
.y92{bottom:780.765000px;}
.yc7{bottom:783.105000px;}
.y17b{bottom:783.285000px;}
.y6c{bottom:784.185000px;}
.yf6{bottom:787.785000px;}
.y131{bottom:790.665000px;}
.y91{bottom:798.765000px;}
.yc6{bottom:800.385000px;}
.y6b{bottom:801.465000px;}
.y17a{bottom:802.005000px;}
.yf5{bottom:805.785000px;}
.yf{bottom:807.225000px;}
.y130{bottom:808.665000px;}
.yc5{bottom:817.665000px;}
.y6a{bottom:818.745000px;}
.y179{bottom:820.725000px;}
.yf4{bottom:823.785000px;}
.y15c{bottom:825.405000px;}
.yc4{bottom:834.945000px;}
.y69{bottom:836.025000px;}
.y178{bottom:839.445000px;}
.y15b{bottom:840.165000px;}
.yf3{bottom:841.605000px;}
.y1a3{bottom:845.205000px;}
.y12f{bottom:847.185000px;}
.yc3{bottom:852.225000px;}
.y68{bottom:853.125000px;}
.y15a{bottom:858.165000px;}
.yf2{bottom:859.605000px;}
.y1a2{bottom:862.485000px;}
.y12e{bottom:864.465000px;}
.yc2{bottom:869.325000px;}
.y67{bottom:870.405000px;}
.y159{bottom:876.210000px;}
.y177{bottom:876.930000px;}
.y1a1{bottom:879.810000px;}
.yf1{bottom:880.890000px;}
.y12d{bottom:881.790000px;}
.yc1{bottom:886.650000px;}
.y66{bottom:887.730000px;}
.y158{bottom:894.210000px;}
.y176{bottom:895.830000px;}
.yf0{bottom:898.170000px;}
.y12c{bottom:899.070000px;}
.y1a0{bottom:899.790000px;}
.yc0{bottom:903.930000px;}
.y65{bottom:905.010000px;}
.y157{bottom:912.210000px;}
.y175{bottom:914.550000px;}
.yef{bottom:915.450000px;}
.y12b{bottom:916.170000px;}
.y19f{bottom:917.070000px;}
.ybf{bottom:921.210000px;}
.y64{bottom:922.290000px;}
.y156{bottom:930.210000px;}
.yee{bottom:932.730000px;}
.y174{bottom:933.270000px;}
.y12a{bottom:933.450000px;}
.y19e{bottom:937.050000px;}
.ybe{bottom:938.490000px;}
.y63{bottom:939.570000px;}
.y155{bottom:948.210000px;}
.yed{bottom:950.010000px;}
.y129{bottom:950.730000px;}
.y173{bottom:951.990000px;}
.y19d{bottom:954.510000px;}
.ybd{bottom:955.590000px;}
.y62{bottom:956.670000px;}
.y154{bottom:966.210000px;}
.yec{bottom:967.290000px;}
.y128{bottom:968.010000px;}
.ybc{bottom:972.870000px;}
.y61{bottom:973.950000px;}
.y19c{bottom:974.490000px;}
.y153{bottom:984.210000px;}
.yeb{bottom:984.390000px;}
.y127{bottom:985.290000px;}
.ybb{bottom:990.150000px;}
.y60{bottom:991.230000px;}
.y19b{bottom:994.470000px;}
.yea{bottom:1001.670000px;}
.y152{bottom:1002.210000px;}
.y126{bottom:1002.390000px;}
.yba{bottom:1007.430000px;}
.y5f{bottom:1008.510000px;}
.y19a{bottom:1011.750000px;}
.ye9{bottom:1015.710000px;}
.y125{bottom:1019.670000px;}
.y151{bottom:1020.210000px;}
.yb9{bottom:1025.430000px;}
.y5e{bottom:1025.790000px;}
.yd{bottom:1030.830000px;}
.y199{bottom:1031.730000px;}
.y124{bottom:1034.430000px;}
.y150{bottom:1038.210000px;}
.y5d{bottom:1042.890000px;}
.y198{bottom:1049.010000px;}
.y6{bottom:1056.210000px;}
.y5c{bottom:1060.170000px;}
.y197{bottom:1066.290000px;}
.y123{bottom:1069.710000px;}
.y5b{bottom:1077.450000px;}
.y196{bottom:1086.270000px;}
.y122{bottom:1087.710000px;}
.y5a{bottom:1094.730000px;}
.y195{bottom:1103.550000px;}
.y121{bottom:1105.710000px;}
.y59{bottom:1112.010000px;}
.y120{bottom:1123.710000px;}
.y58{bottom:1129.290000px;}
.y11f{bottom:1141.740000px;}
.y194{bottom:1143.720000px;}
.y57{bottom:1146.420000px;}
.y11e{bottom:1159.740000px;}
.y56{bottom:1163.700000px;}
.h29{height:17.100000px;}
.h32{height:17.136000px;}
.h1f{height:17.280000px;}
.h20{height:17.316000px;}
.h26{height:21.240000px;}
.h28{height:21.420000px;}
.h27{height:21.456000px;}
.h25{height:21.600000px;}
.hb{height:25.020000px;}
.h2d{height:28.620000px;}
.h1d{height:29.340000px;}
.h13{height:29.700000px;}
.h11{height:32.103633px;}
.h2{height:32.976000px;}
.h30{height:34.560000px;}
.h31{height:35.100000px;}
.h33{height:35.280000px;}
.h8{height:36.180000px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h1a{height:42.186445px;}
.h19{height:42.281367px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h4{height:47.223633px;}
.h16{height:47.980898px;}
.h22{height:48.027656px;}
.h23{height:48.312422px;}
.h24{height:48.492422px;}
.h18{height:49.742227px;}
.h21{height:50.273438px;}
.h2a{height:51.840000px;}
.h1e{height:52.417969px;}
.h12{height:53.709961px;}
.h9{height:54.000000px;}
.h2e{height:55.260000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.hf{height:59.439023px;}
.h2c{height:59.582250px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h34{height:68.940000px;}
.h6{height:71.613281px;}
.h14{height:73.722656px;}
.h2f{height:79.560000px;}
.h2b{height:97.740000px;}
.h7{height:121.536000px;}
.hc{height:223.590000px;}
.h15{height:362.190000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w24{width:19.440000px;}
.w21{width:20.520000px;}
.we{width:42.660000px;}
.wc{width:42.840000px;}
.wb{width:44.316000px;}
.wd{width:45.720000px;}
.w14{width:45.900000px;}
.w13{width:47.700000px;}
.w12{width:48.240000px;}
.w10{width:48.420000px;}
.wf{width:48.456000px;}
.w11{width:48.600000px;}
.w38{width:50.040000px;}
.w3e{width:57.240000px;}
.w3d{width:67.536000px;}
.w3b{width:67.716000px;}
.w16{width:72.720000px;}
.w3{width:74.880000px;}
.w3a{width:76.680000px;}
.w3c{width:78.840000px;}
.w3f{width:84.420000px;}
.w28{width:98.100000px;}
.w22{width:102.060000px;}
.w31{width:102.276000px;}
.w37{width:105.516000px;}
.w40{width:105.876000px;}
.w2e{width:107.856000px;}
.w25{width:108.936000px;}
.w2d{width:109.656000px;}
.w29{width:112.536000px;}
.w1f{width:113.976000px;}
.w1e{width:121.140000px;}
.w1c{width:121.176000px;}
.w20{width:121.320000px;}
.w2a{width:126.540000px;}
.w27{width:126.576000px;}
.w39{width:135.396000px;}
.w1d{width:135.756000px;}
.w33{width:143.136000px;}
.w30{width:151.560000px;}
.w5{width:151.950000px;}
.w26{width:154.470000px;}
.w35{width:159.300000px;}
.w36{width:159.510000px;}
.w34{width:164.010000px;}
.wa{width:164.910000px;}
.w2f{width:173.190000px;}
.w2b{width:185.790000px;}
.w8{width:223.275000px;}
.w15{width:269.715000px;}
.w23{width:341.100000px;}
.w1b{width:356.115000px;}
.w19{width:360.075000px;}
.w18{width:369.075000px;}
.w1a{width:374.295000px;}
.w17{width:402.555000px;}
.w9{width:524.055000px;}
.w2c{width:544.605000px;}
.w6{width:595.365000px;}
.w32{width:628.125000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x3f{left:-29.520000px;}
.x44{left:-23.940000px;}
.x32{left:-18.900000px;}
.x30{left:-11.700000px;}
.x54{left:-7.920000px;}
.x42{left:-5.040000px;}
.x41{left:-1.620000px;}
.x0{left:0.000000px;}
.x36{left:1.470000px;}
.x57{left:2.880000px;}
.x27{left:7.560000px;}
.x2{left:8.640000px;}
.x16{left:12.600000px;}
.x3c{left:15.300000px;}
.x38{left:23.295000px;}
.x1{left:72.360000px;}
.xc{left:74.016000px;}
.x4{left:80.999987px;}
.x3d{left:93.455987px;}
.x17{left:96.515987px;}
.x5{left:98.130000px;}
.xe{left:107.490000px;}
.x11{left:109.830000px;}
.x12{left:123.150000px;}
.x5f{left:126.395987px;}
.x10{left:131.610000px;}
.x28{left:135.035987px;}
.x60{left:136.295987px;}
.x45{left:137.735987px;}
.x13{left:143.130000px;}
.xf{left:145.110000px;}
.x5e{left:147.635987px;}
.x4d{left:183.990000px;}
.x53{left:187.950000px;}
.x3e{left:190.830000px;}
.x2e{left:202.890000px;}
.x4c{left:210.089987px;}
.x14{left:215.175000px;}
.x6{left:224.850000px;}
.x51{left:230.609987px;}
.xd{left:232.095000px;}
.x3b{left:234.030000px;}
.x55{left:239.610000px;}
.x2b{left:242.129987px;}
.x19{left:246.630000px;}
.x2c{left:251.489987px;}
.x52{left:260.309987px;}
.x35{left:264.060000px;}
.x46{left:267.510000px;}
.x29{left:273.809987px;}
.x2d{left:284.834987px;}
.x9{left:288.435000px;}
.x1a{left:291.675000px;}
.x39{left:293.040000px;}
.x15{left:296.175000px;}
.x18{left:300.314987px;}
.x4e{left:327.855000px;}
.x1b{left:335.235000px;}
.x2f{left:339.375000px;}
.x25{left:343.695000px;}
.x40{left:346.035000px;}
.x7{left:348.195000px;}
.x37{left:363.420000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x56{left:375.735000px;}
.x47{left:378.075000px;}
.x1c{left:381.675000px;}
.x3a{left:389.594987px;}
.x26{left:417.315000px;}
.x1d{left:425.235000px;}
.x4a{left:446.474987px;}
.x2a{left:450.975000px;}
.x58{left:453.135000px;}
.xa{left:455.700000px;}
.x31{left:461.235000px;}
.x1e{left:474.405000px;}
.x48{left:486.645000px;}
.x4f{left:492.585000px;}
.x59{left:521.565000px;}
.x1f{left:523.545000px;}
.x20{left:572.865000px;}
.x33{left:576.105000px;}
.x5a{left:601.305000px;}
.x21{left:621.825000px;}
.x50{left:652.605000px;}
.x49{left:660.570000px;}
.x4b{left:662.729987px;}
.x5b{left:669.750000px;}
.x22{left:671.190000px;}
.x43{left:685.590000px;}
.x34{left:690.810000px;}
.x23{left:719.610000px;}
.x5c{left:727.710000px;}
.x3{left:745.890000px;}
.x24{left:766.230000px;}
.x5d{left:771.089987px;}
@media print{
.v6{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-5.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v1{vertical-align:18.560000pt;}
.ls46{letter-spacing:-5.866667pt;}
.ls44{letter-spacing:-3.658667pt;}
.ls39{letter-spacing:-1.600000pt;}
.ls3a{letter-spacing:-1.397333pt;}
.ls2a{letter-spacing:-1.376000pt;}
.ls1e{letter-spacing:-1.232000pt;}
.ls29{letter-spacing:-1.184000pt;}
.ls1b{letter-spacing:-1.098667pt;}
.ls1f{letter-spacing:-1.050667pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.869333pt;}
.ls33{letter-spacing:-0.688000pt;}
.ls1a{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.409067pt;}
.ls1c{letter-spacing:-0.367467pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.265067pt;}
.ls45{letter-spacing:-0.230933pt;}
.ls28{letter-spacing:-0.198400pt;}
.ls1d{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.113067pt;}
.ls32{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls34{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.003840pt;}
.ls20{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.077867pt;}
.ls17{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls2c{letter-spacing:0.120533pt;}
.ls16{letter-spacing:0.136533pt;}
.ls8{letter-spacing:0.154880pt;}
.ls25{letter-spacing:0.155520pt;}
.ls12{letter-spacing:0.160000pt;}
.ls31{letter-spacing:0.183467pt;}
.ls26{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls41{letter-spacing:0.256000pt;}
.ls2d{letter-spacing:0.318720pt;}
.ls7{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.391040pt;}
.ls4{letter-spacing:0.398080pt;}
.ls2f{letter-spacing:0.425387pt;}
.ls5{letter-spacing:0.558080pt;}
.ls3e{letter-spacing:0.592000pt;}
.ls40{letter-spacing:0.592640pt;}
.ls3{letter-spacing:0.698880pt;}
.ls6{letter-spacing:0.794880pt;}
.ls13{letter-spacing:0.800000pt;}
.ls3d{letter-spacing:0.960000pt;}
.ls2e{letter-spacing:1.440000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls22{letter-spacing:4.640000pt;}
.ls23{letter-spacing:12.320000pt;}
.ls3b{letter-spacing:12.960000pt;}
.ls10{letter-spacing:14.668160pt;}
.ls30{letter-spacing:14.828160pt;}
.ls2b{letter-spacing:18.080000pt;}
.ls11{letter-spacing:24.448000pt;}
.lsf{letter-spacing:25.088000pt;}
.ls43{letter-spacing:29.568000pt;}
.ls42{letter-spacing:30.208000pt;}
.ls38{letter-spacing:130.685952pt;}
.ls37{letter-spacing:131.325952pt;}
.ls36{letter-spacing:144.125952pt;}
.ls3f{letter-spacing:247.306667pt;}
.ls35{letter-spacing:850.826667pt;}
.wsc{word-spacing:-16.000000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws25{word-spacing:-14.240000pt;}
.ws26{word-spacing:-13.872000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws1a{word-spacing:-13.510933pt;}
.ws1d{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws8{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.232640pt;}
.ws1e{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.096533pt;}
.ws29{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.912533pt;}
.ws19{word-spacing:-12.870933pt;}
.ws1f{word-spacing:-12.592000pt;}
.ws24{word-spacing:-12.410667pt;}
.ws11{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.229333pt;}
.ws14{word-spacing:-12.181333pt;}
.ws1b{word-spacing:-12.096000pt;}
.ws17{word-spacing:-12.048000pt;}
.ws22{word-spacing:-12.034048pt;}
.wsa{word-spacing:-12.005120pt;}
.ws1c{word-spacing:-11.904000pt;}
.ws21{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.426560pt;}
.ws5{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws23{word-spacing:-10.636715pt;}
.ws28{word-spacing:-9.621333pt;}
.ws27{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws20{word-spacing:-8.632320pt;}
.ws13{word-spacing:-8.000000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws2a{word-spacing:-7.413333pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._3{margin-left:-5.469440pt;}
._4{margin-left:-3.768960pt;}
._2{margin-left:-2.709547pt;}
._0{margin-left:-1.109333pt;}
._1{width:1.056000pt;}
._5{width:2.080000pt;}
._8{width:3.829120pt;}
._b{width:5.106133pt;}
._a{width:6.055680pt;}
._f{width:7.511040pt;}
._e{width:8.452480pt;}
._14{width:10.120533pt;}
._10{width:11.480320pt;}
._11{width:12.376960pt;}
._9{width:14.248960pt;}
._19{width:15.245440pt;}
._1c{width:16.330667pt;}
._1b{width:17.323520pt;}
._c{width:18.273280pt;}
._d{width:19.454720pt;}
._6{width:21.011840pt;}
._7{width:22.310400pt;}
._1a{width:23.326080pt;}
._1d{width:25.066667pt;}
._17{width:26.038400pt;}
._12{width:27.490560pt;}
._13{width:28.737920pt;}
._16{width:32.250453pt;}
._18{width:33.266133pt;}
._15{width:34.244267pt;}
._20{width:71.200000pt;}
._1f{width:128.934187pt;}
._1e{width:191.521493pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y115{bottom:-9.186667pt;}
.y118{bottom:-6.626667pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:0.160000pt;}
.y11d{bottom:1.280000pt;}
.y41{bottom:2.880000pt;}
.y44{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y140{bottom:3.520000pt;}
.ye2{bottom:6.400000pt;}
.ye4{bottom:6.560000pt;}
.ye0{bottom:6.720000pt;}
.ye{bottom:8.480000pt;}
.y1d{bottom:11.200000pt;}
.yc{bottom:12.320000pt;}
.y45{bottom:13.280000pt;}
.y4{bottom:15.552000pt;}
.y43{bottom:16.000000pt;}
.y117{bottom:16.413333pt;}
.y2{bottom:17.952000pt;}
.y40{bottom:18.240000pt;}
.y13f{bottom:18.880000pt;}
.y114{bottom:20.573333pt;}
.y1a{bottom:21.120000pt;}
.yb{bottom:26.880000pt;}
.y3f{bottom:33.600000pt;}
.y19{bottom:35.840000pt;}
.y5{bottom:37.280000pt;}
.y11a{bottom:38.173333pt;}
.ya{bottom:41.440000pt;}
.y3e{bottom:48.800000pt;}
.y113{bottom:50.013333pt;}
.y18{bottom:50.400000pt;}
.y1{bottom:57.280000pt;}
.y3d{bottom:64.160000pt;}
.y17{bottom:65.160000pt;}
.y9{bottom:65.280000pt;}
.y112{bottom:75.933333pt;}
.y3c{bottom:79.520000pt;}
.y16{bottom:79.720000pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:91.400000pt;}
.y3b{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y193{bottom:99.392000pt;}
.y55{bottom:99.712000pt;}
.y172{bottom:102.432000pt;}
.y90{bottom:103.712000pt;}
.y2c{bottom:104.000000pt;}
.yb8{bottom:104.192000pt;}
.y14{bottom:107.720000pt;}
.y3a{bottom:110.240000pt;}
.y110{bottom:110.752000pt;}
.y14f{bottom:111.072000pt;}
.y192{bottom:114.912000pt;}
.y54{bottom:115.072000pt;}
.y2b{bottom:116.960000pt;}
.y8f{bottom:119.072000pt;}
.yb7{bottom:119.552000pt;}
.y14e{bottom:123.552000pt;}
.y13{bottom:123.880000pt;}
.y39{bottom:125.600000pt;}
.y10f{bottom:126.752000pt;}
.y53{bottom:130.432000pt;}
.y2a{bottom:132.320000pt;}
.y191{bottom:132.672000pt;}
.y8e{bottom:134.426667pt;}
.yb6{bottom:134.906667pt;}
.y38{bottom:140.800000pt;}
.y12{bottom:140.840000pt;}
.y10e{bottom:142.746667pt;}
.y52{bottom:145.786667pt;}
.y29{bottom:147.520000pt;}
.y190{bottom:148.026667pt;}
.y8d{bottom:149.786667pt;}
.yb5{bottom:150.266667pt;}
.y37{bottom:156.160000pt;}
.y10d{bottom:158.746667pt;}
.y51{bottom:160.986667pt;}
.y28{bottom:163.360000pt;}
.y11{bottom:163.720000pt;}
.y8c{bottom:164.986667pt;}
.y18f{bottom:165.786667pt;}
.yb4{bottom:166.266667pt;}
.y36{bottom:171.546667pt;}
.y10c{bottom:174.746667pt;}
.y50{bottom:176.346667pt;}
.y27{bottom:178.906667pt;}
.y8b{bottom:180.346667pt;}
.yb3{bottom:181.786667pt;}
.y18e{bottom:183.546667pt;}
.y10{bottom:185.320000pt;}
.y35{bottom:186.906667pt;}
.ye8{bottom:189.146667pt;}
.y10b{bottom:190.746667pt;}
.y4f{bottom:191.706667pt;}
.y26{bottom:194.266667pt;}
.y8a{bottom:195.706667pt;}
.yb2{bottom:197.786667pt;}
.y18d{bottom:198.906667pt;}
.y34{bottom:202.266667pt;}
.y4e{bottom:207.066667pt;}
.y25{bottom:209.786667pt;}
.y89{bottom:211.066667pt;}
.yb1{bottom:213.786667pt;}
.y18c{bottom:216.666667pt;}
.y33{bottom:217.626667pt;}
.ye7{bottom:221.946667pt;}
.y4d{bottom:222.426667pt;}
.y24{bottom:225.306667pt;}
.y88{bottom:226.426667pt;}
.yb0{bottom:229.786667pt;}
.y18b{bottom:232.026667pt;}
.y32{bottom:232.826667pt;}
.y4c{bottom:237.786667pt;}
.y10a{bottom:240.346667pt;}
.y23{bottom:240.666667pt;}
.y87{bottom:241.626667pt;}
.ye6{bottom:241.786667pt;}
.y171{bottom:242.106667pt;}
.yaf{bottom:245.786667pt;}
.y18a{bottom:247.386667pt;}
.y31{bottom:248.186667pt;}
.y4b{bottom:252.986667pt;}
.y109{bottom:255.706667pt;}
.y22{bottom:256.186667pt;}
.y86{bottom:257.626667pt;}
.y170{bottom:258.106667pt;}
.ye5{bottom:261.626667pt;}
.y30{bottom:263.546667pt;}
.yae{bottom:264.666667pt;}
.y189{bottom:265.146667pt;}
.y4a{bottom:268.346667pt;}
.y108{bottom:270.906667pt;}
.y21{bottom:271.866667pt;}
.y85{bottom:273.146667pt;}
.y16f{bottom:274.106667pt;}
.y14d{bottom:274.426667pt;}
.y2f{bottom:278.906667pt;}
.yad{bottom:280.026667pt;}
.y188{bottom:280.666667pt;}
.ye3{bottom:281.466667pt;}
.y49{bottom:283.706667pt;}
.y107{bottom:286.266667pt;}
.y14c{bottom:287.546667pt;}
.y84{bottom:289.146667pt;}
.y16e{bottom:290.106667pt;}
.y2e{bottom:294.266667pt;}
.yac{bottom:295.226667pt;}
.y20{bottom:296.186667pt;}
.y187{bottom:298.426667pt;}
.y48{bottom:299.106667pt;}
.ye1{bottom:301.186667pt;}
.y14b{bottom:303.586667pt;}
.y83{bottom:305.186667pt;}
.y16d{bottom:306.146667pt;}
.y2d{bottom:309.626667pt;}
.yab{bottom:310.626667pt;}
.y1f{bottom:311.866667pt;}
.y47{bottom:314.466667pt;}
.y14a{bottom:319.586667pt;}
.ydf{bottom:320.706667pt;}
.y82{bottom:321.186667pt;}
.y16c{bottom:322.146667pt;}
.yaa{bottom:325.986667pt;}
.y186{bottom:328.866667pt;}
.y46{bottom:330.466667pt;}
.y149{bottom:335.586667pt;}
.y81{bottom:337.186667pt;}
.y16b{bottom:338.146667pt;}
.ya9{bottom:341.346667pt;}
.y42{bottom:343.106667pt;}
.yde{bottom:343.426667pt;}
.y185{bottom:346.946667pt;}
.y148{bottom:351.586667pt;}
.y80{bottom:353.186667pt;}
.y16a{bottom:354.146667pt;}
.ya8{bottom:356.706667pt;}
.ydd{bottom:358.786667pt;}
.y184{bottom:362.306667pt;}
.y147{bottom:367.586667pt;}
.y1e{bottom:369.186667pt;}
.y169{bottom:370.146667pt;}
.ya7{bottom:372.066667pt;}
.ydc{bottom:374.146667pt;}
.y183{bottom:377.666667pt;}
.y146{bottom:383.586667pt;}
.y7f{bottom:385.186667pt;}
.y168{bottom:386.146667pt;}
.ya6{bottom:387.266667pt;}
.ydb{bottom:389.506667pt;}
.y182{bottom:393.026667pt;}
.y145{bottom:399.586667pt;}
.y7e{bottom:401.186667pt;}
.y167{bottom:402.146667pt;}
.ya5{bottom:402.626667pt;}
.yda{bottom:404.866667pt;}
.y181{bottom:408.386667pt;}
.y144{bottom:415.586667pt;}
.y7d{bottom:417.186667pt;}
.ya4{bottom:417.986667pt;}
.y165{bottom:418.146667pt;}
.yd9{bottom:420.066667pt;}
.y143{bottom:431.586667pt;}
.y7c{bottom:433.186667pt;}
.ya3{bottom:433.346667pt;}
.y166{bottom:434.146667pt;}
.yd8{bottom:435.426667pt;}
.y142{bottom:447.586667pt;}
.ya2{bottom:448.706667pt;}
.yd7{bottom:450.786667pt;}
.y7b{bottom:452.066667pt;}
.y164{bottom:453.026667pt;}
.y106{bottom:455.746667pt;}
.y13e{bottom:463.586667pt;}
.ya1{bottom:464.066667pt;}
.yd6{bottom:466.146667pt;}
.y7a{bottom:467.586667pt;}
.y163{bottom:468.226667pt;}
.y105{bottom:471.106667pt;}
.ya0{bottom:479.266667pt;}
.y141{bottom:479.586667pt;}
.yd5{bottom:481.506667pt;}
.y162{bottom:483.586667pt;}
.y79{bottom:485.346667pt;}
.y104{bottom:486.306667pt;}
.y9f{bottom:494.626667pt;}
.yd4{bottom:496.706667pt;}
.y13d{bottom:498.466667pt;}
.y161{bottom:498.946667pt;}
.y119{bottom:499.520000pt;}
.y103{bottom:501.666667pt;}
.y78{bottom:503.106667pt;}
.y9e{bottom:509.986667pt;}
.y11b{bottom:511.746667pt;}
.yd3{bottom:512.066667pt;}
.y13c{bottom:513.666667pt;}
.y160{bottom:514.306667pt;}
.y102{bottom:517.026667pt;}
.y77{bottom:521.026667pt;}
.y9d{bottom:525.346667pt;}
.y13b{bottom:526.786667pt;}
.yd2{bottom:527.426667pt;}
.y15f{bottom:529.666667pt;}
.y180{bottom:531.586667pt;}
.y101{bottom:532.386667pt;}
.y76{bottom:538.813333pt;}
.y9c{bottom:540.733333pt;}
.yd1{bottom:542.813333pt;}
.y17f{bottom:544.573333pt;}
.y15e{bottom:545.053333pt;}
.y100{bottom:547.773333pt;}
.y111{bottom:552.800000pt;}
.y9b{bottom:556.093333pt;}
.y75{bottom:556.573333pt;}
.yd0{bottom:558.173333pt;}
.y13a{bottom:558.813333pt;}
.y15d{bottom:560.253333pt;}
.yff{bottom:563.133333pt;}
.y9a{bottom:571.293333pt;}
.y74{bottom:571.933333pt;}
.ycf{bottom:573.533333pt;}
.y11c{bottom:573.693333pt;}
.y139{bottom:574.813333pt;}
.yfe{bottom:578.333333pt;}
.y99{bottom:586.653333pt;}
.yce{bottom:588.733333pt;}
.y73{bottom:589.693333pt;}
.y138{bottom:590.813333pt;}
.yfd{bottom:593.693333pt;}
.y98{bottom:602.013333pt;}
.ycd{bottom:604.093333pt;}
.y72{bottom:605.053333pt;}
.y137{bottom:606.813333pt;}
.y116{bottom:608.000000pt;}
.yfc{bottom:609.053333pt;}
.y97{bottom:617.373333pt;}
.ycc{bottom:619.453333pt;}
.y71{bottom:620.413333pt;}
.y136{bottom:622.813333pt;}
.yfb{bottom:624.413333pt;}
.y96{bottom:632.733333pt;}
.ycb{bottom:634.813333pt;}
.y70{bottom:635.773333pt;}
.y135{bottom:638.813333pt;}
.yfa{bottom:639.773333pt;}
.y95{bottom:647.933333pt;}
.y17e{bottom:649.053333pt;}
.yca{bottom:650.173333pt;}
.y6f{bottom:651.133333pt;}
.y134{bottom:654.813333pt;}
.yf9{bottom:655.133333pt;}
.y17d{bottom:662.813333pt;}
.y94{bottom:663.293333pt;}
.yc9{bottom:665.533333pt;}
.y6e{bottom:666.333333pt;}
.yf8{bottom:668.253333pt;}
.y133{bottom:670.813333pt;}
.y93{bottom:678.653333pt;}
.y17c{bottom:679.453333pt;}
.yc8{bottom:680.733333pt;}
.y6d{bottom:681.693333pt;}
.yf7{bottom:684.253333pt;}
.y132{bottom:686.813333pt;}
.y1b{bottom:691.133333pt;}
.y92{bottom:694.013333pt;}
.yc7{bottom:696.093333pt;}
.y17b{bottom:696.253333pt;}
.y6c{bottom:697.053333pt;}
.yf6{bottom:700.253333pt;}
.y131{bottom:702.813333pt;}
.y91{bottom:710.013333pt;}
.yc6{bottom:711.453333pt;}
.y6b{bottom:712.413333pt;}
.y17a{bottom:712.893333pt;}
.yf5{bottom:716.253333pt;}
.yf{bottom:717.533333pt;}
.y130{bottom:718.813333pt;}
.yc5{bottom:726.813333pt;}
.y6a{bottom:727.773333pt;}
.y179{bottom:729.533333pt;}
.yf4{bottom:732.253333pt;}
.y15c{bottom:733.693333pt;}
.yc4{bottom:742.173333pt;}
.y69{bottom:743.133333pt;}
.y178{bottom:746.173333pt;}
.y15b{bottom:746.813333pt;}
.yf3{bottom:748.093333pt;}
.y1a3{bottom:751.293333pt;}
.y12f{bottom:753.053333pt;}
.yc3{bottom:757.533333pt;}
.y68{bottom:758.333333pt;}
.y15a{bottom:762.813333pt;}
.yf2{bottom:764.093333pt;}
.y1a2{bottom:766.653333pt;}
.y12e{bottom:768.413333pt;}
.yc2{bottom:772.733333pt;}
.y67{bottom:773.693333pt;}
.y159{bottom:778.853333pt;}
.y177{bottom:779.493333pt;}
.y1a1{bottom:782.053333pt;}
.yf1{bottom:783.013333pt;}
.y12d{bottom:783.813333pt;}
.yc1{bottom:788.133333pt;}
.y66{bottom:789.093333pt;}
.y158{bottom:794.853333pt;}
.y176{bottom:796.293333pt;}
.yf0{bottom:798.373333pt;}
.y12c{bottom:799.173333pt;}
.y1a0{bottom:799.813333pt;}
.yc0{bottom:803.493333pt;}
.y65{bottom:804.453333pt;}
.y157{bottom:810.853333pt;}
.y175{bottom:812.933333pt;}
.yef{bottom:813.733333pt;}
.y12b{bottom:814.373333pt;}
.y19f{bottom:815.173333pt;}
.ybf{bottom:818.853333pt;}
.y64{bottom:819.813333pt;}
.y156{bottom:826.853333pt;}
.yee{bottom:829.093333pt;}
.y174{bottom:829.573333pt;}
.y12a{bottom:829.733333pt;}
.y19e{bottom:832.933333pt;}
.ybe{bottom:834.213333pt;}
.y63{bottom:835.173333pt;}
.y155{bottom:842.853333pt;}
.yed{bottom:844.453333pt;}
.y129{bottom:845.093333pt;}
.y173{bottom:846.213333pt;}
.y19d{bottom:848.453333pt;}
.ybd{bottom:849.413333pt;}
.y62{bottom:850.373333pt;}
.y154{bottom:858.853333pt;}
.yec{bottom:859.813333pt;}
.y128{bottom:860.453333pt;}
.ybc{bottom:864.773333pt;}
.y61{bottom:865.733333pt;}
.y19c{bottom:866.213333pt;}
.y153{bottom:874.853333pt;}
.yeb{bottom:875.013333pt;}
.y127{bottom:875.813333pt;}
.ybb{bottom:880.133333pt;}
.y60{bottom:881.093333pt;}
.y19b{bottom:883.973333pt;}
.yea{bottom:890.373333pt;}
.y152{bottom:890.853333pt;}
.y126{bottom:891.013333pt;}
.yba{bottom:895.493333pt;}
.y5f{bottom:896.453333pt;}
.y19a{bottom:899.333333pt;}
.ye9{bottom:902.853333pt;}
.y125{bottom:906.373333pt;}
.y151{bottom:906.853333pt;}
.yb9{bottom:911.493333pt;}
.y5e{bottom:911.813333pt;}
.yd{bottom:916.293333pt;}
.y199{bottom:917.093333pt;}
.y124{bottom:919.493333pt;}
.y150{bottom:922.853333pt;}
.y5d{bottom:927.013333pt;}
.y198{bottom:932.453333pt;}
.y6{bottom:938.853333pt;}
.y5c{bottom:942.373333pt;}
.y197{bottom:947.813333pt;}
.y123{bottom:950.853333pt;}
.y5b{bottom:957.733333pt;}
.y196{bottom:965.573333pt;}
.y122{bottom:966.853333pt;}
.y5a{bottom:973.093333pt;}
.y195{bottom:980.933333pt;}
.y121{bottom:982.853333pt;}
.y59{bottom:988.453333pt;}
.y120{bottom:998.853333pt;}
.y58{bottom:1003.813333pt;}
.y11f{bottom:1014.880000pt;}
.y194{bottom:1016.640000pt;}
.y57{bottom:1019.040000pt;}
.y11e{bottom:1030.880000pt;}
.y56{bottom:1034.400000pt;}
.h29{height:15.200000pt;}
.h32{height:15.232000pt;}
.h1f{height:15.360000pt;}
.h20{height:15.392000pt;}
.h26{height:18.880000pt;}
.h28{height:19.040000pt;}
.h27{height:19.072000pt;}
.h25{height:19.200000pt;}
.hb{height:22.240000pt;}
.h2d{height:25.440000pt;}
.h1d{height:26.080000pt;}
.h13{height:26.400000pt;}
.h11{height:28.536563pt;}
.h2{height:29.312000pt;}
.h30{height:30.720000pt;}
.h31{height:31.200000pt;}
.h33{height:31.360000pt;}
.h8{height:32.160000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h1a{height:37.499062pt;}
.h19{height:37.583438pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h4{height:41.976562pt;}
.h16{height:42.649687pt;}
.h22{height:42.691250pt;}
.h23{height:42.944375pt;}
.h24{height:43.104375pt;}
.h18{height:44.215312pt;}
.h21{height:44.687500pt;}
.h2a{height:46.080000pt;}
.h1e{height:46.593750pt;}
.h12{height:47.742188pt;}
.h9{height:48.000000pt;}
.h2e{height:49.120000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.hf{height:52.834688pt;}
.h2c{height:52.962000pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h34{height:61.280000pt;}
.h6{height:63.656250pt;}
.h14{height:65.531250pt;}
.h2f{height:70.720000pt;}
.h2b{height:86.880000pt;}
.h7{height:108.032000pt;}
.hc{height:198.746667pt;}
.h15{height:321.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w24{width:17.280000pt;}
.w21{width:18.240000pt;}
.we{width:37.920000pt;}
.wc{width:38.080000pt;}
.wb{width:39.392000pt;}
.wd{width:40.640000pt;}
.w14{width:40.800000pt;}
.w13{width:42.400000pt;}
.w12{width:42.880000pt;}
.w10{width:43.040000pt;}
.wf{width:43.072000pt;}
.w11{width:43.200000pt;}
.w38{width:44.480000pt;}
.w3e{width:50.880000pt;}
.w3d{width:60.032000pt;}
.w3b{width:60.192000pt;}
.w16{width:64.640000pt;}
.w3{width:66.560000pt;}
.w3a{width:68.160000pt;}
.w3c{width:70.080000pt;}
.w3f{width:75.040000pt;}
.w28{width:87.200000pt;}
.w22{width:90.720000pt;}
.w31{width:90.912000pt;}
.w37{width:93.792000pt;}
.w40{width:94.112000pt;}
.w2e{width:95.872000pt;}
.w25{width:96.832000pt;}
.w2d{width:97.472000pt;}
.w29{width:100.032000pt;}
.w1f{width:101.312000pt;}
.w1e{width:107.680000pt;}
.w1c{width:107.712000pt;}
.w20{width:107.840000pt;}
.w2a{width:112.480000pt;}
.w27{width:112.512000pt;}
.w39{width:120.352000pt;}
.w1d{width:120.672000pt;}
.w33{width:127.232000pt;}
.w30{width:134.720000pt;}
.w5{width:135.066667pt;}
.w26{width:137.306667pt;}
.w35{width:141.600000pt;}
.w36{width:141.786667pt;}
.w34{width:145.786667pt;}
.wa{width:146.586667pt;}
.w2f{width:153.946667pt;}
.w2b{width:165.146667pt;}
.w8{width:198.466667pt;}
.w15{width:239.746667pt;}
.w23{width:303.200000pt;}
.w1b{width:316.546667pt;}
.w19{width:320.066667pt;}
.w18{width:328.066667pt;}
.w1a{width:332.706667pt;}
.w17{width:357.826667pt;}
.w9{width:465.826667pt;}
.w2c{width:484.093333pt;}
.w6{width:529.213333pt;}
.w32{width:558.333333pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x3f{left:-26.240000pt;}
.x44{left:-21.280000pt;}
.x32{left:-16.800000pt;}
.x30{left:-10.400000pt;}
.x54{left:-7.040000pt;}
.x42{left:-4.480000pt;}
.x41{left:-1.440000pt;}
.x0{left:0.000000pt;}
.x36{left:1.306667pt;}
.x57{left:2.560000pt;}
.x27{left:6.720000pt;}
.x2{left:7.680000pt;}
.x16{left:11.200000pt;}
.x3c{left:13.600000pt;}
.x38{left:20.706667pt;}
.x1{left:64.320000pt;}
.xc{left:65.792000pt;}
.x4{left:71.999988pt;}
.x3d{left:83.071988pt;}
.x17{left:85.791988pt;}
.x5{left:87.226667pt;}
.xe{left:95.546667pt;}
.x11{left:97.626667pt;}
.x12{left:109.466667pt;}
.x5f{left:112.351988pt;}
.x10{left:116.986667pt;}
.x28{left:120.031988pt;}
.x60{left:121.151988pt;}
.x45{left:122.431988pt;}
.x13{left:127.226667pt;}
.xf{left:128.986667pt;}
.x5e{left:131.231988pt;}
.x4d{left:163.546667pt;}
.x53{left:167.066667pt;}
.x3e{left:169.626667pt;}
.x2e{left:180.346667pt;}
.x4c{left:186.746655pt;}
.x14{left:191.266667pt;}
.x6{left:199.866667pt;}
.x51{left:204.986655pt;}
.xd{left:206.306667pt;}
.x3b{left:208.026667pt;}
.x55{left:212.986667pt;}
.x2b{left:215.226655pt;}
.x19{left:219.226667pt;}
.x2c{left:223.546655pt;}
.x52{left:231.386655pt;}
.x35{left:234.720000pt;}
.x46{left:237.786667pt;}
.x29{left:243.386655pt;}
.x2d{left:253.186655pt;}
.x9{left:256.386667pt;}
.x1a{left:259.266667pt;}
.x39{left:260.480000pt;}
.x15{left:263.266667pt;}
.x18{left:266.946655pt;}
.x4e{left:291.426667pt;}
.x1b{left:297.986667pt;}
.x2f{left:301.666667pt;}
.x25{left:305.506667pt;}
.x40{left:307.586667pt;}
.x7{left:309.506667pt;}
.x37{left:323.040000pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x56{left:333.986667pt;}
.x47{left:336.066667pt;}
.x1c{left:339.266667pt;}
.x3a{left:346.306655pt;}
.x26{left:370.946667pt;}
.x1d{left:377.986667pt;}
.x4a{left:396.866655pt;}
.x2a{left:400.866667pt;}
.x58{left:402.786667pt;}
.xa{left:405.066667pt;}
.x31{left:409.986667pt;}
.x1e{left:421.693333pt;}
.x48{left:432.573333pt;}
.x4f{left:437.853333pt;}
.x59{left:463.613333pt;}
.x1f{left:465.373333pt;}
.x20{left:509.213333pt;}
.x33{left:512.093333pt;}
.x5a{left:534.493333pt;}
.x21{left:552.733333pt;}
.x50{left:580.093333pt;}
.x49{left:587.173333pt;}
.x4b{left:589.093322pt;}
.x5b{left:595.333333pt;}
.x22{left:596.613333pt;}
.x43{left:609.413333pt;}
.x34{left:614.053333pt;}
.x23{left:639.653333pt;}
.x5c{left:646.853333pt;}
.x3{left:663.013333pt;}
.x24{left:681.093333pt;}
.x5d{left:685.413322pt;}
}




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