
    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_fca25b1d0cc56e5807979535.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_855cc40decf78af16c236b08.woff')format("woff");}.ff2{font-family:ff2;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_930095e082b83853d2223e58.woff')format("woff");}.ff3{font-family:ff3;line-height:0.930176;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_0eaf1668bd4503a073ceda65.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4ecdbbea4cb546ba0cef19d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_ba5b6fd65a19fd91c1c9d991.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_74924317be5535a21ca27234.woff')format("woff");}.ff7{font-family:ff7;line-height:0.940430;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_bcf32770d072a31173aadb31.woff')format("woff");}.ff8{font-family:ff8;line-height:0.862305;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_fcae76eb01fa5b7acf621999.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a16f07d88884e0e1e4e6e800.woff')format("woff");}.ffa{font-family:ffa;line-height:0.891602;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);}
.v10{vertical-align:-36.000720px;}
.vf{vertical-align:-31.697640px;}
.v2{vertical-align:-27.000000px;}
.va{vertical-align:-23.741640px;}
.vd{vertical-align:-21.960000px;}
.ve{vertical-align:-18.690840px;}
.v9{vertical-align:-14.040000px;}
.v3{vertical-align:-12.203280px;}
.vc{vertical-align:-10.069200px;}
.v12{vertical-align:-8.640000px;}
.v11{vertical-align:-1.800720px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.240000px;}
.v13{vertical-align:20.880000px;}
.v8{vertical-align:21.960000px;}
.v1{vertical-align:27.000000px;}
.v6{vertical-align:33.135480px;}
.vb{vertical-align:34.200000px;}
.v5{vertical-align:45.330480px;}
.v7{vertical-align:48.216240px;}
.ls1b{letter-spacing:-0.480960px;}
.ls1e{letter-spacing:-0.420840px;}
.ls5c{letter-spacing:-0.379080px;}
.ls71{letter-spacing:-0.360720px;}
.ls5d{letter-spacing:-0.336960px;}
.ls5e{letter-spacing:-0.300600px;}
.ls1a{letter-spacing:-0.240480px;}
.ls19{letter-spacing:-0.197640px;}
.ls16{letter-spacing:-0.192240px;}
.ls1f{letter-spacing:-0.180360px;}
.ls39{letter-spacing:-0.126360px;}
.ls1c{letter-spacing:-0.120240px;}
.ls17{letter-spacing:-0.078120px;}
.ls18{letter-spacing:-0.065880px;}
.ls1d{letter-spacing:-0.060120px;}
.ls15{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005040px;}
.ls20{letter-spacing:0.005400px;}
.ls63{letter-spacing:0.013320px;}
.ls7e{letter-spacing:0.024120px;}
.ls4c{letter-spacing:0.030240px;}
.ls51{letter-spacing:0.030960px;}
.ls24{letter-spacing:0.041040px;}
.ls12{letter-spacing:0.043200px;}
.ls4b{letter-spacing:0.050520px;}
.ls3e{letter-spacing:0.059880px;}
.ls7{letter-spacing:0.060120px;}
.lsc{letter-spacing:0.061560px;}
.ls2{letter-spacing:0.065880px;}
.ls78{letter-spacing:0.067320px;}
.ls50{letter-spacing:0.070920px;}
.ls53{letter-spacing:0.084240px;}
.ls4f{letter-spacing:0.088320px;}
.ls42{letter-spacing:0.091800px;}
.ls66{letter-spacing:0.108216px;}
.ls6c{letter-spacing:0.114228px;}
.ls4a{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.120240px;}
.ls4d{letter-spacing:0.120360px;}
.ls67{letter-spacing:0.132264px;}
.ls5a{letter-spacing:0.150300px;}
.ls62{letter-spacing:0.156312px;}
.ls26{letter-spacing:0.168480px;}
.ls0{letter-spacing:0.180000px;}
.ls7a{letter-spacing:0.180120px;}
.ls4{letter-spacing:0.180360px;}
.ls14{letter-spacing:0.192240px;}
.ls1{letter-spacing:0.197640px;}
.ls23{letter-spacing:0.240480px;}
.ls8{letter-spacing:0.252504px;}
.ls70{letter-spacing:0.402804px;}
.ls58{letter-spacing:0.961920px;}
.ls59{letter-spacing:1.042920px;}
.ls25{letter-spacing:1.053000px;}
.ls11{letter-spacing:1.142280px;}
.ls38{letter-spacing:1.202400px;}
.ls34{letter-spacing:1.382760px;}
.ls32{letter-spacing:1.563120px;}
.ls3b{letter-spacing:1.623240px;}
.ls30{letter-spacing:1.743480px;}
.ls3a{letter-spacing:1.803600px;}
.ls31{letter-spacing:1.923840px;}
.ls6a{letter-spacing:2.224440px;}
.ls49{letter-spacing:2.261160px;}
.ls52{letter-spacing:2.275200px;}
.ls6b{letter-spacing:2.284560px;}
.ls7b{letter-spacing:2.329560px;}
.ls77{letter-spacing:2.352600px;}
.ls47{letter-spacing:2.621160px;}
.ls45{letter-spacing:2.674800px;}
.ls7c{letter-spacing:2.689560px;}
.ls57{letter-spacing:2.697840px;}
.ls54{letter-spacing:2.716920px;}
.ls60{letter-spacing:3.006000px;}
.ls37{letter-spacing:3.097800px;}
.ls10{letter-spacing:3.098160px;}
.ls9{letter-spacing:3.306600px;}
.ls61{letter-spacing:3.366720px;}
.lsb{letter-spacing:3.458160px;}
.ls76{letter-spacing:3.571200px;}
.ls2e{letter-spacing:3.575880px;}
.ls46{letter-spacing:3.885120px;}
.lsd{letter-spacing:3.935880px;}
.ls40{letter-spacing:4.018320px;}
.ls79{letter-spacing:4.140000px;}
.ls5f{letter-spacing:4.749480px;}
.ls74{letter-spacing:5.110200px;}
.ls6f{letter-spacing:5.470920px;}
.ls6d{letter-spacing:5.879736px;}
.ls6e{letter-spacing:6.192360px;}
.ls69{letter-spacing:8.013996px;}
.ls43{letter-spacing:8.255880px;}
.ls44{letter-spacing:8.460000px;}
.ls65{letter-spacing:9.438840px;}
.lse{letter-spacing:9.619200px;}
.ls21{letter-spacing:9.739440px;}
.ls72{letter-spacing:9.799560px;}
.ls22{letter-spacing:9.979920px;}
.ls73{letter-spacing:10.160280px;}
.ls48{letter-spacing:12.144240px;}
.ls29{letter-spacing:13.046040px;}
.ls2d{letter-spacing:13.406760px;}
.ls2c{letter-spacing:14.669280px;}
.ls27{letter-spacing:16.292520px;}
.ls35{letter-spacing:16.417800px;}
.ls75{letter-spacing:16.472880px;}
.ls4e{letter-spacing:16.533000px;}
.ls7d{letter-spacing:16.618320px;}
.ls2b{letter-spacing:16.653240px;}
.ls28{letter-spacing:16.895880px;}
.ls7f{letter-spacing:17.388000px;}
.ls33{letter-spacing:17.675280px;}
.ls80{letter-spacing:17.735400px;}
.ls82{letter-spacing:17.915760px;}
.ls81{letter-spacing:18.078084px;}
.ls3d{letter-spacing:18.276480px;}
.ls56{letter-spacing:18.821160px;}
.ls55{letter-spacing:18.835200px;}
.ls3c{letter-spacing:18.900720px;}
.ls41{letter-spacing:19.234800px;}
.ls36{letter-spacing:19.657800px;}
.ls2a{letter-spacing:20.135880px;}
.ls13{letter-spacing:20.495880px;}
.ls6{letter-spacing:20.621160px;}
.lsa{letter-spacing:20.855880px;}
.ls5{letter-spacing:20.981880px;}
.ls2f{letter-spacing:21.462840px;}
.ls3f{letter-spacing:30.341160px;}
.ls64{letter-spacing:47.975760px;}
.ls5b{letter-spacing:63.546840px;}
.ls68{letter-spacing:179.638560px;}
.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;}
}
.ws97{word-spacing:-60.180120px;}
.wsd{word-spacing:-60.120000px;}
.ws62{word-spacing:-60.059880px;}
.ws60{word-spacing:-59.819400px;}
.ws9a{word-spacing:-47.194200px;}
.ws5d{word-spacing:-47.073960px;}
.ws99{word-spacing:-46.833480px;}
.ws59{word-spacing:-46.713240px;}
.ws42{word-spacing:-43.827480px;}
.ws3e{word-spacing:-43.767360px;}
.ws3d{word-spacing:-43.587000px;}
.wse{word-spacing:-43.526880px;}
.ws38{word-spacing:-42.120000px;}
.ws40{word-spacing:-41.993640px;}
.ws5f{word-spacing:-41.783040px;}
.ws5b{word-spacing:-41.740920px;}
.ws76{word-spacing:-36.072000px;}
.ws80{word-spacing:-36.011880px;}
.ws5e{word-spacing:-25.795080px;}
.ws5a{word-spacing:-25.481448px;}
.ws5c{word-spacing:-25.435080px;}
.ws58{word-spacing:-25.121448px;}
.ws0{word-spacing:-24.030000px;}
.ws98{word-spacing:-23.266800px;}
.ws56{word-spacing:-21.881448px;}
.ws96{word-spacing:-21.747000px;}
.ws41{word-spacing:-21.498120px;}
.ws3f{word-spacing:-21.387240px;}
.ws3{word-spacing:-16.667640px;}
.ws3b{word-spacing:-16.535880px;}
.ws4{word-spacing:-16.404120px;}
.ws2{word-spacing:-16.272360px;}
.ws9{word-spacing:-15.210360px;}
.wsc{word-spacing:-15.150240px;}
.ws64{word-spacing:-15.090120px;}
.wsa{word-spacing:-15.030000px;}
.ws8{word-spacing:-14.969880px;}
.ws6{word-spacing:-14.909760px;}
.ws3c{word-spacing:-14.849640px;}
.ws5{word-spacing:-14.789520px;}
.ws81{word-spacing:-14.669280px;}
.wsb{word-spacing:-14.609160px;}
.ws7{word-spacing:-14.549040px;}
.wsf{word-spacing:-13.226400px;}
.ws1{word-spacing:-12.780000px;}
.ws63{word-spacing:-9.266400px;}
.ws22{word-spacing:-4.028040px;}
.ws75{word-spacing:-3.727440px;}
.ws21{word-spacing:-3.667320px;}
.ws61{word-spacing:-3.607200px;}
.ws70{word-spacing:-3.426840px;}
.ws8e{word-spacing:-3.366720px;}
.ws1d{word-spacing:-3.306600px;}
.ws39{word-spacing:-3.246480px;}
.ws6a{word-spacing:-3.066120px;}
.ws1f{word-spacing:-3.006000px;}
.ws6b{word-spacing:-2.945880px;}
.ws6c{word-spacing:-2.885760px;}
.ws1e{word-spacing:-2.645280px;}
.ws33{word-spacing:-2.585160px;}
.ws72{word-spacing:-2.464920px;}
.ws48{word-spacing:-1.983960px;}
.ws47{word-spacing:-1.563120px;}
.ws2b{word-spacing:-1.503000px;}
.wsa1{word-spacing:-0.901800px;}
.ws93{word-spacing:-0.781560px;}
.ws34{word-spacing:-0.420840px;}
.ws45{word-spacing:-0.197640px;}
.ws49{word-spacing:-0.180360px;}
.ws16{word-spacing:-0.131760px;}
.ws27{word-spacing:-0.120240px;}
.ws11{word-spacing:-0.096120px;}
.ws15{word-spacing:-0.065880px;}
.ws18{word-spacing:-0.060120px;}
.ws12{word-spacing:0.000000px;}
.ws44{word-spacing:0.060120px;}
.ws46{word-spacing:0.065880px;}
.ws13{word-spacing:0.096120px;}
.ws43{word-spacing:0.120240px;}
.ws14{word-spacing:0.131760px;}
.ws28{word-spacing:0.180360px;}
.ws89{word-spacing:0.197640px;}
.ws26{word-spacing:0.240480px;}
.ws17{word-spacing:0.300600px;}
.ws1b{word-spacing:0.360720px;}
.ws35{word-spacing:0.420840px;}
.ws19{word-spacing:0.480960px;}
.ws79{word-spacing:0.541080px;}
.ws4f{word-spacing:0.601200px;}
.ws50{word-spacing:0.661320px;}
.ws92{word-spacing:0.961920px;}
.ws65{word-spacing:1.022040px;}
.ws36{word-spacing:1.322640px;}
.ws91{word-spacing:1.382760px;}
.ws7f{word-spacing:1.683360px;}
.ws69{word-spacing:1.923840px;}
.ws68{word-spacing:1.983960px;}
.ws8d{word-spacing:2.044080px;}
.ws8c{word-spacing:2.284560px;}
.ws4d{word-spacing:2.404800px;}
.ws8b{word-spacing:2.705400px;}
.wsa9{word-spacing:2.825640px;}
.ws4c{word-spacing:3.066120px;}
.ws30{word-spacing:3.126240px;}
.ws3a{word-spacing:3.246480px;}
.ws10{word-spacing:3.306600px;}
.ws31{word-spacing:3.366720px;}
.ws57{word-spacing:3.426840px;}
.ws1c{word-spacing:3.486960px;}
.ws2f{word-spacing:3.727440px;}
.wsa2{word-spacing:3.847680px;}
.wsa3{word-spacing:4.148280px;}
.ws37{word-spacing:4.208400px;}
.ws77{word-spacing:4.448880px;}
.ws2d{word-spacing:4.509000px;}
.ws85{word-spacing:4.569120px;}
.ws78{word-spacing:4.809600px;}
.ws2c{word-spacing:4.869720px;}
.ws94{word-spacing:4.929840px;}
.ws95{word-spacing:5.170320px;}
.ws9f{word-spacing:5.290560px;}
.ws8f{word-spacing:5.651280px;}
.ws7c{word-spacing:6.012000px;}
.ws90{word-spacing:6.252480px;}
.wsaa{word-spacing:6.793560px;}
.ws84{word-spacing:7.454880px;}
.ws4e{word-spacing:7.695360px;}
.ws8a{word-spacing:8.176320px;}
.ws54{word-spacing:8.416800px;}
.ws55{word-spacing:8.476920px;}
.ws7b{word-spacing:8.837640px;}
.ws7a{word-spacing:8.897760px;}
.ws7d{word-spacing:9.258480px;}
.ws88{word-spacing:9.498960px;}
.ws9e{word-spacing:9.679320px;}
.ws9c{word-spacing:9.979920px;}
.ws9b{word-spacing:10.220400px;}
.ws9d{word-spacing:10.340640px;}
.ws2e{word-spacing:10.641240px;}
.ws6d{word-spacing:10.941840px;}
.ws6e{word-spacing:11.062080px;}
.ws6f{word-spacing:11.302560px;}
.ws66{word-spacing:11.362680px;}
.wsa0{word-spacing:11.422800px;}
.ws67{word-spacing:11.663280px;}
.ws73{word-spacing:12.084120px;}
.wsa8{word-spacing:12.144240px;}
.ws74{word-spacing:12.384720px;}
.wsa6{word-spacing:12.444840px;}
.ws4b{word-spacing:12.504960px;}
.wsa7{word-spacing:12.745440px;}
.ws86{word-spacing:12.805560px;}
.ws87{word-spacing:12.865680px;}
.ws4a{word-spacing:13.166280px;}
.ws25{word-spacing:13.887720px;}
.ws7e{word-spacing:15.030000px;}
.wsa5{word-spacing:17.134200px;}
.wsa4{word-spacing:17.555040px;}
.ws71{word-spacing:18.877680px;}
.ws2a{word-spacing:19.599120px;}
.ws29{word-spacing:19.659240px;}
.ws23{word-spacing:20.801520px;}
.ws24{word-spacing:21.042000px;}
.wsac{word-spacing:22.785480px;}
.wsad{word-spacing:22.965840px;}
.ws32{word-spacing:23.627160px;}
.ws52{word-spacing:24.408720px;}
.ws53{word-spacing:24.709320px;}
.ws51{word-spacing:25.070040px;}
.ws1a{word-spacing:27.234360px;}
.wsab{word-spacing:29.819520px;}
.ws20{word-spacing:35.530920px;}
.ws82{word-spacing:47.795400px;}
.ws83{word-spacing:48.035880px;}
._3{margin-left:-8.138880px;}
._9{margin-left:-6.553080px;}
._c{margin-left:-3.901536px;}
._4{margin-left:-2.592072px;}
._0{margin-left:-1.268784px;}
._1{width:1.191888px;}
._6{width:2.385720px;}
._2{width:3.497472px;}
._a{width:4.508640px;}
._10{width:5.729940px;}
._f{width:8.296560px;}
._11{width:9.830880px;}
._b{width:12.565080px;}
._8{width:17.042832px;}
._7{width:18.516960px;}
._12{width:29.589552px;}
._e{width:143.506440px;}
._d{width:179.650584px;}
._5{width:200.981160px;}
.fc5{color:rgb(128,0,255);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(255,128,0);}
.fc1{color:rgb(0,0,128);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:42.120000px;}
.fs6{font-size:47.880000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:78.120000px;}
.fs0{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.yf5{bottom:3.240000px;}
.yf4{bottom:20.430000px;}
.yf8{bottom:106.740000px;}
.y36{bottom:118.446750px;}
.y70{bottom:119.126700px;}
.y135{bottom:119.214540px;}
.yf2{bottom:120.960090px;}
.yc7{bottom:123.269220px;}
.y162{bottom:127.248390px;}
.y35{bottom:134.550000px;}
.y6f{bottom:136.321020px;}
.y134{bottom:136.499040px;}
.y34{bottom:137.612250px;}
.yf1{bottom:139.950000px;}
.yc6{bottom:141.545700px;}
.y161{bottom:144.532890px;}
.y6e{bottom:153.605520px;}
.y133{bottom:153.693360px;}
.y33{bottom:155.077110px;}
.yf0{bottom:158.575680px;}
.yc5{bottom:159.912360px;}
.y160{bottom:161.817390px;}
.y132{bottom:170.977860px;}
.y6d{bottom:170.980200px;}
.y32{bottom:171.000000px;}
.y31{bottom:174.050820px;}
.yef{bottom:175.770000px;}
.yc4{bottom:178.188840px;}
.y15f{bottom:179.011710px;}
.y131{bottom:188.262360px;}
.y6c{bottom:188.535240px;}
.y30{bottom:191.515680px;}
.yee{bottom:194.310000px;}
.y15e{bottom:196.296210px;}
.yc3{bottom:196.555500px;}
.y130{bottom:205.456680px;}
.y6b{bottom:206.000100px;}
.y2f{bottom:208.710000px;}
.yed{bottom:211.320000px;}
.yc2{bottom:213.840000px;}
.y15c{bottom:215.721810px;}
.y15d{bottom:221.220360px;}
.y12f{bottom:222.741180px;}
.y6a{bottom:223.464960px;}
.y2e{bottom:226.620000px;}
.yec{bottom:228.330000px;}
.yc1{bottom:231.390180px;}
.y15b{bottom:233.276850px;}
.y12e{bottom:240.025680px;}
.y69{bottom:241.010460px;}
.yeb{bottom:245.340000px;}
.y2d{bottom:247.050000px;}
.yc0{bottom:250.380090px;}
.y15a{bottom:250.471200px;}
.y12d{bottom:257.220000px;}
.y68{bottom:258.475320px;}
.yea{bottom:262.260000px;}
.y2c{bottom:266.310000px;}
.y159{bottom:267.755700px;}
.ybf{bottom:269.370000px;}
.y67{bottom:272.790000px;}
.y12c{bottom:274.860000px;}
.y66{bottom:275.834430px;}
.ye9{bottom:279.270000px;}
.y157{bottom:284.400000px;}
.y2b{bottom:286.317900px;}
.y156{bottom:287.452290px;}
.ybe{bottom:288.630000px;}
.y158{bottom:292.950360px;}
.y65{bottom:293.389470px;}
.y12b{bottom:293.398560px;}
.ye8{bottom:296.280000px;}
.y2a{bottom:303.512220px;}
.y155{bottom:304.917150px;}
.ybd{bottom:308.695500px;}
.y12a{bottom:310.592880px;}
.y64{bottom:310.673970px;}
.ye7{bottom:313.290000px;}
.y29{bottom:320.796720px;}
.y154{bottom:322.201650px;}
.ybc{bottom:325.962180px;}
.y63{bottom:327.868290px;}
.y129{bottom:329.139900px;}
.ye6{bottom:330.300000px;}
.y28{bottom:338.081220px;}
.y153{bottom:339.486150px;}
.ybb{bottom:343.697580px;}
.y62{bottom:345.152790px;}
.y128{bottom:346.153860px;}
.ye5{bottom:347.220000px;}
.y27{bottom:355.275540px;}
.y152{bottom:358.907490px;}
.yba{bottom:361.162500px;}
.y61{bottom:362.437290px;}
.ye4{bottom:362.947140px;}
.y127{bottom:363.167820px;}
.y26{bottom:372.560040px;}
.y151{bottom:376.372350px;}
.yb6{bottom:376.475040px;}
.yb4{bottom:379.971750px;}
.y126{bottom:380.091600px;}
.ye3{bottom:380.231640px;}
.y60{bottom:381.315960px;}
.yb8{bottom:385.915410px;}
.yb7{bottom:385.920450px;}
.yb9{bottom:387.904410px;}
.y25{bottom:389.844540px;}
.y150{bottom:393.566670px;}
.yb5{bottom:393.660000px;}
.y125{bottom:397.105560px;}
.ye2{bottom:397.425960px;}
.y5f{bottom:398.780820px;}
.yb3{bottom:402.922650px;}
.y24{bottom:407.038860px;}
.y14f{bottom:410.941350px;}
.y124{bottom:414.119520px;}
.ye1{bottom:414.710460px;}
.y5e{bottom:416.065320px;}
.yb0{bottom:418.145040px;}
.yaf{bottom:418.587300px;}
.yad{bottom:421.637550px;}
.y23{bottom:424.323360px;}
.yb1{bottom:427.590450px;}
.y14e{bottom:428.406210px;}
.yb2{bottom:429.574410px;}
.y123{bottom:431.133480px;}
.ye0{bottom:432.085140px;}
.y5d{bottom:433.425960px;}
.yae{bottom:435.330000px;}
.y22{bottom:441.607860px;}
.y14d{bottom:447.830490px;}
.yac{bottom:447.834750px;}
.y122{bottom:448.147440px;}
.ydf{bottom:449.550000px;}
.y5c{bottom:450.890820px;}
.y21{bottom:458.802180px;}
.yaa{bottom:462.417300px;}
.y121{bottom:465.071220px;}
.y14c{bottom:465.295350px;}
.ya8{bottom:465.484650px;}
.yde{bottom:467.190000px;}
.y5b{bottom:468.175320px;}
.yab{bottom:471.415410px;}
.y20{bottom:476.086680px;}
.ya9{bottom:479.160000px;}
.y120{bottom:482.085180px;}
.y14b{bottom:482.642940px;}
.y5a{bottom:485.550000px;}
.ydd{bottom:486.450000px;}
.ya5{bottom:493.203000px;}
.y1f{bottom:493.371180px;}
.y11f{bottom:499.099140px;}
.ya7{bottom:499.135410px;}
.y14a{bottom:500.107800px;}
.ya6{bottom:501.124410px;}
.y59{bottom:503.370000px;}
.ydc{bottom:506.520000px;}
.y1e{bottom:510.565500px;}
.ya3{bottom:511.197300px;}
.ya1{bottom:514.264650px;}
.y11e{bottom:516.113100px;}
.y149{bottom:517.392360px;}
.ya4{bottom:520.195410px;}
.y58{bottom:521.980740px;}
.ydb{bottom:524.970000px;}
.y1d{bottom:527.850000px;}
.ya2{bottom:527.940000px;}
.y11d{bottom:531.864540px;}
.y148{bottom:534.586680px;}
.y57{bottom:539.355420px;}
.y9e{bottom:541.978500px;}
.yda{bottom:541.980000px;}
.y1c{bottom:545.760000px;}
.ya0{bottom:547.915410px;}
.y11c{bottom:549.058860px;}
.y9f{bottom:549.904410px;}
.y147{bottom:551.871180px;}
.y56{bottom:556.910460px;}
.yd9{bottom:558.990000px;}
.y9d{bottom:562.764960px;}
.y1b{bottom:566.100000px;}
.y11b{bottom:566.343360px;}
.y146{bottom:569.155680px;}
.y55{bottom:574.375320px;}
.yd8{bottom:576.000000px;}
.y9b{bottom:580.313700px;}
.y11a{bottom:583.627860px;}
.y1a{bottom:585.360000px;}
.y9c{bottom:586.255410px;}
.y145{bottom:586.350000px;}
.y54{bottom:588.690000px;}
.y53{bottom:591.740280px;}
.yd7{bottom:592.920000px;}
.y9a{bottom:598.494420px;}
.y119{bottom:600.822180px;}
.y144{bottom:603.990090px;}
.y19{bottom:605.367900px;}
.y52{bottom:609.295320px;}
.yd6{bottom:609.930000px;}
.y98{bottom:613.257300px;}
.y96{bottom:616.324680px;}
.y118{bottom:618.106680px;}
.y99{bottom:622.255410px;}
.y18{bottom:622.652400px;}
.y143{bottom:622.980000px;}
.y51{bottom:626.655960px;}
.yd5{bottom:626.940000px;}
.y97{bottom:630.000000px;}
.y117{bottom:635.391180px;}
.y17{bottom:639.936900px;}
.y142{bottom:641.605680px;}
.yd4{bottom:643.950000px;}
.y94{bottom:644.043690px;}
.y50{bottom:644.120820px;}
.y95{bottom:651.964410px;}
.y116{bottom:652.585500px;}
.y16{bottom:657.131220px;}
.y141{bottom:658.800000px;}
.yd3{bottom:660.960000px;}
.y4f{bottom:661.405320px;}
.y93{bottom:664.740000px;}
.y115{bottom:669.870000px;}
.y15{bottom:674.415720px;}
.yd2{bottom:676.588680px;}
.y140{bottom:677.340000px;}
.y4e{bottom:678.766140px;}
.y92{bottom:682.025670px;}
.y114{bottom:688.410000px;}
.y14{bottom:691.700220px;}
.yd1{bottom:693.873180px;}
.y13f{bottom:694.350000px;}
.y4d{bottom:696.321180px;}
.y91{bottom:698.667300px;}
.y8f{bottom:701.730000px;}
.y113{bottom:705.330000px;}
.y13{bottom:708.894540px;}
.yd0{bottom:711.157680px;}
.y13e{bottom:711.360000px;}
.y4c{bottom:713.515500px;}
.y90{bottom:715.410000px;}
.y112{bottom:722.340000px;}
.y12{bottom:726.179040px;}
.y8e{bottom:727.830000px;}
.y13d{bottom:728.280000px;}
.ycf{bottom:728.352000px;}
.y4b{bottom:730.800000px;}
.y16f{bottom:736.119360px;}
.y111{bottom:739.350000px;}
.y11{bottom:743.373360px;}
.y8c{bottom:744.477300px;}
.y13c{bottom:745.290000px;}
.yce{bottom:745.636500px;}
.y88{bottom:747.532710px;}
.y4a{bottom:748.432440px;}
.y8d{bottom:753.030000px;}
.y16e{bottom:753.403860px;}
.y8a{bottom:753.480180px;}
.y89{bottom:755.464410px;}
.y110{bottom:756.360000px;}
.y10{bottom:760.657860px;}
.y8b{bottom:761.220000px;}
.y13b{bottom:762.300000px;}
.ycd{bottom:762.921000px;}
.y49{bottom:767.340000px;}
.y16d{bottom:770.778540px;}
.y10f{bottom:772.083540px;}
.y87{bottom:773.730000px;}
.yf{bottom:777.942360px;}
.y13a{bottom:779.310000px;}
.ycc{bottom:780.115320px;}
.y48{bottom:787.670460px;}
.y16c{bottom:788.243400px;}
.y10e{bottom:789.277860px;}
.y86{bottom:791.010000px;}
.y139{bottom:795.051180px;}
.ye{bottom:795.136680px;}
.ycb{bottom:797.490000px;}
.y47{bottom:805.135320px;}
.y16b{bottom:805.437720px;}
.y10d{bottom:806.562360px;}
.y84{bottom:807.567300px;}
.y81{bottom:810.622710px;}
.y138{bottom:812.245500px;}
.yd{bottom:812.421180px;}
.yca{bottom:815.310090px;}
.y85{bottom:816.120000px;}
.y82{bottom:816.565410px;}
.y46{bottom:822.504960px;}
.y16a{bottom:822.722220px;}
.y10c{bottom:823.756680px;}
.y83{bottom:824.310000px;}
.y137{bottom:829.530000px;}
.yc{bottom:829.705680px;}
.yc9{bottom:834.300000px;}
.y80{bottom:836.820000px;}
.y169{bottom:840.006720px;}
.y45{bottom:840.060000px;}
.y10b{bottom:841.041180px;}
.y136{bottom:843.570000px;}
.yb{bottom:846.900000px;}
.yf7{bottom:849.690000px;}
.y7e{bottom:854.452980px;}
.y168{bottom:857.201040px;}
.y10a{bottom:858.325680px;}
.y43{bottom:858.960000px;}
.y7f{bottom:860.400180px;}
.ya{bottom:864.540000px;}
.y102{bottom:866.970000px;}
.y42{bottom:869.036130px;}
.y44{bottom:869.040000px;}
.yfd{bottom:870.192360px;}
.y7d{bottom:872.989890px;}
.y167{bottom:874.485540px;}
.y109{bottom:875.520000px;}
.y9{bottom:883.800000px;}
.y101{bottom:884.160000px;}
.yfc{bottom:887.386680px;}
.y7c{bottom:890.454750px;}
.y166{bottom:891.770040px;}
.y41{bottom:893.520000px;}
.y108{bottom:894.060000px;}
.y100{bottom:901.440000px;}
.yfb{bottom:904.671180px;}
.y7a{bottom:908.085960px;}
.y165{bottom:908.964360px;}
.y40{bottom:910.670040px;}
.y107{bottom:911.070000px;}
.y8{bottom:911.253870px;}
.y7b{bottom:914.035410px;}
.yff{bottom:918.720000px;}
.yfa{bottom:921.955680px;}
.y79{bottom:925.550850px;}
.y164{bottom:926.248860px;}
.y3f{bottom:927.954540px;}
.y106{bottom:928.080000px;}
.y7{bottom:931.950000px;}
.yfe{bottom:935.910000px;}
.yf9{bottom:939.150000px;}
.y78{bottom:942.835320px;}
.y163{bottom:943.533360px;}
.y105{bottom:945.000000px;}
.y3e{bottom:945.239040px;}
.y6{bottom:952.380000px;}
.yf6{bottom:953.190000px;}
.y77{bottom:960.186600px;}
.y104{bottom:960.727680px;}
.y3d{bottom:962.433360px;}
.y5{bottom:965.250000px;}
.yf3{bottom:970.470000px;}
.y76{bottom:977.831820px;}
.y103{bottom:978.012180px;}
.y3c{bottom:979.717860px;}
.y4{bottom:987.300000px;}
.y75{bottom:995.296680px;}
.y3b{bottom:997.002360px;}
.y3{bottom:1008.000000px;}
.yc8{bottom:1009.710000px;}
.y74{bottom:1012.491000px;}
.y3a{bottom:1014.196680px;}
.y73{bottom:1029.775500px;}
.y2{bottom:1030.051620px;}
.y39{bottom:1031.481180px;}
.y72{bottom:1047.060000px;}
.y38{bottom:1048.765680px;}
.y1{bottom:1057.590000px;}
.y71{bottom:1064.610000px;}
.y37{bottom:1065.960000px;}
.h29{height:17.190000px;}
.h28{height:17.191500px;}
.h25{height:17.280000px;}
.h4{height:29.265996px;}
.h1a{height:29.800723px;}
.h18{height:29.985820px;}
.h5{height:33.268184px;}
.h24{height:34.470000px;}
.h2a{height:40.070215px;}
.h9{height:40.745391px;}
.h26{height:41.743477px;}
.h8{height:41.772832px;}
.h1f{height:41.772952px;}
.h2e{height:41.773072px;}
.h23{height:42.448008px;}
.h1e{height:42.800153px;}
.hc{height:42.800273px;}
.h19{height:42.800393px;}
.h21{height:42.800513px;}
.h1d{height:42.822593px;}
.ha{height:42.836993px;}
.h2c{height:42.838313px;}
.h10{height:42.838433px;}
.h14{height:42.839153px;}
.h20{height:42.850073px;}
.h2d{height:42.850313px;}
.h13{height:42.856433px;}
.h17{height:42.862553px;}
.h2b{height:42.908513px;}
.h7{height:44.649141px;}
.h11{height:45.775020px;}
.h6{height:48.796875px;}
.h2{height:50.027344px;}
.hf{height:51.965980px;}
.h12{height:52.001260px;}
.h16{height:52.001980px;}
.h22{height:52.017100px;}
.h1b{height:54.023632px;}
.hb{height:55.040273px;}
.h1c{height:55.051073px;}
.h3{height:62.519414px;}
.h15{height:64.185820px;}
.h1{height:65.143828px;}
.hd{height:88.130753px;}
.he{height:91.016513px;}
.h27{height:120.780000px;}
.h0{height:1188.000000px;}
.w2{width:198.630000px;}
.w3{width:415.530000px;}
.w1{width:614.160000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3f{left:8.100000px;}
.x3{left:162.000000px;}
.x3e{left:171.000000px;}
.x1{left:179.730000px;}
.x13{left:188.987940px;}
.x2{left:196.382790px;}
.xa{left:216.810000px;}
.x2b{left:223.917840px;}
.x28{left:229.860000px;}
.x1a{left:234.002610px;}
.x29{left:235.167120px;}
.x5{left:237.330000px;}
.x3b{left:240.660000px;}
.x2c{left:253.797840px;}
.x3c{left:256.044330px;}
.x7{left:261.450000px;}
.x2a{left:273.867840px;}
.x47{left:299.975940px;}
.x48{left:310.585050px;}
.x14{left:312.570000px;}
.x44{left:315.066180px;}
.x1f{left:319.679730px;}
.x34{left:323.545050px;}
.x17{left:332.280000px;}
.x1b{left:340.285860px;}
.x3d{left:341.817840px;}
.x20{left:343.707840px;}
.x42{left:349.200000px;}
.xb{left:350.821890px;}
.x45{left:354.510000px;}
.x15{left:358.201620px;}
.x40{left:360.630000px;}
.x2d{left:362.877840px;}
.x1c{left:364.317840px;}
.x32{left:366.027840px;}
.x18{left:367.847460px;}
.x2e{left:369.720150px;}
.x43{left:380.063220px;}
.xc{left:385.830000px;}
.x4{left:387.360000px;}
.x12{left:392.229540px;}
.x10{left:397.264590px;}
.xd{left:404.730000px;}
.x6{left:405.810000px;}
.x35{left:408.690000px;}
.x8{left:410.581170px;}
.x11{left:412.295940px;}
.x36{left:413.997120px;}
.x27{left:416.787840px;}
.x21{left:420.752610px;}
.x37{left:437.040000px;}
.x19{left:444.778830px;}
.x38{left:451.076490px;}
.x33{left:453.240000px;}
.x9{left:456.660000px;}
.x16{left:458.984790px;}
.x1d{left:475.920000px;}
.xe{left:477.270000px;}
.x1e{left:482.943510px;}
.x22{left:487.620000px;}
.x23{left:494.643510px;}
.x2f{left:500.580000px;}
.x30{left:505.887120px;}
.xf{left:507.150000px;}
.x39{left:510.207120px;}
.x24{left:533.882610px;}
.x3a{left:548.907840px;}
.x25{left:566.550000px;}
.x26{left:573.573510px;}
.x31{left:576.987840px;}
.x46{left:583.195050px;}
.x41{left:695.430000px;}
@media print{
.v10{vertical-align:-32.000640pt;}
.vf{vertical-align:-28.175680pt;}
.v2{vertical-align:-24.000000pt;}
.va{vertical-align:-21.103680pt;}
.vd{vertical-align:-19.520000pt;}
.ve{vertical-align:-16.614080pt;}
.v9{vertical-align:-12.480000pt;}
.v3{vertical-align:-10.847360pt;}
.vc{vertical-align:-8.950400pt;}
.v12{vertical-align:-7.680000pt;}
.v11{vertical-align:-1.600640pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.880000pt;}
.v13{vertical-align:18.560000pt;}
.v8{vertical-align:19.520000pt;}
.v1{vertical-align:24.000000pt;}
.v6{vertical-align:29.453760pt;}
.vb{vertical-align:30.400000pt;}
.v5{vertical-align:40.293760pt;}
.v7{vertical-align:42.858880pt;}
.ls1b{letter-spacing:-0.427520pt;}
.ls1e{letter-spacing:-0.374080pt;}
.ls5c{letter-spacing:-0.336960pt;}
.ls71{letter-spacing:-0.320640pt;}
.ls5d{letter-spacing:-0.299520pt;}
.ls5e{letter-spacing:-0.267200pt;}
.ls1a{letter-spacing:-0.213760pt;}
.ls19{letter-spacing:-0.175680pt;}
.ls16{letter-spacing:-0.170880pt;}
.ls1f{letter-spacing:-0.160320pt;}
.ls39{letter-spacing:-0.112320pt;}
.ls1c{letter-spacing:-0.106880pt;}
.ls17{letter-spacing:-0.069440pt;}
.ls18{letter-spacing:-0.058560pt;}
.ls1d{letter-spacing:-0.053440pt;}
.ls15{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004480pt;}
.ls20{letter-spacing:0.004800pt;}
.ls63{letter-spacing:0.011840pt;}
.ls7e{letter-spacing:0.021440pt;}
.ls4c{letter-spacing:0.026880pt;}
.ls51{letter-spacing:0.027520pt;}
.ls24{letter-spacing:0.036480pt;}
.ls12{letter-spacing:0.038400pt;}
.ls4b{letter-spacing:0.044907pt;}
.ls3e{letter-spacing:0.053227pt;}
.ls7{letter-spacing:0.053440pt;}
.lsc{letter-spacing:0.054720pt;}
.ls2{letter-spacing:0.058560pt;}
.ls78{letter-spacing:0.059840pt;}
.ls50{letter-spacing:0.063040pt;}
.ls53{letter-spacing:0.074880pt;}
.ls4f{letter-spacing:0.078507pt;}
.ls42{letter-spacing:0.081600pt;}
.ls66{letter-spacing:0.096192pt;}
.ls6c{letter-spacing:0.101536pt;}
.ls4a{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.106880pt;}
.ls4d{letter-spacing:0.106987pt;}
.ls67{letter-spacing:0.117568pt;}
.ls5a{letter-spacing:0.133600pt;}
.ls62{letter-spacing:0.138944pt;}
.ls26{letter-spacing:0.149760pt;}
.ls0{letter-spacing:0.160000pt;}
.ls7a{letter-spacing:0.160107pt;}
.ls4{letter-spacing:0.160320pt;}
.ls14{letter-spacing:0.170880pt;}
.ls1{letter-spacing:0.175680pt;}
.ls23{letter-spacing:0.213760pt;}
.ls8{letter-spacing:0.224448pt;}
.ls70{letter-spacing:0.358048pt;}
.ls58{letter-spacing:0.855040pt;}
.ls59{letter-spacing:0.927040pt;}
.ls25{letter-spacing:0.936000pt;}
.ls11{letter-spacing:1.015360pt;}
.ls38{letter-spacing:1.068800pt;}
.ls34{letter-spacing:1.229120pt;}
.ls32{letter-spacing:1.389440pt;}
.ls3b{letter-spacing:1.442880pt;}
.ls30{letter-spacing:1.549760pt;}
.ls3a{letter-spacing:1.603200pt;}
.ls31{letter-spacing:1.710080pt;}
.ls6a{letter-spacing:1.977280pt;}
.ls49{letter-spacing:2.009920pt;}
.ls52{letter-spacing:2.022400pt;}
.ls6b{letter-spacing:2.030720pt;}
.ls7b{letter-spacing:2.070720pt;}
.ls77{letter-spacing:2.091200pt;}
.ls47{letter-spacing:2.329920pt;}
.ls45{letter-spacing:2.377600pt;}
.ls7c{letter-spacing:2.390720pt;}
.ls57{letter-spacing:2.398080pt;}
.ls54{letter-spacing:2.415040pt;}
.ls60{letter-spacing:2.672000pt;}
.ls37{letter-spacing:2.753600pt;}
.ls10{letter-spacing:2.753920pt;}
.ls9{letter-spacing:2.939200pt;}
.ls61{letter-spacing:2.992640pt;}
.lsb{letter-spacing:3.073920pt;}
.ls76{letter-spacing:3.174400pt;}
.ls2e{letter-spacing:3.178560pt;}
.ls46{letter-spacing:3.453440pt;}
.lsd{letter-spacing:3.498560pt;}
.ls40{letter-spacing:3.571840pt;}
.ls79{letter-spacing:3.680000pt;}
.ls5f{letter-spacing:4.221760pt;}
.ls74{letter-spacing:4.542400pt;}
.ls6f{letter-spacing:4.863040pt;}
.ls6d{letter-spacing:5.226432pt;}
.ls6e{letter-spacing:5.504320pt;}
.ls69{letter-spacing:7.123552pt;}
.ls43{letter-spacing:7.338560pt;}
.ls44{letter-spacing:7.520000pt;}
.ls65{letter-spacing:8.390080pt;}
.lse{letter-spacing:8.550400pt;}
.ls21{letter-spacing:8.657280pt;}
.ls72{letter-spacing:8.710720pt;}
.ls22{letter-spacing:8.871040pt;}
.ls73{letter-spacing:9.031360pt;}
.ls48{letter-spacing:10.794880pt;}
.ls29{letter-spacing:11.596480pt;}
.ls2d{letter-spacing:11.917120pt;}
.ls2c{letter-spacing:13.039360pt;}
.ls27{letter-spacing:14.482240pt;}
.ls35{letter-spacing:14.593600pt;}
.ls75{letter-spacing:14.642560pt;}
.ls4e{letter-spacing:14.696000pt;}
.ls7d{letter-spacing:14.771840pt;}
.ls2b{letter-spacing:14.802880pt;}
.ls28{letter-spacing:15.018560pt;}
.ls7f{letter-spacing:15.456000pt;}
.ls33{letter-spacing:15.711360pt;}
.ls80{letter-spacing:15.764800pt;}
.ls82{letter-spacing:15.925120pt;}
.ls81{letter-spacing:16.069408pt;}
.ls3d{letter-spacing:16.245760pt;}
.ls56{letter-spacing:16.729920pt;}
.ls55{letter-spacing:16.742400pt;}
.ls3c{letter-spacing:16.800640pt;}
.ls41{letter-spacing:17.097600pt;}
.ls36{letter-spacing:17.473600pt;}
.ls2a{letter-spacing:17.898560pt;}
.ls13{letter-spacing:18.218560pt;}
.ls6{letter-spacing:18.329920pt;}
.lsa{letter-spacing:18.538560pt;}
.ls5{letter-spacing:18.650560pt;}
.ls2f{letter-spacing:19.078080pt;}
.ls3f{letter-spacing:26.969920pt;}
.ls64{letter-spacing:42.645120pt;}
.ls5b{letter-spacing:56.486080pt;}
.ls68{letter-spacing:159.678720pt;}
.ws97{word-spacing:-53.493440pt;}
.wsd{word-spacing:-53.440000pt;}
.ws62{word-spacing:-53.386560pt;}
.ws60{word-spacing:-53.172800pt;}
.ws9a{word-spacing:-41.950400pt;}
.ws5d{word-spacing:-41.843520pt;}
.ws99{word-spacing:-41.629760pt;}
.ws59{word-spacing:-41.522880pt;}
.ws42{word-spacing:-38.957760pt;}
.ws3e{word-spacing:-38.904320pt;}
.ws3d{word-spacing:-38.744000pt;}
.wse{word-spacing:-38.690560pt;}
.ws38{word-spacing:-37.440000pt;}
.ws40{word-spacing:-37.327680pt;}
.ws5f{word-spacing:-37.140480pt;}
.ws5b{word-spacing:-37.103040pt;}
.ws76{word-spacing:-32.064000pt;}
.ws80{word-spacing:-32.010560pt;}
.ws5e{word-spacing:-22.928960pt;}
.ws5a{word-spacing:-22.650176pt;}
.ws5c{word-spacing:-22.608960pt;}
.ws58{word-spacing:-22.330176pt;}
.ws0{word-spacing:-21.360000pt;}
.ws98{word-spacing:-20.681600pt;}
.ws56{word-spacing:-19.450176pt;}
.ws96{word-spacing:-19.330667pt;}
.ws41{word-spacing:-19.109440pt;}
.ws3f{word-spacing:-19.010880pt;}
.ws3{word-spacing:-14.815680pt;}
.ws3b{word-spacing:-14.698560pt;}
.ws4{word-spacing:-14.581440pt;}
.ws2{word-spacing:-14.464320pt;}
.ws9{word-spacing:-13.520320pt;}
.wsc{word-spacing:-13.466880pt;}
.ws64{word-spacing:-13.413440pt;}
.wsa{word-spacing:-13.360000pt;}
.ws8{word-spacing:-13.306560pt;}
.ws6{word-spacing:-13.253120pt;}
.ws3c{word-spacing:-13.199680pt;}
.ws5{word-spacing:-13.146240pt;}
.ws81{word-spacing:-13.039360pt;}
.wsb{word-spacing:-12.985920pt;}
.ws7{word-spacing:-12.932480pt;}
.wsf{word-spacing:-11.756800pt;}
.ws1{word-spacing:-11.360000pt;}
.ws63{word-spacing:-8.236800pt;}
.ws22{word-spacing:-3.580480pt;}
.ws75{word-spacing:-3.313280pt;}
.ws21{word-spacing:-3.259840pt;}
.ws61{word-spacing:-3.206400pt;}
.ws70{word-spacing:-3.046080pt;}
.ws8e{word-spacing:-2.992640pt;}
.ws1d{word-spacing:-2.939200pt;}
.ws39{word-spacing:-2.885760pt;}
.ws6a{word-spacing:-2.725440pt;}
.ws1f{word-spacing:-2.672000pt;}
.ws6b{word-spacing:-2.618560pt;}
.ws6c{word-spacing:-2.565120pt;}
.ws1e{word-spacing:-2.351360pt;}
.ws33{word-spacing:-2.297920pt;}
.ws72{word-spacing:-2.191040pt;}
.ws48{word-spacing:-1.763520pt;}
.ws47{word-spacing:-1.389440pt;}
.ws2b{word-spacing:-1.336000pt;}
.wsa1{word-spacing:-0.801600pt;}
.ws93{word-spacing:-0.694720pt;}
.ws34{word-spacing:-0.374080pt;}
.ws45{word-spacing:-0.175680pt;}
.ws49{word-spacing:-0.160320pt;}
.ws16{word-spacing:-0.117120pt;}
.ws27{word-spacing:-0.106880pt;}
.ws11{word-spacing:-0.085440pt;}
.ws15{word-spacing:-0.058560pt;}
.ws18{word-spacing:-0.053440pt;}
.ws12{word-spacing:0.000000pt;}
.ws44{word-spacing:0.053440pt;}
.ws46{word-spacing:0.058560pt;}
.ws13{word-spacing:0.085440pt;}
.ws43{word-spacing:0.106880pt;}
.ws14{word-spacing:0.117120pt;}
.ws28{word-spacing:0.160320pt;}
.ws89{word-spacing:0.175680pt;}
.ws26{word-spacing:0.213760pt;}
.ws17{word-spacing:0.267200pt;}
.ws1b{word-spacing:0.320640pt;}
.ws35{word-spacing:0.374080pt;}
.ws19{word-spacing:0.427520pt;}
.ws79{word-spacing:0.480960pt;}
.ws4f{word-spacing:0.534400pt;}
.ws50{word-spacing:0.587840pt;}
.ws92{word-spacing:0.855040pt;}
.ws65{word-spacing:0.908480pt;}
.ws36{word-spacing:1.175680pt;}
.ws91{word-spacing:1.229120pt;}
.ws7f{word-spacing:1.496320pt;}
.ws69{word-spacing:1.710080pt;}
.ws68{word-spacing:1.763520pt;}
.ws8d{word-spacing:1.816960pt;}
.ws8c{word-spacing:2.030720pt;}
.ws4d{word-spacing:2.137600pt;}
.ws8b{word-spacing:2.404800pt;}
.wsa9{word-spacing:2.511680pt;}
.ws4c{word-spacing:2.725440pt;}
.ws30{word-spacing:2.778880pt;}
.ws3a{word-spacing:2.885760pt;}
.ws10{word-spacing:2.939200pt;}
.ws31{word-spacing:2.992640pt;}
.ws57{word-spacing:3.046080pt;}
.ws1c{word-spacing:3.099520pt;}
.ws2f{word-spacing:3.313280pt;}
.wsa2{word-spacing:3.420160pt;}
.wsa3{word-spacing:3.687360pt;}
.ws37{word-spacing:3.740800pt;}
.ws77{word-spacing:3.954560pt;}
.ws2d{word-spacing:4.008000pt;}
.ws85{word-spacing:4.061440pt;}
.ws78{word-spacing:4.275200pt;}
.ws2c{word-spacing:4.328640pt;}
.ws94{word-spacing:4.382080pt;}
.ws95{word-spacing:4.595840pt;}
.ws9f{word-spacing:4.702720pt;}
.ws8f{word-spacing:5.023360pt;}
.ws7c{word-spacing:5.344000pt;}
.ws90{word-spacing:5.557760pt;}
.wsaa{word-spacing:6.038720pt;}
.ws84{word-spacing:6.626560pt;}
.ws4e{word-spacing:6.840320pt;}
.ws8a{word-spacing:7.267840pt;}
.ws54{word-spacing:7.481600pt;}
.ws55{word-spacing:7.535040pt;}
.ws7b{word-spacing:7.855680pt;}
.ws7a{word-spacing:7.909120pt;}
.ws7d{word-spacing:8.229760pt;}
.ws88{word-spacing:8.443520pt;}
.ws9e{word-spacing:8.603840pt;}
.ws9c{word-spacing:8.871040pt;}
.ws9b{word-spacing:9.084800pt;}
.ws9d{word-spacing:9.191680pt;}
.ws2e{word-spacing:9.458880pt;}
.ws6d{word-spacing:9.726080pt;}
.ws6e{word-spacing:9.832960pt;}
.ws6f{word-spacing:10.046720pt;}
.ws66{word-spacing:10.100160pt;}
.wsa0{word-spacing:10.153600pt;}
.ws67{word-spacing:10.367360pt;}
.ws73{word-spacing:10.741440pt;}
.wsa8{word-spacing:10.794880pt;}
.ws74{word-spacing:11.008640pt;}
.wsa6{word-spacing:11.062080pt;}
.ws4b{word-spacing:11.115520pt;}
.wsa7{word-spacing:11.329280pt;}
.ws86{word-spacing:11.382720pt;}
.ws87{word-spacing:11.436160pt;}
.ws4a{word-spacing:11.703360pt;}
.ws25{word-spacing:12.344640pt;}
.ws7e{word-spacing:13.360000pt;}
.wsa5{word-spacing:15.230400pt;}
.wsa4{word-spacing:15.604480pt;}
.ws71{word-spacing:16.780160pt;}
.ws2a{word-spacing:17.421440pt;}
.ws29{word-spacing:17.474880pt;}
.ws23{word-spacing:18.490240pt;}
.ws24{word-spacing:18.704000pt;}
.wsac{word-spacing:20.253760pt;}
.wsad{word-spacing:20.414080pt;}
.ws32{word-spacing:21.001920pt;}
.ws52{word-spacing:21.696640pt;}
.ws53{word-spacing:21.963840pt;}
.ws51{word-spacing:22.284480pt;}
.ws1a{word-spacing:24.208320pt;}
.wsab{word-spacing:26.506240pt;}
.ws20{word-spacing:31.583040pt;}
.ws82{word-spacing:42.484800pt;}
.ws83{word-spacing:42.698560pt;}
._3{margin-left:-7.234560pt;}
._9{margin-left:-5.824960pt;}
._c{margin-left:-3.468032pt;}
._4{margin-left:-2.304064pt;}
._0{margin-left:-1.127808pt;}
._1{width:1.059456pt;}
._6{width:2.120640pt;}
._2{width:3.108864pt;}
._a{width:4.007680pt;}
._10{width:5.093280pt;}
._f{width:7.374720pt;}
._11{width:8.738560pt;}
._b{width:11.168960pt;}
._8{width:15.149184pt;}
._7{width:16.459520pt;}
._12{width:26.301824pt;}
._e{width:127.561280pt;}
._d{width:159.689408pt;}
._5{width:178.649920pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.440000pt;}
.fs6{font-size:42.560000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:69.440000pt;}
.fs0{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.yf5{bottom:2.880000pt;}
.yf4{bottom:18.160000pt;}
.yf8{bottom:94.880000pt;}
.y36{bottom:105.286000pt;}
.y70{bottom:105.890400pt;}
.y135{bottom:105.968480pt;}
.yf2{bottom:107.520080pt;}
.yc7{bottom:109.572640pt;}
.y162{bottom:113.109680pt;}
.y35{bottom:119.600000pt;}
.y6f{bottom:121.174240pt;}
.y134{bottom:121.332480pt;}
.y34{bottom:122.322000pt;}
.yf1{bottom:124.400000pt;}
.yc6{bottom:125.818400pt;}
.y161{bottom:128.473680pt;}
.y6e{bottom:136.538240pt;}
.y133{bottom:136.616320pt;}
.y33{bottom:137.846320pt;}
.yf0{bottom:140.956160pt;}
.yc5{bottom:142.144320pt;}
.y160{bottom:143.837680pt;}
.y132{bottom:151.980320pt;}
.y6d{bottom:151.982400pt;}
.y32{bottom:152.000000pt;}
.y31{bottom:154.711840pt;}
.yef{bottom:156.240000pt;}
.yc4{bottom:158.390080pt;}
.y15f{bottom:159.121520pt;}
.y131{bottom:167.344320pt;}
.y6c{bottom:167.586880pt;}
.y30{bottom:170.236160pt;}
.yee{bottom:172.720000pt;}
.y15e{bottom:174.485520pt;}
.yc3{bottom:174.716000pt;}
.y130{bottom:182.628160pt;}
.y6b{bottom:183.111200pt;}
.y2f{bottom:185.520000pt;}
.yed{bottom:187.840000pt;}
.yc2{bottom:190.080000pt;}
.y15c{bottom:191.752720pt;}
.y15d{bottom:196.640320pt;}
.y12f{bottom:197.992160pt;}
.y6a{bottom:198.635520pt;}
.y2e{bottom:201.440000pt;}
.yec{bottom:202.960000pt;}
.yc1{bottom:205.680160pt;}
.y15b{bottom:207.357200pt;}
.y12e{bottom:213.356160pt;}
.y69{bottom:214.231520pt;}
.yeb{bottom:218.080000pt;}
.y2d{bottom:219.600000pt;}
.yc0{bottom:222.560080pt;}
.y15a{bottom:222.641067pt;}
.y12d{bottom:228.640000pt;}
.y68{bottom:229.755840pt;}
.yea{bottom:233.120000pt;}
.y2c{bottom:236.720000pt;}
.y159{bottom:238.005067pt;}
.ybf{bottom:239.440000pt;}
.y67{bottom:242.480000pt;}
.y12c{bottom:244.320000pt;}
.y66{bottom:245.186160pt;}
.ye9{bottom:248.240000pt;}
.y157{bottom:252.800000pt;}
.y2b{bottom:254.504800pt;}
.y156{bottom:255.513147pt;}
.ybe{bottom:256.560000pt;}
.y158{bottom:260.400320pt;}
.y65{bottom:260.790640pt;}
.y12b{bottom:260.798720pt;}
.ye8{bottom:263.360000pt;}
.y2a{bottom:269.788640pt;}
.y155{bottom:271.037467pt;}
.ybd{bottom:274.396000pt;}
.y12a{bottom:276.082560pt;}
.y64{bottom:276.154640pt;}
.ye7{bottom:278.480000pt;}
.y29{bottom:285.152640pt;}
.y154{bottom:286.401467pt;}
.ybc{bottom:289.744160pt;}
.y63{bottom:291.438480pt;}
.y129{bottom:292.568800pt;}
.ye6{bottom:293.600000pt;}
.y28{bottom:300.516640pt;}
.y153{bottom:301.765467pt;}
.ybb{bottom:305.508960pt;}
.y62{bottom:306.802480pt;}
.y128{bottom:307.692320pt;}
.ye5{bottom:308.640000pt;}
.y27{bottom:315.800480pt;}
.y152{bottom:319.028880pt;}
.yba{bottom:321.033333pt;}
.y61{bottom:322.166480pt;}
.ye4{bottom:322.619680pt;}
.y127{bottom:322.815840pt;}
.y26{bottom:331.164480pt;}
.y151{bottom:334.553200pt;}
.yb6{bottom:334.644480pt;}
.yb4{bottom:337.752667pt;}
.y126{bottom:337.859200pt;}
.ye3{bottom:337.983680pt;}
.y60{bottom:338.947520pt;}
.yb8{bottom:343.035920pt;}
.yb7{bottom:343.040400pt;}
.yb9{bottom:344.803920pt;}
.y25{bottom:346.528480pt;}
.y150{bottom:349.837040pt;}
.yb5{bottom:349.920000pt;}
.y125{bottom:352.982720pt;}
.ye2{bottom:353.267520pt;}
.y5f{bottom:354.471840pt;}
.yb3{bottom:358.153467pt;}
.y24{bottom:361.812320pt;}
.y14f{bottom:365.281200pt;}
.y124{bottom:368.106240pt;}
.ye1{bottom:368.631520pt;}
.y5e{bottom:369.835840pt;}
.yb0{bottom:371.684480pt;}
.yaf{bottom:372.077600pt;}
.yad{bottom:374.788933pt;}
.y23{bottom:377.176320pt;}
.yb1{bottom:380.080400pt;}
.y14e{bottom:380.805520pt;}
.yb2{bottom:381.843920pt;}
.y123{bottom:383.229760pt;}
.ye0{bottom:384.075680pt;}
.y5d{bottom:385.267520pt;}
.yae{bottom:386.960000pt;}
.y22{bottom:392.540320pt;}
.y14d{bottom:398.071547pt;}
.yac{bottom:398.075333pt;}
.y122{bottom:398.353280pt;}
.ydf{bottom:399.600000pt;}
.y5c{bottom:400.791840pt;}
.y21{bottom:407.824160pt;}
.yaa{bottom:411.037600pt;}
.y121{bottom:413.396640pt;}
.y14c{bottom:413.595867pt;}
.ya8{bottom:413.764133pt;}
.yde{bottom:415.280000pt;}
.y5b{bottom:416.155840pt;}
.yab{bottom:419.035920pt;}
.y20{bottom:423.188160pt;}
.ya9{bottom:425.920000pt;}
.y120{bottom:428.520160pt;}
.y14b{bottom:429.015947pt;}
.y5a{bottom:431.600000pt;}
.ydd{bottom:432.400000pt;}
.ya5{bottom:438.402667pt;}
.y1f{bottom:438.552160pt;}
.y11f{bottom:443.643680pt;}
.ya7{bottom:443.675920pt;}
.y14a{bottom:444.540267pt;}
.ya6{bottom:445.443920pt;}
.y59{bottom:447.440000pt;}
.ydc{bottom:450.240000pt;}
.y1e{bottom:453.836000pt;}
.ya3{bottom:454.397600pt;}
.ya1{bottom:457.124133pt;}
.y11e{bottom:458.767200pt;}
.y149{bottom:459.904320pt;}
.ya4{bottom:462.395920pt;}
.y58{bottom:463.982880pt;}
.ydb{bottom:466.640000pt;}
.y1d{bottom:469.200000pt;}
.ya2{bottom:469.280000pt;}
.y11d{bottom:472.768480pt;}
.y148{bottom:475.188160pt;}
.y57{bottom:479.427040pt;}
.y9e{bottom:481.758667pt;}
.yda{bottom:481.760000pt;}
.y1c{bottom:485.120000pt;}
.ya0{bottom:487.035920pt;}
.y11c{bottom:488.052320pt;}
.y9f{bottom:488.803920pt;}
.y147{bottom:490.552160pt;}
.y56{bottom:495.031520pt;}
.yd9{bottom:496.880000pt;}
.y9d{bottom:500.235520pt;}
.y1b{bottom:503.200000pt;}
.y11b{bottom:503.416320pt;}
.y146{bottom:505.916160pt;}
.y55{bottom:510.555840pt;}
.yd8{bottom:512.000000pt;}
.y9b{bottom:515.834400pt;}
.y11a{bottom:518.780320pt;}
.y1a{bottom:520.320000pt;}
.y9c{bottom:521.115920pt;}
.y145{bottom:521.200000pt;}
.y54{bottom:523.280000pt;}
.y53{bottom:525.991360pt;}
.yd7{bottom:527.040000pt;}
.y9a{bottom:531.995040pt;}
.y119{bottom:534.064160pt;}
.y144{bottom:536.880080pt;}
.y19{bottom:538.104800pt;}
.y52{bottom:541.595840pt;}
.yd6{bottom:542.160000pt;}
.y98{bottom:545.117600pt;}
.y96{bottom:547.844160pt;}
.y118{bottom:549.428160pt;}
.y99{bottom:553.115920pt;}
.y18{bottom:553.468800pt;}
.y143{bottom:553.760000pt;}
.y51{bottom:557.027520pt;}
.yd5{bottom:557.280000pt;}
.y97{bottom:560.000000pt;}
.y117{bottom:564.792160pt;}
.y17{bottom:568.832800pt;}
.y142{bottom:570.316160pt;}
.yd4{bottom:572.400000pt;}
.y94{bottom:572.483280pt;}
.y50{bottom:572.551840pt;}
.y95{bottom:579.523920pt;}
.y116{bottom:580.076000pt;}
.y16{bottom:584.116640pt;}
.y141{bottom:585.600000pt;}
.yd3{bottom:587.520000pt;}
.y4f{bottom:587.915840pt;}
.y93{bottom:590.880000pt;}
.y115{bottom:595.440000pt;}
.y15{bottom:599.480640pt;}
.yd2{bottom:601.412160pt;}
.y140{bottom:602.080000pt;}
.y4e{bottom:603.347680pt;}
.y92{bottom:606.245040pt;}
.y114{bottom:611.920000pt;}
.y14{bottom:614.844640pt;}
.yd1{bottom:616.776160pt;}
.y13f{bottom:617.200000pt;}
.y4d{bottom:618.952160pt;}
.y91{bottom:621.037600pt;}
.y8f{bottom:623.760000pt;}
.y113{bottom:626.960000pt;}
.y13{bottom:630.128480pt;}
.yd0{bottom:632.140160pt;}
.y13e{bottom:632.320000pt;}
.y4c{bottom:634.236000pt;}
.y90{bottom:635.920000pt;}
.y112{bottom:642.080000pt;}
.y12{bottom:645.492480pt;}
.y8e{bottom:646.960000pt;}
.y13d{bottom:647.360000pt;}
.ycf{bottom:647.424000pt;}
.y4b{bottom:649.600000pt;}
.y16f{bottom:654.328320pt;}
.y111{bottom:657.200000pt;}
.y11{bottom:660.776320pt;}
.y8c{bottom:661.757600pt;}
.y13c{bottom:662.480000pt;}
.yce{bottom:662.788000pt;}
.y88{bottom:664.473520pt;}
.y4a{bottom:665.273280pt;}
.y8d{bottom:669.360000pt;}
.y16e{bottom:669.692320pt;}
.y8a{bottom:669.760160pt;}
.y89{bottom:671.523920pt;}
.y110{bottom:672.320000pt;}
.y10{bottom:676.140320pt;}
.y8b{bottom:676.640000pt;}
.y13b{bottom:677.600000pt;}
.ycd{bottom:678.152000pt;}
.y49{bottom:682.080000pt;}
.y16d{bottom:685.136480pt;}
.y10f{bottom:686.296480pt;}
.y87{bottom:687.760000pt;}
.yf{bottom:691.504320pt;}
.y13a{bottom:692.720000pt;}
.ycc{bottom:693.435840pt;}
.y48{bottom:700.151520pt;}
.y16c{bottom:700.660800pt;}
.y10e{bottom:701.580320pt;}
.y86{bottom:703.120000pt;}
.y139{bottom:706.712160pt;}
.ye{bottom:706.788160pt;}
.ycb{bottom:708.880000pt;}
.y47{bottom:715.675840pt;}
.y16b{bottom:715.944640pt;}
.y10d{bottom:716.944320pt;}
.y84{bottom:717.837600pt;}
.y81{bottom:720.553520pt;}
.y138{bottom:721.996000pt;}
.yd{bottom:722.152160pt;}
.yca{bottom:724.720080pt;}
.y85{bottom:725.440000pt;}
.y82{bottom:725.835920pt;}
.y46{bottom:731.115520pt;}
.y16a{bottom:731.308640pt;}
.y10c{bottom:732.228160pt;}
.y83{bottom:732.720000pt;}
.y137{bottom:737.360000pt;}
.yc{bottom:737.516160pt;}
.yc9{bottom:741.600000pt;}
.y80{bottom:743.840000pt;}
.y169{bottom:746.672640pt;}
.y45{bottom:746.720000pt;}
.y10b{bottom:747.592160pt;}
.y136{bottom:749.840000pt;}
.yb{bottom:752.800000pt;}
.yf7{bottom:755.280000pt;}
.y7e{bottom:759.513760pt;}
.y168{bottom:761.956480pt;}
.y10a{bottom:762.956160pt;}
.y43{bottom:763.520000pt;}
.y7f{bottom:764.800160pt;}
.ya{bottom:768.480000pt;}
.y102{bottom:770.640000pt;}
.y42{bottom:772.476560pt;}
.y44{bottom:772.480000pt;}
.yfd{bottom:773.504320pt;}
.y7d{bottom:775.991013pt;}
.y167{bottom:777.320480pt;}
.y109{bottom:778.240000pt;}
.y9{bottom:785.600000pt;}
.y101{bottom:785.920000pt;}
.yfc{bottom:788.788160pt;}
.y7c{bottom:791.515333pt;}
.y166{bottom:792.684480pt;}
.y41{bottom:794.240000pt;}
.y108{bottom:794.720000pt;}
.y100{bottom:801.280000pt;}
.yfb{bottom:804.152160pt;}
.y7a{bottom:807.187520pt;}
.y165{bottom:807.968320pt;}
.y40{bottom:809.484480pt;}
.y107{bottom:809.840000pt;}
.y8{bottom:810.003440pt;}
.y7b{bottom:812.475920pt;}
.yff{bottom:816.640000pt;}
.yfa{bottom:819.516160pt;}
.y79{bottom:822.711867pt;}
.y164{bottom:823.332320pt;}
.y3f{bottom:824.848480pt;}
.y106{bottom:824.960000pt;}
.y7{bottom:828.400000pt;}
.yfe{bottom:831.920000pt;}
.yf9{bottom:834.800000pt;}
.y78{bottom:838.075840pt;}
.y163{bottom:838.696320pt;}
.y105{bottom:840.000000pt;}
.y3e{bottom:840.212480pt;}
.y6{bottom:846.560000pt;}
.yf6{bottom:847.280000pt;}
.y77{bottom:853.499200pt;}
.y104{bottom:853.980160pt;}
.y3d{bottom:855.496320pt;}
.y5{bottom:858.000000pt;}
.yf3{bottom:862.640000pt;}
.y76{bottom:869.183840pt;}
.y103{bottom:869.344160pt;}
.y3c{bottom:870.860320pt;}
.y4{bottom:877.600000pt;}
.y75{bottom:884.708160pt;}
.y3b{bottom:886.224320pt;}
.y3{bottom:896.000000pt;}
.yc8{bottom:897.520000pt;}
.y74{bottom:899.992000pt;}
.y3a{bottom:901.508160pt;}
.y73{bottom:915.356000pt;}
.y2{bottom:915.601440pt;}
.y39{bottom:916.872160pt;}
.y72{bottom:930.720000pt;}
.y38{bottom:932.236160pt;}
.y1{bottom:940.080000pt;}
.y71{bottom:946.320000pt;}
.y37{bottom:947.520000pt;}
.h29{height:15.280000pt;}
.h28{height:15.281333pt;}
.h25{height:15.360000pt;}
.h4{height:26.014219pt;}
.h1a{height:26.489531pt;}
.h18{height:26.654062pt;}
.h5{height:29.571719pt;}
.h24{height:30.640000pt;}
.h2a{height:35.617969pt;}
.h9{height:36.218125pt;}
.h26{height:37.105312pt;}
.h8{height:37.131406pt;}
.h1f{height:37.131513pt;}
.h2e{height:37.131620pt;}
.h23{height:37.731562pt;}
.h1e{height:38.044581pt;}
.hc{height:38.044687pt;}
.h19{height:38.044794pt;}
.h21{height:38.044901pt;}
.h1d{height:38.064528pt;}
.ha{height:38.077328pt;}
.h2c{height:38.078501pt;}
.h10{height:38.078608pt;}
.h14{height:38.079248pt;}
.h20{height:38.088954pt;}
.h2d{height:38.089168pt;}
.h13{height:38.094608pt;}
.h17{height:38.100048pt;}
.h2b{height:38.140901pt;}
.h7{height:39.688125pt;}
.h11{height:40.688906pt;}
.h6{height:43.375000pt;}
.h2{height:44.468750pt;}
.hf{height:46.191983pt;}
.h12{height:46.223343pt;}
.h16{height:46.223983pt;}
.h22{height:46.237423pt;}
.h1b{height:48.021006pt;}
.hb{height:48.924688pt;}
.h1c{height:48.934287pt;}
.h3{height:55.572812pt;}
.h15{height:57.054063pt;}
.h1{height:57.905625pt;}
.hd{height:78.338448pt;}
.he{height:80.903568pt;}
.h27{height:107.360000pt;}
.h0{height:1056.000000pt;}
.w2{width:176.560000pt;}
.w3{width:369.360000pt;}
.w1{width:545.920000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:7.200000pt;}
.x3{left:144.000000pt;}
.x3e{left:152.000000pt;}
.x1{left:159.760000pt;}
.x13{left:167.989280pt;}
.x2{left:174.562480pt;}
.xa{left:192.720000pt;}
.x2b{left:199.038080pt;}
.x28{left:204.320000pt;}
.x1a{left:208.002320pt;}
.x29{left:209.037440pt;}
.x5{left:210.960000pt;}
.x3b{left:213.920000pt;}
.x2c{left:225.598080pt;}
.x3c{left:227.594960pt;}
.x7{left:232.400000pt;}
.x2a{left:243.438080pt;}
.x47{left:266.645280pt;}
.x48{left:276.075600pt;}
.x14{left:277.840000pt;}
.x44{left:280.058827pt;}
.x1f{left:284.159760pt;}
.x34{left:287.595600pt;}
.x17{left:295.360000pt;}
.x1b{left:302.476320pt;}
.x3d{left:303.838080pt;}
.x20{left:305.518080pt;}
.x42{left:310.400000pt;}
.xb{left:311.841680pt;}
.x45{left:315.120000pt;}
.x15{left:318.401440pt;}
.x40{left:320.560000pt;}
.x2d{left:322.558080pt;}
.x1c{left:323.838080pt;}
.x32{left:325.358080pt;}
.x18{left:326.975520pt;}
.x2e{left:328.640133pt;}
.x43{left:337.833973pt;}
.xc{left:342.960000pt;}
.x4{left:344.320000pt;}
.x12{left:348.648480pt;}
.x10{left:353.124080pt;}
.xd{left:359.760000pt;}
.x6{left:360.720000pt;}
.x35{left:363.280000pt;}
.x8{left:364.961040pt;}
.x11{left:366.485280pt;}
.x36{left:367.997440pt;}
.x27{left:370.478080pt;}
.x21{left:374.002320pt;}
.x37{left:388.480000pt;}
.x19{left:395.358960pt;}
.x38{left:400.956880pt;}
.x33{left:402.880000pt;}
.x9{left:405.920000pt;}
.x16{left:407.986480pt;}
.x1d{left:423.040000pt;}
.xe{left:424.240000pt;}
.x1e{left:429.283120pt;}
.x22{left:433.440000pt;}
.x23{left:439.683120pt;}
.x2f{left:444.960000pt;}
.x30{left:449.677440pt;}
.xf{left:450.800000pt;}
.x39{left:453.517440pt;}
.x24{left:474.562320pt;}
.x3a{left:487.918080pt;}
.x25{left:503.600000pt;}
.x26{left:509.843120pt;}
.x31{left:512.878080pt;}
.x46{left:518.395600pt;}
.x41{left:618.160000pt;}
}




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