
    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_5e6dd89ac27a75d662cf9842.woff')format("woff");}.ff1{font-family:ff1;line-height:0.732500;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_11098c1685490e1a920266a2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_122f76c72beedbf079dae7e3.woff')format("woff");}.ff3{font-family:ff3;line-height:0.733000;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_2a2c537e3cecb769a037a725.woff')format("woff");}.ff4{font-family:ff4;line-height:0.744500;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_71c2b124267cdc8a3c9c657b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.739000;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_dbd3d74d5d370240b4045f01.woff')format("woff");}.ff6{font-family:ff6;line-height:0.944000;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_26c4e25d88f466c460ad4f96.woff')format("woff");}.ff7{font-family:ff7;line-height:0.898500;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_a986003039cbddaab31828b6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.918500;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_d2c7a881c1f596b940fa5f8b.woff')format("woff");}.ff9{font-family:ff9;line-height:0.774902;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_34efd7be274ee56863d39214.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2e3fcae1a4d824af5ab3b28f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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_ffa425357ec689f17f04494d.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_8fc4a35321c8b1e75d76e8d8.woff')format("woff");}.ffd{font-family:ffd;line-height:0.949000;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_8435d7a446557fd2d999faa6.woff')format("woff");}.ffe{font-family:ffe;line-height:1.005371;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_91df5f92e9fed9d4225efc26.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d3a0e5af1cc9050058598c71.woff')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_efa2b27e7c54f65debb43141.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_7c52d0cb732fdad0ddf5dd9b.woff')format("woff");}.ff12{font-family:ff12;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5a498ac115dd4fc097ce6a41.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_f1985b99cbd251cda7178c5f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.937500;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_6aec974dccd07efb68f59107.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_86f19648f8870f47bef4c9b6.woff')format("woff");}.ff16{font-family:ff16;line-height:0.940918;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:ff17;src:url('chunks/assets/font_eba5985c2b4caf201a537a1a.woff')format("woff");}.ff17{font-family:ff17;line-height:1.123047;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;}
.m4{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);}
.m3{transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:36.000000px;}
.ls1{letter-spacing:-1.800000px;}
.ls8{letter-spacing:-0.588000px;}
.ls27{letter-spacing:-0.504000px;}
.ls4{letter-spacing:-0.480000px;}
.ls9{letter-spacing:-0.462000px;}
.ls1f{letter-spacing:-0.444000px;}
.lsa{letter-spacing:-0.441000px;}
.ls17{letter-spacing:-0.420000px;}
.ls28{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.300000px;}
.lse{letter-spacing:-0.276000px;}
.ls20{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.132000px;}
.ls29{letter-spacing:-0.060000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.012000px;}
.ls1c{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.204000px;}
.ls10{letter-spacing:0.216000px;}
.ls16{letter-spacing:0.228000px;}
.lsf{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.294000px;}
.ls1b{letter-spacing:0.312000px;}
.ls3{letter-spacing:0.420000px;}
.ls23{letter-spacing:0.588000px;}
.ls12{letter-spacing:0.636000px;}
.ls2b{letter-spacing:4.728000px;}
.ls2a{letter-spacing:10.728000px;}
.ls15{letter-spacing:12.228000px;}
.ls19{letter-spacing:12.288000px;}
.ls26{letter-spacing:13.728000px;}
.ls25{letter-spacing:18.228000px;}
.ls6{letter-spacing:27.228000px;}
.ls24{letter-spacing:32.484000px;}
.ls21{letter-spacing:33.984000px;}
.ls22{letter-spacing:35.484000px;}
.ls11{letter-spacing:44.484000px;}
.lsc{letter-spacing:44.634000px;}
.ls13{letter-spacing:49.152000px;}
.ls14{letter-spacing:49.302000px;}
.ls2{letter-spacing:72.288000px;}
.lsd{letter-spacing:96.126000px;}
.ls7{letter-spacing:848.058000px;}
.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;}
}
.ws3{word-spacing:-72.288000px;}
.wse{word-spacing:-72.000000px;}
.wsd{word-spacing:-27.804000px;}
.wsa{word-spacing:-18.396000px;}
.wsf{word-spacing:-16.488000px;}
.ws15{word-spacing:-16.284000px;}
.ws10{word-spacing:-16.272000px;}
.ws18{word-spacing:-16.212000px;}
.ws19{word-spacing:-15.972000px;}
.ws17{word-spacing:-15.912000px;}
.ws14{word-spacing:-15.828000px;}
.ws16{word-spacing:-15.768000px;}
.ws1a{word-spacing:-14.916000px;}
.wsb{word-spacing:-14.454000px;}
.wsc{word-spacing:-13.797000px;}
.ws12{word-spacing:-13.560000px;}
.ws13{word-spacing:-13.260000px;}
.ws11{word-spacing:-13.140000px;}
.ws6{word-spacing:-1.386000px;}
.ws9{word-spacing:-1.176000px;}
.ws8{word-spacing:-0.420000px;}
.ws0{word-spacing:-0.135000px;}
.ws1{word-spacing:0.000000px;}
.ws7{word-spacing:0.480000px;}
.ws2{word-spacing:1.800000px;}
.ws5{word-spacing:800.220000px;}
.ws4{word-spacing:836.820000px;}
._37{margin-left:-98.940000px;}
._5{margin-left:-83.160000px;}
._21{margin-left:-5.382000px;}
._0{margin-left:-4.122000px;}
._3{margin-left:-2.880000px;}
._2{margin-left:-1.800000px;}
._1{width:1.872000px;}
._29{width:3.246000px;}
._2e{width:4.518000px;}
._22{width:5.904000px;}
._23{width:7.128000px;}
._24{width:8.154000px;}
._31{width:9.216000px;}
._30{width:10.584000px;}
._27{width:11.592000px;}
._28{width:12.600000px;}
._34{width:13.608000px;}
._2f{width:14.688000px;}
._2c{width:18.000000px;}
._2d{width:19.080000px;}
._35{width:20.592000px;}
._2a{width:21.960000px;}
._2b{width:23.472000px;}
._26{width:24.624000px;}
._25{width:25.776000px;}
._32{width:33.048000px;}
._33{width:34.578000px;}
._4{width:42.192000px;}
._36{width:46.872000px;}
._9{width:210.060000px;}
._8{width:214.860000px;}
._20{width:581.922000px;}
._1e{width:595.020000px;}
._6{width:687.660000px;}
._b{width:712.140000px;}
._7{width:804.360000px;}
._38{width:848.058000px;}
._a{width:894.600000px;}
._f{width:908.106000px;}
._1c{width:1084.086000px;}
._1b{width:1290.402000px;}
._10{width:1398.570000px;}
._1d{width:1577.112000px;}
._11{width:1852.986000px;}
._d{width:1863.150000px;}
._e{width:1889.604000px;}
._16{width:1906.086000px;}
._18{width:1909.278000px;}
._15{width:1916.058000px;}
._1a{width:1942.854000px;}
._12{width:2026.512000px;}
._17{width:2116.470000px;}
._14{width:2130.678000px;}
._13{width:2137.404000px;}
._19{width:2240.577000px;}
._1f{width:2355.150000px;}
._c{width:2400.642000px;}
.fcd{color:rgb(22,198,12);}
.fc4{color:rgb(68,53,86);}
.fc6{color:rgb(0,0,0);}
.fc8{color:rgb(47,84,150);}
.fc2{color:rgb(229,162,50);}
.fca{color:rgb(255,0,0);}
.fce{color:rgb(240,58,23);}
.fc5{color:rgb(31,72,40);}
.fc0{color:rgb(255,255,255);}
.fc7{color:rgb(56,86,35);}
.fc1{color:rgb(35,76,50);}
.fc9{color:rgb(0,32,96);}
.fc3{color:rgb(28,56,96);}
.fcc{color:transparent;}
.fcb{color:rgb(17,85,204);}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs9{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fsc{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fsb{font-size:84.000000px;}
.fsd{font-size:96.000000px;}
.fsa{font-size:108.000000px;}
.fs1{font-size:135.000000px;}
.fs0{font-size:180.000000px;}
.fs3{font-size:288.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:4.500000px;}
.yf8{bottom:4.515000px;}
.y10a{bottom:4.530000px;}
.y73{bottom:4.875000px;}
.yac{bottom:5.625000px;}
.y79{bottom:5.670000px;}
.yf5{bottom:7.530000px;}
.y70{bottom:11.250000px;}
.yc6{bottom:12.750000px;}
.y85{bottom:14.625000px;}
.y7d{bottom:15.795000px;}
.y71{bottom:16.125000px;}
.yd5{bottom:24.375000px;}
.y119{bottom:24.405000px;}
.y8c{bottom:24.750000px;}
.y109{bottom:24.780000px;}
.y92{bottom:24.795000px;}
.y78{bottom:25.920000px;}
.y72{bottom:27.030000px;}
.yc5{bottom:33.045000px;}
.y6e{bottom:33.405000px;}
.y84{bottom:34.875000px;}
.y7c{bottom:35.670000px;}
.yd4{bottom:44.625000px;}
.y118{bottom:44.655000px;}
.y91{bottom:44.670000px;}
.y10d{bottom:45.000000px;}
.y8b{bottom:45.030000px;}
.y77{bottom:45.795000px;}
.yc4{bottom:53.295000px;}
.y83{bottom:55.155000px;}
.y7b{bottom:55.920000px;}
.yd3{bottom:64.875000px;}
.yfb{bottom:64.905000px;}
.y90{bottom:64.920000px;}
.y8a{bottom:65.280000px;}
.y117{bottom:65.295000px;}
.y76{bottom:66.045000px;}
.yc3{bottom:73.170000px;}
.y18{bottom:73.912500px;}
.y82{bottom:75.030000px;}
.y7a{bottom:76.170000px;}
.yd2{bottom:84.795000px;}
.y89{bottom:85.155000px;}
.y8f{bottom:85.170000px;}
.y115{bottom:86.280000px;}
.y75{bottom:86.295000px;}
.yc2{bottom:93.420000px;}
.y17{bottom:94.162500px;}
.y81{bottom:95.280000px;}
.y6{bottom:100.184400px;}
.yd1{bottom:105.045000px;}
.y88{bottom:105.405000px;}
.y114{bottom:106.530000px;}
.y16{bottom:110.287500px;}
.y80{bottom:115.530000px;}
.yd0{bottom:125.295000px;}
.y87{bottom:125.655000px;}
.y113{bottom:126.780000px;}
.y5b{bottom:127.537500px;}
.y7f{bottom:135.780000px;}
.y86{bottom:145.530000px;}
.ycf{bottom:145.545000px;}
.y169{bottom:145.912500px;}
.y5a{bottom:146.662500px;}
.y112{bottom:147.075000px;}
.y59{bottom:152.670000px;}
.yb6{bottom:153.420000px;}
.y124{bottom:162.795000px;}
.y168{bottom:163.920000px;}
.yce{bottom:165.420000px;}
.y111{bottom:166.950000px;}
.y58{bottom:168.405000px;}
.yb5{bottom:175.200000px;}
.y167{bottom:182.325000px;}
.y123{bottom:184.950000px;}
.ycd{bottom:185.670000px;}
.y110{bottom:187.200000px;}
.y97{bottom:188.325000px;}
.yb4{bottom:197.325000px;}
.y166{bottom:201.450000px;}
.yd6{bottom:201.825000px;}
.y145{bottom:205.575000px;}
.ycc{bottom:205.950000px;}
.y122{bottom:206.700000px;}
.y10f{bottom:207.450000px;}
.y96{bottom:210.075000px;}
.y1c9{bottom:216.075000px;}
.yb3{bottom:219.450000px;}
.y165{bottom:223.575000px;}
.ycb{bottom:225.825000px;}
.yc8{bottom:227.700000px;}
.y121{bottom:228.825000px;}
.y144{bottom:229.200000px;}
.y57{bottom:231.450000px;}
.y95{bottom:232.200000px;}
.yb2{bottom:241.200000px;}
.yca{bottom:247.575000px;}
.y120{bottom:250.950000px;}
.y56{bottom:253.200000px;}
.y94{bottom:253.950000px;}
.yb1{bottom:263.325000px;}
.y1c8{bottom:266.700000px;}
.yc9{bottom:267.825000px;}
.y11f{bottom:272.700000px;}
.y55{bottom:275.325000px;}
.yf3{bottom:275.700000px;}
.y93{bottom:276.075000px;}
.y143{bottom:276.825000px;}
.y189{bottom:280.950000px;}
.yb0{bottom:285.075000px;}
.y1c7{bottom:291.825000px;}
.y8e{bottom:294.450000px;}
.y11e{bottom:294.825000px;}
.yf2{bottom:298.200000px;}
.y142{bottom:299.325000px;}
.y164{bottom:303.855000px;}
.y54{bottom:306.495000px;}
.yaf{bottom:307.230000px;}
.y1ac{bottom:308.370000px;}
.y188{bottom:314.730000px;}
.y1c6{bottom:316.995000px;}
.yf1{bottom:319.995000px;}
.y141{bottom:321.480000px;}
.y11d{bottom:325.995000px;}
.y163{bottom:327.480000px;}
.y1ab{bottom:328.620000px;}
.y187{bottom:337.245000px;}
.yae{bottom:339.495000px;}
.y53{bottom:340.245000px;}
.y1c5{bottom:342.495000px;}
.y140{bottom:343.245000px;}
.y1aa{bottom:350.745000px;}
.yf0{bottom:351.480000px;}
.y162{bottom:351.855000px;}
.y186{bottom:359.370000px;}
.y11c{bottom:359.745000px;}
.y51{bottom:362.745000px;}
.y13f{bottom:365.355000px;}
.y1c4{bottom:367.620000px;}
.y52{bottom:368.730000px;}
.y1a9{bottom:372.870000px;}
.y161{bottom:374.370000px;}
.yad{bottom:375.870000px;}
.y185{bottom:381.120000px;}
.y50{bottom:384.495000px;}
.y13e{bottom:387.495000px;}
.y11b{bottom:390.870000px;}
.y1c3{bottom:393.120000px;}
.yab{bottom:394.245000px;}
.y1a8{bottom:394.620000px;}
.y7e{bottom:395.745000px;}
.y160{bottom:396.120000px;}
.y4f{bottom:406.620000px;}
.y13d{bottom:409.245000px;}
.y11a{bottom:412.995000px;}
.y184{bottom:413.370000px;}
.yef{bottom:415.995000px;}
.yaa{bottom:416.370000px;}
.y1a7{bottom:416.745000px;}
.y15f{bottom:418.245000px;}
.y1c2{bottom:427.245000px;}
.y4e{bottom:428.370000px;}
.y10e{bottom:430.995000px;}
.y13c{bottom:431.400000px;}
.y31{bottom:432.900000px;}
.ya9{bottom:437.025000px;}
.yee{bottom:438.150000px;}
.y1a6{bottom:438.525000px;}
.y15e{bottom:440.025000px;}
.y183{bottom:449.775000px;}
.y4d{bottom:450.525000px;}
.y1c1{bottom:452.400000px;}
.y13b{bottom:453.150000px;}
.ya8{bottom:458.025000px;}
.yed{bottom:459.900000px;}
.y1a5{bottom:460.650000px;}
.y30{bottom:461.400000px;}
.y15d{bottom:462.150000px;}
.y182{bottom:471.900000px;}
.y4c{bottom:472.275000px;}
.y13a{bottom:475.275000px;}
.y1c0{bottom:477.900000px;}
.ya7{bottom:479.025000px;}
.yeb{bottom:482.025000px;}
.y1a4{bottom:482.775000px;}
.y15c{bottom:484.275000px;}
.yec{bottom:488.025000px;}
.y2f{bottom:491.025000px;}
.y181{bottom:493.650000px;}
.y4b{bottom:494.400000px;}
.y139{bottom:497.025000px;}
.ya6{bottom:499.650000px;}
.y1bf{bottom:503.025000px;}
.yea{bottom:504.150000px;}
.y1a3{bottom:504.525000px;}
.y15b{bottom:506.025000px;}
.y116{bottom:512.025000px;}
.y180{bottom:515.775000px;}
.y4a{bottom:516.525000px;}
.ya5{bottom:520.650000px;}
.y1de{bottom:521.025000px;}
.yc7{bottom:524.025000px;}
.y2e{bottom:525.150000px;}
.ye9{bottom:525.900000px;}
.y1a2{bottom:526.650000px;}
.y138{bottom:528.150000px;}
.y17f{bottom:537.525000px;}
.y49{bottom:538.275000px;}
.ya4{bottom:541.650000px;}
.yc1{bottom:542.400000px;}
.y1dd{bottom:546.150000px;}
.ye8{bottom:548.025000px;}
.y1a1{bottom:548.400000px;}
.y15a{bottom:549.900000px;}
.y1be{bottom:553.650000px;}
.y74{bottom:557.775000px;}
.y17e{bottom:559.650000px;}
.y48{bottom:560.445000px;}
.ya3{bottom:562.320000px;}
.y2d{bottom:563.820000px;}
.ye7{bottom:569.820000px;}
.y1a0{bottom:570.570000px;}
.y1dc{bottom:571.320000px;}
.y159{bottom:572.070000px;}
.y137{bottom:575.445000px;}
.y1bd{bottom:578.820000px;}
.y17d{bottom:581.820000px;}
.y47{bottom:582.195000px;}
.ya2{bottom:590.070000px;}
.ye6{bottom:591.945000px;}
.y19f{bottom:592.320000px;}
.y10c{bottom:593.445000px;}
.y158{bottom:593.820000px;}
.y1db{bottom:596.820000px;}
.y2c{bottom:597.570000px;}
.y136{bottom:599.070000px;}
.y17c{bottom:603.570000px;}
.y46{bottom:604.320000px;}
.ya1{bottom:612.570000px;}
.ye5{bottom:613.695000px;}
.y19e{bottom:614.445000px;}
.y157{bottom:615.945000px;}
.y2b{bottom:617.445000px;}
.y1da{bottom:621.945000px;}
.y135{bottom:623.445000px;}
.y17b{bottom:625.695000px;}
.y1bc{bottom:629.445000px;}
.ye4{bottom:633.945000px;}
.ya0{bottom:634.695000px;}
.y19d{bottom:636.570000px;}
.y2a{bottom:637.695000px;}
.y156{bottom:638.070000px;}
.y45{bottom:639.945000px;}
.y134{bottom:647.445000px;}
.yc0{bottom:652.320000px;}
.y10b{bottom:654.570000px;}
.ye3{bottom:656.070000px;}
.y9f{bottom:656.445000px;}
.y29{bottom:657.945000px;}
.y19c{bottom:658.320000px;}
.y155{bottom:659.820000px;}
.y6d{bottom:661.320000px;}
.y44{bottom:663.945000px;}
.y17a{bottom:669.570000px;}
.y133{bottom:669.945000px;}
.y1d9{bottom:672.570000px;}
.ye2{bottom:678.195000px;}
.y9e{bottom:678.570000px;}
.ybf{bottom:679.695000px;}
.y1bb{bottom:680.070000px;}
.y19b{bottom:680.445000px;}
.y154{bottom:681.945000px;}
.y28{bottom:682.695000px;}
.y108{bottom:684.945000px;}
.y43{bottom:687.945000px;}
.y132{bottom:691.725000px;}
.y1d8{bottom:697.725000px;}
.ye1{bottom:700.350000px;}
.ybe{bottom:701.850000px;}
.y19a{bottom:702.225000px;}
.y153{bottom:703.725000px;}
.y6f{bottom:705.975000px;}
.y9d{bottom:710.850000px;}
.y42{bottom:711.975000px;}
.y179{bottom:713.475000px;}
.y1ba{bottom:714.225000px;}
.y27{bottom:716.100000px;}
.ye0{bottom:722.475000px;}
.y1d7{bottom:723.225000px;}
.ybd{bottom:723.975000px;}
.y199{bottom:724.350000px;}
.y152{bottom:725.850000px;}
.y26{bottom:735.600000px;}
.y41{bottom:735.975000px;}
.y14{bottom:737.302050px;}
.y107{bottom:738.225000px;}
.y1b9{bottom:739.350000px;}
.ydf{bottom:744.225000px;}
.y6c{bottom:745.725000px;}
.y13{bottom:746.302050px;}
.y198{bottom:746.475000px;}
.y9c{bottom:747.225000px;}
.y1d6{bottom:748.350000px;}
.y3{bottom:750.708450px;}
.y25{bottom:755.100000px;}
.y178{bottom:757.350000px;}
.y151{bottom:758.100000px;}
.y40{bottom:759.975000px;}
.y131{bottom:760.350000px;}
.y106{bottom:760.725000px;}
.y1b8{bottom:764.850000px;}
.yde{bottom:766.350000px;}
.ybc{bottom:767.850000px;}
.y197{bottom:768.225000px;}
.y1d5{bottom:773.100000px;}
.y177{bottom:779.475000px;}
.y24{bottom:779.850000px;}
.y6b{bottom:781.725000px;}
.y105{bottom:782.850000px;}
.y130{bottom:783.975000px;}
.y3f{bottom:784.350000px;}
.y9b{bottom:785.100000px;}
.ybb{bottom:789.600000px;}
.y1b7{bottom:789.975000px;}
.y196{bottom:790.350000px;}
.y150{bottom:794.475000px;}
.y1d4{bottom:796.725000px;}
.ydd{bottom:797.850000px;}
.y2{bottom:800.208450px;}
.y176{bottom:801.600000px;}
.y12{bottom:802.252050px;}
.y104{bottom:804.975000px;}
.y6a{bottom:805.725000px;}
.y12f{bottom:806.475000px;}
.y9a{bottom:807.225000px;}
.y3e{bottom:808.350000px;}
.yba{bottom:811.725000px;}
.y195{bottom:812.100000px;}
.y1b6{bottom:815.475000px;}
.y14f{bottom:817.020000px;}
.y23{bottom:818.520000px;}
.y175{bottom:823.380000px;}
.y11{bottom:825.727050px;}
.y103{bottom:826.755000px;}
.y12e{bottom:828.255000px;}
.y99{bottom:829.380000px;}
.y69{bottom:830.130000px;}
.y3d{bottom:830.880000px;}
.y1d3{bottom:831.255000px;}
.yb9{bottom:833.880000px;}
.y194{bottom:834.255000px;}
.y14e{bottom:838.770000px;}
.y1b5{bottom:840.630000px;}
.y174{bottom:845.520000px;}
.y102{bottom:848.895000px;}
.y10{bottom:849.202050px;}
.y1{bottom:849.708450px;}
.y3c{bottom:852.630000px;}
.y68{bottom:854.130000px;}
.yb8{bottom:855.645000px;}
.y193{bottom:856.395000px;}
.y22{bottom:856.755000px;}
.y12d{bottom:860.505000px;}
.y14d{bottom:860.880000px;}
.yf7{bottom:862.005000px;}
.y1b4{bottom:865.770000px;}
.y173{bottom:867.255000px;}
.y101{bottom:870.630000px;}
.yf{bottom:872.677050px;}
.y3b{bottom:874.755000px;}
.y98{bottom:875.895000px;}
.y67{bottom:876.645000px;}
.yb7{bottom:877.755000px;}
.y192{bottom:878.130000px;}
.y1d2{bottom:881.505000px;}
.yf6{bottom:883.005000px;}
.y172{bottom:889.380000px;}
.y21{bottom:890.130000px;}
.y1b3{bottom:891.255000px;}
.y100{bottom:892.755000px;}
.ye{bottom:896.152050px;}
.y3a{bottom:896.505000px;}
.y12c{bottom:896.880000px;}
.y66{bottom:898.380000px;}
.y191{bottom:900.255000px;}
.y14c{bottom:904.755000px;}
.y1d1{bottom:907.005000px;}
.y20{bottom:908.505000px;}
.y171{bottom:911.505000px;}
.yff{bottom:914.880000px;}
.y1b2{bottom:916.380000px;}
.y39{bottom:918.630000px;}
.y12b{bottom:919.005000px;}
.yd{bottom:919.627050px;}
.y65{bottom:920.505000px;}
.y190{bottom:922.005000px;}
.y14b{bottom:926.880000px;}
.y1f{bottom:927.255000px;}
.y1d0{bottom:932.130000px;}
.y170{bottom:933.255000px;}
.yfe{bottom:936.630000px;}
.y38{bottom:940.755000px;}
.y1b1{bottom:941.880000px;}
.y64{bottom:942.255000px;}
.yc{bottom:943.102050px;}
.y18f{bottom:944.130000px;}
.yf4{bottom:944.145000px;}
.y14a{bottom:948.675000px;}
.y5{bottom:948.933600px;}
.y12a{bottom:951.300000px;}
.y1e{bottom:952.050000px;}
.y16f{bottom:955.425000px;}
.y1cf{bottom:957.675000px;}
.y37{bottom:962.550000px;}
.y63{bottom:964.425000px;}
.y18e{bottom:966.300000px;}
.yb{bottom:966.577050px;}
.y1b0{bottom:967.050000px;}
.yfd{bottom:970.800000px;}
.y16e{bottom:977.175000px;}
.y1ce{bottom:982.800000px;}
.y36{bottom:984.675000px;}
.y1d{bottom:985.800000px;}
.y62{bottom:986.550000px;}
.y129{bottom:987.675000px;}
.ydc{bottom:988.050000px;}
.ya{bottom:990.052050px;}
.y1af{bottom:992.175000px;}
.y149{bottom:992.925000px;}
.y16d{bottom:999.300000px;}
.y1c{bottom:1006.050000px;}
.y35{bottom:1006.425000px;}
.y1cd{bottom:1007.925000px;}
.y61{bottom:1008.300000px;}
.y128{bottom:1009.425000px;}
.y18d{bottom:1010.175000px;}
.ydb{bottom:1012.050000px;}
.yfc{bottom:1013.550000px;}
.y148{bottom:1014.675000px;}
.y4{bottom:1015.833750px;}
.y16c{bottom:1021.050000px;}
.y1ae{bottom:1026.675000px;}
.y34{bottom:1028.550000px;}
.y60{bottom:1030.425000px;}
.y1b{bottom:1030.800000px;}
.yfa{bottom:1031.175000px;}
.y127{bottom:1031.550000px;}
.y18c{bottom:1031.925000px;}
.yda{bottom:1036.050000px;}
.y147{bottom:1036.800000px;}
.y1cc{bottom:1042.425000px;}
.y33{bottom:1050.675000px;}
.y5f{bottom:1052.175000px;}
.y9{bottom:1052.707650px;}
.y16b{bottom:1053.300000px;}
.y126{bottom:1053.675000px;}
.y18b{bottom:1054.050000px;}
.yd9{bottom:1058.550000px;}
.y1ad{bottom:1060.800000px;}
.y146{bottom:1064.550000px;}
.y1cb{bottom:1067.550000px;}
.y1a{bottom:1069.425000px;}
.y32{bottom:1072.425000px;}
.y5e{bottom:1074.330000px;}
.y125{bottom:1075.455000px;}
.y18a{bottom:1075.830000px;}
.yd8{bottom:1080.705000px;}
.y1ca{bottom:1092.705000px;}
.y16a{bottom:1094.580000px;}
.y5d{bottom:1096.455000px;}
.y19{bottom:1106.580000px;}
.yf9{bottom:1112.580000px;}
.yd7{bottom:1112.955000px;}
.y5c{bottom:1118.205000px;}
.y8{bottom:1124.332350px;}
.y7{bottom:1138.732350px;}
.y15{bottom:1245.750000px;}
.h23{height:19.875000px;}
.h21{height:19.912500px;}
.h22{height:20.250000px;}
.h24{height:21.375000px;}
.h25{height:21.735000px;}
.h20{height:22.125000px;}
.h2b{height:24.787500px;}
.h8{height:30.933000px;}
.h19{height:34.125000px;}
.h7{height:35.352000px;}
.h2e{height:40.162500px;}
.h1a{height:43.912500px;}
.hd{height:44.928000px;}
.ha{height:45.585938px;}
.h9{height:45.908203px;}
.h15{height:47.742188px;}
.h13{height:48.049805px;}
.h33{height:48.203613px;}
.h6{height:50.061000px;}
.h30{height:50.112305px;}
.h17{height:50.144531px;}
.h14{height:50.499023px;}
.he{height:53.709961px;}
.h32{height:54.914062px;}
.h29{height:55.089844px;}
.h16{height:59.677734px;}
.h2c{height:60.375000px;}
.h2a{height:61.435547px;}
.h1f{height:64.271484px;}
.h1c{height:65.645508px;}
.h28{height:67.579102px;}
.hc{height:71.613281px;}
.h11{height:73.722656px;}
.h18{height:78.787500px;}
.h31{height:80.287500px;}
.h2d{height:80.662500px;}
.hb{height:81.585938px;}
.hf{height:82.634766px;}
.h10{height:83.548828px;}
.h12{height:95.484375px;}
.h3{height:97.807500px;}
.h1e{height:100.537500px;}
.h1b{height:102.787500px;}
.h26{height:109.162500px;}
.h2{height:132.570000px;}
.h1d{height:161.280000px;}
.h5{height:210.528000px;}
.h2f{height:222.825000px;}
.h4{height:265.140000px;}
.h27{height:283.200000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w7{width:130.912500px;}
.w5{width:133.950000px;}
.w8{width:136.200000px;}
.w9{width:136.537500px;}
.wa{width:139.200000px;}
.wb{width:339.525000px;}
.w6{width:545.100000px;}
.wc{width:679.800000px;}
.w4{width:892.499973px;}
.w3{width:892.499987px;}
.w2{width:892.500000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xd{left:-21.375013px;}
.x0{left:0.000000px;}
.x17{left:3.750000px;}
.x1e{left:7.125000px;}
.x1f{left:26.287500px;}
.x20{left:53.287500px;}
.x10{left:85.162487px;}
.x26{left:90.037487px;}
.x15{left:91.162487px;}
.x16{left:106.537500px;}
.xb{left:112.486650px;}
.xa{left:114.752100px;}
.x27{left:117.037487px;}
.x1c{left:127.537487px;}
.x11{left:139.199987px;}
.x28{left:166.199987px;}
.x2c{left:193.199987px;}
.x2b{left:216.824987px;}
.x2a{left:220.949987px;}
.x29{left:225.119987px;}
.x18{left:241.245000px;}
.x1{left:244.544100px;}
.x2d{left:247.244987px;}
.x6{left:264.875850px;}
.x14{left:301.244987px;}
.xc{left:369.121650px;}
.x19{left:372.900000px;}
.x21{left:432.569973px;}
.x22{left:438.569987px;}
.x1d{left:446.820000px;}
.x12{left:475.694973px;}
.x8{left:478.391400px;}
.x13{left:481.694987px;}
.x1a{left:509.850000px;}
.x4{left:522.602400px;}
.x9{left:536.099400px;}
.x2{left:548.114100px;}
.x3{left:596.229450px;}
.x7{left:615.804300px;}
.x24{left:625.394973px;}
.x25{left:631.379987px;}
.x1b{left:647.145000px;}
.x5{left:786.224400px;}
.x23{left:791.954987px;}
.xf{left:799.829987px;}
.xe{left:807.704987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:32.000000pt;}
.ls1{letter-spacing:-1.600000pt;}
.ls8{letter-spacing:-0.522667pt;}
.ls27{letter-spacing:-0.448000pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls9{letter-spacing:-0.410667pt;}
.ls1f{letter-spacing:-0.394667pt;}
.lsa{letter-spacing:-0.392000pt;}
.ls17{letter-spacing:-0.373333pt;}
.ls28{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.266667pt;}
.lse{letter-spacing:-0.245333pt;}
.ls20{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.117333pt;}
.ls29{letter-spacing:-0.053333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.010667pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.181333pt;}
.ls10{letter-spacing:0.192000pt;}
.ls16{letter-spacing:0.202667pt;}
.lsf{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.261333pt;}
.ls1b{letter-spacing:0.277333pt;}
.ls3{letter-spacing:0.373333pt;}
.ls23{letter-spacing:0.522667pt;}
.ls12{letter-spacing:0.565333pt;}
.ls2b{letter-spacing:4.202667pt;}
.ls2a{letter-spacing:9.536000pt;}
.ls15{letter-spacing:10.869333pt;}
.ls19{letter-spacing:10.922667pt;}
.ls26{letter-spacing:12.202667pt;}
.ls25{letter-spacing:16.202667pt;}
.ls6{letter-spacing:24.202667pt;}
.ls24{letter-spacing:28.874667pt;}
.ls21{letter-spacing:30.208000pt;}
.ls22{letter-spacing:31.541333pt;}
.ls11{letter-spacing:39.541333pt;}
.lsc{letter-spacing:39.674667pt;}
.ls13{letter-spacing:43.690667pt;}
.ls14{letter-spacing:43.824000pt;}
.ls2{letter-spacing:64.256000pt;}
.lsd{letter-spacing:85.445333pt;}
.ls7{letter-spacing:753.829333pt;}
.ws3{word-spacing:-64.256000pt;}
.wse{word-spacing:-64.000000pt;}
.wsd{word-spacing:-24.714667pt;}
.wsa{word-spacing:-16.352000pt;}
.wsf{word-spacing:-14.656000pt;}
.ws15{word-spacing:-14.474667pt;}
.ws10{word-spacing:-14.464000pt;}
.ws18{word-spacing:-14.410667pt;}
.ws19{word-spacing:-14.197333pt;}
.ws17{word-spacing:-14.144000pt;}
.ws14{word-spacing:-14.069333pt;}
.ws16{word-spacing:-14.016000pt;}
.ws1a{word-spacing:-13.258667pt;}
.wsb{word-spacing:-12.848000pt;}
.wsc{word-spacing:-12.264000pt;}
.ws12{word-spacing:-12.053333pt;}
.ws13{word-spacing:-11.786667pt;}
.ws11{word-spacing:-11.680000pt;}
.ws6{word-spacing:-1.232000pt;}
.ws9{word-spacing:-1.045333pt;}
.ws8{word-spacing:-0.373333pt;}
.ws0{word-spacing:-0.120000pt;}
.ws1{word-spacing:0.000000pt;}
.ws7{word-spacing:0.426667pt;}
.ws2{word-spacing:1.600000pt;}
.ws5{word-spacing:711.306667pt;}
.ws4{word-spacing:743.840000pt;}
._37{margin-left:-87.946667pt;}
._5{margin-left:-73.920000pt;}
._21{margin-left:-4.784000pt;}
._0{margin-left:-3.664000pt;}
._3{margin-left:-2.560000pt;}
._2{margin-left:-1.600000pt;}
._1{width:1.664000pt;}
._29{width:2.885333pt;}
._2e{width:4.016000pt;}
._22{width:5.248000pt;}
._23{width:6.336000pt;}
._24{width:7.248000pt;}
._31{width:8.192000pt;}
._30{width:9.408000pt;}
._27{width:10.304000pt;}
._28{width:11.200000pt;}
._34{width:12.096000pt;}
._2f{width:13.056000pt;}
._2c{width:16.000000pt;}
._2d{width:16.960000pt;}
._35{width:18.304000pt;}
._2a{width:19.520000pt;}
._2b{width:20.864000pt;}
._26{width:21.888000pt;}
._25{width:22.912000pt;}
._32{width:29.376000pt;}
._33{width:30.736000pt;}
._4{width:37.504000pt;}
._36{width:41.664000pt;}
._9{width:186.720000pt;}
._8{width:190.986667pt;}
._20{width:517.264000pt;}
._1e{width:528.906667pt;}
._6{width:611.253333pt;}
._b{width:633.013333pt;}
._7{width:714.986667pt;}
._38{width:753.829333pt;}
._a{width:795.200000pt;}
._f{width:807.205333pt;}
._1c{width:963.632000pt;}
._1b{width:1147.024000pt;}
._10{width:1243.173333pt;}
._1d{width:1401.877333pt;}
._11{width:1647.098667pt;}
._d{width:1656.133333pt;}
._e{width:1679.648000pt;}
._16{width:1694.298667pt;}
._18{width:1697.136000pt;}
._15{width:1703.162667pt;}
._1a{width:1726.981333pt;}
._12{width:1801.344000pt;}
._17{width:1881.306667pt;}
._14{width:1893.936000pt;}
._13{width:1899.914667pt;}
._19{width:1991.624000pt;}
._1f{width:2093.466667pt;}
._c{width:2133.904000pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs9{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fsc{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:74.666667pt;}
.fsd{font-size:85.333333pt;}
.fsa{font-size:96.000000pt;}
.fs1{font-size:120.000000pt;}
.fs0{font-size:160.000000pt;}
.fs3{font-size:256.000000pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:4.000000pt;}
.yf8{bottom:4.013333pt;}
.y10a{bottom:4.026667pt;}
.y73{bottom:4.333333pt;}
.yac{bottom:5.000000pt;}
.y79{bottom:5.040000pt;}
.yf5{bottom:6.693333pt;}
.y70{bottom:10.000000pt;}
.yc6{bottom:11.333333pt;}
.y85{bottom:13.000000pt;}
.y7d{bottom:14.040000pt;}
.y71{bottom:14.333333pt;}
.yd5{bottom:21.666667pt;}
.y119{bottom:21.693333pt;}
.y8c{bottom:22.000000pt;}
.y109{bottom:22.026667pt;}
.y92{bottom:22.040000pt;}
.y78{bottom:23.040000pt;}
.y72{bottom:24.026667pt;}
.yc5{bottom:29.373333pt;}
.y6e{bottom:29.693333pt;}
.y84{bottom:31.000000pt;}
.y7c{bottom:31.706667pt;}
.yd4{bottom:39.666667pt;}
.y118{bottom:39.693333pt;}
.y91{bottom:39.706667pt;}
.y10d{bottom:40.000000pt;}
.y8b{bottom:40.026667pt;}
.y77{bottom:40.706667pt;}
.yc4{bottom:47.373333pt;}
.y83{bottom:49.026667pt;}
.y7b{bottom:49.706667pt;}
.yd3{bottom:57.666667pt;}
.yfb{bottom:57.693333pt;}
.y90{bottom:57.706667pt;}
.y8a{bottom:58.026667pt;}
.y117{bottom:58.040000pt;}
.y76{bottom:58.706667pt;}
.yc3{bottom:65.040000pt;}
.y18{bottom:65.700000pt;}
.y82{bottom:66.693333pt;}
.y7a{bottom:67.706667pt;}
.yd2{bottom:75.373333pt;}
.y89{bottom:75.693333pt;}
.y8f{bottom:75.706667pt;}
.y115{bottom:76.693333pt;}
.y75{bottom:76.706667pt;}
.yc2{bottom:83.040000pt;}
.y17{bottom:83.700000pt;}
.y81{bottom:84.693333pt;}
.y6{bottom:89.052800pt;}
.yd1{bottom:93.373333pt;}
.y88{bottom:93.693333pt;}
.y114{bottom:94.693333pt;}
.y16{bottom:98.033333pt;}
.y80{bottom:102.693333pt;}
.yd0{bottom:111.373333pt;}
.y87{bottom:111.693333pt;}
.y113{bottom:112.693333pt;}
.y5b{bottom:113.366667pt;}
.y7f{bottom:120.693333pt;}
.y86{bottom:129.360000pt;}
.ycf{bottom:129.373333pt;}
.y169{bottom:129.700000pt;}
.y5a{bottom:130.366667pt;}
.y112{bottom:130.733333pt;}
.y59{bottom:135.706667pt;}
.yb6{bottom:136.373333pt;}
.y124{bottom:144.706667pt;}
.y168{bottom:145.706667pt;}
.yce{bottom:147.040000pt;}
.y111{bottom:148.400000pt;}
.y58{bottom:149.693333pt;}
.yb5{bottom:155.733333pt;}
.y167{bottom:162.066667pt;}
.y123{bottom:164.400000pt;}
.ycd{bottom:165.040000pt;}
.y110{bottom:166.400000pt;}
.y97{bottom:167.400000pt;}
.yb4{bottom:175.400000pt;}
.y166{bottom:179.066667pt;}
.yd6{bottom:179.400000pt;}
.y145{bottom:182.733333pt;}
.ycc{bottom:183.066667pt;}
.y122{bottom:183.733333pt;}
.y10f{bottom:184.400000pt;}
.y96{bottom:186.733333pt;}
.y1c9{bottom:192.066667pt;}
.yb3{bottom:195.066667pt;}
.y165{bottom:198.733333pt;}
.ycb{bottom:200.733333pt;}
.yc8{bottom:202.400000pt;}
.y121{bottom:203.400000pt;}
.y144{bottom:203.733333pt;}
.y57{bottom:205.733333pt;}
.y95{bottom:206.400000pt;}
.yb2{bottom:214.400000pt;}
.yca{bottom:220.066667pt;}
.y120{bottom:223.066667pt;}
.y56{bottom:225.066667pt;}
.y94{bottom:225.733333pt;}
.yb1{bottom:234.066667pt;}
.y1c8{bottom:237.066667pt;}
.yc9{bottom:238.066667pt;}
.y11f{bottom:242.400000pt;}
.y55{bottom:244.733333pt;}
.yf3{bottom:245.066667pt;}
.y93{bottom:245.400000pt;}
.y143{bottom:246.066667pt;}
.y189{bottom:249.733333pt;}
.yb0{bottom:253.400000pt;}
.y1c7{bottom:259.400000pt;}
.y8e{bottom:261.733333pt;}
.y11e{bottom:262.066667pt;}
.yf2{bottom:265.066667pt;}
.y142{bottom:266.066667pt;}
.y164{bottom:270.093333pt;}
.y54{bottom:272.440000pt;}
.yaf{bottom:273.093333pt;}
.y1ac{bottom:274.106667pt;}
.y188{bottom:279.760000pt;}
.y1c6{bottom:281.773333pt;}
.yf1{bottom:284.440000pt;}
.y141{bottom:285.760000pt;}
.y11d{bottom:289.773333pt;}
.y163{bottom:291.093333pt;}
.y1ab{bottom:292.106667pt;}
.y187{bottom:299.773333pt;}
.yae{bottom:301.773333pt;}
.y53{bottom:302.440000pt;}
.y1c5{bottom:304.440000pt;}
.y140{bottom:305.106667pt;}
.y1aa{bottom:311.773333pt;}
.yf0{bottom:312.426667pt;}
.y162{bottom:312.760000pt;}
.y186{bottom:319.440000pt;}
.y11c{bottom:319.773333pt;}
.y51{bottom:322.440000pt;}
.y13f{bottom:324.760000pt;}
.y1c4{bottom:326.773333pt;}
.y52{bottom:327.760000pt;}
.y1a9{bottom:331.440000pt;}
.y161{bottom:332.773333pt;}
.yad{bottom:334.106667pt;}
.y185{bottom:338.773333pt;}
.y50{bottom:341.773333pt;}
.y13e{bottom:344.440000pt;}
.y11b{bottom:347.440000pt;}
.y1c3{bottom:349.440000pt;}
.yab{bottom:350.440000pt;}
.y1a8{bottom:350.773333pt;}
.y7e{bottom:351.773333pt;}
.y160{bottom:352.106667pt;}
.y4f{bottom:361.440000pt;}
.y13d{bottom:363.773333pt;}
.y11a{bottom:367.106667pt;}
.y184{bottom:367.440000pt;}
.yef{bottom:369.773333pt;}
.yaa{bottom:370.106667pt;}
.y1a7{bottom:370.440000pt;}
.y15f{bottom:371.773333pt;}
.y1c2{bottom:379.773333pt;}
.y4e{bottom:380.773333pt;}
.y10e{bottom:383.106667pt;}
.y13c{bottom:383.466667pt;}
.y31{bottom:384.800000pt;}
.ya9{bottom:388.466667pt;}
.yee{bottom:389.466667pt;}
.y1a6{bottom:389.800000pt;}
.y15e{bottom:391.133333pt;}
.y183{bottom:399.800000pt;}
.y4d{bottom:400.466667pt;}
.y1c1{bottom:402.133333pt;}
.y13b{bottom:402.800000pt;}
.ya8{bottom:407.133333pt;}
.yed{bottom:408.800000pt;}
.y1a5{bottom:409.466667pt;}
.y30{bottom:410.133333pt;}
.y15d{bottom:410.800000pt;}
.y182{bottom:419.466667pt;}
.y4c{bottom:419.800000pt;}
.y13a{bottom:422.466667pt;}
.y1c0{bottom:424.800000pt;}
.ya7{bottom:425.800000pt;}
.yeb{bottom:428.466667pt;}
.y1a4{bottom:429.133333pt;}
.y15c{bottom:430.466667pt;}
.yec{bottom:433.800000pt;}
.y2f{bottom:436.466667pt;}
.y181{bottom:438.800000pt;}
.y4b{bottom:439.466667pt;}
.y139{bottom:441.800000pt;}
.ya6{bottom:444.133333pt;}
.y1bf{bottom:447.133333pt;}
.yea{bottom:448.133333pt;}
.y1a3{bottom:448.466667pt;}
.y15b{bottom:449.800000pt;}
.y116{bottom:455.133333pt;}
.y180{bottom:458.466667pt;}
.y4a{bottom:459.133333pt;}
.ya5{bottom:462.800000pt;}
.y1de{bottom:463.133333pt;}
.yc7{bottom:465.800000pt;}
.y2e{bottom:466.800000pt;}
.ye9{bottom:467.466667pt;}
.y1a2{bottom:468.133333pt;}
.y138{bottom:469.466667pt;}
.y17f{bottom:477.800000pt;}
.y49{bottom:478.466667pt;}
.ya4{bottom:481.466667pt;}
.yc1{bottom:482.133333pt;}
.y1dd{bottom:485.466667pt;}
.ye8{bottom:487.133333pt;}
.y1a1{bottom:487.466667pt;}
.y15a{bottom:488.800000pt;}
.y1be{bottom:492.133333pt;}
.y74{bottom:495.800000pt;}
.y17e{bottom:497.466667pt;}
.y48{bottom:498.173333pt;}
.ya3{bottom:499.840000pt;}
.y2d{bottom:501.173333pt;}
.ye7{bottom:506.506667pt;}
.y1a0{bottom:507.173333pt;}
.y1dc{bottom:507.840000pt;}
.y159{bottom:508.506667pt;}
.y137{bottom:511.506667pt;}
.y1bd{bottom:514.506667pt;}
.y17d{bottom:517.173333pt;}
.y47{bottom:517.506667pt;}
.ya2{bottom:524.506667pt;}
.ye6{bottom:526.173333pt;}
.y19f{bottom:526.506667pt;}
.y10c{bottom:527.506667pt;}
.y158{bottom:527.840000pt;}
.y1db{bottom:530.506667pt;}
.y2c{bottom:531.173333pt;}
.y136{bottom:532.506667pt;}
.y17c{bottom:536.506667pt;}
.y46{bottom:537.173333pt;}
.ya1{bottom:544.506667pt;}
.ye5{bottom:545.506667pt;}
.y19e{bottom:546.173333pt;}
.y157{bottom:547.506667pt;}
.y2b{bottom:548.840000pt;}
.y1da{bottom:552.840000pt;}
.y135{bottom:554.173333pt;}
.y17b{bottom:556.173333pt;}
.y1bc{bottom:559.506667pt;}
.ye4{bottom:563.506667pt;}
.ya0{bottom:564.173333pt;}
.y19d{bottom:565.840000pt;}
.y2a{bottom:566.840000pt;}
.y156{bottom:567.173333pt;}
.y45{bottom:568.840000pt;}
.y134{bottom:575.506667pt;}
.yc0{bottom:579.840000pt;}
.y10b{bottom:581.840000pt;}
.ye3{bottom:583.173333pt;}
.y9f{bottom:583.506667pt;}
.y29{bottom:584.840000pt;}
.y19c{bottom:585.173333pt;}
.y155{bottom:586.506667pt;}
.y6d{bottom:587.840000pt;}
.y44{bottom:590.173333pt;}
.y17a{bottom:595.173333pt;}
.y133{bottom:595.506667pt;}
.y1d9{bottom:597.840000pt;}
.ye2{bottom:602.840000pt;}
.y9e{bottom:603.173333pt;}
.ybf{bottom:604.173333pt;}
.y1bb{bottom:604.506667pt;}
.y19b{bottom:604.840000pt;}
.y154{bottom:606.173333pt;}
.y28{bottom:606.840000pt;}
.y108{bottom:608.840000pt;}
.y43{bottom:611.506667pt;}
.y132{bottom:614.866667pt;}
.y1d8{bottom:620.200000pt;}
.ye1{bottom:622.533333pt;}
.ybe{bottom:623.866667pt;}
.y19a{bottom:624.200000pt;}
.y153{bottom:625.533333pt;}
.y6f{bottom:627.533333pt;}
.y9d{bottom:631.866667pt;}
.y42{bottom:632.866667pt;}
.y179{bottom:634.200000pt;}
.y1ba{bottom:634.866667pt;}
.y27{bottom:636.533333pt;}
.ye0{bottom:642.200000pt;}
.y1d7{bottom:642.866667pt;}
.ybd{bottom:643.533333pt;}
.y199{bottom:643.866667pt;}
.y152{bottom:645.200000pt;}
.y26{bottom:653.866667pt;}
.y41{bottom:654.200000pt;}
.y14{bottom:655.379600pt;}
.y107{bottom:656.200000pt;}
.y1b9{bottom:657.200000pt;}
.ydf{bottom:661.533333pt;}
.y6c{bottom:662.866667pt;}
.y13{bottom:663.379600pt;}
.y198{bottom:663.533333pt;}
.y9c{bottom:664.200000pt;}
.y1d6{bottom:665.200000pt;}
.y3{bottom:667.296400pt;}
.y25{bottom:671.200000pt;}
.y178{bottom:673.200000pt;}
.y151{bottom:673.866667pt;}
.y40{bottom:675.533333pt;}
.y131{bottom:675.866667pt;}
.y106{bottom:676.200000pt;}
.y1b8{bottom:679.866667pt;}
.yde{bottom:681.200000pt;}
.ybc{bottom:682.533333pt;}
.y197{bottom:682.866667pt;}
.y1d5{bottom:687.200000pt;}
.y177{bottom:692.866667pt;}
.y24{bottom:693.200000pt;}
.y6b{bottom:694.866667pt;}
.y105{bottom:695.866667pt;}
.y130{bottom:696.866667pt;}
.y3f{bottom:697.200000pt;}
.y9b{bottom:697.866667pt;}
.ybb{bottom:701.866667pt;}
.y1b7{bottom:702.200000pt;}
.y196{bottom:702.533333pt;}
.y150{bottom:706.200000pt;}
.y1d4{bottom:708.200000pt;}
.ydd{bottom:709.200000pt;}
.y2{bottom:711.296400pt;}
.y176{bottom:712.533333pt;}
.y12{bottom:713.112933pt;}
.y104{bottom:715.533333pt;}
.y6a{bottom:716.200000pt;}
.y12f{bottom:716.866667pt;}
.y9a{bottom:717.533333pt;}
.y3e{bottom:718.533333pt;}
.yba{bottom:721.533333pt;}
.y195{bottom:721.866667pt;}
.y1b6{bottom:724.866667pt;}
.y14f{bottom:726.240000pt;}
.y23{bottom:727.573333pt;}
.y175{bottom:731.893333pt;}
.y11{bottom:733.979600pt;}
.y103{bottom:734.893333pt;}
.y12e{bottom:736.226667pt;}
.y99{bottom:737.226667pt;}
.y69{bottom:737.893333pt;}
.y3d{bottom:738.560000pt;}
.y1d3{bottom:738.893333pt;}
.yb9{bottom:741.226667pt;}
.y194{bottom:741.560000pt;}
.y14e{bottom:745.573333pt;}
.y1b5{bottom:747.226667pt;}
.y174{bottom:751.573333pt;}
.y102{bottom:754.573333pt;}
.y10{bottom:754.846267pt;}
.y1{bottom:755.296400pt;}
.y3c{bottom:757.893333pt;}
.y68{bottom:759.226667pt;}
.yb8{bottom:760.573333pt;}
.y193{bottom:761.240000pt;}
.y22{bottom:761.560000pt;}
.y12d{bottom:764.893333pt;}
.y14d{bottom:765.226667pt;}
.yf7{bottom:766.226667pt;}
.y1b4{bottom:769.573333pt;}
.y173{bottom:770.893333pt;}
.y101{bottom:773.893333pt;}
.yf{bottom:775.712933pt;}
.y3b{bottom:777.560000pt;}
.y98{bottom:778.573333pt;}
.y67{bottom:779.240000pt;}
.yb7{bottom:780.226667pt;}
.y192{bottom:780.560000pt;}
.y1d2{bottom:783.560000pt;}
.yf6{bottom:784.893333pt;}
.y172{bottom:790.560000pt;}
.y21{bottom:791.226667pt;}
.y1b3{bottom:792.226667pt;}
.y100{bottom:793.560000pt;}
.ye{bottom:796.579600pt;}
.y3a{bottom:796.893333pt;}
.y12c{bottom:797.226667pt;}
.y66{bottom:798.560000pt;}
.y191{bottom:800.226667pt;}
.y14c{bottom:804.226667pt;}
.y1d1{bottom:806.226667pt;}
.y20{bottom:807.560000pt;}
.y171{bottom:810.226667pt;}
.yff{bottom:813.226667pt;}
.y1b2{bottom:814.560000pt;}
.y39{bottom:816.560000pt;}
.y12b{bottom:816.893333pt;}
.yd{bottom:817.446267pt;}
.y65{bottom:818.226667pt;}
.y190{bottom:819.560000pt;}
.y14b{bottom:823.893333pt;}
.y1f{bottom:824.226667pt;}
.y1d0{bottom:828.560000pt;}
.y170{bottom:829.560000pt;}
.yfe{bottom:832.560000pt;}
.y38{bottom:836.226667pt;}
.y1b1{bottom:837.226667pt;}
.y64{bottom:837.560000pt;}
.yc{bottom:838.312933pt;}
.y18f{bottom:839.226667pt;}
.yf4{bottom:839.240000pt;}
.y14a{bottom:843.266667pt;}
.y5{bottom:843.496533pt;}
.y12a{bottom:845.600000pt;}
.y1e{bottom:846.266667pt;}
.y16f{bottom:849.266667pt;}
.y1cf{bottom:851.266667pt;}
.y37{bottom:855.600000pt;}
.y63{bottom:857.266667pt;}
.y18e{bottom:858.933333pt;}
.yb{bottom:859.179600pt;}
.y1b0{bottom:859.600000pt;}
.yfd{bottom:862.933333pt;}
.y16e{bottom:868.600000pt;}
.y1ce{bottom:873.600000pt;}
.y36{bottom:875.266667pt;}
.y1d{bottom:876.266667pt;}
.y62{bottom:876.933333pt;}
.y129{bottom:877.933333pt;}
.ydc{bottom:878.266667pt;}
.ya{bottom:880.046267pt;}
.y1af{bottom:881.933333pt;}
.y149{bottom:882.600000pt;}
.y16d{bottom:888.266667pt;}
.y1c{bottom:894.266667pt;}
.y35{bottom:894.600000pt;}
.y1cd{bottom:895.933333pt;}
.y61{bottom:896.266667pt;}
.y128{bottom:897.266667pt;}
.y18d{bottom:897.933333pt;}
.ydb{bottom:899.600000pt;}
.yfc{bottom:900.933333pt;}
.y148{bottom:901.933333pt;}
.y4{bottom:902.963333pt;}
.y16c{bottom:907.600000pt;}
.y1ae{bottom:912.600000pt;}
.y34{bottom:914.266667pt;}
.y60{bottom:915.933333pt;}
.y1b{bottom:916.266667pt;}
.yfa{bottom:916.600000pt;}
.y127{bottom:916.933333pt;}
.y18c{bottom:917.266667pt;}
.yda{bottom:920.933333pt;}
.y147{bottom:921.600000pt;}
.y1cc{bottom:926.600000pt;}
.y33{bottom:933.933333pt;}
.y5f{bottom:935.266667pt;}
.y9{bottom:935.740133pt;}
.y16b{bottom:936.266667pt;}
.y126{bottom:936.600000pt;}
.y18b{bottom:936.933333pt;}
.yd9{bottom:940.933333pt;}
.y1ad{bottom:942.933333pt;}
.y146{bottom:946.266667pt;}
.y1cb{bottom:948.933333pt;}
.y1a{bottom:950.600000pt;}
.y32{bottom:953.266667pt;}
.y5e{bottom:954.960000pt;}
.y125{bottom:955.960000pt;}
.y18a{bottom:956.293333pt;}
.yd8{bottom:960.626667pt;}
.y1ca{bottom:971.293333pt;}
.y16a{bottom:972.960000pt;}
.y5d{bottom:974.626667pt;}
.y19{bottom:983.626667pt;}
.yf9{bottom:988.960000pt;}
.yd7{bottom:989.293333pt;}
.y5c{bottom:993.960000pt;}
.y8{bottom:999.406533pt;}
.y7{bottom:1012.206533pt;}
.y15{bottom:1107.333333pt;}
.h23{height:17.666667pt;}
.h21{height:17.700000pt;}
.h22{height:18.000000pt;}
.h24{height:19.000000pt;}
.h25{height:19.320000pt;}
.h20{height:19.666667pt;}
.h2b{height:22.033333pt;}
.h8{height:27.496000pt;}
.h19{height:30.333333pt;}
.h7{height:31.424000pt;}
.h2e{height:35.700000pt;}
.h1a{height:39.033333pt;}
.hd{height:39.936000pt;}
.ha{height:40.520833pt;}
.h9{height:40.807292pt;}
.h15{height:42.437500pt;}
.h13{height:42.710938pt;}
.h33{height:42.847656pt;}
.h6{height:44.498667pt;}
.h30{height:44.544271pt;}
.h17{height:44.572917pt;}
.h14{height:44.888021pt;}
.he{height:47.742188pt;}
.h32{height:48.812500pt;}
.h29{height:48.968750pt;}
.h16{height:53.046875pt;}
.h2c{height:53.666667pt;}
.h2a{height:54.609375pt;}
.h1f{height:57.130208pt;}
.h1c{height:58.351562pt;}
.h28{height:60.070312pt;}
.hc{height:63.656250pt;}
.h11{height:65.531250pt;}
.h18{height:70.033333pt;}
.h31{height:71.366667pt;}
.h2d{height:71.700000pt;}
.hb{height:72.520833pt;}
.hf{height:73.453125pt;}
.h10{height:74.265625pt;}
.h12{height:84.875000pt;}
.h3{height:86.940000pt;}
.h1e{height:89.366667pt;}
.h1b{height:91.366667pt;}
.h26{height:97.033333pt;}
.h2{height:117.840000pt;}
.h1d{height:143.360000pt;}
.h5{height:187.136000pt;}
.h2f{height:198.066667pt;}
.h4{height:235.680000pt;}
.h27{height:251.733333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w7{width:116.366667pt;}
.w5{width:119.066667pt;}
.w8{width:121.066667pt;}
.w9{width:121.366667pt;}
.wa{width:123.733333pt;}
.wb{width:301.800000pt;}
.w6{width:484.533333pt;}
.wc{width:604.266667pt;}
.w4{width:793.333310pt;}
.w3{width:793.333322pt;}
.w2{width:793.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xd{left:-19.000012pt;}
.x0{left:0.000000pt;}
.x17{left:3.333333pt;}
.x1e{left:6.333333pt;}
.x1f{left:23.366667pt;}
.x20{left:47.366667pt;}
.x10{left:75.699988pt;}
.x26{left:80.033322pt;}
.x15{left:81.033322pt;}
.x16{left:94.700000pt;}
.xb{left:99.988133pt;}
.xa{left:102.001867pt;}
.x27{left:104.033322pt;}
.x1c{left:113.366655pt;}
.x11{left:123.733322pt;}
.x28{left:147.733322pt;}
.x2c{left:171.733322pt;}
.x2b{left:192.733322pt;}
.x2a{left:196.399988pt;}
.x29{left:200.106655pt;}
.x18{left:214.440000pt;}
.x1{left:217.372533pt;}
.x2d{left:219.773322pt;}
.x6{left:235.445200pt;}
.x14{left:267.773322pt;}
.xc{left:328.108133pt;}
.x19{left:331.466667pt;}
.x21{left:384.506643pt;}
.x22{left:389.839988pt;}
.x1d{left:397.173333pt;}
.x12{left:422.839976pt;}
.x8{left:425.236800pt;}
.x13{left:428.173322pt;}
.x1a{left:453.200000pt;}
.x4{left:464.535467pt;}
.x9{left:476.532800pt;}
.x2{left:487.212533pt;}
.x3{left:529.981733pt;}
.x7{left:547.381600pt;}
.x24{left:555.906643pt;}
.x25{left:561.226655pt;}
.x1b{left:575.240000pt;}
.x5{left:698.866133pt;}
.x23{left:703.959988pt;}
.xf{left:710.959988pt;}
.xe{left:717.959988pt;}
}




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