
    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_90b42999bdae9f71fac88fa2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_6d93f43b6e81ffc76c1644a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_81c18d2be5b6b670a405a102.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_513d7c8ecd14bf77b705bbcb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.948730;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_9bd00fac805c113bba541606.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_edf1a246540c6176129bd9f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_fd9e71b6350db437b7ac1194.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_635858801ea7196c59fb6099.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_faf9c27eb832ffad02afe09d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a12bafe423fd0344c2287454.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c7b3cfdf8f02e6128069dd9e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_5f438cf53a1ef669957eda3c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a2f842aa6580aaeb2b37cb82.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5fb7edd8062916c16fdf0369.woff2')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-16.206600px;}
.v2{vertical-align:-14.580000px;}
.v4{vertical-align:-11.400000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.399400px;}
.v7{vertical-align:13.824000px;}
.v3{vertical-align:16.200600px;}
.v1{vertical-align:19.440000px;}
.ls9{letter-spacing:-4.200000px;}
.ls3f{letter-spacing:-3.996000px;}
.ls33{letter-spacing:-1.740000px;}
.ls3e{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.600000px;}
.ls34{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.390000px;}
.ls3{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.007200px;}
.lsa{letter-spacing:0.010200px;}
.ls2b{letter-spacing:0.018000px;}
.ls28{letter-spacing:0.020850px;}
.ls2{letter-spacing:0.108000px;}
.ls16{letter-spacing:0.195000px;}
.ls1b{letter-spacing:0.200400px;}
.ls8{letter-spacing:0.240000px;}
.ls35{letter-spacing:0.270000px;}
.ls14{letter-spacing:0.300000px;}
.ls3d{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.600000px;}
.ls7{letter-spacing:0.617400px;}
.ls13{letter-spacing:0.715800px;}
.ls11{letter-spacing:0.856800px;}
.ls44{letter-spacing:1.080000px;}
.ls3a{letter-spacing:1.350000px;}
.ls2d{letter-spacing:1.521000px;}
.ls4{letter-spacing:1.728000px;}
.ls1f{letter-spacing:1.762200px;}
.ls1e{letter-spacing:1.762800px;}
.ls1a{letter-spacing:1.795800px;}
.ls45{letter-spacing:2.322000px;}
.ls2e{letter-spacing:2.340000px;}
.ls2f{letter-spacing:2.350200px;}
.ls1d{letter-spacing:2.548800px;}
.ls22{letter-spacing:2.885400px;}
.ls24{letter-spacing:3.029400px;}
.ls25{letter-spacing:3.030000px;}
.ls26{letter-spacing:3.066600px;}
.ls5{letter-spacing:3.120000px;}
.ls29{letter-spacing:3.963600px;}
.ls20{letter-spacing:4.020000px;}
.ls23{letter-spacing:4.729800px;}
.ls39{letter-spacing:5.184000px;}
.ls21{letter-spacing:5.760000px;}
.ls27{letter-spacing:6.196800px;}
.ls36{letter-spacing:6.264000px;}
.ls17{letter-spacing:6.716400px;}
.ls32{letter-spacing:6.720000px;}
.ls2c{letter-spacing:6.780000px;}
.ls30{letter-spacing:6.946800px;}
.lsf{letter-spacing:6.949200px;}
.ls31{letter-spacing:7.500000px;}
.lse{letter-spacing:8.767800px;}
.ls1c{letter-spacing:8.829000px;}
.ls40{letter-spacing:8.856000px;}
.ls38{letter-spacing:9.342000px;}
.ls10{letter-spacing:9.471600px;}
.ls3c{letter-spacing:9.720000px;}
.ls43{letter-spacing:10.260000px;}
.ls19{letter-spacing:10.320600px;}
.ls3b{letter-spacing:10.854000px;}
.ls12{letter-spacing:11.811000px;}
.ls15{letter-spacing:14.618400px;}
.ls18{letter-spacing:20.788200px;}
.ls37{letter-spacing:21.006000px;}
.ls42{letter-spacing:45.360000px;}
.lsb{letter-spacing:1436.736600px;}
.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;}
}
.ws10{word-spacing:-16.680000px;}
.ws3c{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.000000px;}
.ws2a{word-spacing:-14.400000px;}
.ws51{word-spacing:-14.178000px;}
.wsa2{word-spacing:-14.040000px;}
.ws70{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.010400px;}
.ws2b{word-spacing:-11.700000px;}
.ws7f{word-spacing:-9.504000px;}
.ws29{word-spacing:-9.360000px;}
.ws72{word-spacing:-7.500000px;}
.ws74{word-spacing:-6.720000px;}
.ws50{word-spacing:-5.760000px;}
.ws37{word-spacing:-4.380000px;}
.ws43{word-spacing:-4.020000px;}
.ws3d{word-spacing:-3.600000px;}
.wsa1{word-spacing:-3.564000px;}
.ws89{word-spacing:-3.240000px;}
.wse{word-spacing:-3.120000px;}
.ws32{word-spacing:-3.000000px;}
.ws39{word-spacing:-2.820000px;}
.wsab{word-spacing:-2.700000px;}
.ws53{word-spacing:-2.550000px;}
.ws9f{word-spacing:-2.538000px;}
.ws8f{word-spacing:-2.484000px;}
.ws95{word-spacing:-2.430000px;}
.ws5a{word-spacing:-2.397000px;}
.wsaa{word-spacing:-2.322000px;}
.ws3f{word-spacing:-2.040000px;}
.ws75{word-spacing:-1.740000px;}
.ws5{word-spacing:-1.728000px;}
.ws26{word-spacing:-1.680000px;}
.ws6c{word-spacing:-1.581000px;}
.ws59{word-spacing:-1.558050px;}
.ws15{word-spacing:-1.380000px;}
.wsc{word-spacing:-1.320000px;}
.ws9c{word-spacing:-1.134000px;}
.ws6d{word-spacing:-1.027650px;}
.ws79{word-spacing:-1.020000px;}
.ws6{word-spacing:-0.972000px;}
.ws6e{word-spacing:-0.918000px;}
.ws40{word-spacing:-0.840000px;}
.ws6f{word-spacing:-0.816000px;}
.ws11{word-spacing:-0.600000px;}
.ws9b{word-spacing:-0.594000px;}
.wsa5{word-spacing:-0.540000px;}
.ws8b{word-spacing:-0.378000px;}
.ws24{word-spacing:-0.360000px;}
.ws47{word-spacing:-0.300000px;}
.ws1a{word-spacing:-0.240000px;}
.ws4a{word-spacing:-0.195000px;}
.ws7e{word-spacing:-0.060000px;}
.ws9e{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws5f{word-spacing:0.051000px;}
.wsa8{word-spacing:0.054000px;}
.wsb{word-spacing:0.060000px;}
.ws2{word-spacing:0.108000px;}
.ws56{word-spacing:0.132600px;}
.ws55{word-spacing:0.204000px;}
.ws19{word-spacing:0.240000px;}
.ws82{word-spacing:0.270000px;}
.ws1b{word-spacing:0.300000px;}
.ws8{word-spacing:0.378000px;}
.wsa0{word-spacing:0.432000px;}
.ws20{word-spacing:0.540000px;}
.ws17{word-spacing:0.600000px;}
.ws78{word-spacing:0.660000px;}
.ws41{word-spacing:0.720000px;}
.ws7d{word-spacing:0.840000px;}
.ws90{word-spacing:0.864000px;}
.ws5c{word-spacing:0.895050px;}
.ws14{word-spacing:0.900000px;}
.ws84{word-spacing:1.080000px;}
.ws8c{word-spacing:1.350000px;}
.ws5b{word-spacing:1.377000px;}
.ws3e{word-spacing:1.440000px;}
.ws4b{word-spacing:1.500000px;}
.ws3a{word-spacing:1.560000px;}
.ws2f{word-spacing:1.620000px;}
.ws4{word-spacing:1.728000px;}
.ws76{word-spacing:1.740000px;}
.ws5e{word-spacing:1.889550px;}
.ws66{word-spacing:1.989000px;}
.ws58{word-spacing:2.154750px;}
.wsa9{word-spacing:2.160000px;}
.ws91{word-spacing:2.214000px;}
.ws3b{word-spacing:2.220000px;}
.ws4d{word-spacing:2.280000px;}
.ws3{word-spacing:2.322000px;}
.ws21{word-spacing:2.520000px;}
.ws6a{word-spacing:2.585700px;}
.ws2d{word-spacing:2.640000px;}
.ws81{word-spacing:2.808000px;}
.ws5d{word-spacing:2.907000px;}
.ws23{word-spacing:3.000000px;}
.ws80{word-spacing:3.024000px;}
.ws67{word-spacing:3.060000px;}
.ws65{word-spacing:3.082950px;}
.wsd{word-spacing:3.120000px;}
.ws60{word-spacing:3.162000px;}
.ws85{word-spacing:3.240000px;}
.ws57{word-spacing:3.315000px;}
.ws97{word-spacing:3.510000px;}
.ws8d{word-spacing:3.726000px;}
.ws63{word-spacing:3.825000px;}
.ws7{word-spacing:3.834000px;}
.ws6b{word-spacing:3.978000px;}
.ws42{word-spacing:4.020000px;}
.ws69{word-spacing:4.044300px;}
.ws16{word-spacing:4.200000px;}
.ws88{word-spacing:4.482000px;}
.ws1f{word-spacing:4.740000px;}
.ws64{word-spacing:4.743000px;}
.ws99{word-spacing:5.184000px;}
.ws1c{word-spacing:5.460000px;}
.ws2c{word-spacing:5.520000px;}
.ws4f{word-spacing:5.760000px;}
.ws8e{word-spacing:5.832000px;}
.ws46{word-spacing:5.940000px;}
.ws62{word-spacing:5.967000px;}
.ws31{word-spacing:6.120000px;}
.ws68{word-spacing:6.222000px;}
.ws83{word-spacing:6.318000px;}
.ws2e{word-spacing:6.540000px;}
.ws8a{word-spacing:6.642000px;}
.ws73{word-spacing:6.720000px;}
.ws54{word-spacing:6.987000px;}
.ws71{word-spacing:7.500000px;}
.ws7b{word-spacing:7.560000px;}
.ws52{word-spacing:7.701000px;}
.ws13{word-spacing:7.920000px;}
.ws33{word-spacing:8.220000px;}
.ws9a{word-spacing:8.316000px;}
.ws4c{word-spacing:8.520000px;}
.ws9{word-spacing:8.640000px;}
.ws34{word-spacing:8.820000px;}
.wsa4{word-spacing:8.856000px;}
.ws61{word-spacing:8.925000px;}
.ws45{word-spacing:9.240000px;}
.ws49{word-spacing:9.300000px;}
.ws96{word-spacing:9.342000px;}
.ws12{word-spacing:9.480000px;}
.ws1e{word-spacing:9.720000px;}
.ws44{word-spacing:9.960000px;}
.wsa7{word-spacing:10.260000px;}
.ws77{word-spacing:10.500000px;}
.ws7c{word-spacing:10.740000px;}
.ws9d{word-spacing:10.908000px;}
.ws7a{word-spacing:11.340000px;}
.ws36{word-spacing:11.400000px;}
.ws18{word-spacing:11.940000px;}
.ws27{word-spacing:12.120000px;}
.ws98{word-spacing:12.420000px;}
.wsa6{word-spacing:13.014000px;}
.ws86{word-spacing:13.932000px;}
.ws48{word-spacing:14.040000px;}
.ws93{word-spacing:14.526000px;}
.ws38{word-spacing:14.700000px;}
.ws92{word-spacing:14.796000px;}
.wsa3{word-spacing:15.012000px;}
.ws25{word-spacing:15.600000px;}
.ws28{word-spacing:15.840000px;}
.ws94{word-spacing:17.334000px;}
.ws4e{word-spacing:18.000000px;}
.ws87{word-spacing:20.952000px;}
.ws35{word-spacing:21.900000px;}
.ws1d{word-spacing:22.920000px;}
.wsa{word-spacing:23.820000px;}
.ws22{word-spacing:24.300000px;}
.ws30{word-spacing:61.500000px;}
._23{margin-left:-78.171600px;}
._1d{margin-left:-16.686600px;}
._12{margin-left:-13.200000px;}
._24{margin-left:-7.986000px;}
._15{margin-left:-6.354600px;}
._f{margin-left:-4.800000px;}
._5{margin-left:-3.078000px;}
._4{margin-left:-1.998000px;}
._a{width:1.080000px;}
._8{width:2.268000px;}
._b{width:3.348000px;}
._7{width:4.482000px;}
._6{width:5.616000px;}
._9{width:7.182000px;}
._c{width:8.586000px;}
._10{width:9.900000px;}
._3{width:11.016000px;}
._17{width:12.480000px;}
._16{width:13.680000px;}
._27{width:14.742000px;}
._21{width:16.200000px;}
._18{width:17.820000px;}
._25{width:18.858000px;}
._26{width:20.160000px;}
._1c{width:21.180000px;}
._1b{width:22.620000px;}
._e{width:23.820000px;}
._19{width:24.960000px;}
._28{width:26.460000px;}
._1e{width:30.978000px;}
._2{width:32.022000px;}
._0{width:33.480000px;}
._22{width:34.704600px;}
._1{width:38.758200px;}
._20{width:45.334800px;}
._1f{width:46.800000px;}
._d{width:58.508400px;}
._1a{width:61.508400px;}
._14{width:466.257900px;}
._11{width:1034.009400px;}
._13{width:2573.676000px;}
.fc1{color:rgb(58,83,161);}
.fc0{color:rgb(29,29,27);}
.fsb{font-size:33.150000px;}
.fs3{font-size:35.100000px;}
.fs9{font-size:39.000000px;}
.fs8{font-size:44.100000px;}
.fs2{font-size:46.800000px;}
.fs7{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:67.500000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y33{bottom:30.056850px;}
.y32{bottom:43.286850px;}
.y13a{bottom:95.974500px;}
.y137{bottom:95.979000px;}
.y16b{bottom:97.139400px;}
.y1ba{bottom:98.194200px;}
.y17d{bottom:103.946400px;}
.yd0{bottom:108.561600px;}
.y139{bottom:110.229000px;}
.y136{bottom:110.233500px;}
.y9e{bottom:112.063050px;}
.y11d{bottom:112.941900px;}
.ye7{bottom:113.682600px;}
.y1b9{bottom:114.394200px;}
.y16a{bottom:115.139400px;}
.y6a{bottom:115.154100px;}
.y12b{bottom:115.880100px;}
.y17c{bottom:120.146400px;}
.y138{bottom:124.483500px;}
.y135{bottom:124.488000px;}
.y27{bottom:125.386500px;}
.ycf{bottom:126.561600px;}
.y2f{bottom:126.645000px;}
.y9d{bottom:130.063050px;}
.y1b8{bottom:130.594200px;}
.y11c{bottom:130.941900px;}
.ye6{bottom:131.682600px;}
.y169{bottom:133.139400px;}
.y69{bottom:133.154100px;}
.y12a{bottom:133.880100px;}
.y17b{bottom:136.346400px;}
.y134{bottom:138.733500px;}
.y26{bottom:143.386500px;}
.yce{bottom:144.554100px;}
.y2e{bottom:144.645000px;}
.y1b7{bottom:146.794200px;}
.y9c{bottom:148.063050px;}
.y11b{bottom:148.941900px;}
.ye5{bottom:149.682600px;}
.y168{bottom:151.139400px;}
.y68{bottom:151.154100px;}
.y129{bottom:151.880100px;}
.y17a{bottom:152.546400px;}
.y133{bottom:152.983500px;}
.y25{bottom:161.386500px;}
.y2d{bottom:162.645000px;}
.y1b6{bottom:162.994200px;}
.y9b{bottom:166.063050px;}
.y11a{bottom:166.941900px;}
.y132{bottom:167.233500px;}
.ye4{bottom:167.682600px;}
.y167{bottom:169.139400px;}
.y67{bottom:169.154100px;}
.y128{bottom:169.880100px;}
.y1b5{bottom:179.194200px;}
.y24{bottom:179.386500px;}
.y2c{bottom:180.645000px;}
.y131{bottom:181.483500px;}
.ycd{bottom:182.759100px;}
.y9a{bottom:184.063050px;}
.y119{bottom:184.941900px;}
.ye3{bottom:185.682600px;}
.y179{bottom:185.755050px;}
.y166{bottom:187.139400px;}
.y66{bottom:187.154100px;}
.y127{bottom:187.880100px;}
.y1b4{bottom:195.394200px;}
.y130{bottom:195.724500px;}
.y23{bottom:197.386500px;}
.y2b{bottom:198.645000px;}
.ycc{bottom:200.759100px;}
.y99{bottom:202.063050px;}
.y118{bottom:202.941900px;}
.ye2{bottom:203.682600px;}
.y165{bottom:205.139400px;}
.y65{bottom:205.154100px;}
.y126{bottom:205.880100px;}
.y12f{bottom:209.979000px;}
.y1b3{bottom:211.594200px;}
.y22{bottom:215.386500px;}
.y2a{bottom:216.645000px;}
.ycb{bottom:218.759100px;}
.y98{bottom:220.063050px;}
.y117{bottom:220.941900px;}
.ye1{bottom:221.682600px;}
.y164{bottom:223.139400px;}
.y64{bottom:223.154100px;}
.y125{bottom:223.880100px;}
.y12e{bottom:224.233500px;}
.y1b2{bottom:227.794200px;}
.y29{bottom:234.645000px;}
.yca{bottom:236.759100px;}
.y97{bottom:238.063050px;}
.y12d{bottom:238.488000px;}
.y116{bottom:238.941900px;}
.ye0{bottom:239.682600px;}
.y178{bottom:240.020400px;}
.y163{bottom:241.139400px;}
.y63{bottom:241.154100px;}
.y124{bottom:241.880100px;}
.y1b1{bottom:243.994200px;}
.y21{bottom:250.395000px;}
.y28{bottom:252.646500px;}
.yc9{bottom:254.759100px;}
.y96{bottom:256.063050px;}
.y177{bottom:256.220400px;}
.y115{bottom:256.941900px;}
.ydf{bottom:257.682600px;}
.y162{bottom:259.139400px;}
.y62{bottom:259.154100px;}
.y123{bottom:259.880100px;}
.y1b0{bottom:260.194200px;}
.y176{bottom:272.420400px;}
.yc8{bottom:272.759100px;}
.y95{bottom:274.063050px;}
.y114{bottom:274.941900px;}
.yde{bottom:275.682600px;}
.y1af{bottom:276.394200px;}
.y161{bottom:277.139400px;}
.y61{bottom:277.154100px;}
.y122{bottom:277.880100px;}
.y175{bottom:288.620400px;}
.yc7{bottom:290.759100px;}
.y94{bottom:292.063050px;}
.y1ae{bottom:292.594200px;}
.y113{bottom:292.941900px;}
.ydd{bottom:293.682600px;}
.y160{bottom:295.139400px;}
.y60{bottom:295.154100px;}
.y174{bottom:304.820400px;}
.yc6{bottom:308.759100px;}
.y1ad{bottom:308.794200px;}
.y93{bottom:310.063050px;}
.y112{bottom:310.941900px;}
.ydc{bottom:311.682600px;}
.y121{bottom:312.888600px;}
.y15f{bottom:313.139400px;}
.y5f{bottom:313.154100px;}
.y20{bottom:318.982500px;}
.y173{bottom:321.020400px;}
.y1ac{bottom:324.994200px;}
.yc5{bottom:326.759100px;}
.y92{bottom:328.063050px;}
.y111{bottom:328.941900px;}
.ydb{bottom:329.682600px;}
.y15e{bottom:331.139400px;}
.y5e{bottom:331.154100px;}
.y1f{bottom:334.278000px;}
.y172{bottom:337.220400px;}
.y1ab{bottom:341.194200px;}
.yc4{bottom:344.759100px;}
.y91{bottom:346.063050px;}
.y110{bottom:346.942050px;}
.yda{bottom:347.682600px;}
.y15d{bottom:349.139400px;}
.y5d{bottom:349.154100px;}
.y171{bottom:353.420400px;}
.y1aa{bottom:357.394200px;}
.yc3{bottom:362.759100px;}
.y90{bottom:364.063050px;}
.y10f{bottom:364.942050px;}
.yd9{bottom:365.682600px;}
.y1e{bottom:365.773500px;}
.y15c{bottom:367.139400px;}
.y5c{bottom:367.154100px;}
.y170{bottom:369.620400px;}
.y1a9{bottom:373.594200px;}
.yc2{bottom:380.759100px;}
.y1d{bottom:381.069000px;}
.y8f{bottom:382.063050px;}
.y10e{bottom:382.941900px;}
.yd8{bottom:383.682600px;}
.y15b{bottom:385.139400px;}
.y5b{bottom:385.154100px;}
.y16f{bottom:385.820400px;}
.y1a8{bottom:389.794200px;}
.y1c{bottom:396.364500px;}
.yc1{bottom:398.759100px;}
.y8e{bottom:400.063050px;}
.y16e{bottom:402.020400px;}
.y15a{bottom:403.139400px;}
.y5a{bottom:403.154100px;}
.y10d{bottom:404.993550px;}
.y1a7{bottom:405.994200px;}
.y1b{bottom:411.660000px;}
.yc0{bottom:416.759100px;}
.y8d{bottom:418.063050px;}
.y16d{bottom:418.220400px;}
.yd7{bottom:418.691100px;}
.y10c{bottom:418.941900px;}
.y159{bottom:421.139400px;}
.y59{bottom:421.154100px;}
.y1a6{bottom:422.194200px;}
.y1a{bottom:426.955500px;}
.y16c{bottom:434.420400px;}
.ybf{bottom:434.759100px;}
.y8c{bottom:436.063050px;}
.y10b{bottom:436.941900px;}
.y1a5{bottom:438.394200px;}
.y158{bottom:439.139400px;}
.y58{bottom:439.154100px;}
.y19{bottom:442.251000px;}
.ybe{bottom:452.759100px;}
.y8b{bottom:454.063050px;}
.y1a4{bottom:454.594200px;}
.y10a{bottom:454.941900px;}
.y157{bottom:457.139400px;}
.y57{bottom:457.154100px;}
.y18{bottom:457.546500px;}
.ybd{bottom:470.759100px;}
.y1a3{bottom:470.794200px;}
.y8a{bottom:472.063050px;}
.y17{bottom:472.842000px;}
.y109{bottom:472.941900px;}
.yd6{bottom:472.956600px;}
.y156{bottom:475.139400px;}
.y56{bottom:475.154100px;}
.y1a2{bottom:486.994200px;}
.y16{bottom:488.137500px;}
.ybc{bottom:488.759100px;}
.y89{bottom:490.063050px;}
.y108{bottom:490.941900px;}
.yd5{bottom:490.956600px;}
.y155{bottom:493.139400px;}
.y55{bottom:493.154100px;}
.y1a1{bottom:503.194200px;}
.y15{bottom:503.433000px;}
.ybb{bottom:506.751600px;}
.y88{bottom:508.063050px;}
.y107{bottom:508.941900px;}
.yd4{bottom:508.956600px;}
.y154{bottom:511.139400px;}
.y54{bottom:511.154100px;}
.y14{bottom:518.728500px;}
.y1a0{bottom:519.394200px;}
.y87{bottom:526.063050px;}
.y106{bottom:526.941900px;}
.yd3{bottom:526.956600px;}
.y153{bottom:529.139400px;}
.y53{bottom:529.154100px;}
.y13{bottom:534.024000px;}
.y19f{bottom:535.594200px;}
.y86{bottom:544.063050px;}
.y105{bottom:544.941900px;}
.yba{bottom:544.956600px;}
.y152{bottom:547.139400px;}
.y52{bottom:547.154100px;}
.y12{bottom:549.319500px;}
.y19e{bottom:551.794200px;}
.y85{bottom:562.063050px;}
.y104{bottom:562.941900px;}
.yb9{bottom:562.956600px;}
.y11{bottom:564.615000px;}
.y151{bottom:565.139400px;}
.y51{bottom:565.154100px;}
.y19d{bottom:567.994200px;}
.y84{bottom:580.063050px;}
.y103{bottom:580.941900px;}
.yb8{bottom:580.956600px;}
.y150{bottom:583.139400px;}
.y50{bottom:583.154100px;}
.y19c{bottom:584.194200px;}
.y83{bottom:598.063050px;}
.y102{bottom:598.941900px;}
.yb7{bottom:598.956600px;}
.y19b{bottom:600.394200px;}
.y14f{bottom:601.139400px;}
.y4f{bottom:601.154100px;}
.y10{bottom:609.070500px;}
.y82{bottom:616.063050px;}
.y19a{bottom:616.594200px;}
.y101{bottom:616.941900px;}
.yb6{bottom:616.956600px;}
.y14e{bottom:619.139400px;}
.y4e{bottom:619.154100px;}
.y199{bottom:632.794200px;}
.y81{bottom:634.055550px;}
.y100{bottom:634.941900px;}
.yb5{bottom:634.956600px;}
.y14d{bottom:637.139400px;}
.y4d{bottom:637.154100px;}
.y198{bottom:648.994200px;}
.yff{bottom:652.941900px;}
.yb4{bottom:652.956600px;}
.y14c{bottom:655.139400px;}
.y4c{bottom:655.154100px;}
.yf{bottom:659.470500px;}
.y197{bottom:665.194200px;}
.yfe{bottom:670.941900px;}
.yb3{bottom:670.956600px;}
.y80{bottom:672.260550px;}
.y14b{bottom:673.139400px;}
.y4b{bottom:673.154100px;}
.ye{bottom:677.470500px;}
.y196{bottom:681.394200px;}
.yfd{bottom:688.941900px;}
.yd2{bottom:688.949100px;}
.yb2{bottom:688.956600px;}
.y7f{bottom:690.260550px;}
.y14a{bottom:691.139400px;}
.y4a{bottom:691.154100px;}
.y195{bottom:697.594200px;}
.yd{bottom:699.115500px;}
.yfc{bottom:706.941900px;}
.yb1{bottom:706.956600px;}
.y7e{bottom:708.260550px;}
.y149{bottom:709.139400px;}
.y49{bottom:709.154100px;}
.yc{bottom:713.470500px;}
.y194{bottom:713.794200px;}
.y1cd{bottom:713.853300px;}
.yfb{bottom:724.941900px;}
.yb0{bottom:724.956600px;}
.y7d{bottom:726.260550px;}
.y148{bottom:727.139400px;}
.y48{bottom:727.154100px;}
.y193{bottom:729.994200px;}
.y1cc{bottom:731.853300px;}
.yb{bottom:735.115500px;}
.yfa{bottom:742.941900px;}
.yaf{bottom:742.956600px;}
.y7c{bottom:744.260550px;}
.y147{bottom:745.139400px;}
.y47{bottom:745.154100px;}
.y192{bottom:746.194200px;}
.ya{bottom:749.470500px;}
.y1cb{bottom:749.853300px;}
.yf9{bottom:760.941900px;}
.yae{bottom:760.956600px;}
.y7b{bottom:762.260550px;}
.y191{bottom:762.394200px;}
.y146{bottom:763.139400px;}
.y46{bottom:763.154100px;}
.y9{bottom:771.115500px;}
.y190{bottom:778.594200px;}
.yf8{bottom:778.942050px;}
.yad{bottom:778.956600px;}
.y7a{bottom:780.260550px;}
.y145{bottom:781.139400px;}
.y45{bottom:781.154100px;}
.y8{bottom:785.470500px;}
.y1ca{bottom:794.781000px;}
.y18f{bottom:794.794200px;}
.yf7{bottom:796.942050px;}
.yac{bottom:796.956600px;}
.y79{bottom:798.260550px;}
.y144{bottom:799.139400px;}
.y44{bottom:799.154100px;}
.y7{bottom:807.115500px;}
.y1c9{bottom:810.981000px;}
.y18e{bottom:810.994200px;}
.yf6{bottom:814.942050px;}
.yab{bottom:814.956600px;}
.y78{bottom:816.260550px;}
.y143{bottom:817.139400px;}
.y43{bottom:817.154100px;}
.y6{bottom:825.115500px;}
.y1c8{bottom:827.181000px;}
.y18d{bottom:827.194200px;}
.yf5{bottom:832.942050px;}
.yaa{bottom:832.956600px;}
.y77{bottom:834.260550px;}
.y142{bottom:835.139400px;}
.y42{bottom:835.154100px;}
.y1c7{bottom:843.381000px;}
.y18c{bottom:843.394200px;}
.yf4{bottom:850.942050px;}
.ya9{bottom:850.956600px;}
.y76{bottom:852.260550px;}
.y141{bottom:853.139400px;}
.y41{bottom:853.154100px;}
.y18b{bottom:859.594200px;}
.yf3{bottom:868.942050px;}
.ya8{bottom:868.956600px;}
.y5{bottom:869.476500px;}
.y75{bottom:870.260550px;}
.y140{bottom:871.139400px;}
.y40{bottom:871.154100px;}
.y18a{bottom:875.794200px;}
.yf2{bottom:886.942050px;}
.ya7{bottom:886.956600px;}
.y74{bottom:888.260550px;}
.y13f{bottom:889.139400px;}
.y3f{bottom:889.154100px;}
.y1c6{bottom:891.980700px;}
.y189{bottom:891.994200px;}
.y4{bottom:893.470500px;}
.yf1{bottom:904.942050px;}
.ya6{bottom:904.956600px;}
.y73{bottom:906.260550px;}
.y13e{bottom:907.139400px;}
.y3e{bottom:907.154100px;}
.y1c5{bottom:908.180700px;}
.y188{bottom:908.194200px;}
.yf0{bottom:922.942050px;}
.ya5{bottom:922.956600px;}
.y72{bottom:924.260550px;}
.y1c4{bottom:924.380700px;}
.y187{bottom:924.394200px;}
.y13d{bottom:925.139400px;}
.y3d{bottom:925.154100px;}
.y1c3{bottom:940.580700px;}
.y186{bottom:940.594200px;}
.yef{bottom:940.949400px;}
.ya4{bottom:940.956600px;}
.y71{bottom:942.260550px;}
.y13c{bottom:943.139400px;}
.y3c{bottom:943.154100px;}
.y1c2{bottom:956.780700px;}
.y185{bottom:956.794200px;}
.ya3{bottom:958.956600px;}
.y70{bottom:960.260550px;}
.y13b{bottom:961.139400px;}
.y3b{bottom:961.154100px;}
.y3{bottom:962.470500px;}
.y1c1{bottom:972.980700px;}
.y184{bottom:972.994200px;}
.ya2{bottom:976.956600px;}
.y6f{bottom:978.260550px;}
.yee{bottom:979.139400px;}
.y3a{bottom:979.154100px;}
.y1c0{bottom:989.180700px;}
.y183{bottom:989.194200px;}
.y2{bottom:993.070500px;}
.ya1{bottom:994.956600px;}
.y6e{bottom:996.260550px;}
.yed{bottom:997.139400px;}
.y39{bottom:997.154100px;}
.y1bf{bottom:1005.380700px;}
.y182{bottom:1005.394200px;}
.ya0{bottom:1012.949100px;}
.y6d{bottom:1014.260550px;}
.yec{bottom:1015.139400px;}
.y38{bottom:1015.154100px;}
.y1be{bottom:1021.580700px;}
.y181{bottom:1021.594200px;}
.y1{bottom:1023.670500px;}
.y6c{bottom:1032.260550px;}
.yeb{bottom:1033.139400px;}
.y37{bottom:1033.154100px;}
.y120{bottom:1037.205600px;}
.y1bd{bottom:1037.780700px;}
.y180{bottom:1037.794200px;}
.yea{bottom:1051.139400px;}
.y11f{bottom:1051.146900px;}
.y36{bottom:1051.154100px;}
.y1bc{bottom:1053.980700px;}
.y17f{bottom:1053.994200px;}
.y6b{bottom:1067.269050px;}
.ye9{bottom:1069.139400px;}
.y11e{bottom:1069.146900px;}
.y35{bottom:1069.154100px;}
.yd1{bottom:1069.161600px;}
.y1bb{bottom:1070.180700px;}
.y17e{bottom:1070.194200px;}
.y34{bottom:1101.757350px;}
.y31{bottom:1103.781600px;}
.y9f{bottom:1112.203050px;}
.ye8{bottom:1112.209050px;}
.y12c{bottom:1112.210100px;}
.y30{bottom:1119.081600px;}
.h14{height:36.439884px;}
.h6{height:39.313477px;}
.h4{height:41.740312px;}
.h18{height:42.680719px;}
.h10{height:45.994922px;}
.h8{height:47.381836px;}
.hf{height:50.062500px;}
.hd{height:52.646484px;}
.h9{height:52.971680px;}
.ha{height:52.998047px;}
.h19{height:53.191406px;}
.h1b{height:53.209406px;}
.h1a{height:53.245406px;}
.h7{height:54.421875px;}
.h5{height:56.320312px;}
.h13{height:58.856719px;}
.he{height:58.857422px;}
.h16{height:58.886119px;}
.hc{height:58.886719px;}
.h15{height:58.887319px;}
.h17{height:58.915519px;}
.h11{height:62.578125px;}
.h12{height:62.608125px;}
.hb{height:70.400391px;}
.h3{height:75.093750px;}
.h2{height:106.382812px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.x7{left:76.536000px;}
.x2{left:89.291400px;}
.x13{left:90.292500px;}
.xf{left:92.803500px;}
.x11{left:94.531500px;}
.x8{left:97.055850px;}
.x5{left:112.320000px;}
.x3{left:114.808500px;}
.xe{left:116.929650px;}
.x4{left:454.978500px;}
.x9{left:459.213000px;}
.x10{left:472.956000px;}
.xc{left:475.480500px;}
.x12{left:477.203100px;}
.xa{left:479.733000px;}
.xd{left:495.354150px;}
.xb{left:499.606800px;}
.x6{left:760.356450px;}
@media print{
.v6{vertical-align:-14.405867pt;}
.v2{vertical-align:-12.960000pt;}
.v4{vertical-align:-10.133333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.132800pt;}
.v7{vertical-align:12.288000pt;}
.v3{vertical-align:14.400533pt;}
.v1{vertical-align:17.280000pt;}
.ls9{letter-spacing:-3.733333pt;}
.ls3f{letter-spacing:-3.552000pt;}
.ls33{letter-spacing:-1.546667pt;}
.ls3e{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls34{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.346667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.006400pt;}
.lsa{letter-spacing:0.009067pt;}
.ls2b{letter-spacing:0.016000pt;}
.ls28{letter-spacing:0.018533pt;}
.ls2{letter-spacing:0.096000pt;}
.ls16{letter-spacing:0.173333pt;}
.ls1b{letter-spacing:0.178133pt;}
.ls8{letter-spacing:0.213333pt;}
.ls35{letter-spacing:0.240000pt;}
.ls14{letter-spacing:0.266667pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls7{letter-spacing:0.548800pt;}
.ls13{letter-spacing:0.636267pt;}
.ls11{letter-spacing:0.761600pt;}
.ls44{letter-spacing:0.960000pt;}
.ls3a{letter-spacing:1.200000pt;}
.ls2d{letter-spacing:1.352000pt;}
.ls4{letter-spacing:1.536000pt;}
.ls1f{letter-spacing:1.566400pt;}
.ls1e{letter-spacing:1.566933pt;}
.ls1a{letter-spacing:1.596267pt;}
.ls45{letter-spacing:2.064000pt;}
.ls2e{letter-spacing:2.080000pt;}
.ls2f{letter-spacing:2.089067pt;}
.ls1d{letter-spacing:2.265600pt;}
.ls22{letter-spacing:2.564800pt;}
.ls24{letter-spacing:2.692800pt;}
.ls25{letter-spacing:2.693333pt;}
.ls26{letter-spacing:2.725867pt;}
.ls5{letter-spacing:2.773333pt;}
.ls29{letter-spacing:3.523200pt;}
.ls20{letter-spacing:3.573333pt;}
.ls23{letter-spacing:4.204267pt;}
.ls39{letter-spacing:4.608000pt;}
.ls21{letter-spacing:5.120000pt;}
.ls27{letter-spacing:5.508267pt;}
.ls36{letter-spacing:5.568000pt;}
.ls17{letter-spacing:5.970133pt;}
.ls32{letter-spacing:5.973333pt;}
.ls2c{letter-spacing:6.026667pt;}
.ls30{letter-spacing:6.174933pt;}
.lsf{letter-spacing:6.177067pt;}
.ls31{letter-spacing:6.666667pt;}
.lse{letter-spacing:7.793600pt;}
.ls1c{letter-spacing:7.848000pt;}
.ls40{letter-spacing:7.872000pt;}
.ls38{letter-spacing:8.304000pt;}
.ls10{letter-spacing:8.419200pt;}
.ls3c{letter-spacing:8.640000pt;}
.ls43{letter-spacing:9.120000pt;}
.ls19{letter-spacing:9.173867pt;}
.ls3b{letter-spacing:9.648000pt;}
.ls12{letter-spacing:10.498667pt;}
.ls15{letter-spacing:12.994133pt;}
.ls18{letter-spacing:18.478400pt;}
.ls37{letter-spacing:18.672000pt;}
.ls42{letter-spacing:40.320000pt;}
.lsb{letter-spacing:1277.099200pt;}
.ws10{word-spacing:-14.826667pt;}
.ws3c{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.333333pt;}
.ws2a{word-spacing:-12.800000pt;}
.ws51{word-spacing:-12.602667pt;}
.wsa2{word-spacing:-12.480000pt;}
.ws70{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.564800pt;}
.ws2b{word-spacing:-10.400000pt;}
.ws7f{word-spacing:-8.448000pt;}
.ws29{word-spacing:-8.320000pt;}
.ws72{word-spacing:-6.666667pt;}
.ws74{word-spacing:-5.973333pt;}
.ws50{word-spacing:-5.120000pt;}
.ws37{word-spacing:-3.893333pt;}
.ws43{word-spacing:-3.573333pt;}
.ws3d{word-spacing:-3.200000pt;}
.wsa1{word-spacing:-3.168000pt;}
.ws89{word-spacing:-2.880000pt;}
.wse{word-spacing:-2.773333pt;}
.ws32{word-spacing:-2.666667pt;}
.ws39{word-spacing:-2.506667pt;}
.wsab{word-spacing:-2.400000pt;}
.ws53{word-spacing:-2.266667pt;}
.ws9f{word-spacing:-2.256000pt;}
.ws8f{word-spacing:-2.208000pt;}
.ws95{word-spacing:-2.160000pt;}
.ws5a{word-spacing:-2.130667pt;}
.wsaa{word-spacing:-2.064000pt;}
.ws3f{word-spacing:-1.813333pt;}
.ws75{word-spacing:-1.546667pt;}
.ws5{word-spacing:-1.536000pt;}
.ws26{word-spacing:-1.493333pt;}
.ws6c{word-spacing:-1.405333pt;}
.ws59{word-spacing:-1.384933pt;}
.ws15{word-spacing:-1.226667pt;}
.wsc{word-spacing:-1.173333pt;}
.ws9c{word-spacing:-1.008000pt;}
.ws6d{word-spacing:-0.913467pt;}
.ws79{word-spacing:-0.906667pt;}
.ws6{word-spacing:-0.864000pt;}
.ws6e{word-spacing:-0.816000pt;}
.ws40{word-spacing:-0.746667pt;}
.ws6f{word-spacing:-0.725333pt;}
.ws11{word-spacing:-0.533333pt;}
.ws9b{word-spacing:-0.528000pt;}
.wsa5{word-spacing:-0.480000pt;}
.ws8b{word-spacing:-0.336000pt;}
.ws24{word-spacing:-0.320000pt;}
.ws47{word-spacing:-0.266667pt;}
.ws1a{word-spacing:-0.213333pt;}
.ws4a{word-spacing:-0.173333pt;}
.ws7e{word-spacing:-0.053333pt;}
.ws9e{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.045333pt;}
.wsa8{word-spacing:0.048000pt;}
.wsb{word-spacing:0.053333pt;}
.ws2{word-spacing:0.096000pt;}
.ws56{word-spacing:0.117867pt;}
.ws55{word-spacing:0.181333pt;}
.ws19{word-spacing:0.213333pt;}
.ws82{word-spacing:0.240000pt;}
.ws1b{word-spacing:0.266667pt;}
.ws8{word-spacing:0.336000pt;}
.wsa0{word-spacing:0.384000pt;}
.ws20{word-spacing:0.480000pt;}
.ws17{word-spacing:0.533333pt;}
.ws78{word-spacing:0.586667pt;}
.ws41{word-spacing:0.640000pt;}
.ws7d{word-spacing:0.746667pt;}
.ws90{word-spacing:0.768000pt;}
.ws5c{word-spacing:0.795600pt;}
.ws14{word-spacing:0.800000pt;}
.ws84{word-spacing:0.960000pt;}
.ws8c{word-spacing:1.200000pt;}
.ws5b{word-spacing:1.224000pt;}
.ws3e{word-spacing:1.280000pt;}
.ws4b{word-spacing:1.333333pt;}
.ws3a{word-spacing:1.386667pt;}
.ws2f{word-spacing:1.440000pt;}
.ws4{word-spacing:1.536000pt;}
.ws76{word-spacing:1.546667pt;}
.ws5e{word-spacing:1.679600pt;}
.ws66{word-spacing:1.768000pt;}
.ws58{word-spacing:1.915333pt;}
.wsa9{word-spacing:1.920000pt;}
.ws91{word-spacing:1.968000pt;}
.ws3b{word-spacing:1.973333pt;}
.ws4d{word-spacing:2.026667pt;}
.ws3{word-spacing:2.064000pt;}
.ws21{word-spacing:2.240000pt;}
.ws6a{word-spacing:2.298400pt;}
.ws2d{word-spacing:2.346667pt;}
.ws81{word-spacing:2.496000pt;}
.ws5d{word-spacing:2.584000pt;}
.ws23{word-spacing:2.666667pt;}
.ws80{word-spacing:2.688000pt;}
.ws67{word-spacing:2.720000pt;}
.ws65{word-spacing:2.740400pt;}
.wsd{word-spacing:2.773333pt;}
.ws60{word-spacing:2.810667pt;}
.ws85{word-spacing:2.880000pt;}
.ws57{word-spacing:2.946667pt;}
.ws97{word-spacing:3.120000pt;}
.ws8d{word-spacing:3.312000pt;}
.ws63{word-spacing:3.400000pt;}
.ws7{word-spacing:3.408000pt;}
.ws6b{word-spacing:3.536000pt;}
.ws42{word-spacing:3.573333pt;}
.ws69{word-spacing:3.594933pt;}
.ws16{word-spacing:3.733333pt;}
.ws88{word-spacing:3.984000pt;}
.ws1f{word-spacing:4.213333pt;}
.ws64{word-spacing:4.216000pt;}
.ws99{word-spacing:4.608000pt;}
.ws1c{word-spacing:4.853333pt;}
.ws2c{word-spacing:4.906667pt;}
.ws4f{word-spacing:5.120000pt;}
.ws8e{word-spacing:5.184000pt;}
.ws46{word-spacing:5.280000pt;}
.ws62{word-spacing:5.304000pt;}
.ws31{word-spacing:5.440000pt;}
.ws68{word-spacing:5.530667pt;}
.ws83{word-spacing:5.616000pt;}
.ws2e{word-spacing:5.813333pt;}
.ws8a{word-spacing:5.904000pt;}
.ws73{word-spacing:5.973333pt;}
.ws54{word-spacing:6.210667pt;}
.ws71{word-spacing:6.666667pt;}
.ws7b{word-spacing:6.720000pt;}
.ws52{word-spacing:6.845333pt;}
.ws13{word-spacing:7.040000pt;}
.ws33{word-spacing:7.306667pt;}
.ws9a{word-spacing:7.392000pt;}
.ws4c{word-spacing:7.573333pt;}
.ws9{word-spacing:7.680000pt;}
.ws34{word-spacing:7.840000pt;}
.wsa4{word-spacing:7.872000pt;}
.ws61{word-spacing:7.933333pt;}
.ws45{word-spacing:8.213333pt;}
.ws49{word-spacing:8.266667pt;}
.ws96{word-spacing:8.304000pt;}
.ws12{word-spacing:8.426667pt;}
.ws1e{word-spacing:8.640000pt;}
.ws44{word-spacing:8.853333pt;}
.wsa7{word-spacing:9.120000pt;}
.ws77{word-spacing:9.333333pt;}
.ws7c{word-spacing:9.546667pt;}
.ws9d{word-spacing:9.696000pt;}
.ws7a{word-spacing:10.080000pt;}
.ws36{word-spacing:10.133333pt;}
.ws18{word-spacing:10.613333pt;}
.ws27{word-spacing:10.773333pt;}
.ws98{word-spacing:11.040000pt;}
.wsa6{word-spacing:11.568000pt;}
.ws86{word-spacing:12.384000pt;}
.ws48{word-spacing:12.480000pt;}
.ws93{word-spacing:12.912000pt;}
.ws38{word-spacing:13.066667pt;}
.ws92{word-spacing:13.152000pt;}
.wsa3{word-spacing:13.344000pt;}
.ws25{word-spacing:13.866667pt;}
.ws28{word-spacing:14.080000pt;}
.ws94{word-spacing:15.408000pt;}
.ws4e{word-spacing:16.000000pt;}
.ws87{word-spacing:18.624000pt;}
.ws35{word-spacing:19.466667pt;}
.ws1d{word-spacing:20.373333pt;}
.wsa{word-spacing:21.173333pt;}
.ws22{word-spacing:21.600000pt;}
.ws30{word-spacing:54.666667pt;}
._23{margin-left:-69.485867pt;}
._1d{margin-left:-14.832533pt;}
._12{margin-left:-11.733333pt;}
._24{margin-left:-7.098667pt;}
._15{margin-left:-5.648533pt;}
._f{margin-left:-4.266667pt;}
._5{margin-left:-2.736000pt;}
._4{margin-left:-1.776000pt;}
._a{width:0.960000pt;}
._8{width:2.016000pt;}
._b{width:2.976000pt;}
._7{width:3.984000pt;}
._6{width:4.992000pt;}
._9{width:6.384000pt;}
._c{width:7.632000pt;}
._10{width:8.800000pt;}
._3{width:9.792000pt;}
._17{width:11.093333pt;}
._16{width:12.160000pt;}
._27{width:13.104000pt;}
._21{width:14.400000pt;}
._18{width:15.840000pt;}
._25{width:16.762667pt;}
._26{width:17.920000pt;}
._1c{width:18.826667pt;}
._1b{width:20.106667pt;}
._e{width:21.173333pt;}
._19{width:22.186667pt;}
._28{width:23.520000pt;}
._1e{width:27.536000pt;}
._2{width:28.464000pt;}
._0{width:29.760000pt;}
._22{width:30.848533pt;}
._1{width:34.451733pt;}
._20{width:40.297600pt;}
._1f{width:41.600000pt;}
._d{width:52.007467pt;}
._1a{width:54.674133pt;}
._14{width:414.451467pt;}
._11{width:919.119467pt;}
._13{width:2287.712000pt;}
.fsb{font-size:29.466667pt;}
.fs3{font-size:31.200000pt;}
.fs9{font-size:34.666667pt;}
.fs8{font-size:39.200000pt;}
.fs2{font-size:41.600000pt;}
.fs7{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:60.000000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:26.717200pt;}
.y32{bottom:38.477200pt;}
.y13a{bottom:85.310667pt;}
.y137{bottom:85.314667pt;}
.y16b{bottom:86.346133pt;}
.y1ba{bottom:87.283733pt;}
.y17d{bottom:92.396800pt;}
.yd0{bottom:96.499200pt;}
.y139{bottom:97.981333pt;}
.y136{bottom:97.985333pt;}
.y9e{bottom:99.611600pt;}
.y11d{bottom:100.392800pt;}
.ye7{bottom:101.051200pt;}
.y1b9{bottom:101.683733pt;}
.y16a{bottom:102.346133pt;}
.y6a{bottom:102.359200pt;}
.y12b{bottom:103.004533pt;}
.y17c{bottom:106.796800pt;}
.y138{bottom:110.652000pt;}
.y135{bottom:110.656000pt;}
.y27{bottom:111.454667pt;}
.ycf{bottom:112.499200pt;}
.y2f{bottom:112.573333pt;}
.y9d{bottom:115.611600pt;}
.y1b8{bottom:116.083733pt;}
.y11c{bottom:116.392800pt;}
.ye6{bottom:117.051200pt;}
.y169{bottom:118.346133pt;}
.y69{bottom:118.359200pt;}
.y12a{bottom:119.004533pt;}
.y17b{bottom:121.196800pt;}
.y134{bottom:123.318667pt;}
.y26{bottom:127.454667pt;}
.yce{bottom:128.492533pt;}
.y2e{bottom:128.573333pt;}
.y1b7{bottom:130.483733pt;}
.y9c{bottom:131.611600pt;}
.y11b{bottom:132.392800pt;}
.ye5{bottom:133.051200pt;}
.y168{bottom:134.346133pt;}
.y68{bottom:134.359200pt;}
.y129{bottom:135.004533pt;}
.y17a{bottom:135.596800pt;}
.y133{bottom:135.985333pt;}
.y25{bottom:143.454667pt;}
.y2d{bottom:144.573333pt;}
.y1b6{bottom:144.883733pt;}
.y9b{bottom:147.611600pt;}
.y11a{bottom:148.392800pt;}
.y132{bottom:148.652000pt;}
.ye4{bottom:149.051200pt;}
.y167{bottom:150.346133pt;}
.y67{bottom:150.359200pt;}
.y128{bottom:151.004533pt;}
.y1b5{bottom:159.283733pt;}
.y24{bottom:159.454667pt;}
.y2c{bottom:160.573333pt;}
.y131{bottom:161.318667pt;}
.ycd{bottom:162.452533pt;}
.y9a{bottom:163.611600pt;}
.y119{bottom:164.392800pt;}
.ye3{bottom:165.051200pt;}
.y179{bottom:165.115600pt;}
.y166{bottom:166.346133pt;}
.y66{bottom:166.359200pt;}
.y127{bottom:167.004533pt;}
.y1b4{bottom:173.683733pt;}
.y130{bottom:173.977333pt;}
.y23{bottom:175.454667pt;}
.y2b{bottom:176.573333pt;}
.ycc{bottom:178.452533pt;}
.y99{bottom:179.611600pt;}
.y118{bottom:180.392800pt;}
.ye2{bottom:181.051200pt;}
.y165{bottom:182.346133pt;}
.y65{bottom:182.359200pt;}
.y126{bottom:183.004533pt;}
.y12f{bottom:186.648000pt;}
.y1b3{bottom:188.083733pt;}
.y22{bottom:191.454667pt;}
.y2a{bottom:192.573333pt;}
.ycb{bottom:194.452533pt;}
.y98{bottom:195.611600pt;}
.y117{bottom:196.392800pt;}
.ye1{bottom:197.051200pt;}
.y164{bottom:198.346133pt;}
.y64{bottom:198.359200pt;}
.y125{bottom:199.004533pt;}
.y12e{bottom:199.318667pt;}
.y1b2{bottom:202.483733pt;}
.y29{bottom:208.573333pt;}
.yca{bottom:210.452533pt;}
.y97{bottom:211.611600pt;}
.y12d{bottom:211.989333pt;}
.y116{bottom:212.392800pt;}
.ye0{bottom:213.051200pt;}
.y178{bottom:213.351467pt;}
.y163{bottom:214.346133pt;}
.y63{bottom:214.359200pt;}
.y124{bottom:215.004533pt;}
.y1b1{bottom:216.883733pt;}
.y21{bottom:222.573333pt;}
.y28{bottom:224.574667pt;}
.yc9{bottom:226.452533pt;}
.y96{bottom:227.611600pt;}
.y177{bottom:227.751467pt;}
.y115{bottom:228.392800pt;}
.ydf{bottom:229.051200pt;}
.y162{bottom:230.346133pt;}
.y62{bottom:230.359200pt;}
.y123{bottom:231.004533pt;}
.y1b0{bottom:231.283733pt;}
.y176{bottom:242.151467pt;}
.yc8{bottom:242.452533pt;}
.y95{bottom:243.611600pt;}
.y114{bottom:244.392800pt;}
.yde{bottom:245.051200pt;}
.y1af{bottom:245.683733pt;}
.y161{bottom:246.346133pt;}
.y61{bottom:246.359200pt;}
.y122{bottom:247.004533pt;}
.y175{bottom:256.551467pt;}
.yc7{bottom:258.452533pt;}
.y94{bottom:259.611600pt;}
.y1ae{bottom:260.083733pt;}
.y113{bottom:260.392800pt;}
.ydd{bottom:261.051200pt;}
.y160{bottom:262.346133pt;}
.y60{bottom:262.359200pt;}
.y174{bottom:270.951467pt;}
.yc6{bottom:274.452533pt;}
.y1ad{bottom:274.483733pt;}
.y93{bottom:275.611600pt;}
.y112{bottom:276.392800pt;}
.ydc{bottom:277.051200pt;}
.y121{bottom:278.123200pt;}
.y15f{bottom:278.346133pt;}
.y5f{bottom:278.359200pt;}
.y20{bottom:283.540000pt;}
.y173{bottom:285.351467pt;}
.y1ac{bottom:288.883733pt;}
.yc5{bottom:290.452533pt;}
.y92{bottom:291.611600pt;}
.y111{bottom:292.392800pt;}
.ydb{bottom:293.051200pt;}
.y15e{bottom:294.346133pt;}
.y5e{bottom:294.359200pt;}
.y1f{bottom:297.136000pt;}
.y172{bottom:299.751467pt;}
.y1ab{bottom:303.283733pt;}
.yc4{bottom:306.452533pt;}
.y91{bottom:307.611600pt;}
.y110{bottom:308.392933pt;}
.yda{bottom:309.051200pt;}
.y15d{bottom:310.346133pt;}
.y5d{bottom:310.359200pt;}
.y171{bottom:314.151467pt;}
.y1aa{bottom:317.683733pt;}
.yc3{bottom:322.452533pt;}
.y90{bottom:323.611600pt;}
.y10f{bottom:324.392933pt;}
.yd9{bottom:325.051200pt;}
.y1e{bottom:325.132000pt;}
.y15c{bottom:326.346133pt;}
.y5c{bottom:326.359200pt;}
.y170{bottom:328.551467pt;}
.y1a9{bottom:332.083733pt;}
.yc2{bottom:338.452533pt;}
.y1d{bottom:338.728000pt;}
.y8f{bottom:339.611600pt;}
.y10e{bottom:340.392800pt;}
.yd8{bottom:341.051200pt;}
.y15b{bottom:342.346133pt;}
.y5b{bottom:342.359200pt;}
.y16f{bottom:342.951467pt;}
.y1a8{bottom:346.483733pt;}
.y1c{bottom:352.324000pt;}
.yc1{bottom:354.452533pt;}
.y8e{bottom:355.611600pt;}
.y16e{bottom:357.351467pt;}
.y15a{bottom:358.346133pt;}
.y5a{bottom:358.359200pt;}
.y10d{bottom:359.994267pt;}
.y1a7{bottom:360.883733pt;}
.y1b{bottom:365.920000pt;}
.yc0{bottom:370.452533pt;}
.y8d{bottom:371.611600pt;}
.y16d{bottom:371.751467pt;}
.yd7{bottom:372.169867pt;}
.y10c{bottom:372.392800pt;}
.y159{bottom:374.346133pt;}
.y59{bottom:374.359200pt;}
.y1a6{bottom:375.283733pt;}
.y1a{bottom:379.516000pt;}
.y16c{bottom:386.151467pt;}
.ybf{bottom:386.452533pt;}
.y8c{bottom:387.611600pt;}
.y10b{bottom:388.392800pt;}
.y1a5{bottom:389.683733pt;}
.y158{bottom:390.346133pt;}
.y58{bottom:390.359200pt;}
.y19{bottom:393.112000pt;}
.ybe{bottom:402.452533pt;}
.y8b{bottom:403.611600pt;}
.y1a4{bottom:404.083733pt;}
.y10a{bottom:404.392800pt;}
.y157{bottom:406.346133pt;}
.y57{bottom:406.359200pt;}
.y18{bottom:406.708000pt;}
.ybd{bottom:418.452533pt;}
.y1a3{bottom:418.483733pt;}
.y8a{bottom:419.611600pt;}
.y17{bottom:420.304000pt;}
.y109{bottom:420.392800pt;}
.yd6{bottom:420.405867pt;}
.y156{bottom:422.346133pt;}
.y56{bottom:422.359200pt;}
.y1a2{bottom:432.883733pt;}
.y16{bottom:433.900000pt;}
.ybc{bottom:434.452533pt;}
.y89{bottom:435.611600pt;}
.y108{bottom:436.392800pt;}
.yd5{bottom:436.405867pt;}
.y155{bottom:438.346133pt;}
.y55{bottom:438.359200pt;}
.y1a1{bottom:447.283733pt;}
.y15{bottom:447.496000pt;}
.ybb{bottom:450.445867pt;}
.y88{bottom:451.611600pt;}
.y107{bottom:452.392800pt;}
.yd4{bottom:452.405867pt;}
.y154{bottom:454.346133pt;}
.y54{bottom:454.359200pt;}
.y14{bottom:461.092000pt;}
.y1a0{bottom:461.683733pt;}
.y87{bottom:467.611600pt;}
.y106{bottom:468.392800pt;}
.yd3{bottom:468.405867pt;}
.y153{bottom:470.346133pt;}
.y53{bottom:470.359200pt;}
.y13{bottom:474.688000pt;}
.y19f{bottom:476.083733pt;}
.y86{bottom:483.611600pt;}
.y105{bottom:484.392800pt;}
.yba{bottom:484.405867pt;}
.y152{bottom:486.346133pt;}
.y52{bottom:486.359200pt;}
.y12{bottom:488.284000pt;}
.y19e{bottom:490.483733pt;}
.y85{bottom:499.611600pt;}
.y104{bottom:500.392800pt;}
.yb9{bottom:500.405867pt;}
.y11{bottom:501.880000pt;}
.y151{bottom:502.346133pt;}
.y51{bottom:502.359200pt;}
.y19d{bottom:504.883733pt;}
.y84{bottom:515.611600pt;}
.y103{bottom:516.392800pt;}
.yb8{bottom:516.405867pt;}
.y150{bottom:518.346133pt;}
.y50{bottom:518.359200pt;}
.y19c{bottom:519.283733pt;}
.y83{bottom:531.611600pt;}
.y102{bottom:532.392800pt;}
.yb7{bottom:532.405867pt;}
.y19b{bottom:533.683733pt;}
.y14f{bottom:534.346133pt;}
.y4f{bottom:534.359200pt;}
.y10{bottom:541.396000pt;}
.y82{bottom:547.611600pt;}
.y19a{bottom:548.083733pt;}
.y101{bottom:548.392800pt;}
.yb6{bottom:548.405867pt;}
.y14e{bottom:550.346133pt;}
.y4e{bottom:550.359200pt;}
.y199{bottom:562.483733pt;}
.y81{bottom:563.604933pt;}
.y100{bottom:564.392800pt;}
.yb5{bottom:564.405867pt;}
.y14d{bottom:566.346133pt;}
.y4d{bottom:566.359200pt;}
.y198{bottom:576.883733pt;}
.yff{bottom:580.392800pt;}
.yb4{bottom:580.405867pt;}
.y14c{bottom:582.346133pt;}
.y4c{bottom:582.359200pt;}
.yf{bottom:586.196000pt;}
.y197{bottom:591.283733pt;}
.yfe{bottom:596.392800pt;}
.yb3{bottom:596.405867pt;}
.y80{bottom:597.564933pt;}
.y14b{bottom:598.346133pt;}
.y4b{bottom:598.359200pt;}
.ye{bottom:602.196000pt;}
.y196{bottom:605.683733pt;}
.yfd{bottom:612.392800pt;}
.yd2{bottom:612.399200pt;}
.yb2{bottom:612.405867pt;}
.y7f{bottom:613.564933pt;}
.y14a{bottom:614.346133pt;}
.y4a{bottom:614.359200pt;}
.y195{bottom:620.083733pt;}
.yd{bottom:621.436000pt;}
.yfc{bottom:628.392800pt;}
.yb1{bottom:628.405867pt;}
.y7e{bottom:629.564933pt;}
.y149{bottom:630.346133pt;}
.y49{bottom:630.359200pt;}
.yc{bottom:634.196000pt;}
.y194{bottom:634.483733pt;}
.y1cd{bottom:634.536267pt;}
.yfb{bottom:644.392800pt;}
.yb0{bottom:644.405867pt;}
.y7d{bottom:645.564933pt;}
.y148{bottom:646.346133pt;}
.y48{bottom:646.359200pt;}
.y193{bottom:648.883733pt;}
.y1cc{bottom:650.536267pt;}
.yb{bottom:653.436000pt;}
.yfa{bottom:660.392800pt;}
.yaf{bottom:660.405867pt;}
.y7c{bottom:661.564933pt;}
.y147{bottom:662.346133pt;}
.y47{bottom:662.359200pt;}
.y192{bottom:663.283733pt;}
.ya{bottom:666.196000pt;}
.y1cb{bottom:666.536267pt;}
.yf9{bottom:676.392800pt;}
.yae{bottom:676.405867pt;}
.y7b{bottom:677.564933pt;}
.y191{bottom:677.683733pt;}
.y146{bottom:678.346133pt;}
.y46{bottom:678.359200pt;}
.y9{bottom:685.436000pt;}
.y190{bottom:692.083733pt;}
.yf8{bottom:692.392933pt;}
.yad{bottom:692.405867pt;}
.y7a{bottom:693.564933pt;}
.y145{bottom:694.346133pt;}
.y45{bottom:694.359200pt;}
.y8{bottom:698.196000pt;}
.y1ca{bottom:706.472000pt;}
.y18f{bottom:706.483733pt;}
.yf7{bottom:708.392933pt;}
.yac{bottom:708.405867pt;}
.y79{bottom:709.564933pt;}
.y144{bottom:710.346133pt;}
.y44{bottom:710.359200pt;}
.y7{bottom:717.436000pt;}
.y1c9{bottom:720.872000pt;}
.y18e{bottom:720.883733pt;}
.yf6{bottom:724.392933pt;}
.yab{bottom:724.405867pt;}
.y78{bottom:725.564933pt;}
.y143{bottom:726.346133pt;}
.y43{bottom:726.359200pt;}
.y6{bottom:733.436000pt;}
.y1c8{bottom:735.272000pt;}
.y18d{bottom:735.283733pt;}
.yf5{bottom:740.392933pt;}
.yaa{bottom:740.405867pt;}
.y77{bottom:741.564933pt;}
.y142{bottom:742.346133pt;}
.y42{bottom:742.359200pt;}
.y1c7{bottom:749.672000pt;}
.y18c{bottom:749.683733pt;}
.yf4{bottom:756.392933pt;}
.ya9{bottom:756.405867pt;}
.y76{bottom:757.564933pt;}
.y141{bottom:758.346133pt;}
.y41{bottom:758.359200pt;}
.y18b{bottom:764.083733pt;}
.yf3{bottom:772.392933pt;}
.ya8{bottom:772.405867pt;}
.y5{bottom:772.868000pt;}
.y75{bottom:773.564933pt;}
.y140{bottom:774.346133pt;}
.y40{bottom:774.359200pt;}
.y18a{bottom:778.483733pt;}
.yf2{bottom:788.392933pt;}
.ya7{bottom:788.405867pt;}
.y74{bottom:789.564933pt;}
.y13f{bottom:790.346133pt;}
.y3f{bottom:790.359200pt;}
.y1c6{bottom:792.871733pt;}
.y189{bottom:792.883733pt;}
.y4{bottom:794.196000pt;}
.yf1{bottom:804.392933pt;}
.ya6{bottom:804.405867pt;}
.y73{bottom:805.564933pt;}
.y13e{bottom:806.346133pt;}
.y3e{bottom:806.359200pt;}
.y1c5{bottom:807.271733pt;}
.y188{bottom:807.283733pt;}
.yf0{bottom:820.392933pt;}
.ya5{bottom:820.405867pt;}
.y72{bottom:821.564933pt;}
.y1c4{bottom:821.671733pt;}
.y187{bottom:821.683733pt;}
.y13d{bottom:822.346133pt;}
.y3d{bottom:822.359200pt;}
.y1c3{bottom:836.071733pt;}
.y186{bottom:836.083733pt;}
.yef{bottom:836.399467pt;}
.ya4{bottom:836.405867pt;}
.y71{bottom:837.564933pt;}
.y13c{bottom:838.346133pt;}
.y3c{bottom:838.359200pt;}
.y1c2{bottom:850.471733pt;}
.y185{bottom:850.483733pt;}
.ya3{bottom:852.405867pt;}
.y70{bottom:853.564933pt;}
.y13b{bottom:854.346133pt;}
.y3b{bottom:854.359200pt;}
.y3{bottom:855.529333pt;}
.y1c1{bottom:864.871733pt;}
.y184{bottom:864.883733pt;}
.ya2{bottom:868.405867pt;}
.y6f{bottom:869.564933pt;}
.yee{bottom:870.346133pt;}
.y3a{bottom:870.359200pt;}
.y1c0{bottom:879.271733pt;}
.y183{bottom:879.283733pt;}
.y2{bottom:882.729333pt;}
.ya1{bottom:884.405867pt;}
.y6e{bottom:885.564933pt;}
.yed{bottom:886.346133pt;}
.y39{bottom:886.359200pt;}
.y1bf{bottom:893.671733pt;}
.y182{bottom:893.683733pt;}
.ya0{bottom:900.399200pt;}
.y6d{bottom:901.564933pt;}
.yec{bottom:902.346133pt;}
.y38{bottom:902.359200pt;}
.y1be{bottom:908.071733pt;}
.y181{bottom:908.083733pt;}
.y1{bottom:909.929333pt;}
.y6c{bottom:917.564933pt;}
.yeb{bottom:918.346133pt;}
.y37{bottom:918.359200pt;}
.y120{bottom:921.960533pt;}
.y1bd{bottom:922.471733pt;}
.y180{bottom:922.483733pt;}
.yea{bottom:934.346133pt;}
.y11f{bottom:934.352800pt;}
.y36{bottom:934.359200pt;}
.y1bc{bottom:936.871733pt;}
.y17f{bottom:936.883733pt;}
.y6b{bottom:948.683600pt;}
.ye9{bottom:950.346133pt;}
.y11e{bottom:950.352800pt;}
.y35{bottom:950.359200pt;}
.yd1{bottom:950.365867pt;}
.y1bb{bottom:951.271733pt;}
.y17e{bottom:951.283733pt;}
.y34{bottom:979.339867pt;}
.y31{bottom:981.139200pt;}
.y9f{bottom:988.624933pt;}
.ye8{bottom:988.630267pt;}
.y12c{bottom:988.631200pt;}
.y30{bottom:994.739200pt;}
.h14{height:32.391008pt;}
.h6{height:34.945312pt;}
.h4{height:37.102500pt;}
.h18{height:37.938417pt;}
.h10{height:40.884375pt;}
.h8{height:42.117188pt;}
.hf{height:44.500000pt;}
.hd{height:46.796875pt;}
.h9{height:47.085938pt;}
.ha{height:47.109375pt;}
.h19{height:47.281250pt;}
.h1b{height:47.297250pt;}
.h1a{height:47.329250pt;}
.h7{height:48.375000pt;}
.h5{height:50.062500pt;}
.h13{height:52.317083pt;}
.he{height:52.317708pt;}
.h16{height:52.343217pt;}
.hc{height:52.343750pt;}
.h15{height:52.344283pt;}
.h17{height:52.369350pt;}
.h11{height:55.625000pt;}
.h12{height:55.651667pt;}
.hb{height:62.578125pt;}
.h3{height:66.750000pt;}
.h2{height:94.562500pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.x7{left:68.032000pt;}
.x2{left:79.370133pt;}
.x13{left:80.260000pt;}
.xf{left:82.492000pt;}
.x11{left:84.028000pt;}
.x8{left:86.271867pt;}
.x5{left:99.840000pt;}
.x3{left:102.052000pt;}
.xe{left:103.937467pt;}
.x4{left:404.425333pt;}
.x9{left:408.189333pt;}
.x10{left:420.405333pt;}
.xc{left:422.649333pt;}
.x12{left:424.180533pt;}
.xa{left:426.429333pt;}
.xd{left:440.314800pt;}
.xb{left:444.094933pt;}
.x6{left:675.872400pt;}
}




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