
    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_418e954b21ea70828ee60061.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128906;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_41ceeef0a891f76ef6c53397.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_300c699d3d9c846234677df7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_04a35426e50b0374a38d794b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_e64d179b90ca7495805fabea.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.128906;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_b268fa47810aff09e553bace.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.128906;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_8fcd47e87f4486ed4c321cf7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.128906;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_8fcd47e87f4486ed4c321cf7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.128906;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.224998,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224998,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.009600px;}
.ls1{letter-spacing:0.010200px;}
.ls3{letter-spacing:0.972000px;}
.ls4{letter-spacing:2.754000px;}
.lsb{letter-spacing:140.443576px;}
.ls8{letter-spacing:199.219200px;}
.ls6{letter-spacing:200.149800px;}
.lsd{letter-spacing:225.691200px;}
.lsa{letter-spacing:262.136303px;}
.ls7{letter-spacing:289.328400px;}
.ls5{letter-spacing:289.956600px;}
.lsc{letter-spacing:302.565000px;}
.ls9{letter-spacing:471.710400px;}
.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;}
}
.ws1{word-spacing:-16.459200px;}
.ws144{word-spacing:-15.768000px;}
.ws166{word-spacing:-15.240000px;}
.ws65{word-spacing:-14.460000px;}
.ws167{word-spacing:-13.716000px;}
.ws16b{word-spacing:-13.662000px;}
.wsca{word-spacing:-13.014000px;}
.ws0{word-spacing:-12.192000px;}
.ws2{word-spacing:-9.399000px;}
.ws169{word-spacing:-8.316000px;}
.ws8b{word-spacing:-6.600000px;}
.ws120{word-spacing:-6.480000px;}
.ws16c{word-spacing:-5.940000px;}
.ws168{word-spacing:-5.760000px;}
.ws90{word-spacing:-5.700000px;}
.ws6{word-spacing:-5.664000px;}
.ws5c{word-spacing:-5.580000px;}
.ws56{word-spacing:-5.520000px;}
.wsc8{word-spacing:-5.400000px;}
.wsda{word-spacing:-5.346000px;}
.ws99{word-spacing:-5.280000px;}
.ws37{word-spacing:-5.220000px;}
.wsd2{word-spacing:-5.076000px;}
.ws77{word-spacing:-5.040000px;}
.ws7f{word-spacing:-4.980000px;}
.ws16a{word-spacing:-4.914000px;}
.wsbe{word-spacing:-4.860000px;}
.ws70{word-spacing:-4.800000px;}
.wsd4{word-spacing:-4.536000px;}
.ws1e{word-spacing:-4.500000px;}
.wsbb{word-spacing:-4.380000px;}
.ws69{word-spacing:-4.140000px;}
.ws28{word-spacing:-4.080000px;}
.ws98{word-spacing:-3.960000px;}
.ws19{word-spacing:-3.840000px;}
.wsa0{word-spacing:-3.780000px;}
.ws1b{word-spacing:-3.600000px;}
.ws2e{word-spacing:-3.480000px;}
.ws27{word-spacing:-3.300000px;}
.ws38{word-spacing:-2.940000px;}
.ws8c{word-spacing:-2.880000px;}
.ws9f{word-spacing:-2.760000px;}
.ws85{word-spacing:-2.700000px;}
.ws83{word-spacing:-2.640000px;}
.ws16d{word-spacing:-2.538000px;}
.wsa9{word-spacing:-2.280000px;}
.ws46{word-spacing:-2.220000px;}
.ws15d{word-spacing:-2.214000px;}
.ws7b{word-spacing:-2.160000px;}
.wsc7{word-spacing:-2.040000px;}
.ws3d{word-spacing:-1.980000px;}
.ws8{word-spacing:-1.920000px;}
.wsf{word-spacing:-1.872000px;}
.ws81{word-spacing:-1.860000px;}
.wsb1{word-spacing:-1.740000px;}
.wsaf{word-spacing:-1.680000px;}
.wsac{word-spacing:-1.560000px;}
.wsb6{word-spacing:-1.500000px;}
.wsb{word-spacing:-1.344000px;}
.ws35{word-spacing:-1.320000px;}
.ws2c{word-spacing:-1.260000px;}
.wsc6{word-spacing:-1.200000px;}
.ws32{word-spacing:-1.140000px;}
.ws25{word-spacing:-1.080000px;}
.wsbf{word-spacing:-1.020000px;}
.ws139{word-spacing:-0.972000px;}
.wsf7{word-spacing:-0.918000px;}
.ws93{word-spacing:-0.900000px;}
.ws36{word-spacing:-0.780000px;}
.ws57{word-spacing:-0.720000px;}
.ws78{word-spacing:-0.660000px;}
.ws2d{word-spacing:-0.600000px;}
.ws21{word-spacing:-0.480000px;}
.ws5d{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.324000px;}
.ws42{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.180000px;}
.ws31{word-spacing:-0.120000px;}
.ws92{word-spacing:-0.060000px;}
.ws13c{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws58{word-spacing:0.060000px;}
.ws9b{word-spacing:0.120000px;}
.wsa5{word-spacing:0.180000px;}
.ws39{word-spacing:0.300000px;}
.ws14{word-spacing:0.360000px;}
.wscd{word-spacing:0.420000px;}
.wsa7{word-spacing:0.540000px;}
.ws11{word-spacing:0.768000px;}
.ws62{word-spacing:0.840000px;}
.ws71{word-spacing:0.900000px;}
.ws41{word-spacing:0.960000px;}
.ws8f{word-spacing:1.020000px;}
.wseb{word-spacing:1.080000px;}
.ws34{word-spacing:1.140000px;}
.ws10{word-spacing:1.152000px;}
.ws17{word-spacing:1.260000px;}
.ws22{word-spacing:1.380000px;}
.ws9e{word-spacing:1.440000px;}
.ws64{word-spacing:1.500000px;}
.wsbc{word-spacing:1.560000px;}
.wsba{word-spacing:1.620000px;}
.ws12{word-spacing:1.632000px;}
.ws4f{word-spacing:1.740000px;}
.ws11d{word-spacing:1.890000px;}
.ws9{word-spacing:1.920000px;}
.ws13{word-spacing:1.968000px;}
.ws4e{word-spacing:1.980000px;}
.ws6a{word-spacing:2.040000px;}
.wsd5{word-spacing:2.160000px;}
.wsde{word-spacing:2.268000px;}
.ws94{word-spacing:2.340000px;}
.ws9c{word-spacing:2.400000px;}
.wsc5{word-spacing:2.640000px;}
.ws60{word-spacing:2.700000px;}
.ws6c{word-spacing:2.820000px;}
.ws63{word-spacing:2.880000px;}
.ws5e{word-spacing:2.940000px;}
.wsc1{word-spacing:3.000000px;}
.wsa6{word-spacing:3.120000px;}
.wsb4{word-spacing:3.180000px;}
.wsa{word-spacing:3.216000px;}
.wsef{word-spacing:3.240000px;}
.ws1d{word-spacing:3.300000px;}
.ws61{word-spacing:3.360000px;}
.wsae{word-spacing:3.480000px;}
.ws82{word-spacing:3.540000px;}
.ws8e{word-spacing:3.720000px;}
.ws59{word-spacing:3.840000px;}
.ws15{word-spacing:3.900000px;}
.wsb9{word-spacing:3.960000px;}
.wsaa{word-spacing:4.020000px;}
.ws14f{word-spacing:4.050000px;}
.ws97{word-spacing:4.080000px;}
.ws20{word-spacing:4.140000px;}
.ws16{word-spacing:4.200000px;}
.ws30{word-spacing:4.260000px;}
.wsb8{word-spacing:4.320000px;}
.ws1c{word-spacing:4.380000px;}
.ws95{word-spacing:4.440000px;}
.wsc3{word-spacing:4.500000px;}
.ws33{word-spacing:4.560000px;}
.ws8d{word-spacing:4.740000px;}
.ws89{word-spacing:4.800000px;}
.ws50{word-spacing:4.860000px;}
.wsb3{word-spacing:5.040000px;}
.wsf8{word-spacing:5.184000px;}
.ws149{word-spacing:5.238000px;}
.ws24{word-spacing:5.340000px;}
.ws136{word-spacing:5.400000px;}
.ws40{word-spacing:5.460000px;}
.ws87{word-spacing:5.640000px;}
.ws8a{word-spacing:5.700000px;}
.ws10e{word-spacing:5.778000px;}
.ws10c{word-spacing:5.886000px;}
.ws7e{word-spacing:5.940000px;}
.wse{word-spacing:6.000000px;}
.ws43{word-spacing:6.060000px;}
.ws80{word-spacing:6.120000px;}
.ws7{word-spacing:6.192000px;}
.ws160{word-spacing:6.210000px;}
.ws7c{word-spacing:6.240000px;}
.ws3f{word-spacing:6.420000px;}
.wsb2{word-spacing:6.480000px;}
.wsee{word-spacing:6.642000px;}
.ws2a{word-spacing:6.660000px;}
.wsc2{word-spacing:6.720000px;}
.ws53{word-spacing:6.780000px;}
.ws2f{word-spacing:6.900000px;}
.ws125{word-spacing:6.966000px;}
.ws1a{word-spacing:7.020000px;}
.ws18{word-spacing:7.080000px;}
.wsc{word-spacing:7.248000px;}
.ws91{word-spacing:7.380000px;}
.ws48{word-spacing:7.440000px;}
.ws96{word-spacing:7.500000px;}
.ws12b{word-spacing:7.506000px;}
.wsb7{word-spacing:7.560000px;}
.ws51{word-spacing:7.620000px;}
.ws4d{word-spacing:7.680000px;}
.wse0{word-spacing:7.722000px;}
.ws7d{word-spacing:7.740000px;}
.ws1f{word-spacing:7.800000px;}
.ws113{word-spacing:7.884000px;}
.ws6e{word-spacing:7.920000px;}
.ws6d{word-spacing:7.980000px;}
.ws45{word-spacing:8.100000px;}
.ws84{word-spacing:8.160000px;}
.ws5f{word-spacing:8.220000px;}
.wsad{word-spacing:8.280000px;}
.ws23{word-spacing:8.340000px;}
.ws52{word-spacing:8.400000px;}
.ws7a{word-spacing:8.460000px;}
.ws6b{word-spacing:8.580000px;}
.ws68{word-spacing:8.640000px;}
.ws108{word-spacing:8.694000px;}
.ws3e{word-spacing:8.820000px;}
.ws73{word-spacing:9.000000px;}
.ws13d{word-spacing:9.072000px;}
.ws14d{word-spacing:9.180000px;}
.ws145{word-spacing:9.234000px;}
.ws5{word-spacing:9.342000px;}
.ws2b{word-spacing:9.360000px;}
.ws131{word-spacing:9.396000px;}
.ws4c{word-spacing:9.420000px;}
.ws47{word-spacing:9.600000px;}
.ws10f{word-spacing:9.936000px;}
.wscf{word-spacing:9.960000px;}
.ws88{word-spacing:10.260000px;}
.wsd1{word-spacing:10.320000px;}
.ws9d{word-spacing:10.380000px;}
.ws3c{word-spacing:10.440000px;}
.wsc0{word-spacing:10.500000px;}
.ws26{word-spacing:10.560000px;}
.ws5a{word-spacing:10.800000px;}
.ws55{word-spacing:10.860000px;}
.wsb0{word-spacing:10.920000px;}
.ws49{word-spacing:10.980000px;}
.ws14c{word-spacing:11.016000px;}
.ws15e{word-spacing:11.070000px;}
.wsa3{word-spacing:11.100000px;}
.ws72{word-spacing:11.160000px;}
.ws115{word-spacing:11.178000px;}
.ws54{word-spacing:11.280000px;}
.wscb{word-spacing:11.400000px;}
.ws140{word-spacing:11.502000px;}
.ws44{word-spacing:11.580000px;}
.wse1{word-spacing:11.664000px;}
.ws15b{word-spacing:11.826000px;}
.wsa4{word-spacing:11.880000px;}
.ws138{word-spacing:11.934000px;}
.ws12c{word-spacing:12.150000px;}
.ws15c{word-spacing:12.204000px;}
.wsab{word-spacing:12.300000px;}
.wse7{word-spacing:12.528000px;}
.ws164{word-spacing:12.690000px;}
.ws86{word-spacing:12.720000px;}
.ws29{word-spacing:13.080000px;}
.ws130{word-spacing:13.284000px;}
.ws6f{word-spacing:13.320000px;}
.wsd0{word-spacing:13.380000px;}
.ws5b{word-spacing:13.560000px;}
.ws11f{word-spacing:13.662000px;}
.ws122{word-spacing:13.716000px;}
.wsd9{word-spacing:13.770000px;}
.wsfa{word-spacing:13.824000px;}
.ws14e{word-spacing:13.932000px;}
.wsbd{word-spacing:14.160000px;}
.ws150{word-spacing:14.256000px;}
.ws165{word-spacing:14.418000px;}
.wse2{word-spacing:14.472000px;}
.wsf9{word-spacing:14.526000px;}
.ws13a{word-spacing:14.796000px;}
.ws159{word-spacing:14.904000px;}
.wsb5{word-spacing:14.940000px;}
.ws79{word-spacing:15.600000px;}
.ws11e{word-spacing:15.660000px;}
.ws66{word-spacing:15.960000px;}
.wsa1{word-spacing:16.020000px;}
.wsc4{word-spacing:16.080000px;}
.ws141{word-spacing:16.200000px;}
.ws15f{word-spacing:16.524000px;}
.ws67{word-spacing:16.740000px;}
.ws3a{word-spacing:16.860000px;}
.wscc{word-spacing:17.700000px;}
.wsf1{word-spacing:17.928000px;}
.ws124{word-spacing:18.036000px;}
.ws15a{word-spacing:18.198000px;}
.ws4b{word-spacing:18.360000px;}
.ws105{word-spacing:18.522000px;}
.ws4a{word-spacing:18.660000px;}
.ws12a{word-spacing:18.954000px;}
.wse6{word-spacing:19.008000px;}
.ws101{word-spacing:19.386000px;}
.wse3{word-spacing:19.440000px;}
.wsfb{word-spacing:19.548000px;}
.ws13f{word-spacing:19.764000px;}
.ws9a{word-spacing:19.980000px;}
.ws118{word-spacing:20.196000px;}
.ws104{word-spacing:20.520000px;}
.wsce{word-spacing:20.700000px;}
.wse9{word-spacing:21.114000px;}
.ws11a{word-spacing:21.438000px;}
.ws132{word-spacing:21.924000px;}
.wsf2{word-spacing:21.978000px;}
.wsa2{word-spacing:22.380000px;}
.ws109{word-spacing:22.410000px;}
.ws162{word-spacing:23.166000px;}
.wsdb{word-spacing:23.706000px;}
.ws156{word-spacing:23.868000px;}
.wsa8{word-spacing:24.000000px;}
.wsf6{word-spacing:25.542000px;}
.wsea{word-spacing:25.596000px;}
.wse4{word-spacing:26.136000px;}
.ws11c{word-spacing:26.190000px;}
.ws10d{word-spacing:26.406000px;}
.wsf5{word-spacing:26.460000px;}
.ws13e{word-spacing:26.514000px;}
.wsf0{word-spacing:27.432000px;}
.wsec{word-spacing:27.810000px;}
.ws158{word-spacing:28.728000px;}
.ws119{word-spacing:28.944000px;}
.ws114{word-spacing:29.430000px;}
.ws11b{word-spacing:29.646000px;}
.wsff{word-spacing:29.808000px;}
.ws146{word-spacing:30.726000px;}
.ws143{word-spacing:32.130000px;}
.wsc9{word-spacing:32.220000px;}
.wsfc{word-spacing:33.318000px;}
.wsdf{word-spacing:33.426000px;}
.ws134{word-spacing:34.020000px;}
.wsdc{word-spacing:34.236000px;}
.wse5{word-spacing:34.290000px;}
.ws107{word-spacing:34.344000px;}
.ws123{word-spacing:34.722000px;}
.ws142{word-spacing:36.720000px;}
.ws148{word-spacing:36.828000px;}
.ws112{word-spacing:37.206000px;}
.wsf3{word-spacing:37.584000px;}
.wsd7{word-spacing:37.638000px;}
.ws129{word-spacing:37.962000px;}
.wsd6{word-spacing:38.448000px;}
.ws127{word-spacing:38.988000px;}
.ws154{word-spacing:39.204000px;}
.ws12d{word-spacing:41.040000px;}
.ws121{word-spacing:41.094000px;}
.wsd3{word-spacing:41.310000px;}
.ws12f{word-spacing:41.796000px;}
.ws100{word-spacing:43.092000px;}
.ws14a{word-spacing:43.200000px;}
.ws147{word-spacing:43.794000px;}
.ws13b{word-spacing:43.956000px;}
.wse8{word-spacing:45.144000px;}
.ws111{word-spacing:45.792000px;}
.ws157{word-spacing:46.440000px;}
.ws163{word-spacing:48.438000px;}
.ws14b{word-spacing:48.816000px;}
.wsdd{word-spacing:49.626000px;}
.ws117{word-spacing:49.896000px;}
.ws152{word-spacing:50.166000px;}
.ws133{word-spacing:50.220000px;}
.wsd8{word-spacing:50.706000px;}
.ws116{word-spacing:51.354000px;}
.ws137{word-spacing:51.570000px;}
.ws103{word-spacing:51.948000px;}
.ws12e{word-spacing:52.974000px;}
.ws151{word-spacing:55.242000px;}
.ws10a{word-spacing:55.620000px;}
.ws102{word-spacing:55.674000px;}
.ws128{word-spacing:56.322000px;}
.ws161{word-spacing:58.104000px;}
.wsfe{word-spacing:59.238000px;}
.ws10b{word-spacing:62.856000px;}
.ws126{word-spacing:63.126000px;}
.ws155{word-spacing:66.474000px;}
.ws135{word-spacing:70.848000px;}
.wsf4{word-spacing:73.602000px;}
.ws74{word-spacing:75.186600px;}
.wsfd{word-spacing:77.112000px;}
.ws110{word-spacing:103.194000px;}
.wsed{word-spacing:103.572000px;}
.ws106{word-spacing:113.724000px;}
.ws153{word-spacing:153.252000px;}
.ws75{word-spacing:252.525000px;}
.ws76{word-spacing:269.219400px;}
._4d{margin-left:-472.381200px;}
._12{margin-left:-8.376000px;}
._d{margin-left:-6.708000px;}
._c{margin-left:-4.974000px;}
._8{margin-left:-3.609600px;}
._2{margin-left:-1.891200px;}
._1{width:1.982400px;}
._5{width:3.206400px;}
._4{width:4.896000px;}
._3{width:6.532800px;}
._7{width:7.876800px;}
._b{width:9.726000px;}
._a{width:11.232000px;}
._6{width:12.864000px;}
._21{width:14.070600px;}
._e{width:15.678000px;}
._9{width:17.214000px;}
._f{width:18.623400px;}
._20{width:19.818000px;}
._24{width:21.039600px;}
._11{width:22.074000px;}
._10{width:23.112000px;}
._2c{width:25.002000px;}
._2a{width:26.335800px;}
._26{width:27.367200px;}
._2d{width:28.749600px;}
._38{width:29.953800px;}
._25{width:32.475600px;}
._27{width:34.093800px;}
._34{width:35.157600px;}
._30{width:36.315000px;}
._37{width:37.357200px;}
._35{width:40.008600px;}
._2f{width:43.129800px;}
._3a{width:46.580400px;}
._33{width:48.942600px;}
._23{width:50.716200px;}
._22{width:52.752600px;}
._28{width:53.919000px;}
._39{width:55.246800px;}
._31{width:58.341600px;}
._29{width:61.425000px;}
._2b{width:71.204400px;}
._2e{width:77.070000px;}
._3b{width:89.530200px;}
._36{width:111.264000px;}
._17{width:116.908200px;}
._16{width:120.452400px;}
._32{width:127.675800px;}
._0{width:141.066600px;}
._19{width:145.207200px;}
._1a{width:153.525000px;}
._13{width:157.581000px;}
._14{width:172.513800px;}
._1c{width:176.313600px;}
._1d{width:179.209200px;}
._18{width:203.133600px;}
._1b{width:233.795400px;}
._15{width:235.786200px;}
._1e{width:247.771200px;}
._46{width:255.627600px;}
._50{width:257.937600px;}
._54{width:258.974352px;}
._57{width:262.918085px;}
._4a{width:278.241600px;}
._1f{width:282.202200px;}
._4e{width:293.829600px;}
._4f{width:299.769600px;}
._55{width:303.631152px;}
._56{width:309.570545px;}
._47{width:311.571600px;}
._48{width:317.511600px;}
._59{width:444.051600px;}
._45{width:445.371600px;}
._58{width:449.943273px;}
._4b{width:457.779000px;}
._44{width:471.429000px;}
._49{width:472.641600px;}
._53{width:476.606606px;}
._42{width:501.289200px;}
._51{width:507.269515px;}
._3e{width:582.936600px;}
._41{width:592.536000px;}
._3f{width:638.880600px;}
._40{width:644.820600px;}
._3c{width:686.055600px;}
._4c{width:719.295600px;}
._52{width:729.097152px;}
._43{width:737.037600px;}
._3d{width:1064.346600px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(124,133,162);}
.fc0{color:rgb(98,119,187);}
.fs5{font-size:39.000000px;}
.fs3{font-size:48.000000px;}
.fs7{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs4{font-size:64.800000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:39.224250px;}
.y2e{bottom:50.924250px;}
.y2d{bottom:62.624250px;}
.y2b{bottom:63.988500px;}
.y2c{bottom:74.324250px;}
.yd9{bottom:128.382300px;}
.y2a{bottom:135.495150px;}
.y137{bottom:137.502750px;}
.y58{bottom:140.308350px;}
.ye8{bottom:140.947800px;}
.yd0{bottom:141.023700px;}
.y108{bottom:142.448400px;}
.y82{bottom:143.568150px;}
.yd8{bottom:146.382300px;}
.y9a{bottom:148.528800px;}
.y136{bottom:153.702600px;}
.yf3{bottom:155.048400px;}
.y57{bottom:158.308350px;}
.y29{bottom:158.399100px;}
.y107{bottom:158.648550px;}
.ye7{bottom:158.947800px;}
.ycf{bottom:159.023700px;}
.y81{bottom:161.568150px;}
.yd7{bottom:164.382300px;}
.y99{bottom:166.528800px;}
.y135{bottom:169.902600px;}
.y28{bottom:172.799100px;}
.yf2{bottom:173.048400px;}
.y106{bottom:174.848400px;}
.y56{bottom:176.308350px;}
.ye6{bottom:176.947800px;}
.yce{bottom:177.023700px;}
.y14f{bottom:177.682500px;}
.y80{bottom:179.568150px;}
.yd6{bottom:182.382300px;}
.y98{bottom:184.528800px;}
.y134{bottom:186.102750px;}
.y27{bottom:187.199100px;}
.ye0{bottom:191.048400px;}
.yc9{bottom:191.085000px;}
.y55{bottom:194.308350px;}
.ye5{bottom:194.947800px;}
.ycd{bottom:195.023700px;}
.yac{bottom:197.154450px;}
.y7f{bottom:197.568150px;}
.y14e{bottom:198.097950px;}
.yd5{bottom:200.382300px;}
.y26{bottom:201.599100px;}
.y133{bottom:202.302600px;}
.y97{bottom:202.528800px;}
.y105{bottom:207.248400px;}
.ydf{bottom:209.048400px;}
.yc8{bottom:209.085000px;}
.y54{bottom:212.308350px;}
.ye4{bottom:212.947800px;}
.ycc{bottom:213.023700px;}
.yab{bottom:215.154450px;}
.y7e{bottom:215.568150px;}
.y25{bottom:215.999100px;}
.yd4{bottom:218.382300px;}
.y132{bottom:218.502750px;}
.y14d{bottom:218.513400px;}
.y96{bottom:220.528800px;}
.y104{bottom:223.448400px;}
.yde{bottom:227.048400px;}
.yc7{bottom:227.085000px;}
.y53{bottom:230.308350px;}
.y24{bottom:230.399100px;}
.ye3{bottom:230.947800px;}
.ycb{bottom:231.023700px;}
.yaa{bottom:233.154450px;}
.y7d{bottom:233.568150px;}
.y131{bottom:234.702600px;}
.yd3{bottom:236.382300px;}
.y95{bottom:238.528800px;}
.y14c{bottom:238.928700px;}
.y103{bottom:239.648550px;}
.y23{bottom:244.799100px;}
.ydd{bottom:245.048400px;}
.yc6{bottom:245.085000px;}
.y52{bottom:248.308350px;}
.ye2{bottom:248.947800px;}
.y130{bottom:250.902600px;}
.ya9{bottom:251.154450px;}
.y7c{bottom:251.568150px;}
.yd2{bottom:254.382300px;}
.y102{bottom:255.848400px;}
.y94{bottom:256.528800px;}
.y22{bottom:259.199100px;}
.y14b{bottom:259.344150px;}
.ydc{bottom:263.048400px;}
.yc5{bottom:263.085000px;}
.y51{bottom:266.308350px;}
.ye1{bottom:266.947800px;}
.y12f{bottom:267.102750px;}
.ya8{bottom:269.154450px;}
.y7b{bottom:269.568150px;}
.y101{bottom:272.048400px;}
.yd1{bottom:272.382300px;}
.y21{bottom:273.599100px;}
.y93{bottom:274.528800px;}
.y14a{bottom:280.801950px;}
.ydb{bottom:281.048400px;}
.yc4{bottom:281.085000px;}
.y12e{bottom:283.302600px;}
.y50{bottom:284.308350px;}
.ya7{bottom:287.154450px;}
.y7a{bottom:287.568150px;}
.y20{bottom:287.999100px;}
.y100{bottom:288.248400px;}
.y92{bottom:292.528800px;}
.yda{bottom:299.048400px;}
.yc3{bottom:299.085000px;}
.y12d{bottom:299.502750px;}
.y4f{bottom:302.308350px;}
.y1f{bottom:302.399100px;}
.yff{bottom:304.448400px;}
.ya6{bottom:305.154450px;}
.y79{bottom:305.568150px;}
.y163{bottom:310.141200px;}
.y91{bottom:310.528800px;}
.y12c{bottom:315.702600px;}
.y1e{bottom:316.799100px;}
.yf1{bottom:317.048400px;}
.y4e{bottom:320.308350px;}
.yfe{bottom:320.648550px;}
.ya5{bottom:323.154450px;}
.y149{bottom:323.231550px;}
.y78{bottom:323.568150px;}
.y162{bottom:328.141200px;}
.y90{bottom:328.528800px;}
.y1d{bottom:331.199100px;}
.y12b{bottom:331.902600px;}
.yc1{bottom:334.075200px;}
.yf0{bottom:335.048400px;}
.yfd{bottom:336.848400px;}
.y4d{bottom:338.308350px;}
.yc2{bottom:338.344800px;}
.ya4{bottom:341.154450px;}
.y148{bottom:341.231550px;}
.y77{bottom:341.568150px;}
.y161{bottom:346.141200px;}
.y8f{bottom:346.528800px;}
.y12a{bottom:348.102750px;}
.yc0{bottom:352.075200px;}
.yef{bottom:353.048400px;}
.y1c{bottom:354.103050px;}
.y4c{bottom:356.308350px;}
.ya3{bottom:359.154450px;}
.y147{bottom:359.231550px;}
.y76{bottom:359.568150px;}
.y160{bottom:364.141200px;}
.y129{bottom:364.302600px;}
.yfc{bottom:369.248400px;}
.yee{bottom:371.048400px;}
.y4b{bottom:374.308350px;}
.ya2{bottom:377.154450px;}
.y75{bottom:377.568150px;}
.y128{bottom:380.502750px;}
.y15f{bottom:382.141200px;}
.yfb{bottom:385.448400px;}
.y8e{bottom:385.788600px;}
.yed{bottom:389.048400px;}
.ybf{bottom:391.335000px;}
.y4a{bottom:392.308350px;}
.ya1{bottom:395.154450px;}
.y74{bottom:395.568150px;}
.y127{bottom:396.702600px;}
.y1b{bottom:398.266950px;}
.yfa{bottom:401.648550px;}
.yec{bottom:407.048400px;}
.ybe{bottom:409.335000px;}
.y49{bottom:410.308350px;}
.y126{bottom:412.902600px;}
.ya0{bottom:413.154450px;}
.y73{bottom:413.568150px;}
.yf9{bottom:417.848400px;}
.y1a{bottom:421.170750px;}
.y8d{bottom:425.048400px;}
.y48{bottom:428.308350px;}
.y125{bottom:429.102750px;}
.y146{bottom:429.585300px;}
.y9f{bottom:431.154450px;}
.y72{bottom:431.568150px;}
.yf8{bottom:434.048400px;}
.y19{bottom:435.570750px;}
.y8c{bottom:443.048400px;}
.y124{bottom:445.302600px;}
.y47{bottom:446.308350px;}
.y9e{bottom:449.154450px;}
.y71{bottom:449.568150px;}
.y145{bottom:449.835300px;}
.y18{bottom:449.970750px;}
.yf7{bottom:450.248400px;}
.y15e{bottom:452.390250px;}
.ybd{bottom:458.324100px;}
.y8b{bottom:461.048400px;}
.y123{bottom:461.502750px;}
.y46{bottom:464.308350px;}
.y17{bottom:464.370750px;}
.yf6{bottom:466.448400px;}
.y9d{bottom:467.154450px;}
.y70{bottom:467.568150px;}
.y144{bottom:470.085300px;}
.y15d{bottom:472.805700px;}
.y122{bottom:477.702600px;}
.ybc{bottom:478.739550px;}
.y16{bottom:478.770750px;}
.y8a{bottom:479.048400px;}
.y45{bottom:482.308350px;}
.yf5{bottom:482.648550px;}
.y9c{bottom:485.154450px;}
.y6f{bottom:485.568150px;}
.y143{bottom:490.335300px;}
.y15{bottom:493.170750px;}
.y15c{bottom:493.221000px;}
.y121{bottom:493.902600px;}
.y89{bottom:497.048400px;}
.yf4{bottom:498.848400px;}
.yb9{bottom:499.155000px;}
.y44{bottom:500.308350px;}
.y6e{bottom:503.568150px;}
.y14{bottom:507.570750px;}
.y120{bottom:510.102750px;}
.y142{bottom:510.585300px;}
.y15b{bottom:513.636450px;}
.y88{bottom:515.048550px;}
.y43{bottom:518.308350px;}
.ybb{bottom:519.570450px;}
.y6d{bottom:521.568150px;}
.y13{bottom:521.970750px;}
.y9b{bottom:524.414400px;}
.y11f{bottom:526.302600px;}
.y141{bottom:530.835300px;}
.y87{bottom:533.048550px;}
.y15a{bottom:534.051900px;}
.y42{bottom:536.308350px;}
.y12{bottom:536.370750px;}
.y6c{bottom:539.568150px;}
.yba{bottom:539.985900px;}
.y11e{bottom:542.502750px;}
.y11{bottom:550.770750px;}
.y86{bottom:551.048550px;}
.y41{bottom:554.308350px;}
.y159{bottom:554.467350px;}
.y6b{bottom:557.568150px;}
.y11d{bottom:558.702600px;}
.yb8{bottom:560.401200px;}
.y10{bottom:565.170750px;}
.yeb{bottom:565.788600px;}
.y85{bottom:569.048550px;}
.y140{bottom:572.140050px;}
.y40{bottom:572.308350px;}
.y11c{bottom:574.902600px;}
.y6a{bottom:575.568150px;}
.yf{bottom:579.570900px;}
.yea{bottom:583.788600px;}
.y84{bottom:587.048550px;}
.y13f{bottom:590.140050px;}
.y3f{bottom:590.308350px;}
.y11b{bottom:591.102750px;}
.y69{bottom:593.568150px;}
.ye{bottom:593.970750px;}
.y158{bottom:595.854750px;}
.yb7{bottom:601.788600px;}
.y83{bottom:605.048550px;}
.y11a{bottom:607.302600px;}
.y3e{bottom:608.308350px;}
.yd{bottom:608.370750px;}
.y68{bottom:611.568150px;}
.y157{bottom:613.854750px;}
.yb6{bottom:619.788600px;}
.yc{bottom:622.770750px;}
.ye9{bottom:623.048550px;}
.y119{bottom:623.502750px;}
.y3d{bottom:626.308350px;}
.y67{bottom:629.568150px;}
.y156{bottom:631.854750px;}
.y118{bottom:639.702600px;}
.yca{bottom:641.048550px;}
.y3c{bottom:644.308350px;}
.yb{bottom:645.674700px;}
.y66{bottom:647.568150px;}
.y117{bottom:655.902600px;}
.yb5{bottom:659.048550px;}
.y13e{bottom:660.493800px;}
.y3b{bottom:662.308350px;}
.y65{bottom:665.568150px;}
.y116{bottom:672.102750px;}
.yb4{bottom:677.048550px;}
.y3a{bottom:680.308350px;}
.y13d{bottom:680.743800px;}
.ya{bottom:681.334650px;}
.y64{bottom:683.568150px;}
.y115{bottom:688.302600px;}
.yb3{bottom:695.048550px;}
.y9{bottom:697.534650px;}
.y39{bottom:698.308350px;}
.y13c{bottom:700.993800px;}
.y63{bottom:701.568150px;}
.y155{bottom:702.103650px;}
.y114{bottom:704.502750px;}
.yb2{bottom:713.048400px;}
.y8{bottom:713.734650px;}
.y38{bottom:716.308350px;}
.y62{bottom:719.568150px;}
.y113{bottom:720.702600px;}
.y13b{bottom:721.243800px;}
.y154{bottom:722.519100px;}
.y7{bottom:729.934500px;}
.yb1{bottom:731.048400px;}
.y37{bottom:734.308350px;}
.y112{bottom:736.902600px;}
.y61{bottom:737.568150px;}
.y13a{bottom:741.493800px;}
.y153{bottom:742.934550px;}
.y6{bottom:746.134650px;}
.yb0{bottom:749.048400px;}
.y36{bottom:752.308350px;}
.y111{bottom:753.102750px;}
.y60{bottom:755.568150px;}
.y139{bottom:761.743800px;}
.y152{bottom:763.350000px;}
.yaf{bottom:767.048400px;}
.y110{bottom:769.302750px;}
.y35{bottom:770.308350px;}
.y5f{bottom:773.568150px;}
.y5{bottom:783.594450px;}
.y151{bottom:783.765450px;}
.yae{bottom:785.048550px;}
.y10f{bottom:785.502750px;}
.y34{bottom:788.308350px;}
.y5e{bottom:791.568150px;}
.y10e{bottom:801.702600px;}
.yad{bottom:803.048550px;}
.y150{bottom:804.180750px;}
.y33{bottom:806.308350px;}
.y5d{bottom:809.568150px;}
.y10d{bottom:817.902600px;}
.y138{bottom:821.048550px;}
.y32{bottom:824.308350px;}
.y5c{bottom:827.568150px;}
.y4{bottom:833.489850px;}
.y10c{bottom:834.102600px;}
.y31{bottom:842.308350px;}
.y5b{bottom:845.568150px;}
.y10b{bottom:850.302750px;}
.y3{bottom:853.289850px;}
.y5a{bottom:863.568150px;}
.y10a{bottom:866.502750px;}
.y30{bottom:881.568150px;}
.y109{bottom:882.702600px;}
.y2{bottom:894.349800px;}
.y1{bottom:919.549650px;}
.y59{bottom:947.858850px;}
.h7{height:35.572266px;}
.ha{height:40.869141px;}
.h5{height:43.781250px;}
.hb{height:45.410156px;}
.h9{height:46.517578px;}
.h4{height:49.253906px;}
.h8{height:54.726562px;}
.h6{height:59.104688px;}
.h3{height:60.199219px;}
.h2{height:76.617188px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x23{left:78.205350px;}
.x16{left:82.029750px;}
.x1{left:93.543300px;}
.x26{left:99.708600px;}
.xb{left:102.047250px;}
.x3{left:106.299150px;}
.x1f{left:110.551200px;}
.x4{left:114.803100px;}
.x10{left:119.055150px;}
.xd{left:122.155500px;}
.xe{left:125.297550px;}
.xc{left:130.021800px;}
.x6{left:132.805350px;}
.x2{left:138.489150px;}
.x7{left:140.360700px;}
.x12{left:142.305450px;}
.x8{left:144.228750px;}
.x11{left:147.029700px;}
.x21{left:151.650900px;}
.x22{left:164.507250px;}
.x25{left:181.702050px;}
.x9{left:189.417750px;}
.xf{left:200.505300px;}
.x13{left:217.513200px;}
.x18{left:270.756900px;}
.x17{left:272.652000px;}
.x19{left:274.181250px;}
.x1a{left:276.890550px;}
.x1b{left:286.020150px;}
.x24{left:299.650050px;}
.x15{left:359.943000px;}
.x1e{left:363.543300px;}
.x1d{left:380.551200px;}
.x20{left:397.559100px;}
.x1c{left:618.228750px;}
.x14{left:620.008500px;}
.x5{left:621.973350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.008533pt;}
.ls1{letter-spacing:0.009067pt;}
.ls3{letter-spacing:0.864000pt;}
.ls4{letter-spacing:2.448000pt;}
.lsb{letter-spacing:124.838734pt;}
.ls8{letter-spacing:177.083733pt;}
.ls6{letter-spacing:177.910933pt;}
.lsd{letter-spacing:200.614400pt;}
.lsa{letter-spacing:233.010047pt;}
.ls7{letter-spacing:257.180800pt;}
.ls5{letter-spacing:257.739200pt;}
.lsc{letter-spacing:268.946667pt;}
.ls9{letter-spacing:419.298133pt;}
.ws1{word-spacing:-14.630400pt;}
.ws144{word-spacing:-14.016000pt;}
.ws166{word-spacing:-13.546667pt;}
.ws65{word-spacing:-12.853333pt;}
.ws167{word-spacing:-12.192000pt;}
.ws16b{word-spacing:-12.144000pt;}
.wsca{word-spacing:-11.568000pt;}
.ws0{word-spacing:-10.837333pt;}
.ws2{word-spacing:-8.354667pt;}
.ws169{word-spacing:-7.392000pt;}
.ws8b{word-spacing:-5.866667pt;}
.ws120{word-spacing:-5.760000pt;}
.ws16c{word-spacing:-5.280000pt;}
.ws168{word-spacing:-5.120000pt;}
.ws90{word-spacing:-5.066667pt;}
.ws6{word-spacing:-5.034667pt;}
.ws5c{word-spacing:-4.960000pt;}
.ws56{word-spacing:-4.906667pt;}
.wsc8{word-spacing:-4.800000pt;}
.wsda{word-spacing:-4.752000pt;}
.ws99{word-spacing:-4.693333pt;}
.ws37{word-spacing:-4.640000pt;}
.wsd2{word-spacing:-4.512000pt;}
.ws77{word-spacing:-4.480000pt;}
.ws7f{word-spacing:-4.426667pt;}
.ws16a{word-spacing:-4.368000pt;}
.wsbe{word-spacing:-4.320000pt;}
.ws70{word-spacing:-4.266667pt;}
.wsd4{word-spacing:-4.032000pt;}
.ws1e{word-spacing:-4.000000pt;}
.wsbb{word-spacing:-3.893333pt;}
.ws69{word-spacing:-3.680000pt;}
.ws28{word-spacing:-3.626667pt;}
.ws98{word-spacing:-3.520000pt;}
.ws19{word-spacing:-3.413333pt;}
.wsa0{word-spacing:-3.360000pt;}
.ws1b{word-spacing:-3.200000pt;}
.ws2e{word-spacing:-3.093333pt;}
.ws27{word-spacing:-2.933333pt;}
.ws38{word-spacing:-2.613333pt;}
.ws8c{word-spacing:-2.560000pt;}
.ws9f{word-spacing:-2.453333pt;}
.ws85{word-spacing:-2.400000pt;}
.ws83{word-spacing:-2.346667pt;}
.ws16d{word-spacing:-2.256000pt;}
.wsa9{word-spacing:-2.026667pt;}
.ws46{word-spacing:-1.973333pt;}
.ws15d{word-spacing:-1.968000pt;}
.ws7b{word-spacing:-1.920000pt;}
.wsc7{word-spacing:-1.813333pt;}
.ws3d{word-spacing:-1.760000pt;}
.ws8{word-spacing:-1.706667pt;}
.wsf{word-spacing:-1.664000pt;}
.ws81{word-spacing:-1.653333pt;}
.wsb1{word-spacing:-1.546667pt;}
.wsaf{word-spacing:-1.493333pt;}
.wsac{word-spacing:-1.386667pt;}
.wsb6{word-spacing:-1.333333pt;}
.wsb{word-spacing:-1.194667pt;}
.ws35{word-spacing:-1.173333pt;}
.ws2c{word-spacing:-1.120000pt;}
.wsc6{word-spacing:-1.066667pt;}
.ws32{word-spacing:-1.013333pt;}
.ws25{word-spacing:-0.960000pt;}
.wsbf{word-spacing:-0.906667pt;}
.ws139{word-spacing:-0.864000pt;}
.wsf7{word-spacing:-0.816000pt;}
.ws93{word-spacing:-0.800000pt;}
.ws36{word-spacing:-0.693333pt;}
.ws57{word-spacing:-0.640000pt;}
.ws78{word-spacing:-0.586667pt;}
.ws2d{word-spacing:-0.533333pt;}
.ws21{word-spacing:-0.426667pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.288000pt;}
.ws42{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.160000pt;}
.ws31{word-spacing:-0.106667pt;}
.ws92{word-spacing:-0.053333pt;}
.ws13c{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws58{word-spacing:0.053333pt;}
.ws9b{word-spacing:0.106667pt;}
.wsa5{word-spacing:0.160000pt;}
.ws39{word-spacing:0.266667pt;}
.ws14{word-spacing:0.320000pt;}
.wscd{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.480000pt;}
.ws11{word-spacing:0.682667pt;}
.ws62{word-spacing:0.746667pt;}
.ws71{word-spacing:0.800000pt;}
.ws41{word-spacing:0.853333pt;}
.ws8f{word-spacing:0.906667pt;}
.wseb{word-spacing:0.960000pt;}
.ws34{word-spacing:1.013333pt;}
.ws10{word-spacing:1.024000pt;}
.ws17{word-spacing:1.120000pt;}
.ws22{word-spacing:1.226667pt;}
.ws9e{word-spacing:1.280000pt;}
.ws64{word-spacing:1.333333pt;}
.wsbc{word-spacing:1.386667pt;}
.wsba{word-spacing:1.440000pt;}
.ws12{word-spacing:1.450667pt;}
.ws4f{word-spacing:1.546667pt;}
.ws11d{word-spacing:1.680000pt;}
.ws9{word-spacing:1.706667pt;}
.ws13{word-spacing:1.749333pt;}
.ws4e{word-spacing:1.760000pt;}
.ws6a{word-spacing:1.813333pt;}
.wsd5{word-spacing:1.920000pt;}
.wsde{word-spacing:2.016000pt;}
.ws94{word-spacing:2.080000pt;}
.ws9c{word-spacing:2.133333pt;}
.wsc5{word-spacing:2.346667pt;}
.ws60{word-spacing:2.400000pt;}
.ws6c{word-spacing:2.506667pt;}
.ws63{word-spacing:2.560000pt;}
.ws5e{word-spacing:2.613333pt;}
.wsc1{word-spacing:2.666667pt;}
.wsa6{word-spacing:2.773333pt;}
.wsb4{word-spacing:2.826667pt;}
.wsa{word-spacing:2.858667pt;}
.wsef{word-spacing:2.880000pt;}
.ws1d{word-spacing:2.933333pt;}
.ws61{word-spacing:2.986667pt;}
.wsae{word-spacing:3.093333pt;}
.ws82{word-spacing:3.146667pt;}
.ws8e{word-spacing:3.306667pt;}
.ws59{word-spacing:3.413333pt;}
.ws15{word-spacing:3.466667pt;}
.wsb9{word-spacing:3.520000pt;}
.wsaa{word-spacing:3.573333pt;}
.ws14f{word-spacing:3.600000pt;}
.ws97{word-spacing:3.626667pt;}
.ws20{word-spacing:3.680000pt;}
.ws16{word-spacing:3.733333pt;}
.ws30{word-spacing:3.786667pt;}
.wsb8{word-spacing:3.840000pt;}
.ws1c{word-spacing:3.893333pt;}
.ws95{word-spacing:3.946667pt;}
.wsc3{word-spacing:4.000000pt;}
.ws33{word-spacing:4.053333pt;}
.ws8d{word-spacing:4.213333pt;}
.ws89{word-spacing:4.266667pt;}
.ws50{word-spacing:4.320000pt;}
.wsb3{word-spacing:4.480000pt;}
.wsf8{word-spacing:4.608000pt;}
.ws149{word-spacing:4.656000pt;}
.ws24{word-spacing:4.746667pt;}
.ws136{word-spacing:4.800000pt;}
.ws40{word-spacing:4.853333pt;}
.ws87{word-spacing:5.013333pt;}
.ws8a{word-spacing:5.066667pt;}
.ws10e{word-spacing:5.136000pt;}
.ws10c{word-spacing:5.232000pt;}
.ws7e{word-spacing:5.280000pt;}
.wse{word-spacing:5.333333pt;}
.ws43{word-spacing:5.386667pt;}
.ws80{word-spacing:5.440000pt;}
.ws7{word-spacing:5.504000pt;}
.ws160{word-spacing:5.520000pt;}
.ws7c{word-spacing:5.546667pt;}
.ws3f{word-spacing:5.706667pt;}
.wsb2{word-spacing:5.760000pt;}
.wsee{word-spacing:5.904000pt;}
.ws2a{word-spacing:5.920000pt;}
.wsc2{word-spacing:5.973333pt;}
.ws53{word-spacing:6.026667pt;}
.ws2f{word-spacing:6.133333pt;}
.ws125{word-spacing:6.192000pt;}
.ws1a{word-spacing:6.240000pt;}
.ws18{word-spacing:6.293333pt;}
.wsc{word-spacing:6.442667pt;}
.ws91{word-spacing:6.560000pt;}
.ws48{word-spacing:6.613333pt;}
.ws96{word-spacing:6.666667pt;}
.ws12b{word-spacing:6.672000pt;}
.wsb7{word-spacing:6.720000pt;}
.ws51{word-spacing:6.773333pt;}
.ws4d{word-spacing:6.826667pt;}
.wse0{word-spacing:6.864000pt;}
.ws7d{word-spacing:6.880000pt;}
.ws1f{word-spacing:6.933333pt;}
.ws113{word-spacing:7.008000pt;}
.ws6e{word-spacing:7.040000pt;}
.ws6d{word-spacing:7.093333pt;}
.ws45{word-spacing:7.200000pt;}
.ws84{word-spacing:7.253333pt;}
.ws5f{word-spacing:7.306667pt;}
.wsad{word-spacing:7.360000pt;}
.ws23{word-spacing:7.413333pt;}
.ws52{word-spacing:7.466667pt;}
.ws7a{word-spacing:7.520000pt;}
.ws6b{word-spacing:7.626667pt;}
.ws68{word-spacing:7.680000pt;}
.ws108{word-spacing:7.728000pt;}
.ws3e{word-spacing:7.840000pt;}
.ws73{word-spacing:8.000000pt;}
.ws13d{word-spacing:8.064000pt;}
.ws14d{word-spacing:8.160000pt;}
.ws145{word-spacing:8.208000pt;}
.ws5{word-spacing:8.304000pt;}
.ws2b{word-spacing:8.320000pt;}
.ws131{word-spacing:8.352000pt;}
.ws4c{word-spacing:8.373333pt;}
.ws47{word-spacing:8.533333pt;}
.ws10f{word-spacing:8.832000pt;}
.wscf{word-spacing:8.853333pt;}
.ws88{word-spacing:9.120000pt;}
.wsd1{word-spacing:9.173333pt;}
.ws9d{word-spacing:9.226667pt;}
.ws3c{word-spacing:9.280000pt;}
.wsc0{word-spacing:9.333333pt;}
.ws26{word-spacing:9.386667pt;}
.ws5a{word-spacing:9.600000pt;}
.ws55{word-spacing:9.653333pt;}
.wsb0{word-spacing:9.706667pt;}
.ws49{word-spacing:9.760000pt;}
.ws14c{word-spacing:9.792000pt;}
.ws15e{word-spacing:9.840000pt;}
.wsa3{word-spacing:9.866667pt;}
.ws72{word-spacing:9.920000pt;}
.ws115{word-spacing:9.936000pt;}
.ws54{word-spacing:10.026667pt;}
.wscb{word-spacing:10.133333pt;}
.ws140{word-spacing:10.224000pt;}
.ws44{word-spacing:10.293333pt;}
.wse1{word-spacing:10.368000pt;}
.ws15b{word-spacing:10.512000pt;}
.wsa4{word-spacing:10.560000pt;}
.ws138{word-spacing:10.608000pt;}
.ws12c{word-spacing:10.800000pt;}
.ws15c{word-spacing:10.848000pt;}
.wsab{word-spacing:10.933333pt;}
.wse7{word-spacing:11.136000pt;}
.ws164{word-spacing:11.280000pt;}
.ws86{word-spacing:11.306667pt;}
.ws29{word-spacing:11.626667pt;}
.ws130{word-spacing:11.808000pt;}
.ws6f{word-spacing:11.840000pt;}
.wsd0{word-spacing:11.893333pt;}
.ws5b{word-spacing:12.053333pt;}
.ws11f{word-spacing:12.144000pt;}
.ws122{word-spacing:12.192000pt;}
.wsd9{word-spacing:12.240000pt;}
.wsfa{word-spacing:12.288000pt;}
.ws14e{word-spacing:12.384000pt;}
.wsbd{word-spacing:12.586667pt;}
.ws150{word-spacing:12.672000pt;}
.ws165{word-spacing:12.816000pt;}
.wse2{word-spacing:12.864000pt;}
.wsf9{word-spacing:12.912000pt;}
.ws13a{word-spacing:13.152000pt;}
.ws159{word-spacing:13.248000pt;}
.wsb5{word-spacing:13.280000pt;}
.ws79{word-spacing:13.866667pt;}
.ws11e{word-spacing:13.920000pt;}
.ws66{word-spacing:14.186667pt;}
.wsa1{word-spacing:14.240000pt;}
.wsc4{word-spacing:14.293333pt;}
.ws141{word-spacing:14.400000pt;}
.ws15f{word-spacing:14.688000pt;}
.ws67{word-spacing:14.880000pt;}
.ws3a{word-spacing:14.986667pt;}
.wscc{word-spacing:15.733333pt;}
.wsf1{word-spacing:15.936000pt;}
.ws124{word-spacing:16.032000pt;}
.ws15a{word-spacing:16.176000pt;}
.ws4b{word-spacing:16.320000pt;}
.ws105{word-spacing:16.464000pt;}
.ws4a{word-spacing:16.586667pt;}
.ws12a{word-spacing:16.848000pt;}
.wse6{word-spacing:16.896000pt;}
.ws101{word-spacing:17.232000pt;}
.wse3{word-spacing:17.280000pt;}
.wsfb{word-spacing:17.376000pt;}
.ws13f{word-spacing:17.568000pt;}
.ws9a{word-spacing:17.760000pt;}
.ws118{word-spacing:17.952000pt;}
.ws104{word-spacing:18.240000pt;}
.wsce{word-spacing:18.400000pt;}
.wse9{word-spacing:18.768000pt;}
.ws11a{word-spacing:19.056000pt;}
.ws132{word-spacing:19.488000pt;}
.wsf2{word-spacing:19.536000pt;}
.wsa2{word-spacing:19.893333pt;}
.ws109{word-spacing:19.920000pt;}
.ws162{word-spacing:20.592000pt;}
.wsdb{word-spacing:21.072000pt;}
.ws156{word-spacing:21.216000pt;}
.wsa8{word-spacing:21.333333pt;}
.wsf6{word-spacing:22.704000pt;}
.wsea{word-spacing:22.752000pt;}
.wse4{word-spacing:23.232000pt;}
.ws11c{word-spacing:23.280000pt;}
.ws10d{word-spacing:23.472000pt;}
.wsf5{word-spacing:23.520000pt;}
.ws13e{word-spacing:23.568000pt;}
.wsf0{word-spacing:24.384000pt;}
.wsec{word-spacing:24.720000pt;}
.ws158{word-spacing:25.536000pt;}
.ws119{word-spacing:25.728000pt;}
.ws114{word-spacing:26.160000pt;}
.ws11b{word-spacing:26.352000pt;}
.wsff{word-spacing:26.496000pt;}
.ws146{word-spacing:27.312000pt;}
.ws143{word-spacing:28.560000pt;}
.wsc9{word-spacing:28.640000pt;}
.wsfc{word-spacing:29.616000pt;}
.wsdf{word-spacing:29.712000pt;}
.ws134{word-spacing:30.240000pt;}
.wsdc{word-spacing:30.432000pt;}
.wse5{word-spacing:30.480000pt;}
.ws107{word-spacing:30.528000pt;}
.ws123{word-spacing:30.864000pt;}
.ws142{word-spacing:32.640000pt;}
.ws148{word-spacing:32.736000pt;}
.ws112{word-spacing:33.072000pt;}
.wsf3{word-spacing:33.408000pt;}
.wsd7{word-spacing:33.456000pt;}
.ws129{word-spacing:33.744000pt;}
.wsd6{word-spacing:34.176000pt;}
.ws127{word-spacing:34.656000pt;}
.ws154{word-spacing:34.848000pt;}
.ws12d{word-spacing:36.480000pt;}
.ws121{word-spacing:36.528000pt;}
.wsd3{word-spacing:36.720000pt;}
.ws12f{word-spacing:37.152000pt;}
.ws100{word-spacing:38.304000pt;}
.ws14a{word-spacing:38.400000pt;}
.ws147{word-spacing:38.928000pt;}
.ws13b{word-spacing:39.072000pt;}
.wse8{word-spacing:40.128000pt;}
.ws111{word-spacing:40.704000pt;}
.ws157{word-spacing:41.280000pt;}
.ws163{word-spacing:43.056000pt;}
.ws14b{word-spacing:43.392000pt;}
.wsdd{word-spacing:44.112000pt;}
.ws117{word-spacing:44.352000pt;}
.ws152{word-spacing:44.592000pt;}
.ws133{word-spacing:44.640000pt;}
.wsd8{word-spacing:45.072000pt;}
.ws116{word-spacing:45.648000pt;}
.ws137{word-spacing:45.840000pt;}
.ws103{word-spacing:46.176000pt;}
.ws12e{word-spacing:47.088000pt;}
.ws151{word-spacing:49.104000pt;}
.ws10a{word-spacing:49.440000pt;}
.ws102{word-spacing:49.488000pt;}
.ws128{word-spacing:50.064000pt;}
.ws161{word-spacing:51.648000pt;}
.wsfe{word-spacing:52.656000pt;}
.ws10b{word-spacing:55.872000pt;}
.ws126{word-spacing:56.112000pt;}
.ws155{word-spacing:59.088000pt;}
.ws135{word-spacing:62.976000pt;}
.wsf4{word-spacing:65.424000pt;}
.ws74{word-spacing:66.832533pt;}
.wsfd{word-spacing:68.544000pt;}
.ws110{word-spacing:91.728000pt;}
.wsed{word-spacing:92.064000pt;}
.ws106{word-spacing:101.088000pt;}
.ws153{word-spacing:136.224000pt;}
.ws75{word-spacing:224.466667pt;}
.ws76{word-spacing:239.306133pt;}
._4d{margin-left:-419.894400pt;}
._12{margin-left:-7.445333pt;}
._d{margin-left:-5.962667pt;}
._c{margin-left:-4.421333pt;}
._8{margin-left:-3.208533pt;}
._2{margin-left:-1.681067pt;}
._1{width:1.762133pt;}
._5{width:2.850133pt;}
._4{width:4.352000pt;}
._3{width:5.806933pt;}
._7{width:7.001600pt;}
._b{width:8.645333pt;}
._a{width:9.984000pt;}
._6{width:11.434667pt;}
._21{width:12.507200pt;}
._e{width:13.936000pt;}
._9{width:15.301333pt;}
._f{width:16.554133pt;}
._20{width:17.616000pt;}
._24{width:18.701867pt;}
._11{width:19.621333pt;}
._10{width:20.544000pt;}
._2c{width:22.224000pt;}
._2a{width:23.409600pt;}
._26{width:24.326400pt;}
._2d{width:25.555200pt;}
._38{width:26.625600pt;}
._25{width:28.867200pt;}
._27{width:30.305600pt;}
._34{width:31.251200pt;}
._30{width:32.280000pt;}
._37{width:33.206400pt;}
._35{width:35.563200pt;}
._2f{width:38.337600pt;}
._3a{width:41.404800pt;}
._33{width:43.504533pt;}
._23{width:45.081067pt;}
._22{width:46.891200pt;}
._28{width:47.928000pt;}
._39{width:49.108267pt;}
._31{width:51.859200pt;}
._29{width:54.600000pt;}
._2b{width:63.292800pt;}
._2e{width:68.506667pt;}
._3b{width:79.582400pt;}
._36{width:98.901333pt;}
._17{width:103.918400pt;}
._16{width:107.068800pt;}
._32{width:113.489600pt;}
._0{width:125.392533pt;}
._19{width:129.073067pt;}
._1a{width:136.466667pt;}
._13{width:140.072000pt;}
._14{width:153.345600pt;}
._1c{width:156.723200pt;}
._1d{width:159.297067pt;}
._18{width:180.563200pt;}
._1b{width:207.818133pt;}
._15{width:209.587733pt;}
._1e{width:220.241067pt;}
._46{width:227.224533pt;}
._50{width:229.277867pt;}
._54{width:230.199424pt;}
._57{width:233.704964pt;}
._4a{width:247.325867pt;}
._1f{width:250.846400pt;}
._4e{width:261.181867pt;}
._4f{width:266.461867pt;}
._55{width:269.894357pt;}
._56{width:275.173818pt;}
._47{width:276.952533pt;}
._48{width:282.232533pt;}
._59{width:394.712533pt;}
._45{width:395.885867pt;}
._58{width:399.949576pt;}
._4b{width:406.914667pt;}
._44{width:419.048000pt;}
._49{width:420.125867pt;}
._53{width:423.650316pt;}
._42{width:445.590400pt;}
._51{width:450.906236pt;}
._3e{width:518.165867pt;}
._41{width:526.698667pt;}
._3f{width:567.893867pt;}
._40{width:573.173867pt;}
._3c{width:609.827200pt;}
._4c{width:639.373867pt;}
._52{width:648.086357pt;}
._43{width:655.144533pt;}
._3d{width:946.085867pt;}
.fs5{font-size:34.666667pt;}
.fs3{font-size:42.666667pt;}
.fs7{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs4{font-size:57.600000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:34.866000pt;}
.y2e{bottom:45.266000pt;}
.y2d{bottom:55.666000pt;}
.y2b{bottom:56.878667pt;}
.y2c{bottom:66.066000pt;}
.yd9{bottom:114.117600pt;}
.y2a{bottom:120.440133pt;}
.y137{bottom:122.224667pt;}
.y58{bottom:124.718533pt;}
.ye8{bottom:125.286933pt;}
.yd0{bottom:125.354400pt;}
.y108{bottom:126.620800pt;}
.y82{bottom:127.616133pt;}
.yd8{bottom:130.117600pt;}
.y9a{bottom:132.025600pt;}
.y136{bottom:136.624533pt;}
.yf3{bottom:137.820800pt;}
.y57{bottom:140.718533pt;}
.y29{bottom:140.799200pt;}
.y107{bottom:141.020933pt;}
.ye7{bottom:141.286933pt;}
.ycf{bottom:141.354400pt;}
.y81{bottom:143.616133pt;}
.yd7{bottom:146.117600pt;}
.y99{bottom:148.025600pt;}
.y135{bottom:151.024533pt;}
.y28{bottom:153.599200pt;}
.yf2{bottom:153.820800pt;}
.y106{bottom:155.420800pt;}
.y56{bottom:156.718533pt;}
.ye6{bottom:157.286933pt;}
.yce{bottom:157.354400pt;}
.y14f{bottom:157.940000pt;}
.y80{bottom:159.616133pt;}
.yd6{bottom:162.117600pt;}
.y98{bottom:164.025600pt;}
.y134{bottom:165.424667pt;}
.y27{bottom:166.399200pt;}
.ye0{bottom:169.820800pt;}
.yc9{bottom:169.853333pt;}
.y55{bottom:172.718533pt;}
.ye5{bottom:173.286933pt;}
.ycd{bottom:173.354400pt;}
.yac{bottom:175.248400pt;}
.y7f{bottom:175.616133pt;}
.y14e{bottom:176.087067pt;}
.yd5{bottom:178.117600pt;}
.y26{bottom:179.199200pt;}
.y133{bottom:179.824533pt;}
.y97{bottom:180.025600pt;}
.y105{bottom:184.220800pt;}
.ydf{bottom:185.820800pt;}
.yc8{bottom:185.853333pt;}
.y54{bottom:188.718533pt;}
.ye4{bottom:189.286933pt;}
.ycc{bottom:189.354400pt;}
.yab{bottom:191.248400pt;}
.y7e{bottom:191.616133pt;}
.y25{bottom:191.999200pt;}
.yd4{bottom:194.117600pt;}
.y132{bottom:194.224667pt;}
.y14d{bottom:194.234133pt;}
.y96{bottom:196.025600pt;}
.y104{bottom:198.620800pt;}
.yde{bottom:201.820800pt;}
.yc7{bottom:201.853333pt;}
.y53{bottom:204.718533pt;}
.y24{bottom:204.799200pt;}
.ye3{bottom:205.286933pt;}
.ycb{bottom:205.354400pt;}
.yaa{bottom:207.248400pt;}
.y7d{bottom:207.616133pt;}
.y131{bottom:208.624533pt;}
.yd3{bottom:210.117600pt;}
.y95{bottom:212.025600pt;}
.y14c{bottom:212.381067pt;}
.y103{bottom:213.020933pt;}
.y23{bottom:217.599200pt;}
.ydd{bottom:217.820800pt;}
.yc6{bottom:217.853333pt;}
.y52{bottom:220.718533pt;}
.ye2{bottom:221.286933pt;}
.y130{bottom:223.024533pt;}
.ya9{bottom:223.248400pt;}
.y7c{bottom:223.616133pt;}
.yd2{bottom:226.117600pt;}
.y102{bottom:227.420800pt;}
.y94{bottom:228.025600pt;}
.y22{bottom:230.399200pt;}
.y14b{bottom:230.528133pt;}
.ydc{bottom:233.820800pt;}
.yc5{bottom:233.853333pt;}
.y51{bottom:236.718533pt;}
.ye1{bottom:237.286933pt;}
.y12f{bottom:237.424667pt;}
.ya8{bottom:239.248400pt;}
.y7b{bottom:239.616133pt;}
.y101{bottom:241.820800pt;}
.yd1{bottom:242.117600pt;}
.y21{bottom:243.199200pt;}
.y93{bottom:244.025600pt;}
.y14a{bottom:249.601733pt;}
.ydb{bottom:249.820800pt;}
.yc4{bottom:249.853333pt;}
.y12e{bottom:251.824533pt;}
.y50{bottom:252.718533pt;}
.ya7{bottom:255.248400pt;}
.y7a{bottom:255.616133pt;}
.y20{bottom:255.999200pt;}
.y100{bottom:256.220800pt;}
.y92{bottom:260.025600pt;}
.yda{bottom:265.820800pt;}
.yc3{bottom:265.853333pt;}
.y12d{bottom:266.224667pt;}
.y4f{bottom:268.718533pt;}
.y1f{bottom:268.799200pt;}
.yff{bottom:270.620800pt;}
.ya6{bottom:271.248400pt;}
.y79{bottom:271.616133pt;}
.y163{bottom:275.681067pt;}
.y91{bottom:276.025600pt;}
.y12c{bottom:280.624533pt;}
.y1e{bottom:281.599200pt;}
.yf1{bottom:281.820800pt;}
.y4e{bottom:284.718533pt;}
.yfe{bottom:285.020933pt;}
.ya5{bottom:287.248400pt;}
.y149{bottom:287.316933pt;}
.y78{bottom:287.616133pt;}
.y162{bottom:291.681067pt;}
.y90{bottom:292.025600pt;}
.y1d{bottom:294.399200pt;}
.y12b{bottom:295.024533pt;}
.yc1{bottom:296.955733pt;}
.yf0{bottom:297.820800pt;}
.yfd{bottom:299.420800pt;}
.y4d{bottom:300.718533pt;}
.yc2{bottom:300.750933pt;}
.ya4{bottom:303.248400pt;}
.y148{bottom:303.316933pt;}
.y77{bottom:303.616133pt;}
.y161{bottom:307.681067pt;}
.y8f{bottom:308.025600pt;}
.y12a{bottom:309.424667pt;}
.yc0{bottom:312.955733pt;}
.yef{bottom:313.820800pt;}
.y1c{bottom:314.758267pt;}
.y4c{bottom:316.718533pt;}
.ya3{bottom:319.248400pt;}
.y147{bottom:319.316933pt;}
.y76{bottom:319.616133pt;}
.y160{bottom:323.681067pt;}
.y129{bottom:323.824533pt;}
.yfc{bottom:328.220800pt;}
.yee{bottom:329.820800pt;}
.y4b{bottom:332.718533pt;}
.ya2{bottom:335.248400pt;}
.y75{bottom:335.616133pt;}
.y128{bottom:338.224667pt;}
.y15f{bottom:339.681067pt;}
.yfb{bottom:342.620800pt;}
.y8e{bottom:342.923200pt;}
.yed{bottom:345.820800pt;}
.ybf{bottom:347.853333pt;}
.y4a{bottom:348.718533pt;}
.ya1{bottom:351.248400pt;}
.y74{bottom:351.616133pt;}
.y127{bottom:352.624533pt;}
.y1b{bottom:354.015067pt;}
.yfa{bottom:357.020933pt;}
.yec{bottom:361.820800pt;}
.ybe{bottom:363.853333pt;}
.y49{bottom:364.718533pt;}
.y126{bottom:367.024533pt;}
.ya0{bottom:367.248400pt;}
.y73{bottom:367.616133pt;}
.yf9{bottom:371.420800pt;}
.y1a{bottom:374.374000pt;}
.y8d{bottom:377.820800pt;}
.y48{bottom:380.718533pt;}
.y125{bottom:381.424667pt;}
.y146{bottom:381.853600pt;}
.y9f{bottom:383.248400pt;}
.y72{bottom:383.616133pt;}
.yf8{bottom:385.820800pt;}
.y19{bottom:387.174000pt;}
.y8c{bottom:393.820800pt;}
.y124{bottom:395.824533pt;}
.y47{bottom:396.718533pt;}
.y9e{bottom:399.248400pt;}
.y71{bottom:399.616133pt;}
.y145{bottom:399.853600pt;}
.y18{bottom:399.974000pt;}
.yf7{bottom:400.220800pt;}
.y15e{bottom:402.124667pt;}
.ybd{bottom:407.399200pt;}
.y8b{bottom:409.820800pt;}
.y123{bottom:410.224667pt;}
.y46{bottom:412.718533pt;}
.y17{bottom:412.774000pt;}
.yf6{bottom:414.620800pt;}
.y9d{bottom:415.248400pt;}
.y70{bottom:415.616133pt;}
.y144{bottom:417.853600pt;}
.y15d{bottom:420.271733pt;}
.y122{bottom:424.624533pt;}
.ybc{bottom:425.546267pt;}
.y16{bottom:425.574000pt;}
.y8a{bottom:425.820800pt;}
.y45{bottom:428.718533pt;}
.yf5{bottom:429.020933pt;}
.y9c{bottom:431.248400pt;}
.y6f{bottom:431.616133pt;}
.y143{bottom:435.853600pt;}
.y15{bottom:438.374000pt;}
.y15c{bottom:438.418667pt;}
.y121{bottom:439.024533pt;}
.y89{bottom:441.820800pt;}
.yf4{bottom:443.420800pt;}
.yb9{bottom:443.693333pt;}
.y44{bottom:444.718533pt;}
.y6e{bottom:447.616133pt;}
.y14{bottom:451.174000pt;}
.y120{bottom:453.424667pt;}
.y142{bottom:453.853600pt;}
.y15b{bottom:456.565733pt;}
.y88{bottom:457.820933pt;}
.y43{bottom:460.718533pt;}
.ybb{bottom:461.840400pt;}
.y6d{bottom:463.616133pt;}
.y13{bottom:463.974000pt;}
.y9b{bottom:466.146133pt;}
.y11f{bottom:467.824533pt;}
.y141{bottom:471.853600pt;}
.y87{bottom:473.820933pt;}
.y15a{bottom:474.712800pt;}
.y42{bottom:476.718533pt;}
.y12{bottom:476.774000pt;}
.y6c{bottom:479.616133pt;}
.yba{bottom:479.987467pt;}
.y11e{bottom:482.224667pt;}
.y11{bottom:489.574000pt;}
.y86{bottom:489.820933pt;}
.y41{bottom:492.718533pt;}
.y159{bottom:492.859867pt;}
.y6b{bottom:495.616133pt;}
.y11d{bottom:496.624533pt;}
.yb8{bottom:498.134400pt;}
.y10{bottom:502.374000pt;}
.yeb{bottom:502.923200pt;}
.y85{bottom:505.820933pt;}
.y140{bottom:508.568933pt;}
.y40{bottom:508.718533pt;}
.y11c{bottom:511.024533pt;}
.y6a{bottom:511.616133pt;}
.yf{bottom:515.174133pt;}
.yea{bottom:518.923200pt;}
.y84{bottom:521.820933pt;}
.y13f{bottom:524.568933pt;}
.y3f{bottom:524.718533pt;}
.y11b{bottom:525.424667pt;}
.y69{bottom:527.616133pt;}
.ye{bottom:527.974000pt;}
.y158{bottom:529.648667pt;}
.yb7{bottom:534.923200pt;}
.y83{bottom:537.820933pt;}
.y11a{bottom:539.824533pt;}
.y3e{bottom:540.718533pt;}
.yd{bottom:540.774000pt;}
.y68{bottom:543.616133pt;}
.y157{bottom:545.648667pt;}
.yb6{bottom:550.923200pt;}
.yc{bottom:553.574000pt;}
.ye9{bottom:553.820933pt;}
.y119{bottom:554.224667pt;}
.y3d{bottom:556.718533pt;}
.y67{bottom:559.616133pt;}
.y156{bottom:561.648667pt;}
.y118{bottom:568.624533pt;}
.yca{bottom:569.820933pt;}
.y3c{bottom:572.718533pt;}
.yb{bottom:573.933067pt;}
.y66{bottom:575.616133pt;}
.y117{bottom:583.024533pt;}
.yb5{bottom:585.820933pt;}
.y13e{bottom:587.105600pt;}
.y3b{bottom:588.718533pt;}
.y65{bottom:591.616133pt;}
.y116{bottom:597.424667pt;}
.yb4{bottom:601.820933pt;}
.y3a{bottom:604.718533pt;}
.y13d{bottom:605.105600pt;}
.ya{bottom:605.630800pt;}
.y64{bottom:607.616133pt;}
.y115{bottom:611.824533pt;}
.yb3{bottom:617.820933pt;}
.y9{bottom:620.030800pt;}
.y39{bottom:620.718533pt;}
.y13c{bottom:623.105600pt;}
.y63{bottom:623.616133pt;}
.y155{bottom:624.092133pt;}
.y114{bottom:626.224667pt;}
.yb2{bottom:633.820800pt;}
.y8{bottom:634.430800pt;}
.y38{bottom:636.718533pt;}
.y62{bottom:639.616133pt;}
.y113{bottom:640.624533pt;}
.y13b{bottom:641.105600pt;}
.y154{bottom:642.239200pt;}
.y7{bottom:648.830667pt;}
.yb1{bottom:649.820800pt;}
.y37{bottom:652.718533pt;}
.y112{bottom:655.024533pt;}
.y61{bottom:655.616133pt;}
.y13a{bottom:659.105600pt;}
.y153{bottom:660.386267pt;}
.y6{bottom:663.230800pt;}
.yb0{bottom:665.820800pt;}
.y36{bottom:668.718533pt;}
.y111{bottom:669.424667pt;}
.y60{bottom:671.616133pt;}
.y139{bottom:677.105600pt;}
.y152{bottom:678.533333pt;}
.yaf{bottom:681.820800pt;}
.y110{bottom:683.824667pt;}
.y35{bottom:684.718533pt;}
.y5f{bottom:687.616133pt;}
.y5{bottom:696.528400pt;}
.y151{bottom:696.680400pt;}
.yae{bottom:697.820933pt;}
.y10f{bottom:698.224667pt;}
.y34{bottom:700.718533pt;}
.y5e{bottom:703.616133pt;}
.y10e{bottom:712.624533pt;}
.yad{bottom:713.820933pt;}
.y150{bottom:714.827333pt;}
.y33{bottom:716.718533pt;}
.y5d{bottom:719.616133pt;}
.y10d{bottom:727.024533pt;}
.y138{bottom:729.820933pt;}
.y32{bottom:732.718533pt;}
.y5c{bottom:735.616133pt;}
.y4{bottom:740.879867pt;}
.y10c{bottom:741.424533pt;}
.y31{bottom:748.718533pt;}
.y5b{bottom:751.616133pt;}
.y10b{bottom:755.824667pt;}
.y3{bottom:758.479867pt;}
.y5a{bottom:767.616133pt;}
.y10a{bottom:770.224667pt;}
.y30{bottom:783.616133pt;}
.y109{bottom:784.624533pt;}
.y2{bottom:794.977600pt;}
.y1{bottom:817.377467pt;}
.y59{bottom:842.541200pt;}
.h7{height:31.619792pt;}
.ha{height:36.328125pt;}
.h5{height:38.916667pt;}
.hb{height:40.364583pt;}
.h9{height:41.348958pt;}
.h4{height:43.781250pt;}
.h8{height:48.645833pt;}
.h6{height:52.537500pt;}
.h3{height:53.510417pt;}
.h2{height:68.104167pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x23{left:69.515867pt;}
.x16{left:72.915333pt;}
.x1{left:83.149600pt;}
.x26{left:88.629867pt;}
.xb{left:90.708667pt;}
.x3{left:94.488133pt;}
.x1f{left:98.267733pt;}
.x4{left:102.047200pt;}
.x10{left:105.826800pt;}
.xd{left:108.582667pt;}
.xe{left:111.375600pt;}
.xc{left:115.574933pt;}
.x6{left:118.049200pt;}
.x2{left:123.101467pt;}
.x7{left:124.765067pt;}
.x12{left:126.493733pt;}
.x8{left:128.203333pt;}
.x11{left:130.693067pt;}
.x21{left:134.800800pt;}
.x22{left:146.228667pt;}
.x25{left:161.512933pt;}
.x9{left:168.371333pt;}
.xf{left:178.226933pt;}
.x13{left:193.345067pt;}
.x18{left:240.672800pt;}
.x17{left:242.357333pt;}
.x19{left:243.716667pt;}
.x1a{left:246.124933pt;}
.x1b{left:254.240133pt;}
.x24{left:266.355600pt;}
.x15{left:319.949333pt;}
.x1e{left:323.149600pt;}
.x1d{left:338.267733pt;}
.x20{left:353.385867pt;}
.x1c{left:549.536667pt;}
.x14{left:551.118667pt;}
.x5{left:552.865200pt;}
}




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