
    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_b8fb5cf46fa17099c40ac2a4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_272cb7c1f2da2f0e41485261.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5403a32a6f3025c37fc6bc94.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_91af71108f99167b61965539.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_949c98bd0666380127b805c2.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f6e3802bae8ccd961775c3c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.689453;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_35807926293e8d1ea066e70e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_1874b839aebd95de67b5eb0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.689941;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_33858ad46fcccdbe12ad734f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.694824;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_f3836866f5d6267c4a6d0db4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694824;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_9db2069c7aec9e963df55e10.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ee015994b24ffd5570cd79d8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.871582;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_d6531836c3b5e513d94d9efe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.871582;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_1b5b9421c79f94fe242625c0.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_c06f50a6c0988ac88514cc72.woff2')format("woff");}.fff{font-family:fff;line-height:0.871582;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_4fb178c0f686797376b70b24.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.066406;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_70a10447aae488a0237feeb7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.871582;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_6360c9a1e351bd09a25458ce.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.871582;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_3be06c72970286dfa06a42f6.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871582;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_77c20dabba12b3bcb6f89bf7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.871582;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_17eb24cfe40c2db7e49a1c56.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871582;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_77d6bcca1af945eef546abfc.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.871582;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_93faf04d5f90703e834be3d0.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.871582;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:ff18;src:url('chunks/assets/font_ebb3f24dc935b77455ac86eb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.871582;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:ff19;src:url('chunks/assets/font_142989050ee9797a0204aa6e.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.871582;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:ff1a;src:url('chunks/assets/font_6175e3e7f9bb3c8adcd8c9fc.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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;}
