
    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_12c5200cc3f4546bc4bbc240.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056641;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_fdf0c550ff20d304752d3da7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_3b479d8b1841cbaf4eb58fb8.woff')format("woff");}.ff3{font-family:ff3;line-height:1.909180;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_60dca59f09fae7f21db8142b.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;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_51322150ee0f0a1051e4d7a5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_0703f6915511295cd0cba25b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.893066;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_070c2bcd9612242b3869875e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_af6b672751e1d9b51eb163ce.woff')format("woff");}.ff8{font-family:ff8;line-height:0.847656;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_04d46862f3491c2928356be5.woff')format("woff");}.ff9{font-family:ff9;line-height:0.664062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079056,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079056,0.237171,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);}
.v10{vertical-align:-70.800000px;}
.v11{vertical-align:-25.200000px;}
.v2{vertical-align:-24.000000px;}
.ve{vertical-align:-14.400000px;}
.v12{vertical-align:-13.200000px;}
.v4{vertical-align:-12.000000px;}
.v6{vertical-align:-8.988000px;}
.vb{vertical-align:-2.400000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:2.400000px;}
.v8{vertical-align:12.000000px;}
.vf{vertical-align:14.400000px;}
.v5{vertical-align:22.200000px;}
.v3{vertical-align:24.000000px;}
.v1{vertical-align:27.000000px;}
.vd{vertical-align:34.200000px;}
.va{vertical-align:40.200000px;}
.v9{vertical-align:45.600000px;}
.vc{vertical-align:52.200000px;}
.ls17{letter-spacing:-0.780000px;}
.ls10{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.540000px;}
.ls5d{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.312000px;}
.lsd{letter-spacing:-0.264000px;}
.ls13{letter-spacing:-0.240000px;}
.lsb{letter-spacing:-0.234000px;}
.ls9{letter-spacing:-0.192000px;}
.ls19{letter-spacing:-0.180000px;}
.ls11{letter-spacing:-0.132000px;}
.ls2b{letter-spacing:-0.120000px;}
.lsc{letter-spacing:-0.078000px;}
.ls2c{letter-spacing:-0.060000px;}
.ls5e{letter-spacing:-0.042000px;}
.ls8{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.060000px;}
.ls2a{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.120000px;}
.lsf{letter-spacing:0.132000px;}
.ls14{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.198000px;}
.ls30{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.252000px;}
.ls12{letter-spacing:0.264000px;}
.ls7{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.297000px;}
.ls0{letter-spacing:0.300000px;}
.lse{letter-spacing:0.330000px;}
.ls31{letter-spacing:0.378000px;}
.ls3{letter-spacing:0.420000px;}
.ls1f{letter-spacing:0.480000px;}
.ls2f{letter-spacing:0.600000px;}
.ls6a{letter-spacing:0.660000px;}
.ls36{letter-spacing:0.672000px;}
.ls4a{letter-spacing:0.780000px;}
.ls33{letter-spacing:0.840000px;}
.ls52{letter-spacing:1.200000px;}
.ls3c{letter-spacing:1.260000px;}
.ls39{letter-spacing:1.470000px;}
.ls65{letter-spacing:1.560000px;}
.ls54{letter-spacing:1.680000px;}
.ls53{letter-spacing:1.740000px;}
.ls2d{letter-spacing:1.800000px;}
.ls5a{letter-spacing:1.860000px;}
.ls4e{letter-spacing:2.058000px;}
.ls4f{letter-spacing:2.064000px;}
.ls3e{letter-spacing:2.100000px;}
.ls60{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.400000px;}
.ls1e{letter-spacing:2.418000px;}
.ls24{letter-spacing:2.484000px;}
.ls66{letter-spacing:2.682000px;}
.ls67{letter-spacing:2.820000px;}
.ls5b{letter-spacing:2.880000px;}
.ls22{letter-spacing:2.940000px;}
.ls49{letter-spacing:3.000000px;}
.ls2e{letter-spacing:3.018000px;}
.ls48{letter-spacing:3.060000px;}
.ls40{letter-spacing:3.102000px;}
.ls5c{letter-spacing:3.384000px;}
.ls27{letter-spacing:3.540000px;}
.ls16{letter-spacing:3.600000px;}
.ls57{letter-spacing:3.612000px;}
.ls45{letter-spacing:3.660000px;}
.ls3b{letter-spacing:3.774000px;}
.ls51{letter-spacing:3.858000px;}
.ls6c{letter-spacing:4.200000px;}
.ls58{letter-spacing:4.212000px;}
.ls6b{letter-spacing:5.400000px;}
.ls46{letter-spacing:6.180000px;}
.ls43{letter-spacing:7.080000px;}
.ls2{letter-spacing:7.200000px;}
.ls44{letter-spacing:7.800000px;}
.ls38{letter-spacing:8.400000px;}
.ls6d{letter-spacing:9.000000px;}
.ls47{letter-spacing:9.858000px;}
.ls21{letter-spacing:9.900000px;}
.ls35{letter-spacing:9.960000px;}
.ls55{letter-spacing:11.100000px;}
.ls63{letter-spacing:11.184000px;}
.ls37{letter-spacing:12.804000px;}
.ls25{letter-spacing:13.320000px;}
.ls26{letter-spacing:13.380000px;}
.ls69{letter-spacing:13.800000px;}
.ls64{letter-spacing:14.400000px;}
.ls1d{letter-spacing:16.380000px;}
.ls29{letter-spacing:16.620000px;}
.ls20{letter-spacing:16.740000px;}
.ls23{letter-spacing:16.800000px;}
.ls62{letter-spacing:16.860000px;}
.ls3d{letter-spacing:16.974000px;}
.ls1c{letter-spacing:16.980000px;}
.ls59{letter-spacing:18.000000px;}
.ls32{letter-spacing:18.690000px;}
.ls1b{letter-spacing:19.218000px;}
.ls28{letter-spacing:19.284000px;}
.ls4{letter-spacing:19.800000px;}
.ls4b{letter-spacing:19.860000px;}
.ls3a{letter-spacing:19.872000px;}
.ls34{letter-spacing:19.902000px;}
.ls61{letter-spacing:20.190000px;}
.ls50{letter-spacing:20.400000px;}
.ls42{letter-spacing:31.320000px;}
.ls4d{letter-spacing:39.720000px;}
.ls41{letter-spacing:45.720000px;}
.ls4c{letter-spacing:70.980000px;}
.ls3f{letter-spacing:72.180000px;}
.ls68{letter-spacing:249.000000px;}
.ls56{letter-spacing:356.400000px;}
.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;}
}
.ws57{word-spacing:-60.180000px;}
.ws4f{word-spacing:-60.000000px;}
.ws55{word-spacing:-59.940000px;}
.ws61{word-spacing:-59.640000px;}
.ws6b{word-spacing:-42.252000px;}
.ws69{word-spacing:-42.120000px;}
.ws51{word-spacing:-42.084000px;}
.ws52{word-spacing:-42.000000px;}
.ws0{word-spacing:-23.808000px;}
.ws50{word-spacing:-22.686000px;}
.ws6a{word-spacing:-21.786000px;}
.ws1{word-spacing:-19.266000px;}
.ws9{word-spacing:-16.764000px;}
.ws6{word-spacing:-16.632000px;}
.ws5{word-spacing:-16.500000px;}
.ws8{word-spacing:-16.368000px;}
.ws4{word-spacing:-16.236000px;}
.ws7{word-spacing:-15.906000px;}
.wsc{word-spacing:-15.180000px;}
.ws30{word-spacing:-15.120000px;}
.ws4e{word-spacing:-15.060000px;}
.wsa{word-spacing:-15.000000px;}
.ws8b{word-spacing:-14.940000px;}
.ws54{word-spacing:-14.880000px;}
.ws84{word-spacing:-14.820000px;}
.wsb{word-spacing:-14.760000px;}
.ws53{word-spacing:-13.200000px;}
.ws60{word-spacing:-13.140000px;}
.ws62{word-spacing:-13.020000px;}
.ws68{word-spacing:-12.960000px;}
.ws2{word-spacing:-12.750000px;}
.ws3{word-spacing:-10.500000px;}
.ws5f{word-spacing:-9.240000px;}
.ws56{word-spacing:-3.900000px;}
.ws21{word-spacing:-3.600000px;}
.ws70{word-spacing:-3.360000px;}
.ws6f{word-spacing:-3.120000px;}
.ws33{word-spacing:-3.000000px;}
.ws7a{word-spacing:-2.880000px;}
.ws79{word-spacing:-2.400000px;}
.ws32{word-spacing:-2.220000px;}
.ws2c{word-spacing:-1.920000px;}
.ws2d{word-spacing:-1.800000px;}
.ws24{word-spacing:-1.560000px;}
.ws3e{word-spacing:-1.320000px;}
.ws4d{word-spacing:-1.200000px;}
.ws3d{word-spacing:-0.960000px;}
.ws31{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.600000px;}
.ws1c{word-spacing:-0.420000px;}
.ws6e{word-spacing:-0.396000px;}
.ws8a{word-spacing:-0.360000px;}
.ws14{word-spacing:-0.330000px;}
.ws10{word-spacing:-0.312000px;}
.wsd{word-spacing:-0.288000px;}
.ws67{word-spacing:-0.240000px;}
.ws82{word-spacing:-0.180000px;}
.ws23{word-spacing:-0.120000px;}
.ws35{word-spacing:-0.060000px;}
.wse{word-spacing:0.000000px;}
.ws6d{word-spacing:0.066000px;}
.ws83{word-spacing:0.120000px;}
.ws4c{word-spacing:0.180000px;}
.ws22{word-spacing:0.240000px;}
.ws13{word-spacing:0.264000px;}
.wsf{word-spacing:0.312000px;}
.ws12{word-spacing:0.330000px;}
.ws11{word-spacing:0.390000px;}
.ws81{word-spacing:0.462000px;}
.ws36{word-spacing:0.540000px;}
.ws49{word-spacing:0.600000px;}
.ws27{word-spacing:0.840000px;}
.ws77{word-spacing:0.960000px;}
.ws44{word-spacing:1.200000px;}
.ws7e{word-spacing:1.380000px;}
.ws7d{word-spacing:1.440000px;}
.ws29{word-spacing:1.680000px;}
.ws43{word-spacing:1.800000px;}
.ws6c{word-spacing:2.040000px;}
.ws47{word-spacing:2.280000px;}
.ws25{word-spacing:2.400000px;}
.ws46{word-spacing:2.640000px;}
.ws74{word-spacing:2.880000px;}
.ws34{word-spacing:3.000000px;}
.ws65{word-spacing:3.180000px;}
.ws2b{word-spacing:3.240000px;}
.ws59{word-spacing:3.480000px;}
.ws38{word-spacing:3.600000px;}
.ws8e{word-spacing:3.780000px;}
.ws37{word-spacing:3.840000px;}
.ws80{word-spacing:4.080000px;}
.ws1e{word-spacing:4.200000px;}
.ws73{word-spacing:4.440000px;}
.ws1b{word-spacing:4.800000px;}
.ws89{word-spacing:5.280000px;}
.ws26{word-spacing:5.400000px;}
.ws7f{word-spacing:5.640000px;}
.ws48{word-spacing:6.000000px;}
.ws16{word-spacing:6.600000px;}
.ws15{word-spacing:6.840000px;}
.ws19{word-spacing:7.200000px;}
.ws40{word-spacing:7.800000px;}
.ws3f{word-spacing:8.040000px;}
.ws18{word-spacing:8.280000px;}
.ws1a{word-spacing:8.400000px;}
.ws78{word-spacing:8.640000px;}
.ws42{word-spacing:8.880000px;}
.ws41{word-spacing:9.000000px;}
.ws91{word-spacing:9.240000px;}
.ws2a{word-spacing:9.600000px;}
.ws88{word-spacing:9.840000px;}
.ws76{word-spacing:10.080000px;}
.ws75{word-spacing:10.200000px;}
.ws8c{word-spacing:10.440000px;}
.ws5a{word-spacing:10.800000px;}
.ws2e{word-spacing:11.400000px;}
.ws4a{word-spacing:11.640000px;}
.ws3c{word-spacing:11.880000px;}
.ws3a{word-spacing:12.600000px;}
.ws72{word-spacing:12.780000px;}
.ws71{word-spacing:12.840000px;}
.ws39{word-spacing:13.800000px;}
.ws7c{word-spacing:14.400000px;}
.ws7b{word-spacing:14.640000px;}
.ws5d{word-spacing:14.880000px;}
.ws5e{word-spacing:15.000000px;}
.ws28{word-spacing:15.480000px;}
.ws4b{word-spacing:15.600000px;}
.ws5c{word-spacing:16.200000px;}
.ws5b{word-spacing:16.440000px;}
.ws58{word-spacing:17.280000px;}
.ws3b{word-spacing:18.000000px;}
.ws17{word-spacing:19.200000px;}
.ws1f{word-spacing:19.800000px;}
.ws20{word-spacing:20.040000px;}
.ws8d{word-spacing:20.880000px;}
.ws45{word-spacing:21.000000px;}
.ws2f{word-spacing:22.200000px;}
.ws85{word-spacing:24.000000px;}
.ws86{word-spacing:24.240000px;}
.ws90{word-spacing:27.600000px;}
.ws8f{word-spacing:27.840000px;}
.ws87{word-spacing:35.400000px;}
.ws64{word-spacing:55.896000px;}
.ws66{word-spacing:91.242000px;}
.ws63{word-spacing:219.036000px;}
._d{margin-left:-159.726000px;}
._a{margin-left:-98.262000px;}
._c{margin-left:-8.010000px;}
._9{margin-left:-6.360000px;}
._b{margin-left:-5.047200px;}
._10{margin-left:-3.720000px;}
._3{margin-left:-2.707200px;}
._0{margin-left:-1.056000px;}
._1{width:1.027200px;}
._5{width:2.700000px;}
._11{width:3.784800px;}
._7{width:5.100000px;}
._2{width:6.660000px;}
._8{width:9.840000px;}
._6{width:11.640000px;}
._f{width:12.960000px;}
._e{width:14.640000px;}
._4{width:16.476000px;}
._15{width:84.900000px;}
._14{width:238.200000px;}
._13{width:468.420000px;}
._12{width:469.845600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fs7{font-size:60.000000px;}
.fs9{font-size:63.245490px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y104{bottom:3.300000px;}
.y138{bottom:4.350000px;}
.ye9{bottom:4.950000px;}
.yeb{bottom:5.400000px;}
.y153{bottom:11.850000px;}
.y13d{bottom:12.000000px;}
.y13b{bottom:20.550000px;}
.y134{bottom:22.800000px;}
.y182{bottom:112.200000px;}
.yf8{bottom:114.900000px;}
.y14d{bottom:116.550000px;}
.y6a{bottom:117.450000px;}
.y11c{bottom:118.050000px;}
.yf7{bottom:128.850000px;}
.y181{bottom:129.450000px;}
.y19f{bottom:131.250000px;}
.y14c{bottom:133.800000px;}
.y69{bottom:134.700000px;}
.y89{bottom:138.150000px;}
.yf0{bottom:138.300000px;}
.y11b{bottom:139.800000px;}
.ybd{bottom:140.400000px;}
.y32{bottom:141.600000px;}
.y180{bottom:146.700000px;}
.y14b{bottom:151.050000px;}
.y19e{bottom:151.350000px;}
.y68{bottom:151.950000px;}
.y87{bottom:155.400000px;}
.y88{bottom:155.550000px;}
.y31{bottom:158.850000px;}
.ybc{bottom:159.750000px;}
.y11a{bottom:161.550000px;}
.y17f{bottom:163.950000px;}
.y14a{bottom:168.300000px;}
.y19d{bottom:168.450000px;}
.y67{bottom:169.200000px;}
.y85{bottom:172.950000px;}
.y86{bottom:173.100000px;}
.yef{bottom:173.850000px;}
.y30{bottom:176.100000px;}
.ybb{bottom:177.300000px;}
.y17e{bottom:181.200000px;}
.y119{bottom:183.300000px;}
.y149{bottom:185.550000px;}
.y19c{bottom:185.700000px;}
.y66{bottom:186.450000px;}
.y84{bottom:190.650000px;}
.yee{bottom:192.300000px;}
.y2f{bottom:193.350000px;}
.yba{bottom:194.550000px;}
.y17d{bottom:198.450000px;}
.y148{bottom:202.800000px;}
.y65{bottom:203.550000px;}
.y83{bottom:204.898500px;}
.y82{bottom:204.900000px;}
.y118{bottom:205.050000px;}
.y2e{bottom:210.450000px;}
.yb9{bottom:211.800000px;}
.y17c{bottom:215.700000px;}
.yed{bottom:218.250000px;}
.y147{bottom:220.050000px;}
.y64{bottom:220.800000px;}
.y7f{bottom:224.100000px;}
.y80{bottom:224.250000px;}
.y117{bottom:226.800000px;}
.y2d{bottom:227.700000px;}
.yb8{bottom:229.050000px;}
.y17b{bottom:232.950000px;}
.y146{bottom:237.300000px;}
.y63{bottom:238.050000px;}
.y19b{bottom:243.300000px;}
.y2c{bottom:244.950000px;}
.y81{bottom:248.547000px;}
.y116{bottom:248.550000px;}
.yec{bottom:249.600000px;}
.y17a{bottom:250.200000px;}
.y145{bottom:254.550000px;}
.y62{bottom:255.300000px;}
.y7e{bottom:261.150000px;}
.y2b{bottom:262.200000px;}
.y19a{bottom:263.400000px;}
.yb7{bottom:264.000000px;}
.y179{bottom:267.450000px;}
.yea{bottom:270.150000px;}
.y61{bottom:272.550000px;}
.y144{bottom:276.300000px;}
.y7d{bottom:278.700000px;}
.y2a{bottom:279.450000px;}
.y199{bottom:280.650000px;}
.yb6{bottom:281.250000px;}
.y178{bottom:284.700000px;}
.y60{bottom:289.800000px;}
.y115{bottom:294.450000px;}
.ye8{bottom:296.100000px;}
.y29{bottom:296.700000px;}
.y198{bottom:297.900000px;}
.y143{bottom:298.050000px;}
.yb5{bottom:298.800000px;}
.y177{bottom:301.950000px;}
.y5f{bottom:307.050000px;}
.y28{bottom:313.950000px;}
.y7c{bottom:314.400000px;}
.y197{bottom:315.150000px;}
.yb4{bottom:316.350000px;}
.y176{bottom:319.200000px;}
.y141{bottom:319.800000px;}
.y5e{bottom:324.300000px;}
.y27{bottom:331.200000px;}
.y142{bottom:331.800000px;}
.y196{bottom:332.400000px;}
.y7b{bottom:333.000000px;}
.yb3{bottom:333.600000px;}
.y114{bottom:333.900000px;}
.y175{bottom:337.500000px;}
.y15c{bottom:338.100000px;}
.y5d{bottom:341.550000px;}
.ye7{bottom:344.250000px;}
.y26{bottom:348.450000px;}
.y195{bottom:349.650000px;}
.y7a{bottom:350.250000px;}
.yb2{bottom:350.850000px;}
.y113{bottom:351.300000px;}
.y174{bottom:355.950000px;}
.y5c{bottom:358.800000px;}
.ye6{bottom:361.500000px;}
.y25{bottom:365.700000px;}
.y194{bottom:366.900000px;}
.y79{bottom:367.500000px;}
.yb1{bottom:368.100000px;}
.y112{bottom:373.050000px;}
.y173{bottom:373.200000px;}
.y5b{bottom:376.050000px;}
.y140{bottom:380.550000px;}
.y24{bottom:382.950000px;}
.y193{bottom:384.150000px;}
.y78{bottom:384.750000px;}
.yb0{bottom:385.350000px;}
.y172{bottom:390.450000px;}
.y5a{bottom:393.300000px;}
.y111{bottom:394.800000px;}
.ye5{bottom:399.750000px;}
.y23{bottom:400.800000px;}
.y192{bottom:401.400000px;}
.y77{bottom:402.000000px;}
.y13e{bottom:402.300000px;}
.yaf{bottom:402.600000px;}
.y171{bottom:407.700000px;}
.y59{bottom:410.550000px;}
.y13f{bottom:414.300000px;}
.y110{bottom:416.550000px;}
.ye4{bottom:417.000000px;}
.y191{bottom:418.650000px;}
.y76{bottom:419.250000px;}
.yae{bottom:420.300000px;}
.y22{bottom:421.350000px;}
.y170{bottom:426.000000px;}
.y58{bottom:427.800000px;}
.ye3{bottom:434.250000px;}
.yad{bottom:434.550000px;}
.y190{bottom:435.900000px;}
.y75{bottom:436.500000px;}
.y10f{bottom:438.300000px;}
.y21{bottom:440.550000px;}
.y13a{bottom:441.300000px;}
.y16f{bottom:444.450000px;}
.y57{bottom:445.050000px;}
.ye2{bottom:451.500000px;}
.y18f{bottom:453.150000px;}
.y13c{bottom:453.300000px;}
.y74{bottom:453.750000px;}
.yac{bottom:456.600000px;}
.y10e{bottom:460.050000px;}
.y20{bottom:461.250000px;}
.y16e{bottom:461.700000px;}
.y56{bottom:462.300000px;}
.ye1{bottom:468.750000px;}
.y18e{bottom:470.400000px;}
.y73{bottom:471.000000px;}
.yab{bottom:477.750000px;}
.y16d{bottom:479.250000px;}
.y55{bottom:479.550000px;}
.y139{bottom:480.300000px;}
.y1f{bottom:481.350000px;}
.y10d{bottom:481.800000px;}
.ye0{bottom:486.450000px;}
.y72{bottom:488.250000px;}
.y54{bottom:496.800000px;}
.y16c{bottom:497.850000px;}
.y1e{bottom:498.600000px;}
.y133{bottom:502.050000px;}
.ydf{bottom:505.050000px;}
.y71{bottom:505.500000px;}
.ya9{bottom:506.250000px;}
.y137{bottom:506.400000px;}
.y135{bottom:507.600000px;}
.y18d{bottom:508.650000px;}
.yaa{bottom:509.100000px;}
.y53{bottom:514.050000px;}
.y16b{bottom:515.100000px;}
.y1d{bottom:515.850000px;}
.y132{bottom:516.150000px;}
.yde{bottom:522.300000px;}
.y70{bottom:522.750000px;}
.yf6{bottom:524.850000px;}
.y136{bottom:525.900000px;}
.y10c{bottom:527.700000px;}
.y52{bottom:531.300000px;}
.y16a{bottom:532.350000px;}
.y1c{bottom:533.100000px;}
.ydd{bottom:539.550000px;}
.y6f{bottom:540.000000px;}
.y18c{bottom:543.150000px;}
.y51{bottom:548.550000px;}
.y169{bottom:549.600000px;}
.y1b{bottom:550.350000px;}
.ydc{bottom:556.800000px;}
.y6e{bottom:557.550000px;}
.y18b{bottom:560.400000px;}
.y50{bottom:565.800000px;}
.y168{bottom:566.850000px;}
.y10b{bottom:567.150000px;}
.y1a{bottom:567.600000px;}
.y131{bottom:568.650000px;}
.ya8{bottom:568.800000px;}
.ydb{bottom:574.050000px;}
.y6d{bottom:576.607500px;}
.y18a{bottom:577.650000px;}
.y4f{bottom:583.050000px;}
.y167{bottom:584.100000px;}
.y10a{bottom:584.400000px;}
.y19{bottom:584.850000px;}
.ya7{bottom:587.550000px;}
.yda{bottom:591.300000px;}
.y189{bottom:594.900000px;}
.y6c{bottom:595.500000px;}
.y4e{bottom:600.300000px;}
.y166{bottom:601.350000px;}
.y18{bottom:602.100000px;}
.ya6{bottom:605.100000px;}
.y109{bottom:606.150000px;}
.y130{bottom:606.900000px;}
.yd9{bottom:608.550000px;}
.y188{bottom:612.150000px;}
.y6b{bottom:614.700000px;}
.y4d{bottom:617.550000px;}
.y165{bottom:618.600000px;}
.y17{bottom:619.350000px;}
.ya5{bottom:622.650000px;}
.y12f{bottom:624.150000px;}
.yd8{bottom:625.800000px;}
.y108{bottom:627.900000px;}
.y187{bottom:629.400000px;}
.y4c{bottom:634.800000px;}
.y164{bottom:635.850000px;}
.y16{bottom:636.600000px;}
.ya4{bottom:641.250000px;}
.y12e{bottom:641.400000px;}
.yd7{bottom:643.050000px;}
.y186{bottom:646.650000px;}
.y107{bottom:649.650000px;}
.y4b{bottom:652.050000px;}
.y163{bottom:653.100000px;}
.y15{bottom:653.850000px;}
.ya3{bottom:658.500000px;}
.y12d{bottom:658.650000px;}
.yd6{bottom:660.300000px;}
.y185{bottom:663.900000px;}
.y15b{bottom:668.100000px;}
.y4a{bottom:669.300000px;}
.y162{bottom:670.350000px;}
.y14{bottom:671.100000px;}
.y106{bottom:671.400000px;}
.ya2{bottom:675.750000px;}
.y12c{bottom:676.200000px;}
.yd5{bottom:677.550000px;}
.y184{bottom:681.150000px;}
.y15a{bottom:685.350000px;}
.y49{bottom:686.550000px;}
.y161{bottom:687.600000px;}
.y13{bottom:688.350000px;}
.ya1{bottom:693.000000px;}
.y105{bottom:693.150000px;}
.yd4{bottom:694.800000px;}
.y159{bottom:702.600000px;}
.y48{bottom:703.800000px;}
.y160{bottom:704.850000px;}
.y12{bottom:705.600000px;}
.ya0{bottom:711.450000px;}
.yd3{bottom:712.050000px;}
.y103{bottom:714.900000px;}
.y183{bottom:719.700000px;}
.y158{bottom:719.850000px;}
.y47{bottom:721.050000px;}
.y15f{bottom:722.100000px;}
.y11{bottom:722.850000px;}
.y9f{bottom:727.200000px;}
.y12b{bottom:729.300000px;}
.yd2{bottom:729.900000px;}
.y9e{bottom:730.800000px;}
.y157{bottom:737.250000px;}
.y46{bottom:738.300000px;}
.y15e{bottom:739.350000px;}
.y10{bottom:740.100000px;}
.y9d{bottom:740.250000px;}
.y12a{bottom:746.550000px;}
.yd1{bottom:750.300000px;}
.y15d{bottom:753.300000px;}
.y45{bottom:755.550000px;}
.yf{bottom:757.650000px;}
.y156{bottom:759.000000px;}
.y102{bottom:759.900000px;}
.y129{bottom:763.800000px;}
.yd0{bottom:768.900000px;}
.y9c{bottom:770.550000px;}
.y44{bottom:772.800000px;}
.ye{bottom:776.850000px;}
.y101{bottom:777.150000px;}
.y155{bottom:780.750000px;}
.y128{bottom:781.050000px;}
.ycf{bottom:786.150000px;}
.y9b{bottom:789.000000px;}
.y43{bottom:790.050000px;}
.y1ae{bottom:790.950000px;}
.y127{bottom:798.300000px;}
.y154{bottom:802.500000px;}
.yce{bottom:803.400000px;}
.yd{bottom:803.550000px;}
.y9a{bottom:806.550000px;}
.y42{bottom:807.300000px;}
.y1ad{bottom:810.750000px;}
.y100{bottom:815.400000px;}
.y126{bottom:815.550000px;}
.y99{bottom:820.501500px;}
.ycd{bottom:820.650000px;}
.yc{bottom:824.250000px;}
.y41{bottom:824.550000px;}
.y97{bottom:829.650000px;}
.y1ac{bottom:830.550000px;}
.yff{bottom:832.650000px;}
.y125{bottom:832.800000px;}
.y152{bottom:836.100000px;}
.ycc{bottom:837.900000px;}
.y96{bottom:839.700000px;}
.y40{bottom:841.800000px;}
.yb{bottom:844.800000px;}
.y124{bottom:850.200000px;}
.y1ab{bottom:850.500000px;}
.ycb{bottom:855.150000px;}
.y3f{bottom:859.050000px;}
.y98{bottom:862.050000px;}
.ya{bottom:863.700000px;}
.y1aa{bottom:870.300000px;}
.yfe{bottom:870.900000px;}
.y123{bottom:871.950000px;}
.yca{bottom:872.400000px;}
.y95{bottom:874.200000px;}
.y3e{bottom:876.300000px;}
.y9{bottom:882.750000px;}
.y151{bottom:886.350000px;}
.yfd{bottom:888.150000px;}
.yc9{bottom:889.650000px;}
.y1a9{bottom:890.100000px;}
.y94{bottom:892.950000px;}
.y3d{bottom:893.550000px;}
.y122{bottom:893.700000px;}
.y8{bottom:901.650000px;}
.yfc{bottom:905.400000px;}
.yc8{bottom:906.900000px;}
.y1a8{bottom:909.900000px;}
.y93{bottom:910.500000px;}
.y3c{bottom:910.800000px;}
.y7{bottom:915.300000px;}
.y121{bottom:915.450000px;}
.yfb{bottom:922.650000px;}
.yc7{bottom:924.150000px;}
.y150{bottom:924.600000px;}
.y92{bottom:927.750000px;}
.y3b{bottom:928.050000px;}
.y1a7{bottom:929.850000px;}
.y120{bottom:937.200000px;}
.y6{bottom:937.650000px;}
.yfa{bottom:939.900000px;}
.yc6{bottom:941.400000px;}
.y14f{bottom:941.850000px;}
.y91{bottom:945.000000px;}
.y3a{bottom:945.300000px;}
.y1a6{bottom:949.650000px;}
.yc5{bottom:958.650000px;}
.y11f{bottom:958.950000px;}
.y14e{bottom:959.557500px;}
.y5{bottom:959.700000px;}
.y90{bottom:962.250000px;}
.y39{bottom:962.550000px;}
.y1a5{bottom:969.450000px;}
.yf5{bottom:975.900000px;}
.yc4{bottom:976.350000px;}
.yf9{bottom:978.450000px;}
.y8f{bottom:979.500000px;}
.y38{bottom:979.800000px;}
.y4{bottom:980.400000px;}
.y11e{bottom:980.700000px;}
.y1a4{bottom:989.250000px;}
.yf4{bottom:993.150000px;}
.yc3{bottom:993.900000px;}
.y8e{bottom:996.750000px;}
.y37{bottom:997.050000px;}
.y3{bottom:1002.450000px;}
.y1a3{bottom:1009.200000px;}
.yf3{bottom:1010.700000px;}
.yc2{bottom:1011.450000px;}
.y8d{bottom:1014.000000px;}
.y36{bottom:1014.300000px;}
.y1a2{bottom:1026.450000px;}
.y11d{bottom:1026.600000px;}
.yc1{bottom:1028.700000px;}
.yf2{bottom:1029.300000px;}
.y2{bottom:1030.050000px;}
.y8c{bottom:1031.250000px;}
.y35{bottom:1031.550000px;}
.y1a1{bottom:1044.000000px;}
.yc0{bottom:1045.950000px;}
.yf1{bottom:1047.600000px;}
.y8a{bottom:1048.500000px;}
.y8b{bottom:1048.650000px;}
.y34{bottom:1048.800000px;}
.y1{bottom:1057.650000px;}
.y1a0{bottom:1063.200000px;}
.ybe{bottom:1064.400000px;}
.y33{bottom:1066.050000px;}
.ybf{bottom:1067.700000px;}
.h1a{height:17.248500px;}
.h1b{height:17.250000px;}
.h17{height:20.551500px;}
.h18{height:21.450000px;}
.h4{height:29.182617px;}
.h5{height:33.351562px;}
.h1e{height:34.498500px;}
.h1f{height:34.500000px;}
.h1c{height:39.000000px;}
.h16{height:41.660156px;}
.h8{height:41.689453px;}
.hf{height:42.451172px;}
.h19{height:42.890625px;}
.h13{height:44.698242px;}
.h1d{height:45.210643px;}
.ha{height:45.858398px;}
.h2{height:50.027344px;}
.h9{height:50.449219px;}
.hc{height:52.089844px;}
.h7{height:55.494141px;}
.h6{height:60.539062px;}
.h3{height:62.436035px;}
.hb{height:74.414062px;}
.h12{height:76.814063px;}
.h15{height:80.251172px;}
.h1{height:80.718750px;}
.hd{height:88.051172px;}
.h11{height:94.651172px;}
.h14{height:108.614063px;}
.he{height:114.614062px;}
.h10{height:120.614062px;}
.h0{height:1188.000000px;}
.we{width:78.150000px;}
.w12{width:81.450000px;}
.w1{width:88.350000px;}
.wc{width:90.450000px;}
.wb{width:108.900000px;}
.wa{width:117.300000px;}
.w9{width:117.450000px;}
.wf{width:120.900000px;}
.w8{width:125.550000px;}
.w6{width:125.700000px;}
.w5{width:128.550000px;}
.w10{width:133.200000px;}
.w7{width:138.151500px;}
.wd{width:146.400000px;}
.w2{width:164.850000px;}
.w4{width:164.851500px;}
.w3{width:165.000000px;}
.w11{width:166.798500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2f{left:1.200000px;}
.x54{left:2.850000px;}
.x28{left:4.650000px;}
.x2b{left:6.300000px;}
.x25{left:7.350000px;}
.x34{left:9.750000px;}
.x35{left:12.900000px;}
.x33{left:15.450000px;}
.x41{left:16.800000px;}
.x36{left:20.100000px;}
.x24{left:25.050000px;}
.x32{left:30.150000px;}
.x4e{left:32.100000px;}
.x51{left:35.850000px;}
.x4c{left:37.050000px;}
.x31{left:41.850000px;}
.x53{left:46.050000px;}
.x50{left:48.750000px;}
.x52{left:56.550000px;}
.x29{left:59.250000px;}
.x2c{left:63.000000px;}
.x4a{left:77.100000px;}
.x3f{left:80.700000px;}
.x4{left:162.000000px;}
.x22{left:164.850000px;}
.x2a{left:168.900000px;}
.x2{left:183.744000px;}
.x48{left:185.850000px;}
.x58{left:189.000000px;}
.x1{left:191.400000px;}
.x37{left:214.950000px;}
.x49{left:247.950000px;}
.x7{left:254.550000px;}
.x13{left:270.750000px;}
.x5{left:287.250000px;}
.x8{left:308.550000px;}
.x9{left:310.350000px;}
.x38{left:312.900000px;}
.x43{left:314.100000px;}
.xc{left:325.350000px;}
.x4b{left:328.350000px;}
.x2e{left:330.750000px;}
.x39{left:353.400000px;}
.x6{left:355.650000px;}
.x3{left:363.552000px;}
.x14{left:384.000000px;}
.x56{left:390.600000px;}
.xe{left:394.950000px;}
.x19{left:396.600000px;}
.xd{left:399.301500px;}
.xb{left:405.750000px;}
.x1c{left:409.800000px;}
.x55{left:411.300000px;}
.x1d{left:413.400000px;}
.x57{left:420.450000px;}
.x26{left:421.950000px;}
.x15{left:423.450000px;}
.x23{left:425.100000px;}
.x3a{left:432.600000px;}
.x1a{left:433.650000px;}
.x17{left:435.301500px;}
.x16{left:441.150000px;}
.x1b{left:444.300000px;}
.x20{left:448.950000px;}
.x4d{left:451.500000px;}
.x1e{left:453.750000px;}
.xa{left:459.000000px;}
.xf{left:460.350000px;}
.x30{left:461.550000px;}
.x1f{left:466.950000px;}
.x3b{left:472.950000px;}
.x10{left:484.653000px;}
.x12{left:494.250000px;}
.x21{left:523.200000px;}
.x11{left:527.250000px;}
.x18{left:531.000000px;}
.x3e{left:552.150000px;}
.x46{left:560.850000px;}
.x3c{left:572.850000px;}
.x3d{left:580.345065px;}
.x44{left:585.600000px;}
.x4f{left:586.950000px;}
.x27{left:589.200000px;}
.x40{left:663.300000px;}
.x42{left:686.100000px;}
.x47{left:690.600000px;}
.x45{left:696.600000px;}
.x2d{left:756.000000px;}
@media print{
.v10{vertical-align:-62.933333pt;}
.v11{vertical-align:-22.400000pt;}
.v2{vertical-align:-21.333333pt;}
.ve{vertical-align:-12.800000pt;}
.v12{vertical-align:-11.733333pt;}
.v4{vertical-align:-10.666667pt;}
.v6{vertical-align:-7.989333pt;}
.vb{vertical-align:-2.133333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:2.133333pt;}
.v8{vertical-align:10.666667pt;}
.vf{vertical-align:12.800000pt;}
.v5{vertical-align:19.733333pt;}
.v3{vertical-align:21.333333pt;}
.v1{vertical-align:24.000000pt;}
.vd{vertical-align:30.400000pt;}
.va{vertical-align:35.733333pt;}
.v9{vertical-align:40.533333pt;}
.vc{vertical-align:46.400000pt;}
.ls17{letter-spacing:-0.693333pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls5d{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.277333pt;}
.lsd{letter-spacing:-0.234667pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsb{letter-spacing:-0.208000pt;}
.ls9{letter-spacing:-0.170667pt;}
.ls19{letter-spacing:-0.160000pt;}
.ls11{letter-spacing:-0.117333pt;}
.ls2b{letter-spacing:-0.106667pt;}
.lsc{letter-spacing:-0.069333pt;}
.ls2c{letter-spacing:-0.053333pt;}
.ls5e{letter-spacing:-0.037333pt;}
.ls8{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.053333pt;}
.ls2a{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.106667pt;}
.lsf{letter-spacing:0.117333pt;}
.ls14{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.176000pt;}
.ls30{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.224000pt;}
.ls12{letter-spacing:0.234667pt;}
.ls7{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.264000pt;}
.ls0{letter-spacing:0.266667pt;}
.lse{letter-spacing:0.293333pt;}
.ls31{letter-spacing:0.336000pt;}
.ls3{letter-spacing:0.373333pt;}
.ls1f{letter-spacing:0.426667pt;}
.ls2f{letter-spacing:0.533333pt;}
.ls6a{letter-spacing:0.586667pt;}
.ls36{letter-spacing:0.597333pt;}
.ls4a{letter-spacing:0.693333pt;}
.ls33{letter-spacing:0.746667pt;}
.ls52{letter-spacing:1.066667pt;}
.ls3c{letter-spacing:1.120000pt;}
.ls39{letter-spacing:1.306667pt;}
.ls65{letter-spacing:1.386667pt;}
.ls54{letter-spacing:1.493333pt;}
.ls53{letter-spacing:1.546667pt;}
.ls2d{letter-spacing:1.600000pt;}
.ls5a{letter-spacing:1.653333pt;}
.ls4e{letter-spacing:1.829333pt;}
.ls4f{letter-spacing:1.834667pt;}
.ls3e{letter-spacing:1.866667pt;}
.ls60{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:2.133333pt;}
.ls1e{letter-spacing:2.149333pt;}
.ls24{letter-spacing:2.208000pt;}
.ls66{letter-spacing:2.384000pt;}
.ls67{letter-spacing:2.506667pt;}
.ls5b{letter-spacing:2.560000pt;}
.ls22{letter-spacing:2.613333pt;}
.ls49{letter-spacing:2.666667pt;}
.ls2e{letter-spacing:2.682667pt;}
.ls48{letter-spacing:2.720000pt;}
.ls40{letter-spacing:2.757333pt;}
.ls5c{letter-spacing:3.008000pt;}
.ls27{letter-spacing:3.146667pt;}
.ls16{letter-spacing:3.200000pt;}
.ls57{letter-spacing:3.210667pt;}
.ls45{letter-spacing:3.253333pt;}
.ls3b{letter-spacing:3.354667pt;}
.ls51{letter-spacing:3.429333pt;}
.ls6c{letter-spacing:3.733333pt;}
.ls58{letter-spacing:3.744000pt;}
.ls6b{letter-spacing:4.800000pt;}
.ls46{letter-spacing:5.493333pt;}
.ls43{letter-spacing:6.293333pt;}
.ls2{letter-spacing:6.400000pt;}
.ls44{letter-spacing:6.933333pt;}
.ls38{letter-spacing:7.466667pt;}
.ls6d{letter-spacing:8.000000pt;}
.ls47{letter-spacing:8.762667pt;}
.ls21{letter-spacing:8.800000pt;}
.ls35{letter-spacing:8.853333pt;}
.ls55{letter-spacing:9.866667pt;}
.ls63{letter-spacing:9.941333pt;}
.ls37{letter-spacing:11.381333pt;}
.ls25{letter-spacing:11.840000pt;}
.ls26{letter-spacing:11.893333pt;}
.ls69{letter-spacing:12.266667pt;}
.ls64{letter-spacing:12.800000pt;}
.ls1d{letter-spacing:14.560000pt;}
.ls29{letter-spacing:14.773333pt;}
.ls20{letter-spacing:14.880000pt;}
.ls23{letter-spacing:14.933333pt;}
.ls62{letter-spacing:14.986667pt;}
.ls3d{letter-spacing:15.088000pt;}
.ls1c{letter-spacing:15.093333pt;}
.ls59{letter-spacing:16.000000pt;}
.ls32{letter-spacing:16.613333pt;}
.ls1b{letter-spacing:17.082667pt;}
.ls28{letter-spacing:17.141333pt;}
.ls4{letter-spacing:17.600000pt;}
.ls4b{letter-spacing:17.653333pt;}
.ls3a{letter-spacing:17.664000pt;}
.ls34{letter-spacing:17.690667pt;}
.ls61{letter-spacing:17.946667pt;}
.ls50{letter-spacing:18.133333pt;}
.ls42{letter-spacing:27.840000pt;}
.ls4d{letter-spacing:35.306667pt;}
.ls41{letter-spacing:40.640000pt;}
.ls4c{letter-spacing:63.093333pt;}
.ls3f{letter-spacing:64.160000pt;}
.ls68{letter-spacing:221.333333pt;}
.ls56{letter-spacing:316.800000pt;}
.ws57{word-spacing:-53.493333pt;}
.ws4f{word-spacing:-53.333333pt;}
.ws55{word-spacing:-53.280000pt;}
.ws61{word-spacing:-53.013333pt;}
.ws6b{word-spacing:-37.557333pt;}
.ws69{word-spacing:-37.440000pt;}
.ws51{word-spacing:-37.408000pt;}
.ws52{word-spacing:-37.333333pt;}
.ws0{word-spacing:-21.162667pt;}
.ws50{word-spacing:-20.165333pt;}
.ws6a{word-spacing:-19.365333pt;}
.ws1{word-spacing:-17.125333pt;}
.ws9{word-spacing:-14.901333pt;}
.ws6{word-spacing:-14.784000pt;}
.ws5{word-spacing:-14.666667pt;}
.ws8{word-spacing:-14.549333pt;}
.ws4{word-spacing:-14.432000pt;}
.ws7{word-spacing:-14.138667pt;}
.wsc{word-spacing:-13.493333pt;}
.ws30{word-spacing:-13.440000pt;}
.ws4e{word-spacing:-13.386667pt;}
.wsa{word-spacing:-13.333333pt;}
.ws8b{word-spacing:-13.280000pt;}
.ws54{word-spacing:-13.226667pt;}
.ws84{word-spacing:-13.173333pt;}
.wsb{word-spacing:-13.120000pt;}
.ws53{word-spacing:-11.733333pt;}
.ws60{word-spacing:-11.680000pt;}
.ws62{word-spacing:-11.573333pt;}
.ws68{word-spacing:-11.520000pt;}
.ws2{word-spacing:-11.333333pt;}
.ws3{word-spacing:-9.333333pt;}
.ws5f{word-spacing:-8.213333pt;}
.ws56{word-spacing:-3.466667pt;}
.ws21{word-spacing:-3.200000pt;}
.ws70{word-spacing:-2.986667pt;}
.ws6f{word-spacing:-2.773333pt;}
.ws33{word-spacing:-2.666667pt;}
.ws7a{word-spacing:-2.560000pt;}
.ws79{word-spacing:-2.133333pt;}
.ws32{word-spacing:-1.973333pt;}
.ws2c{word-spacing:-1.706667pt;}
.ws2d{word-spacing:-1.600000pt;}
.ws24{word-spacing:-1.386667pt;}
.ws3e{word-spacing:-1.173333pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws3d{word-spacing:-0.853333pt;}
.ws31{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.533333pt;}
.ws1c{word-spacing:-0.373333pt;}
.ws6e{word-spacing:-0.352000pt;}
.ws8a{word-spacing:-0.320000pt;}
.ws14{word-spacing:-0.293333pt;}
.ws10{word-spacing:-0.277333pt;}
.wsd{word-spacing:-0.256000pt;}
.ws67{word-spacing:-0.213333pt;}
.ws82{word-spacing:-0.160000pt;}
.ws23{word-spacing:-0.106667pt;}
.ws35{word-spacing:-0.053333pt;}
.wse{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.058667pt;}
.ws83{word-spacing:0.106667pt;}
.ws4c{word-spacing:0.160000pt;}
.ws22{word-spacing:0.213333pt;}
.ws13{word-spacing:0.234667pt;}
.wsf{word-spacing:0.277333pt;}
.ws12{word-spacing:0.293333pt;}
.ws11{word-spacing:0.346667pt;}
.ws81{word-spacing:0.410667pt;}
.ws36{word-spacing:0.480000pt;}
.ws49{word-spacing:0.533333pt;}
.ws27{word-spacing:0.746667pt;}
.ws77{word-spacing:0.853333pt;}
.ws44{word-spacing:1.066667pt;}
.ws7e{word-spacing:1.226667pt;}
.ws7d{word-spacing:1.280000pt;}
.ws29{word-spacing:1.493333pt;}
.ws43{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.813333pt;}
.ws47{word-spacing:2.026667pt;}
.ws25{word-spacing:2.133333pt;}
.ws46{word-spacing:2.346667pt;}
.ws74{word-spacing:2.560000pt;}
.ws34{word-spacing:2.666667pt;}
.ws65{word-spacing:2.826667pt;}
.ws2b{word-spacing:2.880000pt;}
.ws59{word-spacing:3.093333pt;}
.ws38{word-spacing:3.200000pt;}
.ws8e{word-spacing:3.360000pt;}
.ws37{word-spacing:3.413333pt;}
.ws80{word-spacing:3.626667pt;}
.ws1e{word-spacing:3.733333pt;}
.ws73{word-spacing:3.946667pt;}
.ws1b{word-spacing:4.266667pt;}
.ws89{word-spacing:4.693333pt;}
.ws26{word-spacing:4.800000pt;}
.ws7f{word-spacing:5.013333pt;}
.ws48{word-spacing:5.333333pt;}
.ws16{word-spacing:5.866667pt;}
.ws15{word-spacing:6.080000pt;}
.ws19{word-spacing:6.400000pt;}
.ws40{word-spacing:6.933333pt;}
.ws3f{word-spacing:7.146667pt;}
.ws18{word-spacing:7.360000pt;}
.ws1a{word-spacing:7.466667pt;}
.ws78{word-spacing:7.680000pt;}
.ws42{word-spacing:7.893333pt;}
.ws41{word-spacing:8.000000pt;}
.ws91{word-spacing:8.213333pt;}
.ws2a{word-spacing:8.533333pt;}
.ws88{word-spacing:8.746667pt;}
.ws76{word-spacing:8.960000pt;}
.ws75{word-spacing:9.066667pt;}
.ws8c{word-spacing:9.280000pt;}
.ws5a{word-spacing:9.600000pt;}
.ws2e{word-spacing:10.133333pt;}
.ws4a{word-spacing:10.346667pt;}
.ws3c{word-spacing:10.560000pt;}
.ws3a{word-spacing:11.200000pt;}
.ws72{word-spacing:11.360000pt;}
.ws71{word-spacing:11.413333pt;}
.ws39{word-spacing:12.266667pt;}
.ws7c{word-spacing:12.800000pt;}
.ws7b{word-spacing:13.013333pt;}
.ws5d{word-spacing:13.226667pt;}
.ws5e{word-spacing:13.333333pt;}
.ws28{word-spacing:13.760000pt;}
.ws4b{word-spacing:13.866667pt;}
.ws5c{word-spacing:14.400000pt;}
.ws5b{word-spacing:14.613333pt;}
.ws58{word-spacing:15.360000pt;}
.ws3b{word-spacing:16.000000pt;}
.ws17{word-spacing:17.066667pt;}
.ws1f{word-spacing:17.600000pt;}
.ws20{word-spacing:17.813333pt;}
.ws8d{word-spacing:18.560000pt;}
.ws45{word-spacing:18.666667pt;}
.ws2f{word-spacing:19.733333pt;}
.ws85{word-spacing:21.333333pt;}
.ws86{word-spacing:21.546667pt;}
.ws90{word-spacing:24.533333pt;}
.ws8f{word-spacing:24.746667pt;}
.ws87{word-spacing:31.466667pt;}
.ws64{word-spacing:49.685333pt;}
.ws66{word-spacing:81.104000pt;}
.ws63{word-spacing:194.698667pt;}
._d{margin-left:-141.978667pt;}
._a{margin-left:-87.344000pt;}
._c{margin-left:-7.120000pt;}
._9{margin-left:-5.653333pt;}
._b{margin-left:-4.486400pt;}
._10{margin-left:-3.306667pt;}
._3{margin-left:-2.406400pt;}
._0{margin-left:-0.938667pt;}
._1{width:0.913067pt;}
._5{width:2.400000pt;}
._11{width:3.364267pt;}
._7{width:4.533333pt;}
._2{width:5.920000pt;}
._8{width:8.746667pt;}
._6{width:10.346667pt;}
._f{width:11.520000pt;}
._e{width:13.013333pt;}
._4{width:14.645333pt;}
._15{width:75.466667pt;}
._14{width:211.733333pt;}
._13{width:416.373333pt;}
._12{width:417.640533pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fs7{font-size:53.333333pt;}
.fs9{font-size:56.218213pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y104{bottom:2.933333pt;}
.y138{bottom:3.866667pt;}
.ye9{bottom:4.400000pt;}
.yeb{bottom:4.800000pt;}
.y153{bottom:10.533333pt;}
.y13d{bottom:10.666667pt;}
.y13b{bottom:18.266667pt;}
.y134{bottom:20.266667pt;}
.y182{bottom:99.733333pt;}
.yf8{bottom:102.133333pt;}
.y14d{bottom:103.600000pt;}
.y6a{bottom:104.400000pt;}
.y11c{bottom:104.933333pt;}
.yf7{bottom:114.533333pt;}
.y181{bottom:115.066667pt;}
.y19f{bottom:116.666667pt;}
.y14c{bottom:118.933333pt;}
.y69{bottom:119.733333pt;}
.y89{bottom:122.800000pt;}
.yf0{bottom:122.933333pt;}
.y11b{bottom:124.266667pt;}
.ybd{bottom:124.800000pt;}
.y32{bottom:125.866667pt;}
.y180{bottom:130.400000pt;}
.y14b{bottom:134.266667pt;}
.y19e{bottom:134.533333pt;}
.y68{bottom:135.066667pt;}
.y87{bottom:138.133333pt;}
.y88{bottom:138.266667pt;}
.y31{bottom:141.200000pt;}
.ybc{bottom:142.000000pt;}
.y11a{bottom:143.600000pt;}
.y17f{bottom:145.733333pt;}
.y14a{bottom:149.600000pt;}
.y19d{bottom:149.733333pt;}
.y67{bottom:150.400000pt;}
.y85{bottom:153.733333pt;}
.y86{bottom:153.866667pt;}
.yef{bottom:154.533333pt;}
.y30{bottom:156.533333pt;}
.ybb{bottom:157.600000pt;}
.y17e{bottom:161.066667pt;}
.y119{bottom:162.933333pt;}
.y149{bottom:164.933333pt;}
.y19c{bottom:165.066667pt;}
.y66{bottom:165.733333pt;}
.y84{bottom:169.466667pt;}
.yee{bottom:170.933333pt;}
.y2f{bottom:171.866667pt;}
.yba{bottom:172.933333pt;}
.y17d{bottom:176.400000pt;}
.y148{bottom:180.266667pt;}
.y65{bottom:180.933333pt;}
.y83{bottom:182.132000pt;}
.y82{bottom:182.133333pt;}
.y118{bottom:182.266667pt;}
.y2e{bottom:187.066667pt;}
.yb9{bottom:188.266667pt;}
.y17c{bottom:191.733333pt;}
.yed{bottom:194.000000pt;}
.y147{bottom:195.600000pt;}
.y64{bottom:196.266667pt;}
.y7f{bottom:199.200000pt;}
.y80{bottom:199.333333pt;}
.y117{bottom:201.600000pt;}
.y2d{bottom:202.400000pt;}
.yb8{bottom:203.600000pt;}
.y17b{bottom:207.066667pt;}
.y146{bottom:210.933333pt;}
.y63{bottom:211.600000pt;}
.y19b{bottom:216.266667pt;}
.y2c{bottom:217.733333pt;}
.y81{bottom:220.930667pt;}
.y116{bottom:220.933333pt;}
.yec{bottom:221.866667pt;}
.y17a{bottom:222.400000pt;}
.y145{bottom:226.266667pt;}
.y62{bottom:226.933333pt;}
.y7e{bottom:232.133333pt;}
.y2b{bottom:233.066667pt;}
.y19a{bottom:234.133333pt;}
.yb7{bottom:234.666667pt;}
.y179{bottom:237.733333pt;}
.yea{bottom:240.133333pt;}
.y61{bottom:242.266667pt;}
.y144{bottom:245.600000pt;}
.y7d{bottom:247.733333pt;}
.y2a{bottom:248.400000pt;}
.y199{bottom:249.466667pt;}
.yb6{bottom:250.000000pt;}
.y178{bottom:253.066667pt;}
.y60{bottom:257.600000pt;}
.y115{bottom:261.733333pt;}
.ye8{bottom:263.200000pt;}
.y29{bottom:263.733333pt;}
.y198{bottom:264.800000pt;}
.y143{bottom:264.933333pt;}
.yb5{bottom:265.600000pt;}
.y177{bottom:268.400000pt;}
.y5f{bottom:272.933333pt;}
.y28{bottom:279.066667pt;}
.y7c{bottom:279.466667pt;}
.y197{bottom:280.133333pt;}
.yb4{bottom:281.200000pt;}
.y176{bottom:283.733333pt;}
.y141{bottom:284.266667pt;}
.y5e{bottom:288.266667pt;}
.y27{bottom:294.400000pt;}
.y142{bottom:294.933333pt;}
.y196{bottom:295.466667pt;}
.y7b{bottom:296.000000pt;}
.yb3{bottom:296.533333pt;}
.y114{bottom:296.800000pt;}
.y175{bottom:300.000000pt;}
.y15c{bottom:300.533333pt;}
.y5d{bottom:303.600000pt;}
.ye7{bottom:306.000000pt;}
.y26{bottom:309.733333pt;}
.y195{bottom:310.800000pt;}
.y7a{bottom:311.333333pt;}
.yb2{bottom:311.866667pt;}
.y113{bottom:312.266667pt;}
.y174{bottom:316.400000pt;}
.y5c{bottom:318.933333pt;}
.ye6{bottom:321.333333pt;}
.y25{bottom:325.066667pt;}
.y194{bottom:326.133333pt;}
.y79{bottom:326.666667pt;}
.yb1{bottom:327.200000pt;}
.y112{bottom:331.600000pt;}
.y173{bottom:331.733333pt;}
.y5b{bottom:334.266667pt;}
.y140{bottom:338.266667pt;}
.y24{bottom:340.400000pt;}
.y193{bottom:341.466667pt;}
.y78{bottom:342.000000pt;}
.yb0{bottom:342.533333pt;}
.y172{bottom:347.066667pt;}
.y5a{bottom:349.600000pt;}
.y111{bottom:350.933333pt;}
.ye5{bottom:355.333333pt;}
.y23{bottom:356.266667pt;}
.y192{bottom:356.800000pt;}
.y77{bottom:357.333333pt;}
.y13e{bottom:357.600000pt;}
.yaf{bottom:357.866667pt;}
.y171{bottom:362.400000pt;}
.y59{bottom:364.933333pt;}
.y13f{bottom:368.266667pt;}
.y110{bottom:370.266667pt;}
.ye4{bottom:370.666667pt;}
.y191{bottom:372.133333pt;}
.y76{bottom:372.666667pt;}
.yae{bottom:373.600000pt;}
.y22{bottom:374.533333pt;}
.y170{bottom:378.666667pt;}
.y58{bottom:380.266667pt;}
.ye3{bottom:386.000000pt;}
.yad{bottom:386.266667pt;}
.y190{bottom:387.466667pt;}
.y75{bottom:388.000000pt;}
.y10f{bottom:389.600000pt;}
.y21{bottom:391.600000pt;}
.y13a{bottom:392.266667pt;}
.y16f{bottom:395.066667pt;}
.y57{bottom:395.600000pt;}
.ye2{bottom:401.333333pt;}
.y18f{bottom:402.800000pt;}
.y13c{bottom:402.933333pt;}
.y74{bottom:403.333333pt;}
.yac{bottom:405.866667pt;}
.y10e{bottom:408.933333pt;}
.y20{bottom:410.000000pt;}
.y16e{bottom:410.400000pt;}
.y56{bottom:410.933333pt;}
.ye1{bottom:416.666667pt;}
.y18e{bottom:418.133333pt;}
.y73{bottom:418.666667pt;}
.yab{bottom:424.666667pt;}
.y16d{bottom:426.000000pt;}
.y55{bottom:426.266667pt;}
.y139{bottom:426.933333pt;}
.y1f{bottom:427.866667pt;}
.y10d{bottom:428.266667pt;}
.ye0{bottom:432.400000pt;}
.y72{bottom:434.000000pt;}
.y54{bottom:441.600000pt;}
.y16c{bottom:442.533333pt;}
.y1e{bottom:443.200000pt;}
.y133{bottom:446.266667pt;}
.ydf{bottom:448.933333pt;}
.y71{bottom:449.333333pt;}
.ya9{bottom:450.000000pt;}
.y137{bottom:450.133333pt;}
.y135{bottom:451.200000pt;}
.y18d{bottom:452.133333pt;}
.yaa{bottom:452.533333pt;}
.y53{bottom:456.933333pt;}
.y16b{bottom:457.866667pt;}
.y1d{bottom:458.533333pt;}
.y132{bottom:458.800000pt;}
.yde{bottom:464.266667pt;}
.y70{bottom:464.666667pt;}
.yf6{bottom:466.533333pt;}
.y136{bottom:467.466667pt;}
.y10c{bottom:469.066667pt;}
.y52{bottom:472.266667pt;}
.y16a{bottom:473.200000pt;}
.y1c{bottom:473.866667pt;}
.ydd{bottom:479.600000pt;}
.y6f{bottom:480.000000pt;}
.y18c{bottom:482.800000pt;}
.y51{bottom:487.600000pt;}
.y169{bottom:488.533333pt;}
.y1b{bottom:489.200000pt;}
.ydc{bottom:494.933333pt;}
.y6e{bottom:495.600000pt;}
.y18b{bottom:498.133333pt;}
.y50{bottom:502.933333pt;}
.y168{bottom:503.866667pt;}
.y10b{bottom:504.133333pt;}
.y1a{bottom:504.533333pt;}
.y131{bottom:505.466667pt;}
.ya8{bottom:505.600000pt;}
.ydb{bottom:510.266667pt;}
.y6d{bottom:512.540000pt;}
.y18a{bottom:513.466667pt;}
.y4f{bottom:518.266667pt;}
.y167{bottom:519.200000pt;}
.y10a{bottom:519.466667pt;}
.y19{bottom:519.866667pt;}
.ya7{bottom:522.266667pt;}
.yda{bottom:525.600000pt;}
.y189{bottom:528.800000pt;}
.y6c{bottom:529.333333pt;}
.y4e{bottom:533.600000pt;}
.y166{bottom:534.533333pt;}
.y18{bottom:535.200000pt;}
.ya6{bottom:537.866667pt;}
.y109{bottom:538.800000pt;}
.y130{bottom:539.466667pt;}
.yd9{bottom:540.933333pt;}
.y188{bottom:544.133333pt;}
.y6b{bottom:546.400000pt;}
.y4d{bottom:548.933333pt;}
.y165{bottom:549.866667pt;}
.y17{bottom:550.533333pt;}
.ya5{bottom:553.466667pt;}
.y12f{bottom:554.800000pt;}
.yd8{bottom:556.266667pt;}
.y108{bottom:558.133333pt;}
.y187{bottom:559.466667pt;}
.y4c{bottom:564.266667pt;}
.y164{bottom:565.200000pt;}
.y16{bottom:565.866667pt;}
.ya4{bottom:570.000000pt;}
.y12e{bottom:570.133333pt;}
.yd7{bottom:571.600000pt;}
.y186{bottom:574.800000pt;}
.y107{bottom:577.466667pt;}
.y4b{bottom:579.600000pt;}
.y163{bottom:580.533333pt;}
.y15{bottom:581.200000pt;}
.ya3{bottom:585.333333pt;}
.y12d{bottom:585.466667pt;}
.yd6{bottom:586.933333pt;}
.y185{bottom:590.133333pt;}
.y15b{bottom:593.866667pt;}
.y4a{bottom:594.933333pt;}
.y162{bottom:595.866667pt;}
.y14{bottom:596.533333pt;}
.y106{bottom:596.800000pt;}
.ya2{bottom:600.666667pt;}
.y12c{bottom:601.066667pt;}
.yd5{bottom:602.266667pt;}
.y184{bottom:605.466667pt;}
.y15a{bottom:609.200000pt;}
.y49{bottom:610.266667pt;}
.y161{bottom:611.200000pt;}
.y13{bottom:611.866667pt;}
.ya1{bottom:616.000000pt;}
.y105{bottom:616.133333pt;}
.yd4{bottom:617.600000pt;}
.y159{bottom:624.533333pt;}
.y48{bottom:625.600000pt;}
.y160{bottom:626.533333pt;}
.y12{bottom:627.200000pt;}
.ya0{bottom:632.400000pt;}
.yd3{bottom:632.933333pt;}
.y103{bottom:635.466667pt;}
.y183{bottom:639.733333pt;}
.y158{bottom:639.866667pt;}
.y47{bottom:640.933333pt;}
.y15f{bottom:641.866667pt;}
.y11{bottom:642.533333pt;}
.y9f{bottom:646.400000pt;}
.y12b{bottom:648.266667pt;}
.yd2{bottom:648.800000pt;}
.y9e{bottom:649.600000pt;}
.y157{bottom:655.333333pt;}
.y46{bottom:656.266667pt;}
.y15e{bottom:657.200000pt;}
.y10{bottom:657.866667pt;}
.y9d{bottom:658.000000pt;}
.y12a{bottom:663.600000pt;}
.yd1{bottom:666.933333pt;}
.y15d{bottom:669.600000pt;}
.y45{bottom:671.600000pt;}
.yf{bottom:673.466667pt;}
.y156{bottom:674.666667pt;}
.y102{bottom:675.466667pt;}
.y129{bottom:678.933333pt;}
.yd0{bottom:683.466667pt;}
.y9c{bottom:684.933333pt;}
.y44{bottom:686.933333pt;}
.ye{bottom:690.533333pt;}
.y101{bottom:690.800000pt;}
.y155{bottom:694.000000pt;}
.y128{bottom:694.266667pt;}
.ycf{bottom:698.800000pt;}
.y9b{bottom:701.333333pt;}
.y43{bottom:702.266667pt;}
.y1ae{bottom:703.066667pt;}
.y127{bottom:709.600000pt;}
.y154{bottom:713.333333pt;}
.yce{bottom:714.133333pt;}
.yd{bottom:714.266667pt;}
.y9a{bottom:716.933333pt;}
.y42{bottom:717.600000pt;}
.y1ad{bottom:720.666667pt;}
.y100{bottom:724.800000pt;}
.y126{bottom:724.933333pt;}
.y99{bottom:729.334667pt;}
.ycd{bottom:729.466667pt;}
.yc{bottom:732.666667pt;}
.y41{bottom:732.933333pt;}
.y97{bottom:737.466667pt;}
.y1ac{bottom:738.266667pt;}
.yff{bottom:740.133333pt;}
.y125{bottom:740.266667pt;}
.y152{bottom:743.200000pt;}
.ycc{bottom:744.800000pt;}
.y96{bottom:746.400000pt;}
.y40{bottom:748.266667pt;}
.yb{bottom:750.933333pt;}
.y124{bottom:755.733333pt;}
.y1ab{bottom:756.000000pt;}
.ycb{bottom:760.133333pt;}
.y3f{bottom:763.600000pt;}
.y98{bottom:766.266667pt;}
.ya{bottom:767.733333pt;}
.y1aa{bottom:773.600000pt;}
.yfe{bottom:774.133333pt;}
.y123{bottom:775.066667pt;}
.yca{bottom:775.466667pt;}
.y95{bottom:777.066667pt;}
.y3e{bottom:778.933333pt;}
.y9{bottom:784.666667pt;}
.y151{bottom:787.866667pt;}
.yfd{bottom:789.466667pt;}
.yc9{bottom:790.800000pt;}
.y1a9{bottom:791.200000pt;}
.y94{bottom:793.733333pt;}
.y3d{bottom:794.266667pt;}
.y122{bottom:794.400000pt;}
.y8{bottom:801.466667pt;}
.yfc{bottom:804.800000pt;}
.yc8{bottom:806.133333pt;}
.y1a8{bottom:808.800000pt;}
.y93{bottom:809.333333pt;}
.y3c{bottom:809.600000pt;}
.y7{bottom:813.600000pt;}
.y121{bottom:813.733333pt;}
.yfb{bottom:820.133333pt;}
.yc7{bottom:821.466667pt;}
.y150{bottom:821.866667pt;}
.y92{bottom:824.666667pt;}
.y3b{bottom:824.933333pt;}
.y1a7{bottom:826.533333pt;}
.y120{bottom:833.066667pt;}
.y6{bottom:833.466667pt;}
.yfa{bottom:835.466667pt;}
.yc6{bottom:836.800000pt;}
.y14f{bottom:837.200000pt;}
.y91{bottom:840.000000pt;}
.y3a{bottom:840.266667pt;}
.y1a6{bottom:844.133333pt;}
.yc5{bottom:852.133333pt;}
.y11f{bottom:852.400000pt;}
.y14e{bottom:852.940000pt;}
.y5{bottom:853.066667pt;}
.y90{bottom:855.333333pt;}
.y39{bottom:855.600000pt;}
.y1a5{bottom:861.733333pt;}
.yf5{bottom:867.466667pt;}
.yc4{bottom:867.866667pt;}
.yf9{bottom:869.733333pt;}
.y8f{bottom:870.666667pt;}
.y38{bottom:870.933333pt;}
.y4{bottom:871.466667pt;}
.y11e{bottom:871.733333pt;}
.y1a4{bottom:879.333333pt;}
.yf4{bottom:882.800000pt;}
.yc3{bottom:883.466667pt;}
.y8e{bottom:886.000000pt;}
.y37{bottom:886.266667pt;}
.y3{bottom:891.066667pt;}
.y1a3{bottom:897.066667pt;}
.yf3{bottom:898.400000pt;}
.yc2{bottom:899.066667pt;}
.y8d{bottom:901.333333pt;}
.y36{bottom:901.600000pt;}
.y1a2{bottom:912.400000pt;}
.y11d{bottom:912.533333pt;}
.yc1{bottom:914.400000pt;}
.yf2{bottom:914.933333pt;}
.y2{bottom:915.600000pt;}
.y8c{bottom:916.666667pt;}
.y35{bottom:916.933333pt;}
.y1a1{bottom:928.000000pt;}
.yc0{bottom:929.733333pt;}
.yf1{bottom:931.200000pt;}
.y8a{bottom:932.000000pt;}
.y8b{bottom:932.133333pt;}
.y34{bottom:932.266667pt;}
.y1{bottom:940.133333pt;}
.y1a0{bottom:945.066667pt;}
.ybe{bottom:946.133333pt;}
.y33{bottom:947.600000pt;}
.ybf{bottom:949.066667pt;}
.h1a{height:15.332000pt;}
.h1b{height:15.333333pt;}
.h17{height:18.268000pt;}
.h18{height:19.066667pt;}
.h4{height:25.940104pt;}
.h5{height:29.645833pt;}
.h1e{height:30.665333pt;}
.h1f{height:30.666667pt;}
.h1c{height:34.666667pt;}
.h16{height:37.031250pt;}
.h8{height:37.057292pt;}
.hf{height:37.734375pt;}
.h19{height:38.125000pt;}
.h13{height:39.731771pt;}
.h1d{height:40.187238pt;}
.ha{height:40.763021pt;}
.h2{height:44.468750pt;}
.h9{height:44.843750pt;}
.hc{height:46.302083pt;}
.h7{height:49.328125pt;}
.h6{height:53.812500pt;}
.h3{height:55.498698pt;}
.hb{height:66.145833pt;}
.h12{height:68.279167pt;}
.h15{height:71.334375pt;}
.h1{height:71.750000pt;}
.hd{height:78.267708pt;}
.h11{height:84.134375pt;}
.h14{height:96.545833pt;}
.he{height:101.879167pt;}
.h10{height:107.212500pt;}
.h0{height:1056.000000pt;}
.we{width:69.466667pt;}
.w12{width:72.400000pt;}
.w1{width:78.533333pt;}
.wc{width:80.400000pt;}
.wb{width:96.800000pt;}
.wa{width:104.266667pt;}
.w9{width:104.400000pt;}
.wf{width:107.466667pt;}
.w8{width:111.600000pt;}
.w6{width:111.733333pt;}
.w5{width:114.266667pt;}
.w10{width:118.400000pt;}
.w7{width:122.801333pt;}
.wd{width:130.133333pt;}
.w2{width:146.533333pt;}
.w4{width:146.534667pt;}
.w3{width:146.666667pt;}
.w11{width:148.265333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2f{left:1.066667pt;}
.x54{left:2.533333pt;}
.x28{left:4.133333pt;}
.x2b{left:5.600000pt;}
.x25{left:6.533333pt;}
.x34{left:8.666667pt;}
.x35{left:11.466667pt;}
.x33{left:13.733333pt;}
.x41{left:14.933333pt;}
.x36{left:17.866667pt;}
.x24{left:22.266667pt;}
.x32{left:26.800000pt;}
.x4e{left:28.533333pt;}
.x51{left:31.866667pt;}
.x4c{left:32.933333pt;}
.x31{left:37.200000pt;}
.x53{left:40.933333pt;}
.x50{left:43.333333pt;}
.x52{left:50.266667pt;}
.x29{left:52.666667pt;}
.x2c{left:56.000000pt;}
.x4a{left:68.533333pt;}
.x3f{left:71.733333pt;}
.x4{left:144.000000pt;}
.x22{left:146.533333pt;}
.x2a{left:150.133333pt;}
.x2{left:163.328000pt;}
.x48{left:165.200000pt;}
.x58{left:168.000000pt;}
.x1{left:170.133333pt;}
.x37{left:191.066667pt;}
.x49{left:220.400000pt;}
.x7{left:226.266667pt;}
.x13{left:240.666667pt;}
.x5{left:255.333333pt;}
.x8{left:274.266667pt;}
.x9{left:275.866667pt;}
.x38{left:278.133333pt;}
.x43{left:279.200000pt;}
.xc{left:289.200000pt;}
.x4b{left:291.866667pt;}
.x2e{left:294.000000pt;}
.x39{left:314.133333pt;}
.x6{left:316.133333pt;}
.x3{left:323.157333pt;}
.x14{left:341.333333pt;}
.x56{left:347.200000pt;}
.xe{left:351.066667pt;}
.x19{left:352.533333pt;}
.xd{left:354.934667pt;}
.xb{left:360.666667pt;}
.x1c{left:364.266667pt;}
.x55{left:365.600000pt;}
.x1d{left:367.466667pt;}
.x57{left:373.733333pt;}
.x26{left:375.066667pt;}
.x15{left:376.400000pt;}
.x23{left:377.866667pt;}
.x3a{left:384.533333pt;}
.x1a{left:385.466667pt;}
.x17{left:386.934667pt;}
.x16{left:392.133333pt;}
.x1b{left:394.933333pt;}
.x20{left:399.066667pt;}
.x4d{left:401.333333pt;}
.x1e{left:403.333333pt;}
.xa{left:408.000000pt;}
.xf{left:409.200000pt;}
.x30{left:410.266667pt;}
.x1f{left:415.066667pt;}
.x3b{left:420.400000pt;}
.x10{left:430.802667pt;}
.x12{left:439.333333pt;}
.x21{left:465.066667pt;}
.x11{left:468.666667pt;}
.x18{left:472.000000pt;}
.x3e{left:490.800000pt;}
.x46{left:498.533333pt;}
.x3c{left:509.200000pt;}
.x3d{left:515.862280pt;}
.x44{left:520.533333pt;}
.x4f{left:521.733333pt;}
.x27{left:523.733333pt;}
.x40{left:589.600000pt;}
.x42{left:609.866667pt;}
.x47{left:613.866667pt;}
.x45{left:619.200000pt;}
.x2d{left:672.000000pt;}
}




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