.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(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);}
.va{vertical-align:-63.360000px;}
.v7{vertical-align:-61.920000px;}
.vc{vertical-align:-23.760000px;}
.v3{vertical-align:-18.000000px;}
.v6{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.880000px;}
.v5{vertical-align:18.000000px;}
.v2{vertical-align:23.760000px;}
.v9{vertical-align:36.000000px;}
.v8{vertical-align:41.040000px;}
.v1{vertical-align:86.400000px;}
.ls1e{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.305400px;}
.ls1b{letter-spacing:-0.262200px;}
.ls11{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.222000px;}
.ls10{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.109200px;}
.ls14{letter-spacing:-0.108000px;}
.ls17{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.030000px;}
.ls9{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.012000px;}
.ls18{letter-spacing:0.108000px;}
.ls21{letter-spacing:0.120000px;}
.lse{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.312000px;}
.ls2{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.348000px;}
.ls7{letter-spacing:0.354000px;}
.ls3{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.528000px;}
.ls1c{letter-spacing:0.567600px;}
.ls1f{letter-spacing:0.900000px;}
.ls1d{letter-spacing:0.982080px;}
.ls8{letter-spacing:1.620000px;}
.ls13{letter-spacing:2.340000px;}
.ls16{letter-spacing:11.844000px;}
.ls19{letter-spacing:177.300000px;}
.ls20{letter-spacing:405.720000px;}
.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;}
}
.ws1e{word-spacing:-37.756800px;}
.ws2{word-spacing:-32.421600px;}
.wsc{word-spacing:-30.456000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.ws2c{word-spacing:-17.127600px;}
.ws4{word-spacing:-16.560000px;}
.ws23{word-spacing:-16.450800px;}
.ws2b{word-spacing:-16.297800px;}
.ws2f{word-spacing:-16.254600px;}
.ws2e{word-spacing:-15.840000px;}
.ws3{word-spacing:-14.220000px;}
.ws21{word-spacing:-14.004000px;}
.wsa{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.824000px;}
.ws2a{word-spacing:-13.716000px;}
.ws20{word-spacing:-13.626000px;}
.ws29{word-spacing:-13.608000px;}
.ws6{word-spacing:-13.500000px;}
.ws22{word-spacing:-13.392000px;}
.ws1f{word-spacing:-13.284000px;}
.wsb{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.960000px;}
.ws24{word-spacing:-12.204000px;}
.ws27{word-spacing:-11.880000px;}
.ws26{word-spacing:-11.844000px;}
.ws5{word-spacing:-10.440000px;}
.ws2d{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.000000px;}
.ws30{word-spacing:-8.280000px;}
.ws11{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.594000px;}
.ws28{word-spacing:-0.540000px;}
.ws14{word-spacing:-0.486000px;}
.ws17{word-spacing:-0.432000px;}
.ws16{word-spacing:-0.006000px;}
.wsd{word-spacing:0.000000px;}
.wse{word-spacing:0.114000px;}
.ws15{word-spacing:0.162000px;}
.ws10{word-spacing:0.180000px;}
.ws13{word-spacing:0.216000px;}
.ws18{word-spacing:0.696000px;}
.ws12{word-spacing:1.326000px;}
.ws25{word-spacing:3.222000px;}
.ws1a{word-spacing:4.428000px;}
.ws1c{word-spacing:5.184000px;}
.ws19{word-spacing:5.220000px;}
.ws1d{word-spacing:5.418000px;}
.ws1b{word-spacing:5.760000px;}
._10{margin-left:-4.239600px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._3{width:1.306823px;}
._5{width:2.339172px;}
._4{width:3.404353px;}
._6{width:4.958347px;}
._7{width:6.894000px;}
._b{width:7.923530px;}
._9{width:9.072000px;}
._8{width:10.368000px;}
._c{width:11.440707px;}
._e{width:15.138000px;}
._14{width:18.036000px;}
._13{width:45.036000px;}
._2{width:157.593120px;}
._f{width:267.138000px;}
._d{width:284.790000px;}
._12{width:395.785177px;}
._11{width:856.416000px;}
._a{width:1093.666513px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.880000px;}
.fs8{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:81.360000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:3.780000px;}
.y13c{bottom:3.960000px;}
.y135{bottom:4.140000px;}
.y7b{bottom:7.200000px;}
.y7f{bottom:7.560000px;}
.y86{bottom:7.605000px;}
.y194{bottom:8.280000px;}
.y17d{bottom:8.640000px;}
.y14f{bottom:8.820000px;}
.y193{bottom:9.540000px;}
.y1b1{bottom:9.720000px;}
.y165{bottom:9.900000px;}
.y1a5{bottom:10.074000px;}
.yff{bottom:10.620000px;}
.y12b{bottom:13.500000px;}
.y7c{bottom:22.680000px;}
.y142{bottom:22.860000px;}
.y138{bottom:23.034000px;}
.y134{bottom:23.040000px;}
.y79{bottom:27.000000px;}
.y15f{bottom:27.360000px;}
.y164{bottom:28.974000px;}
.y17a{bottom:30.420000px;}
.y15c{bottom:30.780000px;}
.yfd{bottom:33.840000px;}
.y1af{bottom:34.200000px;}
.y78{bottom:45.900000px;}
.y152{bottom:46.260000px;}
.y14d{bottom:47.550000px;}
.y163{bottom:47.874000px;}
.y1a4{bottom:48.054000px;}
.y155{bottom:61.740000px;}
.y1{bottom:76.860000px;}
.y13a{bottom:93.600000px;}
.y96{bottom:97.560000px;}
.y5c{bottom:102.240000px;}
.y31{bottom:108.180000px;}
.y166{bottom:109.440000px;}
.y95{bottom:113.220000px;}
.y139{bottom:116.820000px;}
.y30{bottom:123.660000px;}
.y11d{bottom:125.820000px;}
.ybc{bottom:127.260000px;}
.y94{bottom:128.700000px;}
.y5b{bottom:133.740000px;}
.y162{bottom:138.456000px;}
.y2f{bottom:139.176000px;}
.y137{bottom:140.076000px;}
.y11c{bottom:141.336000px;}
.y10e{bottom:142.416000px;}
.ybb{bottom:142.776000px;}
.y93{bottom:144.216000px;}
.y1a3{bottom:146.736000px;}
.yec{bottom:149.076000px;}
.y5a{bottom:149.256000px;}
.y2e{bottom:154.830000px;}
.y10d{bottom:157.890000px;}
.yba{bottom:158.430000px;}
.y92{bottom:159.870000px;}
.yeb{bottom:164.550000px;}
.y59{bottom:164.730000px;}
.y2d{bottom:170.310000px;}
.y10c{bottom:173.370000px;}
.yb9{bottom:173.550000px;}
.y91{bottom:175.350000px;}
.y136{bottom:178.770000px;}
.y58{bottom:180.030000px;}
.yea{bottom:180.210000px;}
.y189{bottom:185.790000px;}
.y2c{bottom:185.970000px;}
.y10b{bottom:188.850000px;}
.y90{bottom:190.830000px;}
.y161{bottom:196.050000px;}
.y2b{bottom:201.450000px;}
.y10a{bottom:204.510000px;}
.yb8{bottom:205.050000px;}
.y8f{bottom:206.490000px;}
.y57{bottom:211.530000px;}
.ye9{bottom:213.330000px;}
.y2a{bottom:216.930000px;}
.y133{bottom:217.470000px;}
.y1d8{bottom:219.090000px;}
.y15e{bottom:219.270000px;}
.yb7{bottom:220.710000px;}
.y8e{bottom:221.970000px;}
.y56{bottom:227.010000px;}
.y1a2{bottom:227.730000px;}
.y29{bottom:232.410000px;}
.y188{bottom:234.570000px;}
.y1d7{bottom:234.750000px;}
.y109{bottom:235.650000px;}
.yb6{bottom:236.010000px;}
.y8d{bottom:237.450000px;}
.y55{bottom:242.670000px;}
.y16f{bottom:245.370000px;}
.ye8{bottom:247.170000px;}
.y28{bottom:248.070000px;}
.y1d6{bottom:250.230000px;}
.y1a1{bottom:250.950000px;}
.y108{bottom:251.310000px;}
.y8c{bottom:252.930000px;}
.y132{bottom:256.170000px;}
.y160{bottom:257.970000px;}
.y54{bottom:258.150000px;}
.y16e{bottom:260.850000px;}
.ye7{bottom:262.650000px;}
.y27{bottom:263.550000px;}
.y1d5{bottom:265.890000px;}
.yb5{bottom:267.510000px;}
.y8b{bottom:268.590000px;}
.y53{bottom:273.810000px;}
.y1a0{bottom:274.170000px;}
.y16d{bottom:276.510000px;}
.ye6{bottom:278.310000px;}
.y26{bottom:279.030000px;}
.y15b{bottom:281.370000px;}
.y1d4{bottom:281.550000px;}
.y107{bottom:282.450000px;}
.y8a{bottom:283.890000px;}
.y187{bottom:284.070000px;}
.y52{bottom:289.290000px;}
.y16c{bottom:291.990000px;}
.ye5{bottom:293.790000px;}
.y25{bottom:294.690000px;}
.y1d3{bottom:297.030000px;}
.y19f{bottom:297.390000px;}
.yb4{bottom:298.290000px;}
.y186{bottom:299.550000px;}
.y131{bottom:301.710000px;}
.y15d{bottom:304.590000px;}
.y51{bottom:304.950000px;}
.y16b{bottom:307.470000px;}
.ye4{bottom:309.270000px;}
.y24{bottom:310.170000px;}
.y1d2{bottom:312.690000px;}
.y89{bottom:312.870000px;}
.y19e{bottom:320.790000px;}
.y16a{bottom:322.950000px;}
.y23{bottom:325.470000px;}
.y159{bottom:327.810000px;}
.y185{bottom:328.170000px;}
.y1d1{bottom:328.350000px;}
.yb3{bottom:329.430000px;}
.y130{bottom:332.850000px;}
.y50{bottom:335.730000px;}
.y88{bottom:336.090000px;}
.y169{bottom:338.610000px;}
.ye3{bottom:342.570000px;}
.y1d0{bottom:343.830000px;}
.y19d{bottom:344.010000px;}
.y12f{bottom:348.510000px;}
.y184{bottom:351.390000px;}
.yb2{bottom:358.410000px;}
.y87{bottom:359.310000px;}
.y1cf{bottom:359.490000px;}
.y22{bottom:363.090000px;}
.y12e{bottom:363.990000px;}
.y15a{bottom:366.510000px;}
.y4f{bottom:366.870000px;}
.y19c{bottom:367.230000px;}
.y168{bottom:369.750000px;}
.y1b6{bottom:370.110000px;}
.ye2{bottom:374.070000px;}
.y183{bottom:374.790000px;}
.y1ce{bottom:375.150000px;}
.y21{bottom:378.750000px;}
.yb1{bottom:381.630000px;}
.y85{bottom:382.530000px;}
.ye1{bottom:389.595000px;}
.y157{bottom:389.775000px;}
.y19b{bottom:390.495000px;}
.y1cd{bottom:390.675000px;}
.y1b5{bottom:393.375000px;}
.y12d{bottom:395.175000px;}
.y11b{bottom:395.895000px;}
.y182{bottom:398.055000px;}
.y4e{bottom:398.415000px;}
.yb0{bottom:405.075000px;}
.y84{bottom:405.795000px;}
.y1cc{bottom:406.335000px;}
.y20{bottom:409.755000px;}
.y12c{bottom:410.835000px;}
.y11a{bottom:411.375000px;}
.y4d{bottom:414.075000px;}
.y19a{bottom:414.795000px;}
.ye0{bottom:420.735000px;}
.y181{bottom:421.275000px;}
.y1cb{bottom:421.995000px;}
.y1f{bottom:425.235000px;}
.yaf{bottom:428.295000px;}
.y158{bottom:428.475000px;}
.y83{bottom:429.015000px;}
.y1b4{bottom:432.075000px;}
.y1ca{bottom:437.475000px;}
.y12a{bottom:439.455000px;}
.y1e{bottom:440.895000px;}
.y199{bottom:443.775000px;}
.y180{bottom:444.495000px;}
.y4c{bottom:444.855000px;}
.yae{bottom:451.515000px;}
.y154{bottom:451.695000px;}
.y82{bottom:452.415000px;}
.y1c9{bottom:453.135000px;}
.y1d{bottom:456.375000px;}
.y129{bottom:462.675000px;}
.y17f{bottom:467.715000px;}
.y1c8{bottom:468.795000px;}
.y1b3{bottom:470.775000px;}
.y1c{bottom:471.855000px;}
.yad{bottom:474.735000px;}
.y198{bottom:474.915000px;}
.y81{bottom:475.635000px;}
.y4b{bottom:476.175000px;}
.ydf{bottom:483.015000px;}
.y1c7{bottom:484.275000px;}
.y128{bottom:485.895000px;}
.y1b{bottom:487.335000px;}
.y156{bottom:490.395000px;}
.y17e{bottom:490.935000px;}
.yac{bottom:497.955000px;}
.yde{bottom:498.495000px;}
.y80{bottom:498.855000px;}
.y1c6{bottom:499.935000px;}
.y1a{bottom:502.995000px;}
.y4a{bottom:507.495000px;}
.y127{bottom:509.115000px;}
.y1b2{bottom:512.895000px;}
.ydd{bottom:514.155000px;}
.y17c{bottom:514.335000px;}
.y1c5{bottom:515.595000px;}
.y19{bottom:518.475000px;}
.y197{bottom:519.015000px;}
.yab{bottom:521.175000px;}
.y7e{bottom:522.075000px;}
.y49{bottom:523.155000px;}
.y151{bottom:529.095000px;}
.ydc{bottom:529.635000px;}
.y126{bottom:532.335000px;}
.y18{bottom:533.955000px;}
.y48{bottom:538.635000px;}
.y196{bottom:542.235000px;}
.ydb{bottom:545.115000px;}
.y77{bottom:545.295000px;}
.yaa{bottom:547.815000px;}
.y17{bottom:549.435000px;}
.y47{bottom:554.115000px;}
.y125{bottom:555.735000px;}
.y1ae{bottom:556.995000px;}
.yda{bottom:560.415000px;}
.y17b{bottom:561.855000px;}
.y1c4{bottom:562.395000px;}
.y16{bottom:565.095000px;}
.y195{bottom:565.635000px;}
.y153{bottom:567.795000px;}
.y46{bottom:569.775000px;}
.ya9{bottom:578.775000px;}
.y15{bottom:580.575000px;}
.y1b0{bottom:581.475000px;}
.y124{bottom:582.195000px;}
.y7a{bottom:583.995000px;}
.y179{bottom:588.495000px;}
.y191{bottom:588.855000px;}
.y150{bottom:591.015000px;}
.yd9{bottom:591.915000px;}
.y14{bottom:596.055000px;}
.y45{bottom:600.915000px;}
.y1ad{bottom:607.035000px;}
.yd8{bottom:607.395000px;}
.y1c3{bottom:609.015000px;}
.ya8{bottom:610.275000px;}
.y76{bottom:610.635000px;}
.y13{bottom:611.535000px;}
.y192{bottom:613.155000px;}
.y123{bottom:613.515000px;}
.y14c{bottom:614.235000px;}
.y178{bottom:619.635000px;}
.y106{bottom:621.075000px;}
.yd7{bottom:623.055000px;}
.y1c2{bottom:624.675000px;}
.ya7{bottom:625.575000px;}
.y12{bottom:627.195000px;}
.y122{bottom:628.635000px;}
.y1ac{bottom:633.495000px;}
.y177{bottom:635.115000px;}
.yd6{bottom:638.355000px;}
.y75{bottom:641.805000px;}
.y11{bottom:642.705000px;}
.y105{bottom:644.325000px;}
.y176{bottom:650.805000px;}
.y14e{bottom:652.965000px;}
.y1c1{bottom:655.485000px;}
.ya6{bottom:656.745000px;}
.y74{bottom:657.285000px;}
.y190{bottom:657.645000px;}
.y10{bottom:658.185000px;}
.y121{bottom:660.165000px;}
.y1ab{bottom:664.665000px;}
.y175{bottom:665.925000px;}
.y104{bottom:667.545000px;}
.yd5{bottom:669.705000px;}
.y73{bottom:672.945000px;}
.y18f{bottom:673.125000px;}
.yf{bottom:673.485000px;}
.y120{bottom:675.825000px;}
.y14b{bottom:677.445000px;}
.y119{bottom:678.705000px;}
.y1aa{bottom:680.325000px;}
.yd4{bottom:685.365000px;}
.y1c0{bottom:686.985000px;}
.y72{bottom:688.065000px;}
.y18e{bottom:688.605000px;}
.y103{bottom:690.765000px;}
.y118{bottom:694.185000px;}
.y174{bottom:697.425000px;}
.yd3{bottom:700.845000px;}
.y1bf{bottom:702.465000px;}
.ya5{bottom:703.725000px;}
.y14a{bottom:704.085000px;}
.y117{bottom:709.845000px;}
.y173{bottom:713.085000px;}
.y1a9{bottom:713.445000px;}
.y102{bottom:714.165000px;}
.yd2{bottom:716.325000px;}
.y1be{bottom:718.125000px;}
.ya4{bottom:719.025000px;}
.y71{bottom:719.565000px;}
.ye{bottom:721.168500px;}
.y18d{bottom:721.725000px;}
.y116{bottom:725.325000px;}
.y172{bottom:728.565000px;}
.yd1{bottom:731.985000px;}
.y1bd{bottom:733.605000px;}
.ya3{bottom:734.865000px;}
.y70{bottom:735.225000px;}
.y101{bottom:737.385000px;}
.yd{bottom:737.844000px;}
.y44{bottom:738.465000px;}
.y171{bottom:744.045000px;}
.y1bc{bottom:749.085000px;}
.ya2{bottom:750.525000px;}
.y6f{bottom:750.705000px;}
.y167{bottom:750.885000px;}
.yc{bottom:752.685000px;}
.y43{bottom:754.125000px;}
.y115{bottom:758.625000px;}
.y100{bottom:760.605000px;}
.y1a8{bottom:762.945000px;}
.yd0{bottom:763.125000px;}
.y1bb{bottom:764.745000px;}
.y6e{bottom:766.005000px;}
.y42{bottom:769.605000px;}
.y18c{bottom:771.225000px;}
.y170{bottom:775.365000px;}
.y1a7{bottom:778.425000px;}
.ycf{bottom:778.605000px;}
.y149{bottom:779.325000px;}
.ya1{bottom:781.665000px;}
.yfc{bottom:783.825000px;}
.y41{bottom:785.085000px;}
.yb{bottom:785.985000px;}
.y18b{bottom:786.885000px;}
.y114{bottom:789.945000px;}
.y1a6{bottom:794.085000px;}
.yce{bottom:794.265000px;}
.y1ba{bottom:795.525000px;}
.ya0{bottom:797.145000px;}
.y6d{bottom:797.505000px;}
.y40{bottom:800.745000px;}
.y148{bottom:802.545000px;}
.y113{bottom:805.605000px;}
.yfe{bottom:807.045000px;}
.ya{bottom:808.305000px;}
.ycd{bottom:809.745000px;}
.y9f{bottom:812.625000px;}
.y6c{bottom:813.165000px;}
.y3f{bottom:816.225000px;}
.y18a{bottom:818.025000px;}
.y112{bottom:821.085000px;}
.y9{bottom:821.625000px;}
.ycc{bottom:825.405000px;}
.y147{bottom:825.765000px;}
.y1b9{bottom:827.025000px;}
.y9e{bottom:828.285000px;}
.y6b{bottom:828.645000px;}
.y3e{bottom:831.885000px;}
.yfb{bottom:837.105000px;}
.ycb{bottom:840.885000px;}
.y1b8{bottom:842.685000px;}
.y6a{bottom:844.125000px;}
.y146{bottom:849.165000px;}
.y111{bottom:854.385000px;}
.yca{bottom:856.185000px;}
.y1b7{bottom:858.165000px;}
.y8{bottom:858.525000px;}
.y9d{bottom:859.425000px;}
.y69{bottom:859.785000px;}
.y3d{bottom:863.025000px;}
.yfa{bottom:868.245000px;}
.y145{bottom:872.385000px;}
.y9c{bottom:875.085000px;}
.y68{bottom:875.265000px;}
.yf9{bottom:883.725000px;}
.y110{bottom:885.885000px;}
.yc9{bottom:887.685000px;}
.y9b{bottom:890.205000px;}
.y67{bottom:890.925000px;}
.y144{bottom:895.650000px;}
.yf8{bottom:899.250000px;}
.y7{bottom:899.790000px;}
.y66{bottom:906.450000px;}
.yf7{bottom:914.730000px;}
.y10f{bottom:917.070000px;}
.y11f{bottom:917.250000px;}
.yc8{bottom:918.690000px;}
.y65{bottom:921.930000px;}
.y143{bottom:922.290000px;}
.y6{bottom:923.910000px;}
.yf6{bottom:930.390000px;}
.y11e{bottom:932.910000px;}
.y9a{bottom:937.410000px;}
.y64{bottom:937.590000px;}
.yf5{bottom:946.050000px;}
.yc7{bottom:950.370000px;}
.y141{bottom:950.910000px;}
.y63{bottom:953.070000px;}
.yf4{bottom:961.530000px;}
.yc6{bottom:965.850000px;}
.y99{bottom:968.370000px;}
.y62{bottom:968.730000px;}
.yc5{bottom:981.510000px;}
.y61{bottom:984.210000px;}
.y140{bottom:989.430000px;}
.yf3{bottom:994.650000px;}
.yc4{bottom:996.810000px;}
.y60{bottom:999.690000px;}
.y98{bottom:999.870000px;}
.y3c{bottom:1000.050000px;}
.y5f{bottom:1015.350000px;}
.y3b{bottom:1015.530000px;}
.y13f{bottom:1028.130000px;}
.yc3{bottom:1028.310000px;}
.y97{bottom:1030.830000px;}
.y3a{bottom:1031.190000px;}
.y4{bottom:1034.070000px;}
.y5{bottom:1038.934500px;}
.yc2{bottom:1043.790000px;}
.yf2{bottom:1044.150000px;}
.y5e{bottom:1046.130000px;}
.y39{bottom:1046.670000px;}
.y13e{bottom:1051.530000px;}
.y3{bottom:1057.290000px;}
.yc1{bottom:1059.270000px;}
.yf1{bottom:1059.810000px;}
.y38{bottom:1062.150000px;}
.y13d{bottom:1074.750000px;}
.yc0{bottom:1074.930000px;}
.yf0{bottom:1075.290000px;}
.y5d{bottom:1077.270000px;}
.y37{bottom:1077.630000px;}
.ybf{bottom:1090.050000px;}
.yef{bottom:1090.770000px;}
.y36{bottom:1093.290000px;}
.yee{bottom:1106.430000px;}
.y35{bottom:1108.770000px;}
.y13b{bottom:1113.450000px;}
.ybe{bottom:1121.550000px;}
.y34{bottom:1124.430000px;}
.ybd{bottom:1130.550000px;}
.yed{bottom:1139.550000px;}
.y33{bottom:1139.910000px;}
.y2{bottom:1158.300000px;}
.y32{bottom:1193.760000px;}
.hf{height:22.500000px;}
.h11{height:22.536000px;}
.h20{height:23.580000px;}
.h1b{height:23.760000px;}
.h23{height:24.660000px;}
.h21{height:24.840000px;}
.h16{height:25.920000px;}
.h9{height:35.314453px;}
.h19{height:37.800000px;}
.h10{height:37.980000px;}
.h18{height:38.016000px;}
.h12{height:38.100586px;}
.h17{height:41.250938px;}
.h1e{height:45.720000px;}
.h15{height:49.140000px;}
.h8{height:52.971680px;}
.hc{height:52.998047px;}
.hd{height:53.332031px;}
.ha{height:54.421875px;}
.h1f{height:56.880000px;}
.h22{height:57.060000px;}
.he{height:61.200000px;}
.h1d{height:61.236000px;}
.hb{height:62.153438px;}
.h1a{height:62.496000px;}
.h2{height:65.010937px;}
.h7{height:66.757500px;}
.h3{height:72.562500px;}
.h1c{height:76.680000px;}
.h4{height:81.995625px;}
.h6{height:84.898125px;}
.h13{height:86.549766px;}
.h14{height:88.998047px;}
.h5{height:143.724375px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w14{width:39.816000px;}
.w16{width:43.920000px;}
.w17{width:44.136000px;}
.w1d{width:44.280000px;}
.w18{width:52.020000px;}
.w15{width:52.200000px;}
.w19{width:52.236000px;}
.w1b{width:52.560000px;}
.w1c{width:52.596000px;}
.w1e{width:52.776000px;}
.w24{width:53.100000px;}
.w23{width:53.136000px;}
.w22{width:57.060000px;}
.w20{width:57.240000px;}
.w25{width:61.236000px;}
.w7{width:73.800000px;}
.w29{width:75.780000px;}
.w2a{width:75.816000px;}
.w36{width:76.860000px;}
.w2f{width:77.220000px;}
.w2e{width:77.256000px;}
.w30{width:77.436000px;}
.w5{width:77.940000px;}
.w6{width:84.276000px;}
.w8{width:88.416000px;}
.w9{width:90.900000px;}
.w38{width:93.096000px;}
.w21{width:97.956000px;}
.w3d{width:105.696000px;}
.w33{width:107.316000px;}
.wb{width:112.680000px;}
.w2{width:112.896000px;}
.wf{width:119.556000px;}
.wa{width:126.036000px;}
.w2b{width:127.476000px;}
.w31{width:130.140000px;}
.w3a{width:133.776000px;}
.w27{width:140.616000px;}
.wc{width:144.396000px;}
.w39{width:146.916000px;}
.w3b{width:149.256000px;}
.w3{width:151.410000px;}
.w37{width:151.590000px;}
.w34{width:154.830000px;}
.we{width:174.090000px;}
.w11{width:187.950000px;}
.w1a{width:205.770000px;}
.w1f{width:205.995000px;}
.w2c{width:206.670000px;}
.w32{width:215.850000px;}
.w3c{width:225.570000px;}
.w10{width:242.355000px;}
.wd{width:294.375000px;}
.w13{width:325.335000px;}
.w28{width:357.015000px;}
.w2d{width:364.395000px;}
.w12{width:431.025000px;}
.w35{width:478.905000px;}
.w4{width:503.205000px;}
.w26{width:764.100000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x13{left:7.740000px;}
.x12{left:62.100000px;}
.x9{left:63.900000px;}
.x5a{left:70.380000px;}
.x2d{left:78.840000px;}
.xb{left:81.216000px;}
.x2b{left:88.416000px;}
.x65{left:90.936000px;}
.x6{left:93.456000px;}
.x28{left:97.956000px;}
.x3c{left:107.856000px;}
.x5c{left:134.676000px;}
.x4c{left:143.676000px;}
.x52{left:160.770000px;}
.x63{left:172.650000px;}
.x14{left:175.710000px;}
.x56{left:178.950000px;}
.x51{left:181.650000px;}
.x4e{left:197.490000px;}
.x57{left:207.210000px;}
.x60{left:212.250000px;}
.x24{left:226.830000px;}
.x4d{left:228.810000px;}
.x30{left:231.150000px;}
.x43{left:233.490000px;}
.x23{left:236.190000px;}
.x3b{left:238.350000px;}
.x2f{left:242.130000px;}
.x4{left:244.110000px;}
.x20{left:249.510000px;}
.x2e{left:252.030000px;}
.x2a{left:269.715000px;}
.x44{left:271.335000px;}
.x2{left:274.395000px;}
.x2c{left:280.335000px;}
.x5d{left:285.195000px;}
.x11{left:287.175000px;}
.x1b{left:288.255000px;}
.x3{left:290.595000px;}
.xf{left:292.755000px;}
.x1c{left:307.875000px;}
.x3d{left:314.355000px;}
.x1d{left:320.475000px;}
.xe{left:322.635000px;}
.x15{left:327.855000px;}
.x45{left:329.295000px;}
.x4f{left:338.835000px;}
.x22{left:344.235000px;}
.x61{left:346.755000px;}
.x10{left:353.235000px;}
.x5e{left:362.775000px;}
.x27{left:364.035000px;}
.x1e{left:367.995000px;}
.x8{left:369.615000px;}
.x64{left:370.875000px;}
.x25{left:371.955000px;}
.x32{left:390.675000px;}
.xc{left:401.115000px;}
.x16{left:406.515000px;}
.x29{left:412.095000px;}
.x7{left:415.155000px;}
.xa{left:418.395000px;}
.x3e{left:421.095000px;}
.x58{left:423.615000px;}
.x46{left:428.145000px;}
.x33{left:431.205000px;}
.xd{left:434.265000px;}
.x5b{left:436.605000px;}
.x1{left:440.745000px;}
.x53{left:446.325000px;}
.x21{left:452.445000px;}
.x1f{left:453.705000px;}
.x31{left:474.225000px;}
.x34{left:484.125000px;}
.x47{left:485.925000px;}
.x17{left:491.505000px;}
.x62{left:496.725000px;}
.x5f{left:515.085000px;}
.x54{left:524.265000px;}
.x5{left:526.505850px;}
.x3f{left:527.685000px;}
.x35{left:528.765000px;}
.x59{left:531.285000px;}
.x48{left:543.885000px;}
.x26{left:546.765000px;}
.x18{left:566.025000px;}
.x50{left:568.365000px;}
.x36{left:573.405000px;}
.x49{left:597.750000px;}
.x55{left:602.430000px;}
.x37{left:618.270000px;}
.x40{left:626.190000px;}
.x19{left:655.170000px;}
.x38{left:671.010000px;}
.x41{left:679.470000px;}
.x4a{left:713.490000px;}
.x39{left:723.750000px;}
.x42{left:732.750000px;}
.x1a{left:746.790000px;}
.x4b{left:767.490000px;}
.x3a{left:776.700000px;}
@media print{
.va{vertical-align:-56.320000pt;}
.v7{vertical-align:-55.040000pt;}
.vc{vertical-align:-21.120000pt;}
.v3{vertical-align:-16.000000pt;}
.v6{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:2.560000pt;}
.v5{vertical-align:16.000000pt;}
.v2{vertical-align:21.120000pt;}
.v9{vertical-align:32.000000pt;}
.v8{vertical-align:36.480000pt;}
.v1{vertical-align:76.800000pt;}
.ls1e{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.271467pt;}
.ls1b{letter-spacing:-0.233067pt;}
.ls11{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.197333pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.097067pt;}
.ls14{letter-spacing:-0.096000pt;}
.ls17{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.026667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.010667pt;}
.ls18{letter-spacing:0.096000pt;}
.ls21{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.277333pt;}
.ls2{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.309333pt;}
.ls7{letter-spacing:0.314667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.469333pt;}
.ls1c{letter-spacing:0.504533pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls1d{letter-spacing:0.872960pt;}
.ls8{letter-spacing:1.440000pt;}
.ls13{letter-spacing:2.080000pt;}
.ls16{letter-spacing:10.528000pt;}
.ls19{letter-spacing:157.600000pt;}
.ls20{letter-spacing:360.640000pt;}
.ws1e{word-spacing:-33.561600pt;}
.ws2{word-spacing:-28.819200pt;}
.wsc{word-spacing:-27.072000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2c{word-spacing:-15.224533pt;}
.ws4{word-spacing:-14.720000pt;}
.ws23{word-spacing:-14.622933pt;}
.ws2b{word-spacing:-14.486933pt;}
.ws2f{word-spacing:-14.448533pt;}
.ws2e{word-spacing:-14.080000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws21{word-spacing:-12.448000pt;}
.wsa{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.288000pt;}
.ws2a{word-spacing:-12.192000pt;}
.ws20{word-spacing:-12.112000pt;}
.ws29{word-spacing:-12.096000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws22{word-spacing:-11.904000pt;}
.ws1f{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.520000pt;}
.ws24{word-spacing:-10.848000pt;}
.ws27{word-spacing:-10.560000pt;}
.ws26{word-spacing:-10.528000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws2d{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.000000pt;}
.ws30{word-spacing:-7.360000pt;}
.ws11{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.528000pt;}
.ws28{word-spacing:-0.480000pt;}
.ws14{word-spacing:-0.432000pt;}
.ws17{word-spacing:-0.384000pt;}
.ws16{word-spacing:-0.005333pt;}
.wsd{word-spacing:0.000000pt;}
.wse{word-spacing:0.101333pt;}
.ws15{word-spacing:0.144000pt;}
.ws10{word-spacing:0.160000pt;}
.ws13{word-spacing:0.192000pt;}
.ws18{word-spacing:0.618667pt;}
.ws12{word-spacing:1.178667pt;}
.ws25{word-spacing:2.864000pt;}
.ws1a{word-spacing:3.936000pt;}
.ws1c{word-spacing:4.608000pt;}
.ws19{word-spacing:4.640000pt;}
.ws1d{word-spacing:4.816000pt;}
.ws1b{word-spacing:5.120000pt;}
._10{margin-left:-3.768533pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._3{width:1.161621pt;}
._5{width:2.079264pt;}
._4{width:3.026092pt;}
._6{width:4.407420pt;}
._7{width:6.128000pt;}
._b{width:7.043138pt;}
._9{width:8.064000pt;}
._8{width:9.216000pt;}
._c{width:10.169517pt;}
._e{width:13.456000pt;}
._14{width:16.032000pt;}
._13{width:40.032000pt;}
._2{width:140.082773pt;}
._f{width:237.456000pt;}
._d{width:253.146667pt;}
._12{width:351.809046pt;}
._11{width:761.258667pt;}
._a{width:972.148012pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.560000pt;}
.fs8{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:72.320000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:3.360000pt;}
.y13c{bottom:3.520000pt;}
.y135{bottom:3.680000pt;}
.y7b{bottom:6.400000pt;}
.y7f{bottom:6.720000pt;}
.y86{bottom:6.760000pt;}
.y194{bottom:7.360000pt;}
.y17d{bottom:7.680000pt;}
.y14f{bottom:7.840000pt;}
.y193{bottom:8.480000pt;}
.y1b1{bottom:8.640000pt;}
.y165{bottom:8.800000pt;}
.y1a5{bottom:8.954667pt;}
.yff{bottom:9.440000pt;}
.y12b{bottom:12.000000pt;}
.y7c{bottom:20.160000pt;}
.y142{bottom:20.320000pt;}
.y138{bottom:20.474667pt;}
.y134{bottom:20.480000pt;}
.y79{bottom:24.000000pt;}
.y15f{bottom:24.320000pt;}
.y164{bottom:25.754667pt;}
.y17a{bottom:27.040000pt;}
.y15c{bottom:27.360000pt;}
.yfd{bottom:30.080000pt;}
.y1af{bottom:30.400000pt;}
.y78{bottom:40.800000pt;}
.y152{bottom:41.120000pt;}
.y14d{bottom:42.266667pt;}
.y163{bottom:42.554667pt;}
.y1a4{bottom:42.714667pt;}
.y155{bottom:54.880000pt;}
.y1{bottom:68.320000pt;}
.y13a{bottom:83.200000pt;}
.y96{bottom:86.720000pt;}
.y5c{bottom:90.880000pt;}
.y31{bottom:96.160000pt;}
.y166{bottom:97.280000pt;}
.y95{bottom:100.640000pt;}
.y139{bottom:103.840000pt;}
.y30{bottom:109.920000pt;}
.y11d{bottom:111.840000pt;}
.ybc{bottom:113.120000pt;}
.y94{bottom:114.400000pt;}
.y5b{bottom:118.880000pt;}
.y162{bottom:123.072000pt;}
.y2f{bottom:123.712000pt;}
.y137{bottom:124.512000pt;}
.y11c{bottom:125.632000pt;}
.y10e{bottom:126.592000pt;}
.ybb{bottom:126.912000pt;}
.y93{bottom:128.192000pt;}
.y1a3{bottom:130.432000pt;}
.yec{bottom:132.512000pt;}
.y5a{bottom:132.672000pt;}
.y2e{bottom:137.626667pt;}
.y10d{bottom:140.346667pt;}
.yba{bottom:140.826667pt;}
.y92{bottom:142.106667pt;}
.yeb{bottom:146.266667pt;}
.y59{bottom:146.426667pt;}
.y2d{bottom:151.386667pt;}
.y10c{bottom:154.106667pt;}
.yb9{bottom:154.266667pt;}
.y91{bottom:155.866667pt;}
.y136{bottom:158.906667pt;}
.y58{bottom:160.026667pt;}
.yea{bottom:160.186667pt;}
.y189{bottom:165.146667pt;}
.y2c{bottom:165.306667pt;}
.y10b{bottom:167.866667pt;}
.y90{bottom:169.626667pt;}
.y161{bottom:174.266667pt;}
.y2b{bottom:179.066667pt;}
.y10a{bottom:181.786667pt;}
.yb8{bottom:182.266667pt;}
.y8f{bottom:183.546667pt;}
.y57{bottom:188.026667pt;}
.ye9{bottom:189.626667pt;}
.y2a{bottom:192.826667pt;}
.y133{bottom:193.306667pt;}
.y1d8{bottom:194.746667pt;}
.y15e{bottom:194.906667pt;}
.yb7{bottom:196.186667pt;}
.y8e{bottom:197.306667pt;}
.y56{bottom:201.786667pt;}
.y1a2{bottom:202.426667pt;}
.y29{bottom:206.586667pt;}
.y188{bottom:208.506667pt;}
.y1d7{bottom:208.666667pt;}
.y109{bottom:209.466667pt;}
.yb6{bottom:209.786667pt;}
.y8d{bottom:211.066667pt;}
.y55{bottom:215.706667pt;}
.y16f{bottom:218.106667pt;}
.ye8{bottom:219.706667pt;}
.y28{bottom:220.506667pt;}
.y1d6{bottom:222.426667pt;}
.y1a1{bottom:223.066667pt;}
.y108{bottom:223.386667pt;}
.y8c{bottom:224.826667pt;}
.y132{bottom:227.706667pt;}
.y160{bottom:229.306667pt;}
.y54{bottom:229.466667pt;}
.y16e{bottom:231.866667pt;}
.ye7{bottom:233.466667pt;}
.y27{bottom:234.266667pt;}
.y1d5{bottom:236.346667pt;}
.yb5{bottom:237.786667pt;}
.y8b{bottom:238.746667pt;}
.y53{bottom:243.386667pt;}
.y1a0{bottom:243.706667pt;}
.y16d{bottom:245.786667pt;}
.ye6{bottom:247.386667pt;}
.y26{bottom:248.026667pt;}
.y15b{bottom:250.106667pt;}
.y1d4{bottom:250.266667pt;}
.y107{bottom:251.066667pt;}
.y8a{bottom:252.346667pt;}
.y187{bottom:252.506667pt;}
.y52{bottom:257.146667pt;}
.y16c{bottom:259.546667pt;}
.ye5{bottom:261.146667pt;}
.y25{bottom:261.946667pt;}
.y1d3{bottom:264.026667pt;}
.y19f{bottom:264.346667pt;}
.yb4{bottom:265.146667pt;}
.y186{bottom:266.266667pt;}
.y131{bottom:268.186667pt;}
.y15d{bottom:270.746667pt;}
.y51{bottom:271.066667pt;}
.y16b{bottom:273.306667pt;}
.ye4{bottom:274.906667pt;}
.y24{bottom:275.706667pt;}
.y1d2{bottom:277.946667pt;}
.y89{bottom:278.106667pt;}
.y19e{bottom:285.146667pt;}
.y16a{bottom:287.066667pt;}
.y23{bottom:289.306667pt;}
.y159{bottom:291.386667pt;}
.y185{bottom:291.706667pt;}
.y1d1{bottom:291.866667pt;}
.yb3{bottom:292.826667pt;}
.y130{bottom:295.866667pt;}
.y50{bottom:298.426667pt;}
.y88{bottom:298.746667pt;}
.y169{bottom:300.986667pt;}
.ye3{bottom:304.506667pt;}
.y1d0{bottom:305.626667pt;}
.y19d{bottom:305.786667pt;}
.y12f{bottom:309.786667pt;}
.y184{bottom:312.346667pt;}
.yb2{bottom:318.586667pt;}
.y87{bottom:319.386667pt;}
.y1cf{bottom:319.546667pt;}
.y22{bottom:322.746667pt;}
.y12e{bottom:323.546667pt;}
.y15a{bottom:325.786667pt;}
.y4f{bottom:326.106667pt;}
.y19c{bottom:326.426667pt;}
.y168{bottom:328.666667pt;}
.y1b6{bottom:328.986667pt;}
.ye2{bottom:332.506667pt;}
.y183{bottom:333.146667pt;}
.y1ce{bottom:333.466667pt;}
.y21{bottom:336.666667pt;}
.yb1{bottom:339.226667pt;}
.y85{bottom:340.026667pt;}
.ye1{bottom:346.306667pt;}
.y157{bottom:346.466667pt;}
.y19b{bottom:347.106667pt;}
.y1cd{bottom:347.266667pt;}
.y1b5{bottom:349.666667pt;}
.y12d{bottom:351.266667pt;}
.y11b{bottom:351.906667pt;}
.y182{bottom:353.826667pt;}
.y4e{bottom:354.146667pt;}
.yb0{bottom:360.066667pt;}
.y84{bottom:360.706667pt;}
.y1cc{bottom:361.186667pt;}
.y20{bottom:364.226667pt;}
.y12c{bottom:365.186667pt;}
.y11a{bottom:365.666667pt;}
.y4d{bottom:368.066667pt;}
.y19a{bottom:368.706667pt;}
.ye0{bottom:373.986667pt;}
.y181{bottom:374.466667pt;}
.y1cb{bottom:375.106667pt;}
.y1f{bottom:377.986667pt;}
.yaf{bottom:380.706667pt;}
.y158{bottom:380.866667pt;}
.y83{bottom:381.346667pt;}
.y1b4{bottom:384.066667pt;}
.y1ca{bottom:388.866667pt;}
.y12a{bottom:390.626667pt;}
.y1e{bottom:391.906667pt;}
.y199{bottom:394.466667pt;}
.y180{bottom:395.106667pt;}
.y4c{bottom:395.426667pt;}
.yae{bottom:401.346667pt;}
.y154{bottom:401.506667pt;}
.y82{bottom:402.146667pt;}
.y1c9{bottom:402.786667pt;}
.y1d{bottom:405.666667pt;}
.y129{bottom:411.266667pt;}
.y17f{bottom:415.746667pt;}
.y1c8{bottom:416.706667pt;}
.y1b3{bottom:418.466667pt;}
.y1c{bottom:419.426667pt;}
.yad{bottom:421.986667pt;}
.y198{bottom:422.146667pt;}
.y81{bottom:422.786667pt;}
.y4b{bottom:423.266667pt;}
.ydf{bottom:429.346667pt;}
.y1c7{bottom:430.466667pt;}
.y128{bottom:431.906667pt;}
.y1b{bottom:433.186667pt;}
.y156{bottom:435.906667pt;}
.y17e{bottom:436.386667pt;}
.yac{bottom:442.626667pt;}
.yde{bottom:443.106667pt;}
.y80{bottom:443.426667pt;}
.y1c6{bottom:444.386667pt;}
.y1a{bottom:447.106667pt;}
.y4a{bottom:451.106667pt;}
.y127{bottom:452.546667pt;}
.y1b2{bottom:455.906667pt;}
.ydd{bottom:457.026667pt;}
.y17c{bottom:457.186667pt;}
.y1c5{bottom:458.306667pt;}
.y19{bottom:460.866667pt;}
.y197{bottom:461.346667pt;}
.yab{bottom:463.266667pt;}
.y7e{bottom:464.066667pt;}
.y49{bottom:465.026667pt;}
.y151{bottom:470.306667pt;}
.ydc{bottom:470.786667pt;}
.y126{bottom:473.186667pt;}
.y18{bottom:474.626667pt;}
.y48{bottom:478.786667pt;}
.y196{bottom:481.986667pt;}
.ydb{bottom:484.546667pt;}
.y77{bottom:484.706667pt;}
.yaa{bottom:486.946667pt;}
.y17{bottom:488.386667pt;}
.y47{bottom:492.546667pt;}
.y125{bottom:493.986667pt;}
.y1ae{bottom:495.106667pt;}
.yda{bottom:498.146667pt;}
.y17b{bottom:499.426667pt;}
.y1c4{bottom:499.906667pt;}
.y16{bottom:502.306667pt;}
.y195{bottom:502.786667pt;}
.y153{bottom:504.706667pt;}
.y46{bottom:506.466667pt;}
.ya9{bottom:514.466667pt;}
.y15{bottom:516.066667pt;}
.y1b0{bottom:516.866667pt;}
.y124{bottom:517.506667pt;}
.y7a{bottom:519.106667pt;}
.y179{bottom:523.106667pt;}
.y191{bottom:523.426667pt;}
.y150{bottom:525.346667pt;}
.yd9{bottom:526.146667pt;}
.y14{bottom:529.826667pt;}
.y45{bottom:534.146667pt;}
.y1ad{bottom:539.586667pt;}
.yd8{bottom:539.906667pt;}
.y1c3{bottom:541.346667pt;}
.ya8{bottom:542.466667pt;}
.y76{bottom:542.786667pt;}
.y13{bottom:543.586667pt;}
.y192{bottom:545.026667pt;}
.y123{bottom:545.346667pt;}
.y14c{bottom:545.986667pt;}
.y178{bottom:550.786667pt;}
.y106{bottom:552.066667pt;}
.yd7{bottom:553.826667pt;}
.y1c2{bottom:555.266667pt;}
.ya7{bottom:556.066667pt;}
.y12{bottom:557.506667pt;}
.y122{bottom:558.786667pt;}
.y1ac{bottom:563.106667pt;}
.y177{bottom:564.546667pt;}
.yd6{bottom:567.426667pt;}
.y75{bottom:570.493333pt;}
.y11{bottom:571.293333pt;}
.y105{bottom:572.733333pt;}
.y176{bottom:578.493333pt;}
.y14e{bottom:580.413333pt;}
.y1c1{bottom:582.653333pt;}
.ya6{bottom:583.773333pt;}
.y74{bottom:584.253333pt;}
.y190{bottom:584.573333pt;}
.y10{bottom:585.053333pt;}
.y121{bottom:586.813333pt;}
.y1ab{bottom:590.813333pt;}
.y175{bottom:591.933333pt;}
.y104{bottom:593.373333pt;}
.yd5{bottom:595.293333pt;}
.y73{bottom:598.173333pt;}
.y18f{bottom:598.333333pt;}
.yf{bottom:598.653333pt;}
.y120{bottom:600.733333pt;}
.y14b{bottom:602.173333pt;}
.y119{bottom:603.293333pt;}
.y1aa{bottom:604.733333pt;}
.yd4{bottom:609.213333pt;}
.y1c0{bottom:610.653333pt;}
.y72{bottom:611.613333pt;}
.y18e{bottom:612.093333pt;}
.y103{bottom:614.013333pt;}
.y118{bottom:617.053333pt;}
.y174{bottom:619.933333pt;}
.yd3{bottom:622.973333pt;}
.y1bf{bottom:624.413333pt;}
.ya5{bottom:625.533333pt;}
.y14a{bottom:625.853333pt;}
.y117{bottom:630.973333pt;}
.y173{bottom:633.853333pt;}
.y1a9{bottom:634.173333pt;}
.y102{bottom:634.813333pt;}
.yd2{bottom:636.733333pt;}
.y1be{bottom:638.333333pt;}
.ya4{bottom:639.133333pt;}
.y71{bottom:639.613333pt;}
.ye{bottom:641.038667pt;}
.y18d{bottom:641.533333pt;}
.y116{bottom:644.733333pt;}
.y172{bottom:647.613333pt;}
.yd1{bottom:650.653333pt;}
.y1bd{bottom:652.093333pt;}
.ya3{bottom:653.213333pt;}
.y70{bottom:653.533333pt;}
.y101{bottom:655.453333pt;}
.yd{bottom:655.861333pt;}
.y44{bottom:656.413333pt;}
.y171{bottom:661.373333pt;}
.y1bc{bottom:665.853333pt;}
.ya2{bottom:667.133333pt;}
.y6f{bottom:667.293333pt;}
.y167{bottom:667.453333pt;}
.yc{bottom:669.053333pt;}
.y43{bottom:670.333333pt;}
.y115{bottom:674.333333pt;}
.y100{bottom:676.093333pt;}
.y1a8{bottom:678.173333pt;}
.yd0{bottom:678.333333pt;}
.y1bb{bottom:679.773333pt;}
.y6e{bottom:680.893333pt;}
.y42{bottom:684.093333pt;}
.y18c{bottom:685.533333pt;}
.y170{bottom:689.213333pt;}
.y1a7{bottom:691.933333pt;}
.ycf{bottom:692.093333pt;}
.y149{bottom:692.733333pt;}
.ya1{bottom:694.813333pt;}
.yfc{bottom:696.733333pt;}
.y41{bottom:697.853333pt;}
.yb{bottom:698.653333pt;}
.y18b{bottom:699.453333pt;}
.y114{bottom:702.173333pt;}
.y1a6{bottom:705.853333pt;}
.yce{bottom:706.013333pt;}
.y1ba{bottom:707.133333pt;}
.ya0{bottom:708.573333pt;}
.y6d{bottom:708.893333pt;}
.y40{bottom:711.773333pt;}
.y148{bottom:713.373333pt;}
.y113{bottom:716.093333pt;}
.yfe{bottom:717.373333pt;}
.ya{bottom:718.493333pt;}
.ycd{bottom:719.773333pt;}
.y9f{bottom:722.333333pt;}
.y6c{bottom:722.813333pt;}
.y3f{bottom:725.533333pt;}
.y18a{bottom:727.133333pt;}
.y112{bottom:729.853333pt;}
.y9{bottom:730.333333pt;}
.ycc{bottom:733.693333pt;}
.y147{bottom:734.013333pt;}
.y1b9{bottom:735.133333pt;}
.y9e{bottom:736.253333pt;}
.y6b{bottom:736.573333pt;}
.y3e{bottom:739.453333pt;}
.yfb{bottom:744.093333pt;}
.ycb{bottom:747.453333pt;}
.y1b8{bottom:749.053333pt;}
.y6a{bottom:750.333333pt;}
.y146{bottom:754.813333pt;}
.y111{bottom:759.453333pt;}
.yca{bottom:761.053333pt;}
.y1b7{bottom:762.813333pt;}
.y8{bottom:763.133333pt;}
.y9d{bottom:763.933333pt;}
.y69{bottom:764.253333pt;}
.y3d{bottom:767.133333pt;}
.yfa{bottom:771.773333pt;}
.y145{bottom:775.453333pt;}
.y9c{bottom:777.853333pt;}
.y68{bottom:778.013333pt;}
.yf9{bottom:785.533333pt;}
.y110{bottom:787.453333pt;}
.yc9{bottom:789.053333pt;}
.y9b{bottom:791.293333pt;}
.y67{bottom:791.933333pt;}
.y144{bottom:796.133333pt;}
.yf8{bottom:799.333333pt;}
.y7{bottom:799.813333pt;}
.y66{bottom:805.733333pt;}
.yf7{bottom:813.093333pt;}
.y10f{bottom:815.173333pt;}
.y11f{bottom:815.333333pt;}
.yc8{bottom:816.613333pt;}
.y65{bottom:819.493333pt;}
.y143{bottom:819.813333pt;}
.y6{bottom:821.253333pt;}
.yf6{bottom:827.013333pt;}
.y11e{bottom:829.253333pt;}
.y9a{bottom:833.253333pt;}
.y64{bottom:833.413333pt;}
.yf5{bottom:840.933333pt;}
.yc7{bottom:844.773333pt;}
.y141{bottom:845.253333pt;}
.y63{bottom:847.173333pt;}
.yf4{bottom:854.693333pt;}
.yc6{bottom:858.533333pt;}
.y99{bottom:860.773333pt;}
.y62{bottom:861.093333pt;}
.yc5{bottom:872.453333pt;}
.y61{bottom:874.853333pt;}
.y140{bottom:879.493333pt;}
.yf3{bottom:884.133333pt;}
.yc4{bottom:886.053333pt;}
.y60{bottom:888.613333pt;}
.y98{bottom:888.773333pt;}
.y3c{bottom:888.933333pt;}
.y5f{bottom:902.533333pt;}
.y3b{bottom:902.693333pt;}
.y13f{bottom:913.893333pt;}
.yc3{bottom:914.053333pt;}
.y97{bottom:916.293333pt;}
.y3a{bottom:916.613333pt;}
.y4{bottom:919.173333pt;}
.y5{bottom:923.497333pt;}
.yc2{bottom:927.813333pt;}
.yf2{bottom:928.133333pt;}
.y5e{bottom:929.893333pt;}
.y39{bottom:930.373333pt;}
.y13e{bottom:934.693333pt;}
.y3{bottom:939.813333pt;}
.yc1{bottom:941.573333pt;}
.yf1{bottom:942.053333pt;}
.y38{bottom:944.133333pt;}
.y13d{bottom:955.333333pt;}
.yc0{bottom:955.493333pt;}
.yf0{bottom:955.813333pt;}
.y5d{bottom:957.573333pt;}
.y37{bottom:957.893333pt;}
.ybf{bottom:968.933333pt;}
.yef{bottom:969.573333pt;}
.y36{bottom:971.813333pt;}
.yee{bottom:983.493333pt;}
.y35{bottom:985.573333pt;}
.y13b{bottom:989.733333pt;}
.ybe{bottom:996.933333pt;}
.y34{bottom:999.493333pt;}
.ybd{bottom:1004.933333pt;}
.yed{bottom:1012.933333pt;}
.y33{bottom:1013.253333pt;}
.y2{bottom:1029.600000pt;}
.y32{bottom:1061.120000pt;}
.hf{height:20.000000pt;}
.h11{height:20.032000pt;}
.h20{height:20.960000pt;}
.h1b{height:21.120000pt;}
.h23{height:21.920000pt;}
.h21{height:22.080000pt;}
.h16{height:23.040000pt;}
.h9{height:31.390625pt;}
.h19{height:33.600000pt;}
.h10{height:33.760000pt;}
.h18{height:33.792000pt;}
.h12{height:33.867188pt;}
.h17{height:36.667500pt;}
.h1e{height:40.640000pt;}
.h15{height:43.680000pt;}
.h8{height:47.085938pt;}
.hc{height:47.109375pt;}
.hd{height:47.406250pt;}
.ha{height:48.375000pt;}
.h1f{height:50.560000pt;}
.h22{height:50.720000pt;}
.he{height:54.400000pt;}
.h1d{height:54.432000pt;}
.hb{height:55.247500pt;}
.h1a{height:55.552000pt;}
.h2{height:57.787500pt;}
.h7{height:59.340000pt;}
.h3{height:64.500000pt;}
.h1c{height:68.160000pt;}
.h4{height:72.885000pt;}
.h6{height:75.465000pt;}
.h13{height:76.933125pt;}
.h14{height:79.109375pt;}
.h5{height:127.755000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w14{width:35.392000pt;}
.w16{width:39.040000pt;}
.w17{width:39.232000pt;}
.w1d{width:39.360000pt;}
.w18{width:46.240000pt;}
.w15{width:46.400000pt;}
.w19{width:46.432000pt;}
.w1b{width:46.720000pt;}
.w1c{width:46.752000pt;}
.w1e{width:46.912000pt;}
.w24{width:47.200000pt;}
.w23{width:47.232000pt;}
.w22{width:50.720000pt;}
.w20{width:50.880000pt;}
.w25{width:54.432000pt;}
.w7{width:65.600000pt;}
.w29{width:67.360000pt;}
.w2a{width:67.392000pt;}
.w36{width:68.320000pt;}
.w2f{width:68.640000pt;}
.w2e{width:68.672000pt;}
.w30{width:68.832000pt;}
.w5{width:69.280000pt;}
.w6{width:74.912000pt;}
.w8{width:78.592000pt;}
.w9{width:80.800000pt;}
.w38{width:82.752000pt;}
.w21{width:87.072000pt;}
.w3d{width:93.952000pt;}
.w33{width:95.392000pt;}
.wb{width:100.160000pt;}
.w2{width:100.352000pt;}
.wf{width:106.272000pt;}
.wa{width:112.032000pt;}
.w2b{width:113.312000pt;}
.w31{width:115.680000pt;}
.w3a{width:118.912000pt;}
.w27{width:124.992000pt;}
.wc{width:128.352000pt;}
.w39{width:130.592000pt;}
.w3b{width:132.672000pt;}
.w3{width:134.586667pt;}
.w37{width:134.746667pt;}
.w34{width:137.626667pt;}
.we{width:154.746667pt;}
.w11{width:167.066667pt;}
.w1a{width:182.906667pt;}
.w1f{width:183.106667pt;}
.w2c{width:183.706667pt;}
.w32{width:191.866667pt;}
.w3c{width:200.506667pt;}
.w10{width:215.426667pt;}
.wd{width:261.666667pt;}
.w13{width:289.186667pt;}
.w28{width:317.346667pt;}
.w2d{width:323.906667pt;}
.w12{width:383.133333pt;}
.w35{width:425.693333pt;}
.w4{width:447.293333pt;}
.w26{width:679.200000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x13{left:6.880000pt;}
.x12{left:55.200000pt;}
.x9{left:56.800000pt;}
.x5a{left:62.560000pt;}
.x2d{left:70.080000pt;}
.xb{left:72.192000pt;}
.x2b{left:78.592000pt;}
.x65{left:80.832000pt;}
.x6{left:83.072000pt;}
.x28{left:87.072000pt;}
.x3c{left:95.872000pt;}
.x5c{left:119.712000pt;}
.x4c{left:127.712000pt;}
.x52{left:142.906667pt;}
.x63{left:153.466667pt;}
.x14{left:156.186667pt;}
.x56{left:159.066667pt;}
.x51{left:161.466667pt;}
.x4e{left:175.546667pt;}
.x57{left:184.186667pt;}
.x60{left:188.666667pt;}
.x24{left:201.626667pt;}
.x4d{left:203.386667pt;}
.x30{left:205.466667pt;}
.x43{left:207.546667pt;}
.x23{left:209.946667pt;}
.x3b{left:211.866667pt;}
.x2f{left:215.226667pt;}
.x4{left:216.986667pt;}
.x20{left:221.786667pt;}
.x2e{left:224.026667pt;}
.x2a{left:239.746667pt;}
.x44{left:241.186667pt;}
.x2{left:243.906667pt;}
.x2c{left:249.186667pt;}
.x5d{left:253.506667pt;}
.x11{left:255.266667pt;}
.x1b{left:256.226667pt;}
.x3{left:258.306667pt;}
.xf{left:260.226667pt;}
.x1c{left:273.666667pt;}
.x3d{left:279.426667pt;}
.x1d{left:284.866667pt;}
.xe{left:286.786667pt;}
.x15{left:291.426667pt;}
.x45{left:292.706667pt;}
.x4f{left:301.186667pt;}
.x22{left:305.986667pt;}
.x61{left:308.226667pt;}
.x10{left:313.986667pt;}
.x5e{left:322.466667pt;}
.x27{left:323.586667pt;}
.x1e{left:327.106667pt;}
.x8{left:328.546667pt;}
.x64{left:329.666667pt;}
.x25{left:330.626667pt;}
.x32{left:347.266667pt;}
.xc{left:356.546667pt;}
.x16{left:361.346667pt;}
.x29{left:366.306667pt;}
.x7{left:369.026667pt;}
.xa{left:371.906667pt;}
.x3e{left:374.306667pt;}
.x58{left:376.546667pt;}
.x46{left:380.573333pt;}
.x33{left:383.293333pt;}
.xd{left:386.013333pt;}
.x5b{left:388.093333pt;}
.x1{left:391.773333pt;}
.x53{left:396.733333pt;}
.x21{left:402.173333pt;}
.x1f{left:403.293333pt;}
.x31{left:421.533333pt;}
.x34{left:430.333333pt;}
.x47{left:431.933333pt;}
.x17{left:436.893333pt;}
.x62{left:441.533333pt;}
.x5f{left:457.853333pt;}
.x54{left:466.013333pt;}
.x5{left:468.005200pt;}
.x3f{left:469.053333pt;}
.x35{left:470.013333pt;}
.x59{left:472.253333pt;}
.x48{left:483.453333pt;}
.x26{left:486.013333pt;}
.x18{left:503.133333pt;}
.x50{left:505.213333pt;}
.x36{left:509.693333pt;}
.x49{left:531.333333pt;}
.x55{left:535.493333pt;}
.x37{left:549.573333pt;}
.x40{left:556.613333pt;}
.x19{left:582.373333pt;}
.x38{left:596.453333pt;}
.x41{left:603.973333pt;}
.x4a{left:634.213333pt;}
.x39{left:643.333333pt;}
.x42{left:651.333333pt;}
.x1a{left:663.813333pt;}
.x4b{left:682.213333pt;}
.x3a{left:690.400000pt;}
}




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