
    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_73fdb215cfc38d7f3c4c22a4.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2c8ed4855cef2726a1549b34.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4c878117fe9e0ea5782a5220.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_90b9eb425b2689cfe8ad7563.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_5f5337792a8f62ba86922200.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.090820;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6f2223913857fdf860d9af98.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.073242;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_36a7d28164d2877be4f6bbcc.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3e95fed67740efaa6af8e5ae.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.912598;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_de2a8741410a11c39526d481.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.913086;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);}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.120000px;}
.ls16{letter-spacing:-0.480960px;}
.ls23{letter-spacing:-0.420840px;}
.ls2b{letter-spacing:-0.360720px;}
.ls20{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.300600px;}
.ls6{letter-spacing:-0.240480px;}
.ls10{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.180360px;}
.ls11{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.120240px;}
.lsf{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.065880px;}
.ls7{letter-spacing:-0.060120px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.025200px;}
.ls8{letter-spacing:0.060120px;}
.ls17{letter-spacing:0.065880px;}
.lsa{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.090180px;}
.ls3{letter-spacing:0.096192px;}
.lse{letter-spacing:0.108000px;}
.ls2a{letter-spacing:0.114480px;}
.ls0{letter-spacing:0.120240px;}
.ls29{letter-spacing:0.126360px;}
.ls22{letter-spacing:0.140040px;}
.ls12{letter-spacing:0.144000px;}
.ls2f{letter-spacing:0.145440px;}
.ls2e{letter-spacing:0.147600px;}
.ls2d{letter-spacing:0.150300px;}
.lsd{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.168480px;}
.ls14{letter-spacing:0.172800px;}
.ls1{letter-spacing:0.180360px;}
.ls18{letter-spacing:0.197640px;}
.ls1e{letter-spacing:0.228456px;}
.ls21{letter-spacing:0.720000px;}
.ls1d{letter-spacing:1.080000px;}
.ls1c{letter-spacing:1.800000px;}
.ls13{letter-spacing:2.224440px;}
.ls2c{letter-spacing:2.945880px;}
.ls15{letter-spacing:5.400000px;}
.ls1f{letter-spacing:6.480000px;}
.ls27{letter-spacing:8.280000px;}
.ls24{letter-spacing:9.360000px;}
.ls19{letter-spacing:14.400000px;}
.ls30{letter-spacing:16.653240px;}
.ls25{letter-spacing:18.000000px;}
.ls26{letter-spacing:22.320000px;}
.ls1a{letter-spacing:33.984000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws54{word-spacing:-18.144000px;}
.ws2f{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.856000px;}
.wsc6{word-spacing:-16.470000px;}
.ws30{word-spacing:-16.404120px;}
.ws0{word-spacing:-15.210360px;}
.wsa{word-spacing:-15.150240px;}
.ws4{word-spacing:-15.090120px;}
.ws1{word-spacing:-15.030000px;}
.ws3{word-spacing:-14.969880px;}
.wsc5{word-spacing:-14.909760px;}
.ws2{word-spacing:-14.849640px;}
.ws2e{word-spacing:-14.789520px;}
.wsee{word-spacing:-14.669280px;}
.ws102{word-spacing:-14.609160px;}
.ws2d{word-spacing:-14.549040px;}
.ws6{word-spacing:-13.662000px;}
.ws7{word-spacing:-13.608000px;}
.ws9{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws11f{word-spacing:-13.346640px;}
.ws120{word-spacing:-13.226400px;}
.ws5{word-spacing:-9.000000px;}
.wse6{word-spacing:-4.464000px;}
.wsb7{word-spacing:-4.392000px;}
.ws3d{word-spacing:-4.320000px;}
.wsa9{word-spacing:-4.104000px;}
.ws25{word-spacing:-4.032000px;}
.ws43{word-spacing:-3.960000px;}
.ws4a{word-spacing:-3.744000px;}
.ws63{word-spacing:-3.672000px;}
.ws49{word-spacing:-3.600000px;}
.ws10b{word-spacing:-3.426840px;}
.ws82{word-spacing:-3.384000px;}
.wsc0{word-spacing:-3.312000px;}
.ws62{word-spacing:-3.240000px;}
.wsa7{word-spacing:-2.952000px;}
.wsfe{word-spacing:-2.885760px;}
.ws67{word-spacing:-2.880000px;}
.wsb1{word-spacing:-2.664000px;}
.ws8c{word-spacing:-2.592000px;}
.ws2b{word-spacing:-2.520000px;}
.wsda{word-spacing:-2.304000px;}
.ws6c{word-spacing:-2.232000px;}
.ws29{word-spacing:-2.160000px;}
.wsc2{word-spacing:-1.944000px;}
.ws1f{word-spacing:-1.872000px;}
.wsf5{word-spacing:-1.863720px;}
.ws72{word-spacing:-1.800000px;}
.ws81{word-spacing:-1.584000px;}
.ws84{word-spacing:-1.512000px;}
.wsff{word-spacing:-1.442880px;}
.ws20{word-spacing:-1.440000px;}
.ws3e{word-spacing:-1.224000px;}
.ws96{word-spacing:-1.152000px;}
.ws91{word-spacing:-1.080000px;}
.ws7b{word-spacing:-0.864000px;}
.wscb{word-spacing:-0.792000px;}
.wsfd{word-spacing:-0.721440px;}
.ws7a{word-spacing:-0.720000px;}
.ws24{word-spacing:-0.504000px;}
.ws74{word-spacing:-0.432000px;}
.ws1a{word-spacing:-0.420840px;}
.ws10{word-spacing:-0.360720px;}
.ws23{word-spacing:-0.360000px;}
.ws122{word-spacing:-0.270000px;}
.wsac{word-spacing:-0.197640px;}
.wsf{word-spacing:-0.180360px;}
.ws16{word-spacing:-0.168480px;}
.ws18{word-spacing:-0.162000px;}
.ws35{word-spacing:-0.144000px;}
.ws53{word-spacing:-0.131760px;}
.ws12{word-spacing:-0.120240px;}
.ws124{word-spacing:-0.108000px;}
.ws14{word-spacing:-0.072000px;}
.wsde{word-spacing:-0.065880px;}
.ws11{word-spacing:-0.060120px;}
.wsd{word-spacing:0.000000px;}
.ws123{word-spacing:0.054000px;}
.wsca{word-spacing:0.060120px;}
.ws15{word-spacing:0.065880px;}
.ws32{word-spacing:0.120240px;}
.ws5a{word-spacing:0.131760px;}
.ws17{word-spacing:0.162000px;}
.ws13{word-spacing:0.180360px;}
.ws19{word-spacing:0.216000px;}
.wse{word-spacing:0.240480px;}
.ws121{word-spacing:0.270000px;}
.wsb2{word-spacing:0.288000px;}
.ws1b{word-spacing:0.300600px;}
.ws9e{word-spacing:0.360000px;}
.wsfa{word-spacing:0.360720px;}
.wsc9{word-spacing:0.420840px;}
.ws4d{word-spacing:0.576000px;}
.wsbc{word-spacing:0.648000px;}
.ws11a{word-spacing:0.661320px;}
.ws48{word-spacing:0.720000px;}
.wsa0{word-spacing:0.936000px;}
.ws47{word-spacing:1.008000px;}
.ws5e{word-spacing:1.080000px;}
.ws9b{word-spacing:1.296000px;}
.ws4f{word-spacing:1.368000px;}
.ws28{word-spacing:1.440000px;}
.ws36{word-spacing:1.728000px;}
.ws27{word-spacing:1.800000px;}
.ws73{word-spacing:2.016000px;}
.wsfc{word-spacing:2.044080px;}
.ws56{word-spacing:2.088000px;}
.ws10a{word-spacing:2.104200px;}
.ws90{word-spacing:2.160000px;}
.ws33{word-spacing:2.284560px;}
.ws31{word-spacing:2.344680px;}
.ws8a{word-spacing:2.376000px;}
.ws100{word-spacing:2.404800px;}
.wsfb{word-spacing:2.464920px;}
.ws76{word-spacing:2.520000px;}
.ws101{word-spacing:2.705400px;}
.wsdd{word-spacing:2.736000px;}
.ws104{word-spacing:2.765520px;}
.wsb0{word-spacing:2.808000px;}
.ws11e{word-spacing:2.825640px;}
.ws7c{word-spacing:2.880000px;}
.ws103{word-spacing:3.006000px;}
.wsbb{word-spacing:3.096000px;}
.wsa6{word-spacing:3.168000px;}
.ws87{word-spacing:3.240000px;}
.wsec{word-spacing:3.456000px;}
.wseb{word-spacing:3.528000px;}
.ws42{word-spacing:3.600000px;}
.ws38{word-spacing:3.816000px;}
.ws41{word-spacing:3.888000px;}
.ws10c{word-spacing:3.907800px;}
.ws37{word-spacing:3.960000px;}
.wsa1{word-spacing:4.176000px;}
.wsa8{word-spacing:4.248000px;}
.ws6e{word-spacing:4.320000px;}
.ws69{word-spacing:4.536000px;}
.wsf9{word-spacing:4.569120px;}
.wscf{word-spacing:4.608000px;}
.ws68{word-spacing:4.680000px;}
.wsf8{word-spacing:4.809600px;}
.wsf4{word-spacing:4.929840px;}
.ws3f{word-spacing:4.968000px;}
.ws117{word-spacing:5.290560px;}
.ws44{word-spacing:5.328000px;}
.wsf3{word-spacing:5.350680px;}
.ws40{word-spacing:5.400000px;}
.ws116{word-spacing:5.531040px;}
.wscc{word-spacing:5.616000px;}
.wsf6{word-spacing:5.651280px;}
.ws89{word-spacing:5.760000px;}
.wsbf{word-spacing:6.048000px;}
.ws3c{word-spacing:6.120000px;}
.ws6a{word-spacing:6.336000px;}
.ws98{word-spacing:6.408000px;}
.wsd5{word-spacing:6.480000px;}
.ws11b{word-spacing:6.733440px;}
.ws9a{word-spacing:6.768000px;}
.ws99{word-spacing:6.840000px;}
.wsb3{word-spacing:7.056000px;}
.ws11c{word-spacing:7.094160px;}
.wsb4{word-spacing:7.128000px;}
.ws22{word-spacing:7.200000px;}
.ws11d{word-spacing:7.394760px;}
.ws92{word-spacing:7.416000px;}
.ws66{word-spacing:7.488000px;}
.ws52{word-spacing:7.560000px;}
.wsc3{word-spacing:7.776000px;}
.wsc4{word-spacing:7.848000px;}
.ws2a{word-spacing:7.920000px;}
.wse5{word-spacing:8.136000px;}
.wsf7{word-spacing:8.176320px;}
.wsdf{word-spacing:8.208000px;}
.ws77{word-spacing:8.280000px;}
.ws4e{word-spacing:8.496000px;}
.wsd0{word-spacing:8.568000px;}
.ws26{word-spacing:8.640000px;}
.wsba{word-spacing:8.928000px;}
.ws108{word-spacing:8.957880px;}
.ws39{word-spacing:9.000000px;}
.ws107{word-spacing:9.138240px;}
.ws8d{word-spacing:9.216000px;}
.ws109{word-spacing:9.258480px;}
.wsb9{word-spacing:9.288000px;}
.wsc1{word-spacing:9.360000px;}
.ws8e{word-spacing:9.576000px;}
.ws75{word-spacing:9.720000px;}
.ws113{word-spacing:9.859680px;}
.wse4{word-spacing:9.936000px;}
.ws110{word-spacing:9.979920px;}
.ws112{word-spacing:10.040040px;}
.ws70{word-spacing:10.080000px;}
.wse9{word-spacing:10.296000px;}
.ws111{word-spacing:10.340640px;}
.ws10f{word-spacing:10.400760px;}
.ws1c{word-spacing:10.440000px;}
.ws7d{word-spacing:10.800000px;}
.ws106{word-spacing:10.941840px;}
.wsd9{word-spacing:11.016000px;}
.ws51{word-spacing:11.160000px;}
.ws6f{word-spacing:11.376000px;}
.ws79{word-spacing:11.448000px;}
.ws78{word-spacing:11.520000px;}
.ws71{word-spacing:11.808000px;}
.ws6b{word-spacing:11.880000px;}
.ws94{word-spacing:12.096000px;}
.ws95{word-spacing:12.240000px;}
.ws1d{word-spacing:12.456000px;}
.wsbe{word-spacing:12.528000px;}
.ws105{word-spacing:12.565080px;}
.ws1e{word-spacing:12.600000px;}
.wsb6{word-spacing:12.816000px;}
.ws9f{word-spacing:12.960000px;}
.wsf0{word-spacing:13.176000px;}
.wsd1{word-spacing:13.536000px;}
.wsd2{word-spacing:13.608000px;}
.ws50{word-spacing:13.680000px;}
.ws34{word-spacing:13.896000px;}
.wsa5{word-spacing:13.968000px;}
.wsa4{word-spacing:14.040000px;}
.ws8b{word-spacing:14.256000px;}
.ws59{word-spacing:14.400000px;}
.wsae{word-spacing:14.616000px;}
.wsaf{word-spacing:14.688000px;}
.wsd4{word-spacing:14.760000px;}
.wsed{word-spacing:14.976000px;}
.ws21{word-spacing:15.120000px;}
.ws65{word-spacing:15.696000px;}
.ws119{word-spacing:15.751440px;}
.ws8f{word-spacing:15.768000px;}
.ws3b{word-spacing:15.840000px;}
.ws118{word-spacing:15.991920px;}
.ws3a{word-spacing:16.128000px;}
.ws126{word-spacing:16.172280px;}
.ws10d{word-spacing:16.352640px;}
.ws10e{word-spacing:16.412760px;}
.ws125{word-spacing:16.472880px;}
.ws57{word-spacing:16.488000px;}
.ws127{word-spacing:16.593120px;}
.ws7f{word-spacing:16.920000px;}
.wsb8{word-spacing:17.208000px;}
.wsaa{word-spacing:17.496000px;}
.wsa2{word-spacing:17.568000px;}
.wsc7{word-spacing:17.856000px;}
.wsd8{word-spacing:17.928000px;}
.wsa3{word-spacing:18.000000px;}
.ws85{word-spacing:18.216000px;}
.wsf1{word-spacing:18.288000px;}
.wsc8{word-spacing:18.360000px;}
.wsd6{word-spacing:18.720000px;}
.wsd7{word-spacing:19.296000px;}
.wsb5{word-spacing:19.656000px;}
.ws9c{word-spacing:19.728000px;}
.ws83{word-spacing:20.016000px;}
.ws80{word-spacing:20.088000px;}
.ws6d{word-spacing:20.160000px;}
.ws7e{word-spacing:20.520000px;}
.ws97{word-spacing:20.880000px;}
.ws4b{word-spacing:21.240000px;}
.wsf2{word-spacing:21.528000px;}
.wse3{word-spacing:21.600000px;}
.wsdc{word-spacing:21.816000px;}
.wscd{word-spacing:21.960000px;}
.wsdb{word-spacing:22.320000px;}
.wsea{word-spacing:22.608000px;}
.wsd3{word-spacing:23.040000px;}
.ws4c{word-spacing:23.400000px;}
.ws64{word-spacing:23.760000px;}
.ws114{word-spacing:24.408720px;}
.ws5d{word-spacing:24.768000px;}
.ws115{word-spacing:24.769440px;}
.ws9d{word-spacing:25.200000px;}
.wsad{word-spacing:25.560000px;}
.ws55{word-spacing:25.848000px;}
.ws86{word-spacing:27.720000px;}
.wse2{word-spacing:28.656000px;}
.wsbd{word-spacing:29.016000px;}
.ws2c{word-spacing:29.160000px;}
.wsce{word-spacing:29.376000px;}
.ws61{word-spacing:30.168000px;}
.ws60{word-spacing:30.240000px;}
.wse0{word-spacing:30.960000px;}
.ws93{word-spacing:31.320000px;}
.wsab{word-spacing:32.256000px;}
.ws46{word-spacing:33.840000px;}
.ws45{word-spacing:34.200000px;}
.ws5c{word-spacing:35.208000px;}
.ws5b{word-spacing:35.280000px;}
.wse1{word-spacing:37.008000px;}
.ws88{word-spacing:37.440000px;}
.wsef{word-spacing:38.520000px;}
.wse8{word-spacing:39.168000px;}
.wse7{word-spacing:39.240000px;}
.ws5f{word-spacing:49.536000px;}
.ws58{word-spacing:83.880000px;}
._7{margin-left:-4.176000px;}
._5{margin-left:-2.736000px;}
._1{margin-left:-1.112220px;}
._0{width:1.166328px;}
._6{width:2.825640px;}
._9{width:4.100184px;}
._8{width:14.328000px;}
._c{width:16.953840px;}
._4{width:65.332152px;}
._2{width:333.136944px;}
._a{width:513.237672px;}
._b{width:565.236000px;}
._3{width:1198.213920px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:42.120000px;}
.fs6{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:60.120000px;}
.fs2{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.880000px;}
.y13a{bottom:2.970000px;}
.yae{bottom:3.240000px;}
.ye{bottom:3.870000px;}
.yb{bottom:18.450000px;}
.yc1{bottom:20.520000px;}
.yb0{bottom:37.710000px;}
.yac{bottom:37.800000px;}
.yb5{bottom:54.990000px;}
.y5{bottom:56.520000px;}
.y34{bottom:65.430000px;}
.y33{bottom:93.330000px;}
.y2f{bottom:122.130000px;}
.y55{bottom:125.100000px;}
.yfb{bottom:125.370000px;}
.y82{bottom:128.250000px;}
.ycc{bottom:128.610000px;}
.yed{bottom:129.600000px;}
.ya6{bottom:133.200000px;}
.y6f{bottom:133.920000px;}
.y136{bottom:147.321360px;}
.yd6{bottom:150.300000px;}
.y2e{bottom:153.180000px;}
.ye8{bottom:153.360000px;}
.yfa{bottom:156.420000px;}
.y81{bottom:159.300000px;}
.y10f{bottom:159.570000px;}
.ycb{bottom:159.660000px;}
.yec{bottom:160.650000px;}
.y54{bottom:163.710000px;}
.ya5{bottom:164.250000px;}
.y6e{bottom:164.880000px;}
.y135{bottom:178.824240px;}
.yd5{bottom:181.350000px;}
.y10e{bottom:182.070000px;}
.y2d{bottom:184.230000px;}
.ye7{bottom:184.410000px;}
.y80{bottom:190.350000px;}
.yca{bottom:190.710000px;}
.yeb{bottom:191.700000px;}
.y53{bottom:194.760000px;}
.ya4{bottom:195.300000px;}
.y6d{bottom:195.930000px;}
.yf9{bottom:196.470000px;}
.y10d{bottom:204.570000px;}
.y134{bottom:210.327120px;}
.yd4{bottom:212.400000px;}
.y2c{bottom:215.280000px;}
.ye6{bottom:215.460000px;}
.y7f{bottom:221.400000px;}
.yea{bottom:222.750000px;}
.y52{bottom:225.810000px;}
.ya3{bottom:226.350000px;}
.y6c{bottom:226.980000px;}
.yf8{bottom:227.520000px;}
.yc9{bottom:230.760000px;}
.y10c{bottom:236.070000px;}
.y133{bottom:241.830000px;}
.yd3{bottom:243.450000px;}
.y2b{bottom:246.330000px;}
.ye5{bottom:246.510000px;}
.y7e{bottom:252.450000px;}
.ye9{bottom:253.800000px;}
.y51{bottom:256.860000px;}
.y6b{bottom:258.030000px;}
.yf7{bottom:258.570000px;}
.yc8{bottom:261.810000px;}
.ya2{bottom:266.400000px;}
.y132{bottom:273.330000px;}
.yd2{bottom:274.500000px;}
.y2a{bottom:277.290000px;}
.ye4{bottom:277.560000px;}
.y10b{bottom:281.070000px;}
.y7d{bottom:283.500000px;}
.y50{bottom:286.290000px;}
.y6a{bottom:289.080000px;}
.yf6{bottom:289.620000px;}
.yc7{bottom:292.860000px;}
.y131{bottom:295.830000px;}
.ya1{bottom:297.450000px;}
.yd1{bottom:305.550000px;}
.y29{bottom:308.340000px;}
.ye3{bottom:308.610000px;}
.y10a{bottom:312.570000px;}
.y4f{bottom:314.550000px;}
.y69{bottom:320.130000px;}
.yf5{bottom:320.670000px;}
.y8f{bottom:323.550000px;}
.yc6{bottom:323.910000px;}
.y130{bottom:327.330000px;}
.ya0{bottom:328.500000px;}
.y109{bottom:335.070000px;}
.yd0{bottom:336.600000px;}
.ye2{bottom:339.660000px;}
.y8e{bottom:343.890000px;}
.y7c{bottom:345.600000px;}
.y28{bottom:348.390000px;}
.y68{bottom:349.560000px;}
.y12f{bottom:349.830000px;}
.yf4{bottom:351.720000px;}
.y4e{bottom:354.600000px;}
.yc5{bottom:354.960000px;}
.y108{bottom:357.570000px;}
.y9f{bottom:359.550000px;}
.y12e{bottom:372.330000px;}
.y7b{bottom:376.650000px;}
.y67{bottom:377.820000px;}
.y8d{bottom:378.720000px;}
.y27{bottom:379.440000px;}
.ye1{bottom:379.710000px;}
.yf3{bottom:382.770000px;}
.y4d{bottom:385.650000px;}
.yc4{bottom:386.010000px;}
.y107{bottom:389.070000px;}
.y9e{bottom:390.600000px;}
.y12d{bottom:394.830000px;}
.y7a{bottom:407.700000px;}
.y26{bottom:410.490000px;}
.ye0{bottom:410.760000px;}
.y106{bottom:411.570000px;}
.yf2{bottom:413.820000px;}
.yc3{bottom:415.440000px;}
.y4c{bottom:416.700000px;}
.y66{bottom:417.870000px;}
.y9d{bottom:421.650000px;}
.y12c{bottom:426.330000px;}
.y105{bottom:434.070000px;}
.y79{bottom:438.750000px;}
.y25{bottom:441.540000px;}
.ydf{bottom:441.810000px;}
.yf1{bottom:444.870000px;}
.y4b{bottom:447.750000px;}
.y12b{bottom:448.830000px;}
.y65{bottom:448.920000px;}
.y9c{bottom:452.700000px;}
.yc2{bottom:454.050000px;}
.y104{bottom:465.570000px;}
.ya9{bottom:469.800000px;}
.y12a{bottom:471.330000px;}
.y24{bottom:472.590000px;}
.yde{bottom:472.860000px;}
.yf0{bottom:475.920000px;}
.y4a{bottom:478.800000px;}
.y64{bottom:479.970000px;}
.yc0{bottom:480.600000px;}
.y9b{bottom:483.750000px;}
.y103{bottom:488.070000px;}
.ya8{bottom:500.850000px;}
.y129{bottom:502.830000px;}
.y23{bottom:503.640000px;}
.ydd{bottom:503.910000px;}
.yef{bottom:505.357470px;}
.y49{bottom:509.850000px;}
.y102{bottom:510.570000px;}
.y63{bottom:511.020000px;}
.y9a{bottom:514.800000px;}
.ybd{bottom:515.880000px;}
.y128{bottom:525.330000px;}
.ya7{bottom:531.900000px;}
.yee{bottom:533.340000px;}
.y22{bottom:534.690000px;}
.ydc{bottom:534.960000px;}
.ybf{bottom:536.305500px;}
.y78{bottom:540.900000px;}
.y62{bottom:542.070000px;}
.y99{bottom:545.760000px;}
.y127{bottom:547.830000px;}
.y48{bottom:549.900000px;}
.ybe{bottom:553.590000px;}
.ycf{bottom:562.950000px;}
.y101{bottom:564.570000px;}
.y21{bottom:565.740000px;}
.ydb{bottom:566.010000px;}
.y126{bottom:570.330000px;}
.y77{bottom:571.950000px;}
.y61{bottom:573.120000px;}
.y98{bottom:576.810000px;}
.y47{bottom:580.950000px;}
.ybb{bottom:585.630000px;}
.yce{bottom:594.000000px;}
.y100{bottom:596.070000px;}
.y20{bottom:596.790000px;}
.yda{bottom:597.060000px;}
.y125{bottom:601.830000px;}
.y76{bottom:603.000000px;}
.y60{bottom:604.170000px;}
.ybc{bottom:606.060000px;}
.y97{bottom:607.860000px;}
.y46{bottom:612.000000px;}
.yff{bottom:618.570000px;}
.y124{bottom:624.330000px;}
.ycd{bottom:625.050000px;}
.y1f{bottom:626.490000px;}
.yd9{bottom:628.110000px;}
.y75{bottom:634.050000px;}
.y5f{bottom:635.220000px;}
.yb8{bottom:638.100000px;}
.y96{bottom:638.910000px;}
.y45{bottom:643.050000px;}
.y123{bottom:646.830000px;}
.yfe{bottom:650.070000px;}
.y1e{bottom:658.466550px;}
.yba{bottom:658.615680px;}
.y8c{bottom:658.890000px;}
.yd8{bottom:659.160000px;}
.y5e{bottom:664.650000px;}
.y74{bottom:665.100000px;}
.y95{bottom:669.960000px;}
.yfd{bottom:672.570000px;}
.y44{bottom:674.100000px;}
.yb9{bottom:675.810000px;}
.y122{bottom:678.330000px;}
.y1d{bottom:687.714930px;}
.yd7{bottom:688.590000px;}
.yfc{bottom:695.070000px;}
.y73{bottom:696.150000px;}
.y121{bottom:700.830000px;}
.y94{bottom:701.010000px;}
.y5d{bottom:703.260000px;}
.y1c{bottom:704.999430px;}
.y43{bottom:705.150000px;}
.yb4{bottom:707.850000px;}
.y1b{bottom:722.283930px;}
.y120{bottom:723.330000px;}
.y72{bottom:727.200000px;}
.yb7{bottom:728.365680px;}
.y93{bottom:730.440000px;}
.y5c{bottom:734.310000px;}
.y42{bottom:736.200000px;}
.y1a{bottom:739.478250px;}
.yb6{bottom:745.560000px;}
.y11f{bottom:754.830000px;}
.y19{bottom:756.762750px;}
.y71{bottom:758.250000px;}
.y41{bottom:767.250000px;}
.y92{bottom:769.050000px;}
.y146{bottom:772.560000px;}
.y18{bottom:774.047250px;}
.y5b{bottom:774.360000px;}
.y11e{bottom:777.330000px;}
.yb2{bottom:777.600000px;}
.y70{bottom:789.210000px;}
.y17{bottom:791.241570px;}
.yb3{bottom:798.030000px;}
.y40{bottom:798.210000px;}
.y145{bottom:804.060000px;}
.y91{bottom:805.320000px;}
.y16{bottom:808.526070px;}
.y11d{bottom:808.830000px;}
.y5a{bottom:814.410000px;}
.y8b{bottom:820.260000px;}
.y144{bottom:821.610000px;}
.y15{bottom:825.810570px;}
.y3f{bottom:829.260000px;}
.yaf{bottom:830.070000px;}
.y11c{bottom:831.330000px;}
.y14{bottom:843.004890px;}
.y59{bottom:845.460000px;}
.yb1{bottom:850.590000px;}
.y8a{bottom:851.310000px;}
.y11b{bottom:853.830000px;}
.y13{bottom:860.289390px;}
.y3e{bottom:860.310000px;}
.y143{bottom:862.830000px;}
.y12{bottom:877.573890px;}
.y89{bottom:882.360000px;}
.yab{bottom:882.540000px;}
.y11a{bottom:885.330000px;}
.y58{bottom:885.510000px;}
.y3d{bottom:891.360000px;}
.y11{bottom:894.768210px;}
.yad{bottom:903.060000px;}
.y119{bottom:907.830000px;}
.y10{bottom:912.052710px;}
.y88{bottom:913.410000px;}
.y57{bottom:916.560000px;}
.y3c{bottom:922.410000px;}
.y142{bottom:925.830000px;}
.y118{bottom:930.330000px;}
.yf{bottom:938.250000px;}
.y87{bottom:944.460000px;}
.y56{bottom:945.900000px;}
.yaa{bottom:947.250000px;}
.y3b{bottom:953.460000px;}
.y141{bottom:956.880000px;}
.y117{bottom:961.830000px;}
.yd{bottom:962.100000px;}
.y140{bottom:972.450000px;}
.y86{bottom:975.510000px;}
.ya{bottom:980.370000px;}
.y116{bottom:984.330000px;}
.y3a{bottom:984.510000px;}
.y13f{bottom:1003.500000px;}
.y85{bottom:1006.560000px;}
.y39{bottom:1015.560000px;}
.y115{bottom:1015.830000px;}
.y13e{bottom:1018.980000px;}
.y9{bottom:1019.610000px;}
.y90{bottom:1031.400000px;}
.y13d{bottom:1034.550000px;}
.y84{bottom:1037.610000px;}
.y114{bottom:1038.330000px;}
.y38{bottom:1046.610000px;}
.y8{bottom:1049.760000px;}
.y13c{bottom:1050.030000px;}
.y113{bottom:1060.830000px;}
.y13b{bottom:1065.600000px;}
.y83{bottom:1068.660000px;}
.y37{bottom:1077.660000px;}
.y7{bottom:1078.830000px;}
.y139{bottom:1081.080000px;}
.y112{bottom:1092.330000px;}
.y138{bottom:1096.650000px;}
.y6{bottom:1099.530000px;}
.y36{bottom:1108.710000px;}
.y137{bottom:1112.130000px;}
.y111{bottom:1114.830000px;}
.y110{bottom:1137.330000px;}
.y35{bottom:1139.760000px;}
.y4{bottom:1151.818650px;}
.y32{bottom:1170.000000px;}
.y3{bottom:1175.040000px;}
.y2{bottom:1198.258650px;}
.y31{bottom:1201.315500px;}
.y30{bottom:1218.600000px;}
.y1{bottom:1221.480000px;}
.h17{height:15.480000px;}
.h18{height:15.570000px;}
.h9{height:17.550000px;}
.h7{height:31.050000px;}
.h14{height:34.470000px;}
.h6{height:35.332031px;}
.h1a{height:42.125098px;}
.h19{height:50.171484px;}
.h15{height:51.548203px;}
.h10{height:51.750000px;}
.hf{height:51.751500px;}
.h16{height:52.971680px;}
.h8{height:52.998047px;}
.ha{height:54.421875px;}
.h3{height:59.004492px;}
.h2{height:60.589687px;}
.hc{height:66.394687px;}
.h5{height:66.569063px;}
.h13{height:68.940000px;}
.h12{height:69.030000px;}
.h11{height:69.031500px;}
.hd{height:70.628906px;}
.hb{height:70.664062px;}
.h4{height:72.562500px;}
.he{height:75.093750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:25.021500px;}
.wb{width:77.130000px;}
.w7{width:84.151500px;}
.wc{width:91.710000px;}
.w9{width:98.191500px;}
.w8{width:106.468500px;}
.wa{width:107.190000px;}
.wd{width:115.470000px;}
.w10{width:180.630000px;}
.we{width:191.430000px;}
.w4{width:198.360000px;}
.w3{width:212.580000px;}
.w6{width:244.438500px;}
.wf{width:308.340000px;}
.w11{width:679.590000px;}
.w2{width:680.400000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:8.100000px;}
.x2d{left:10.260000px;}
.x2b{left:12.240000px;}
.x38{left:13.500000px;}
.x2f{left:14.940000px;}
.x28{left:16.020000px;}
.x3d{left:18.360000px;}
.x51{left:19.530000px;}
.x1e{left:20.700000px;}
.x40{left:22.050000px;}
.x25{left:23.130000px;}
.x1c{left:24.570000px;}
.x23{left:25.740000px;}
.x36{left:26.820000px;}
.x42{left:28.170000px;}
.x34{left:29.430000px;}
.x21{left:31.590000px;}
.x31{left:33.570000px;}
.x33{left:37.800000px;}
.xe{left:40.050000px;}
.xc{left:47.610000px;}
.x4b{left:52.740000px;}
.x4a{left:55.980000px;}
.x12{left:61.290000px;}
.x4d{left:76.590000px;}
.x5{left:106.290000px;}
.x4f{left:108.990000px;}
.x30{left:115.020000px;}
.x6{left:117.450000px;}
.x3a{left:122.310000px;}
.x49{left:131.310000px;}
.x16{left:133.290000px;}
.x13{left:148.860000px;}
.x17{left:160.290000px;}
.x1a{left:176.760000px;}
.x18{left:185.940000px;}
.x1d{left:190.440000px;}
.x32{left:202.050000px;}
.x55{left:206.370000px;}
.x47{left:213.660000px;}
.x4e{left:219.060000px;}
.x43{left:220.320000px;}
.x1f{left:223.200000px;}
.xb{left:252.630000px;}
.x53{left:253.710000px;}
.x50{left:280.530000px;}
.x9{left:282.240000px;}
.x20{left:296.910000px;}
.xa{left:300.600000px;}
.x22{left:309.690000px;}
.x35{left:313.200000px;}
.x52{left:314.460000px;}
.x54{left:316.350000px;}
.xd{left:318.870000px;}
.x44{left:323.730000px;}
.x3b{left:331.380000px;}
.x7{left:371.250000px;}
.x8{left:379.620000px;}
.x24{left:395.100000px;}
.x26{left:406.620000px;}
.x37{left:422.010000px;}
.x45{left:433.260000px;}
.x14{left:458.730000px;}
.x27{left:502.290000px;}
.xf{left:517.230000px;}
.x29{left:527.940000px;}
.x2{left:530.471160px;}
.x11{left:542.250000px;}
.x2a{left:579.420000px;}
.x4c{left:606.060000px;}
.x1{left:615.060000px;}
.x4{left:633.412620px;}
.x3{left:667.170000px;}
.x2c{left:671.220000px;}
.x3f{left:679.590180px;}
.x46{left:682.290000px;}
.x39{left:688.680000px;}
.x3c{left:692.280000px;}
.x3e{left:694.530000px;}
.x48{left:696.420000px;}
.x41{left:704.700720px;}
.x2e{left:711.450000px;}
.x19{left:729.360000px;}
.x15{left:749.790000px;}
.x1b{left:766.260000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.440000pt;}
.ls16{letter-spacing:-0.427520pt;}
.ls23{letter-spacing:-0.374080pt;}
.ls2b{letter-spacing:-0.320640pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.267200pt;}
.ls6{letter-spacing:-0.213760pt;}
.ls10{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.160320pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.106880pt;}
.lsf{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.058560pt;}
.ls7{letter-spacing:-0.053440pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.022400pt;}
.ls8{letter-spacing:0.053440pt;}
.ls17{letter-spacing:0.058560pt;}
.lsa{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.080160pt;}
.ls3{letter-spacing:0.085504pt;}
.lse{letter-spacing:0.096000pt;}
.ls2a{letter-spacing:0.101760pt;}
.ls0{letter-spacing:0.106880pt;}
.ls29{letter-spacing:0.112320pt;}
.ls22{letter-spacing:0.124480pt;}
.ls12{letter-spacing:0.128000pt;}
.ls2f{letter-spacing:0.129280pt;}
.ls2e{letter-spacing:0.131200pt;}
.ls2d{letter-spacing:0.133600pt;}
.lsd{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.149760pt;}
.ls14{letter-spacing:0.153600pt;}
.ls1{letter-spacing:0.160320pt;}
.ls18{letter-spacing:0.175680pt;}
.ls1e{letter-spacing:0.203072pt;}
.ls21{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.960000pt;}
.ls1c{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.977280pt;}
.ls2c{letter-spacing:2.618560pt;}
.ls15{letter-spacing:4.800000pt;}
.ls1f{letter-spacing:5.760000pt;}
.ls27{letter-spacing:7.360000pt;}
.ls24{letter-spacing:8.320000pt;}
.ls19{letter-spacing:12.800000pt;}
.ls30{letter-spacing:14.802880pt;}
.ls25{letter-spacing:16.000000pt;}
.ls26{letter-spacing:19.840000pt;}
.ls1a{letter-spacing:30.208000pt;}
.ws54{word-spacing:-16.128000pt;}
.ws2f{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.872000pt;}
.wsc6{word-spacing:-14.640000pt;}
.ws30{word-spacing:-14.581440pt;}
.ws0{word-spacing:-13.520320pt;}
.wsa{word-spacing:-13.466880pt;}
.ws4{word-spacing:-13.413440pt;}
.ws1{word-spacing:-13.360000pt;}
.ws3{word-spacing:-13.306560pt;}
.wsc5{word-spacing:-13.253120pt;}
.ws2{word-spacing:-13.199680pt;}
.ws2e{word-spacing:-13.146240pt;}
.wsee{word-spacing:-13.039360pt;}
.ws102{word-spacing:-12.985920pt;}
.ws2d{word-spacing:-12.932480pt;}
.ws6{word-spacing:-12.144000pt;}
.ws7{word-spacing:-12.096000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws11f{word-spacing:-11.863680pt;}
.ws120{word-spacing:-11.756800pt;}
.ws5{word-spacing:-8.000000pt;}
.wse6{word-spacing:-3.968000pt;}
.wsb7{word-spacing:-3.904000pt;}
.ws3d{word-spacing:-3.840000pt;}
.wsa9{word-spacing:-3.648000pt;}
.ws25{word-spacing:-3.584000pt;}
.ws43{word-spacing:-3.520000pt;}
.ws4a{word-spacing:-3.328000pt;}
.ws63{word-spacing:-3.264000pt;}
.ws49{word-spacing:-3.200000pt;}
.ws10b{word-spacing:-3.046080pt;}
.ws82{word-spacing:-3.008000pt;}
.wsc0{word-spacing:-2.944000pt;}
.ws62{word-spacing:-2.880000pt;}
.wsa7{word-spacing:-2.624000pt;}
.wsfe{word-spacing:-2.565120pt;}
.ws67{word-spacing:-2.560000pt;}
.wsb1{word-spacing:-2.368000pt;}
.ws8c{word-spacing:-2.304000pt;}
.ws2b{word-spacing:-2.240000pt;}
.wsda{word-spacing:-2.048000pt;}
.ws6c{word-spacing:-1.984000pt;}
.ws29{word-spacing:-1.920000pt;}
.wsc2{word-spacing:-1.728000pt;}
.ws1f{word-spacing:-1.664000pt;}
.wsf5{word-spacing:-1.656640pt;}
.ws72{word-spacing:-1.600000pt;}
.ws81{word-spacing:-1.408000pt;}
.ws84{word-spacing:-1.344000pt;}
.wsff{word-spacing:-1.282560pt;}
.ws20{word-spacing:-1.280000pt;}
.ws3e{word-spacing:-1.088000pt;}
.ws96{word-spacing:-1.024000pt;}
.ws91{word-spacing:-0.960000pt;}
.ws7b{word-spacing:-0.768000pt;}
.wscb{word-spacing:-0.704000pt;}
.wsfd{word-spacing:-0.641280pt;}
.ws7a{word-spacing:-0.640000pt;}
.ws24{word-spacing:-0.448000pt;}
.ws74{word-spacing:-0.384000pt;}
.ws1a{word-spacing:-0.374080pt;}
.ws10{word-spacing:-0.320640pt;}
.ws23{word-spacing:-0.320000pt;}
.ws122{word-spacing:-0.240000pt;}
.wsac{word-spacing:-0.175680pt;}
.wsf{word-spacing:-0.160320pt;}
.ws16{word-spacing:-0.149760pt;}
.ws18{word-spacing:-0.144000pt;}
.ws35{word-spacing:-0.128000pt;}
.ws53{word-spacing:-0.117120pt;}
.ws12{word-spacing:-0.106880pt;}
.ws124{word-spacing:-0.096000pt;}
.ws14{word-spacing:-0.064000pt;}
.wsde{word-spacing:-0.058560pt;}
.ws11{word-spacing:-0.053440pt;}
.wsd{word-spacing:0.000000pt;}
.ws123{word-spacing:0.048000pt;}
.wsca{word-spacing:0.053440pt;}
.ws15{word-spacing:0.058560pt;}
.ws32{word-spacing:0.106880pt;}
.ws5a{word-spacing:0.117120pt;}
.ws17{word-spacing:0.144000pt;}
.ws13{word-spacing:0.160320pt;}
.ws19{word-spacing:0.192000pt;}
.wse{word-spacing:0.213760pt;}
.ws121{word-spacing:0.240000pt;}
.wsb2{word-spacing:0.256000pt;}
.ws1b{word-spacing:0.267200pt;}
.ws9e{word-spacing:0.320000pt;}
.wsfa{word-spacing:0.320640pt;}
.wsc9{word-spacing:0.374080pt;}
.ws4d{word-spacing:0.512000pt;}
.wsbc{word-spacing:0.576000pt;}
.ws11a{word-spacing:0.587840pt;}
.ws48{word-spacing:0.640000pt;}
.wsa0{word-spacing:0.832000pt;}
.ws47{word-spacing:0.896000pt;}
.ws5e{word-spacing:0.960000pt;}
.ws9b{word-spacing:1.152000pt;}
.ws4f{word-spacing:1.216000pt;}
.ws28{word-spacing:1.280000pt;}
.ws36{word-spacing:1.536000pt;}
.ws27{word-spacing:1.600000pt;}
.ws73{word-spacing:1.792000pt;}
.wsfc{word-spacing:1.816960pt;}
.ws56{word-spacing:1.856000pt;}
.ws10a{word-spacing:1.870400pt;}
.ws90{word-spacing:1.920000pt;}
.ws33{word-spacing:2.030720pt;}
.ws31{word-spacing:2.084160pt;}
.ws8a{word-spacing:2.112000pt;}
.ws100{word-spacing:2.137600pt;}
.wsfb{word-spacing:2.191040pt;}
.ws76{word-spacing:2.240000pt;}
.ws101{word-spacing:2.404800pt;}
.wsdd{word-spacing:2.432000pt;}
.ws104{word-spacing:2.458240pt;}
.wsb0{word-spacing:2.496000pt;}
.ws11e{word-spacing:2.511680pt;}
.ws7c{word-spacing:2.560000pt;}
.ws103{word-spacing:2.672000pt;}
.wsbb{word-spacing:2.752000pt;}
.wsa6{word-spacing:2.816000pt;}
.ws87{word-spacing:2.880000pt;}
.wsec{word-spacing:3.072000pt;}
.wseb{word-spacing:3.136000pt;}
.ws42{word-spacing:3.200000pt;}
.ws38{word-spacing:3.392000pt;}
.ws41{word-spacing:3.456000pt;}
.ws10c{word-spacing:3.473600pt;}
.ws37{word-spacing:3.520000pt;}
.wsa1{word-spacing:3.712000pt;}
.wsa8{word-spacing:3.776000pt;}
.ws6e{word-spacing:3.840000pt;}
.ws69{word-spacing:4.032000pt;}
.wsf9{word-spacing:4.061440pt;}
.wscf{word-spacing:4.096000pt;}
.ws68{word-spacing:4.160000pt;}
.wsf8{word-spacing:4.275200pt;}
.wsf4{word-spacing:4.382080pt;}
.ws3f{word-spacing:4.416000pt;}
.ws117{word-spacing:4.702720pt;}
.ws44{word-spacing:4.736000pt;}
.wsf3{word-spacing:4.756160pt;}
.ws40{word-spacing:4.800000pt;}
.ws116{word-spacing:4.916480pt;}
.wscc{word-spacing:4.992000pt;}
.wsf6{word-spacing:5.023360pt;}
.ws89{word-spacing:5.120000pt;}
.wsbf{word-spacing:5.376000pt;}
.ws3c{word-spacing:5.440000pt;}
.ws6a{word-spacing:5.632000pt;}
.ws98{word-spacing:5.696000pt;}
.wsd5{word-spacing:5.760000pt;}
.ws11b{word-spacing:5.985280pt;}
.ws9a{word-spacing:6.016000pt;}
.ws99{word-spacing:6.080000pt;}
.wsb3{word-spacing:6.272000pt;}
.ws11c{word-spacing:6.305920pt;}
.wsb4{word-spacing:6.336000pt;}
.ws22{word-spacing:6.400000pt;}
.ws11d{word-spacing:6.573120pt;}
.ws92{word-spacing:6.592000pt;}
.ws66{word-spacing:6.656000pt;}
.ws52{word-spacing:6.720000pt;}
.wsc3{word-spacing:6.912000pt;}
.wsc4{word-spacing:6.976000pt;}
.ws2a{word-spacing:7.040000pt;}
.wse5{word-spacing:7.232000pt;}
.wsf7{word-spacing:7.267840pt;}
.wsdf{word-spacing:7.296000pt;}
.ws77{word-spacing:7.360000pt;}
.ws4e{word-spacing:7.552000pt;}
.wsd0{word-spacing:7.616000pt;}
.ws26{word-spacing:7.680000pt;}
.wsba{word-spacing:7.936000pt;}
.ws108{word-spacing:7.962560pt;}
.ws39{word-spacing:8.000000pt;}
.ws107{word-spacing:8.122880pt;}
.ws8d{word-spacing:8.192000pt;}
.ws109{word-spacing:8.229760pt;}
.wsb9{word-spacing:8.256000pt;}
.wsc1{word-spacing:8.320000pt;}
.ws8e{word-spacing:8.512000pt;}
.ws75{word-spacing:8.640000pt;}
.ws113{word-spacing:8.764160pt;}
.wse4{word-spacing:8.832000pt;}
.ws110{word-spacing:8.871040pt;}
.ws112{word-spacing:8.924480pt;}
.ws70{word-spacing:8.960000pt;}
.wse9{word-spacing:9.152000pt;}
.ws111{word-spacing:9.191680pt;}
.ws10f{word-spacing:9.245120pt;}
.ws1c{word-spacing:9.280000pt;}
.ws7d{word-spacing:9.600000pt;}
.ws106{word-spacing:9.726080pt;}
.wsd9{word-spacing:9.792000pt;}
.ws51{word-spacing:9.920000pt;}
.ws6f{word-spacing:10.112000pt;}
.ws79{word-spacing:10.176000pt;}
.ws78{word-spacing:10.240000pt;}
.ws71{word-spacing:10.496000pt;}
.ws6b{word-spacing:10.560000pt;}
.ws94{word-spacing:10.752000pt;}
.ws95{word-spacing:10.880000pt;}
.ws1d{word-spacing:11.072000pt;}
.wsbe{word-spacing:11.136000pt;}
.ws105{word-spacing:11.168960pt;}
.ws1e{word-spacing:11.200000pt;}
.wsb6{word-spacing:11.392000pt;}
.ws9f{word-spacing:11.520000pt;}
.wsf0{word-spacing:11.712000pt;}
.wsd1{word-spacing:12.032000pt;}
.wsd2{word-spacing:12.096000pt;}
.ws50{word-spacing:12.160000pt;}
.ws34{word-spacing:12.352000pt;}
.wsa5{word-spacing:12.416000pt;}
.wsa4{word-spacing:12.480000pt;}
.ws8b{word-spacing:12.672000pt;}
.ws59{word-spacing:12.800000pt;}
.wsae{word-spacing:12.992000pt;}
.wsaf{word-spacing:13.056000pt;}
.wsd4{word-spacing:13.120000pt;}
.wsed{word-spacing:13.312000pt;}
.ws21{word-spacing:13.440000pt;}
.ws65{word-spacing:13.952000pt;}
.ws119{word-spacing:14.001280pt;}
.ws8f{word-spacing:14.016000pt;}
.ws3b{word-spacing:14.080000pt;}
.ws118{word-spacing:14.215040pt;}
.ws3a{word-spacing:14.336000pt;}
.ws126{word-spacing:14.375360pt;}
.ws10d{word-spacing:14.535680pt;}
.ws10e{word-spacing:14.589120pt;}
.ws125{word-spacing:14.642560pt;}
.ws57{word-spacing:14.656000pt;}
.ws127{word-spacing:14.749440pt;}
.ws7f{word-spacing:15.040000pt;}
.wsb8{word-spacing:15.296000pt;}
.wsaa{word-spacing:15.552000pt;}
.wsa2{word-spacing:15.616000pt;}
.wsc7{word-spacing:15.872000pt;}
.wsd8{word-spacing:15.936000pt;}
.wsa3{word-spacing:16.000000pt;}
.ws85{word-spacing:16.192000pt;}
.wsf1{word-spacing:16.256000pt;}
.wsc8{word-spacing:16.320000pt;}
.wsd6{word-spacing:16.640000pt;}
.wsd7{word-spacing:17.152000pt;}
.wsb5{word-spacing:17.472000pt;}
.ws9c{word-spacing:17.536000pt;}
.ws83{word-spacing:17.792000pt;}
.ws80{word-spacing:17.856000pt;}
.ws6d{word-spacing:17.920000pt;}
.ws7e{word-spacing:18.240000pt;}
.ws97{word-spacing:18.560000pt;}
.ws4b{word-spacing:18.880000pt;}
.wsf2{word-spacing:19.136000pt;}
.wse3{word-spacing:19.200000pt;}
.wsdc{word-spacing:19.392000pt;}
.wscd{word-spacing:19.520000pt;}
.wsdb{word-spacing:19.840000pt;}
.wsea{word-spacing:20.096000pt;}
.wsd3{word-spacing:20.480000pt;}
.ws4c{word-spacing:20.800000pt;}
.ws64{word-spacing:21.120000pt;}
.ws114{word-spacing:21.696640pt;}
.ws5d{word-spacing:22.016000pt;}
.ws115{word-spacing:22.017280pt;}
.ws9d{word-spacing:22.400000pt;}
.wsad{word-spacing:22.720000pt;}
.ws55{word-spacing:22.976000pt;}
.ws86{word-spacing:24.640000pt;}
.wse2{word-spacing:25.472000pt;}
.wsbd{word-spacing:25.792000pt;}
.ws2c{word-spacing:25.920000pt;}
.wsce{word-spacing:26.112000pt;}
.ws61{word-spacing:26.816000pt;}
.ws60{word-spacing:26.880000pt;}
.wse0{word-spacing:27.520000pt;}
.ws93{word-spacing:27.840000pt;}
.wsab{word-spacing:28.672000pt;}
.ws46{word-spacing:30.080000pt;}
.ws45{word-spacing:30.400000pt;}
.ws5c{word-spacing:31.296000pt;}
.ws5b{word-spacing:31.360000pt;}
.wse1{word-spacing:32.896000pt;}
.ws88{word-spacing:33.280000pt;}
.wsef{word-spacing:34.240000pt;}
.wse8{word-spacing:34.816000pt;}
.wse7{word-spacing:34.880000pt;}
.ws5f{word-spacing:44.032000pt;}
.ws58{word-spacing:74.560000pt;}
._7{margin-left:-3.712000pt;}
._5{margin-left:-2.432000pt;}
._1{margin-left:-0.988640pt;}
._0{width:1.036736pt;}
._6{width:2.511680pt;}
._9{width:3.644608pt;}
._8{width:12.736000pt;}
._c{width:15.070080pt;}
._4{width:58.073024pt;}
._2{width:296.121728pt;}
._a{width:456.211264pt;}
._b{width:502.432000pt;}
._3{width:1065.079040pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:37.440000pt;}
.fs6{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.440000pt;}
.fs2{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.560000pt;}
.y13a{bottom:2.640000pt;}
.yae{bottom:2.880000pt;}
.ye{bottom:3.440000pt;}
.yb{bottom:16.400000pt;}
.yc1{bottom:18.240000pt;}
.yb0{bottom:33.520000pt;}
.yac{bottom:33.600000pt;}
.yb5{bottom:48.880000pt;}
.y5{bottom:50.240000pt;}
.y34{bottom:58.160000pt;}
.y33{bottom:82.960000pt;}
.y2f{bottom:108.560000pt;}
.y55{bottom:111.200000pt;}
.yfb{bottom:111.440000pt;}
.y82{bottom:114.000000pt;}
.ycc{bottom:114.320000pt;}
.yed{bottom:115.200000pt;}
.ya6{bottom:118.400000pt;}
.y6f{bottom:119.040000pt;}
.y136{bottom:130.952320pt;}
.yd6{bottom:133.600000pt;}
.y2e{bottom:136.160000pt;}
.ye8{bottom:136.320000pt;}
.yfa{bottom:139.040000pt;}
.y81{bottom:141.600000pt;}
.y10f{bottom:141.840000pt;}
.ycb{bottom:141.920000pt;}
.yec{bottom:142.800000pt;}
.y54{bottom:145.520000pt;}
.ya5{bottom:146.000000pt;}
.y6e{bottom:146.560000pt;}
.y135{bottom:158.954880pt;}
.yd5{bottom:161.200000pt;}
.y10e{bottom:161.840000pt;}
.y2d{bottom:163.760000pt;}
.ye7{bottom:163.920000pt;}
.y80{bottom:169.200000pt;}
.yca{bottom:169.520000pt;}
.yeb{bottom:170.400000pt;}
.y53{bottom:173.120000pt;}
.ya4{bottom:173.600000pt;}
.y6d{bottom:174.160000pt;}
.yf9{bottom:174.640000pt;}
.y10d{bottom:181.840000pt;}
.y134{bottom:186.957440pt;}
.yd4{bottom:188.800000pt;}
.y2c{bottom:191.360000pt;}
.ye6{bottom:191.520000pt;}
.y7f{bottom:196.800000pt;}
.yea{bottom:198.000000pt;}
.y52{bottom:200.720000pt;}
.ya3{bottom:201.200000pt;}
.y6c{bottom:201.760000pt;}
.yf8{bottom:202.240000pt;}
.yc9{bottom:205.120000pt;}
.y10c{bottom:209.840000pt;}
.y133{bottom:214.960000pt;}
.yd3{bottom:216.400000pt;}
.y2b{bottom:218.960000pt;}
.ye5{bottom:219.120000pt;}
.y7e{bottom:224.400000pt;}
.ye9{bottom:225.600000pt;}
.y51{bottom:228.320000pt;}
.y6b{bottom:229.360000pt;}
.yf7{bottom:229.840000pt;}
.yc8{bottom:232.720000pt;}
.ya2{bottom:236.800000pt;}
.y132{bottom:242.960000pt;}
.yd2{bottom:244.000000pt;}
.y2a{bottom:246.480000pt;}
.ye4{bottom:246.720000pt;}
.y10b{bottom:249.840000pt;}
.y7d{bottom:252.000000pt;}
.y50{bottom:254.480000pt;}
.y6a{bottom:256.960000pt;}
.yf6{bottom:257.440000pt;}
.yc7{bottom:260.320000pt;}
.y131{bottom:262.960000pt;}
.ya1{bottom:264.400000pt;}
.yd1{bottom:271.600000pt;}
.y29{bottom:274.080000pt;}
.ye3{bottom:274.320000pt;}
.y10a{bottom:277.840000pt;}
.y4f{bottom:279.600000pt;}
.y69{bottom:284.560000pt;}
.yf5{bottom:285.040000pt;}
.y8f{bottom:287.600000pt;}
.yc6{bottom:287.920000pt;}
.y130{bottom:290.960000pt;}
.ya0{bottom:292.000000pt;}
.y109{bottom:297.840000pt;}
.yd0{bottom:299.200000pt;}
.ye2{bottom:301.920000pt;}
.y8e{bottom:305.680000pt;}
.y7c{bottom:307.200000pt;}
.y28{bottom:309.680000pt;}
.y68{bottom:310.720000pt;}
.y12f{bottom:310.960000pt;}
.yf4{bottom:312.640000pt;}
.y4e{bottom:315.200000pt;}
.yc5{bottom:315.520000pt;}
.y108{bottom:317.840000pt;}
.y9f{bottom:319.600000pt;}
.y12e{bottom:330.960000pt;}
.y7b{bottom:334.800000pt;}
.y67{bottom:335.840000pt;}
.y8d{bottom:336.640000pt;}
.y27{bottom:337.280000pt;}
.ye1{bottom:337.520000pt;}
.yf3{bottom:340.240000pt;}
.y4d{bottom:342.800000pt;}
.yc4{bottom:343.120000pt;}
.y107{bottom:345.840000pt;}
.y9e{bottom:347.200000pt;}
.y12d{bottom:350.960000pt;}
.y7a{bottom:362.400000pt;}
.y26{bottom:364.880000pt;}
.ye0{bottom:365.120000pt;}
.y106{bottom:365.840000pt;}
.yf2{bottom:367.840000pt;}
.yc3{bottom:369.280000pt;}
.y4c{bottom:370.400000pt;}
.y66{bottom:371.440000pt;}
.y9d{bottom:374.800000pt;}
.y12c{bottom:378.960000pt;}
.y105{bottom:385.840000pt;}
.y79{bottom:390.000000pt;}
.y25{bottom:392.480000pt;}
.ydf{bottom:392.720000pt;}
.yf1{bottom:395.440000pt;}
.y4b{bottom:398.000000pt;}
.y12b{bottom:398.960000pt;}
.y65{bottom:399.040000pt;}
.y9c{bottom:402.400000pt;}
.yc2{bottom:403.600000pt;}
.y104{bottom:413.840000pt;}
.ya9{bottom:417.600000pt;}
.y12a{bottom:418.960000pt;}
.y24{bottom:420.080000pt;}
.yde{bottom:420.320000pt;}
.yf0{bottom:423.040000pt;}
.y4a{bottom:425.600000pt;}
.y64{bottom:426.640000pt;}
.yc0{bottom:427.200000pt;}
.y9b{bottom:430.000000pt;}
.y103{bottom:433.840000pt;}
.ya8{bottom:445.200000pt;}
.y129{bottom:446.960000pt;}
.y23{bottom:447.680000pt;}
.ydd{bottom:447.920000pt;}
.yef{bottom:449.206640pt;}
.y49{bottom:453.200000pt;}
.y102{bottom:453.840000pt;}
.y63{bottom:454.240000pt;}
.y9a{bottom:457.600000pt;}
.ybd{bottom:458.560000pt;}
.y128{bottom:466.960000pt;}
.ya7{bottom:472.800000pt;}
.yee{bottom:474.080000pt;}
.y22{bottom:475.280000pt;}
.ydc{bottom:475.520000pt;}
.ybf{bottom:476.716000pt;}
.y78{bottom:480.800000pt;}
.y62{bottom:481.840000pt;}
.y99{bottom:485.120000pt;}
.y127{bottom:486.960000pt;}
.y48{bottom:488.800000pt;}
.ybe{bottom:492.080000pt;}
.ycf{bottom:500.400000pt;}
.y101{bottom:501.840000pt;}
.y21{bottom:502.880000pt;}
.ydb{bottom:503.120000pt;}
.y126{bottom:506.960000pt;}
.y77{bottom:508.400000pt;}
.y61{bottom:509.440000pt;}
.y98{bottom:512.720000pt;}
.y47{bottom:516.400000pt;}
.ybb{bottom:520.560000pt;}
.yce{bottom:528.000000pt;}
.y100{bottom:529.840000pt;}
.y20{bottom:530.480000pt;}
.yda{bottom:530.720000pt;}
.y125{bottom:534.960000pt;}
.y76{bottom:536.000000pt;}
.y60{bottom:537.040000pt;}
.ybc{bottom:538.720000pt;}
.y97{bottom:540.320000pt;}
.y46{bottom:544.000000pt;}
.yff{bottom:549.840000pt;}
.y124{bottom:554.960000pt;}
.ycd{bottom:555.600000pt;}
.y1f{bottom:556.880000pt;}
.yd9{bottom:558.320000pt;}
.y75{bottom:563.600000pt;}
.y5f{bottom:564.640000pt;}
.yb8{bottom:567.200000pt;}
.y96{bottom:567.920000pt;}
.y45{bottom:571.600000pt;}
.y123{bottom:574.960000pt;}
.yfe{bottom:577.840000pt;}
.y1e{bottom:585.303600pt;}
.yba{bottom:585.436160pt;}
.y8c{bottom:585.680000pt;}
.yd8{bottom:585.920000pt;}
.y5e{bottom:590.800000pt;}
.y74{bottom:591.200000pt;}
.y95{bottom:595.520000pt;}
.yfd{bottom:597.840000pt;}
.y44{bottom:599.200000pt;}
.yb9{bottom:600.720000pt;}
.y122{bottom:602.960000pt;}
.y1d{bottom:611.302160pt;}
.yd7{bottom:612.080000pt;}
.yfc{bottom:617.840000pt;}
.y73{bottom:618.800000pt;}
.y121{bottom:622.960000pt;}
.y94{bottom:623.120000pt;}
.y5d{bottom:625.120000pt;}
.y1c{bottom:626.666160pt;}
.y43{bottom:626.800000pt;}
.yb4{bottom:629.200000pt;}
.y1b{bottom:642.030160pt;}
.y120{bottom:642.960000pt;}
.y72{bottom:646.400000pt;}
.yb7{bottom:647.436160pt;}
.y93{bottom:649.280000pt;}
.y5c{bottom:652.720000pt;}
.y42{bottom:654.400000pt;}
.y1a{bottom:657.314000pt;}
.yb6{bottom:662.720000pt;}
.y11f{bottom:670.960000pt;}
.y19{bottom:672.678000pt;}
.y71{bottom:674.000000pt;}
.y41{bottom:682.000000pt;}
.y92{bottom:683.600000pt;}
.y146{bottom:686.720000pt;}
.y18{bottom:688.042000pt;}
.y5b{bottom:688.320000pt;}
.y11e{bottom:690.960000pt;}
.yb2{bottom:691.200000pt;}
.y70{bottom:701.520000pt;}
.y17{bottom:703.325840pt;}
.yb3{bottom:709.360000pt;}
.y40{bottom:709.520000pt;}
.y145{bottom:714.720000pt;}
.y91{bottom:715.840000pt;}
.y16{bottom:718.689840pt;}
.y11d{bottom:718.960000pt;}
.y5a{bottom:723.920000pt;}
.y8b{bottom:729.120000pt;}
.y144{bottom:730.320000pt;}
.y15{bottom:734.053840pt;}
.y3f{bottom:737.120000pt;}
.yaf{bottom:737.840000pt;}
.y11c{bottom:738.960000pt;}
.y14{bottom:749.337680pt;}
.y59{bottom:751.520000pt;}
.yb1{bottom:756.080000pt;}
.y8a{bottom:756.720000pt;}
.y11b{bottom:758.960000pt;}
.y13{bottom:764.701680pt;}
.y3e{bottom:764.720000pt;}
.y143{bottom:766.960000pt;}
.y12{bottom:780.065680pt;}
.y89{bottom:784.320000pt;}
.yab{bottom:784.480000pt;}
.y11a{bottom:786.960000pt;}
.y58{bottom:787.120000pt;}
.y3d{bottom:792.320000pt;}
.y11{bottom:795.349520pt;}
.yad{bottom:802.720000pt;}
.y119{bottom:806.960000pt;}
.y10{bottom:810.713520pt;}
.y88{bottom:811.920000pt;}
.y57{bottom:814.720000pt;}
.y3c{bottom:819.920000pt;}
.y142{bottom:822.960000pt;}
.y118{bottom:826.960000pt;}
.yf{bottom:834.000000pt;}
.y87{bottom:839.520000pt;}
.y56{bottom:840.800000pt;}
.yaa{bottom:842.000000pt;}
.y3b{bottom:847.520000pt;}
.y141{bottom:850.560000pt;}
.y117{bottom:854.960000pt;}
.yd{bottom:855.200000pt;}
.y140{bottom:864.400000pt;}
.y86{bottom:867.120000pt;}
.ya{bottom:871.440000pt;}
.y116{bottom:874.960000pt;}
.y3a{bottom:875.120000pt;}
.y13f{bottom:892.000000pt;}
.y85{bottom:894.720000pt;}
.y39{bottom:902.720000pt;}
.y115{bottom:902.960000pt;}
.y13e{bottom:905.760000pt;}
.y9{bottom:906.320000pt;}
.y90{bottom:916.800000pt;}
.y13d{bottom:919.600000pt;}
.y84{bottom:922.320000pt;}
.y114{bottom:922.960000pt;}
.y38{bottom:930.320000pt;}
.y8{bottom:933.120000pt;}
.y13c{bottom:933.360000pt;}
.y113{bottom:942.960000pt;}
.y13b{bottom:947.200000pt;}
.y83{bottom:949.920000pt;}
.y37{bottom:957.920000pt;}
.y7{bottom:958.960000pt;}
.y139{bottom:960.960000pt;}
.y112{bottom:970.960000pt;}
.y138{bottom:974.800000pt;}
.y6{bottom:977.360000pt;}
.y36{bottom:985.520000pt;}
.y137{bottom:988.560000pt;}
.y111{bottom:990.960000pt;}
.y110{bottom:1010.960000pt;}
.y35{bottom:1013.120000pt;}
.y4{bottom:1023.838800pt;}
.y32{bottom:1040.000000pt;}
.y3{bottom:1044.480000pt;}
.y2{bottom:1065.118800pt;}
.y31{bottom:1067.836000pt;}
.y30{bottom:1083.200000pt;}
.y1{bottom:1085.760000pt;}
.h17{height:13.760000pt;}
.h18{height:13.840000pt;}
.h9{height:15.600000pt;}
.h7{height:27.600000pt;}
.h14{height:30.640000pt;}
.h6{height:31.406250pt;}
.h1a{height:37.444531pt;}
.h19{height:44.596875pt;}
.h15{height:45.820625pt;}
.h10{height:46.000000pt;}
.hf{height:46.001333pt;}
.h16{height:47.085938pt;}
.h8{height:47.109375pt;}
.ha{height:48.375000pt;}
.h3{height:52.448437pt;}
.h2{height:53.857500pt;}
.hc{height:59.017500pt;}
.h5{height:59.172500pt;}
.h13{height:61.280000pt;}
.h12{height:61.360000pt;}
.h11{height:61.361333pt;}
.hd{height:62.781250pt;}
.hb{height:62.812500pt;}
.h4{height:64.500000pt;}
.he{height:66.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:22.241333pt;}
.wb{width:68.560000pt;}
.w7{width:74.801333pt;}
.wc{width:81.520000pt;}
.w9{width:87.281333pt;}
.w8{width:94.638667pt;}
.wa{width:95.280000pt;}
.wd{width:102.640000pt;}
.w10{width:160.560000pt;}
.we{width:170.160000pt;}
.w4{width:176.320000pt;}
.w3{width:188.960000pt;}
.w6{width:217.278667pt;}
.wf{width:274.080000pt;}
.w11{width:604.080000pt;}
.w2{width:604.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:7.200000pt;}
.x2d{left:9.120000pt;}
.x2b{left:10.880000pt;}
.x38{left:12.000000pt;}
.x2f{left:13.280000pt;}
.x28{left:14.240000pt;}
.x3d{left:16.320000pt;}
.x51{left:17.360000pt;}
.x1e{left:18.400000pt;}
.x40{left:19.600000pt;}
.x25{left:20.560000pt;}
.x1c{left:21.840000pt;}
.x23{left:22.880000pt;}
.x36{left:23.840000pt;}
.x42{left:25.040000pt;}
.x34{left:26.160000pt;}
.x21{left:28.080000pt;}
.x31{left:29.840000pt;}
.x33{left:33.600000pt;}
.xe{left:35.600000pt;}
.xc{left:42.320000pt;}
.x4b{left:46.880000pt;}
.x4a{left:49.760000pt;}
.x12{left:54.480000pt;}
.x4d{left:68.080000pt;}
.x5{left:94.480000pt;}
.x4f{left:96.880000pt;}
.x30{left:102.240000pt;}
.x6{left:104.400000pt;}
.x3a{left:108.720000pt;}
.x49{left:116.720000pt;}
.x16{left:118.480000pt;}
.x13{left:132.320000pt;}
.x17{left:142.480000pt;}
.x1a{left:157.120000pt;}
.x18{left:165.280000pt;}
.x1d{left:169.280000pt;}
.x32{left:179.600000pt;}
.x55{left:183.440000pt;}
.x47{left:189.920000pt;}
.x4e{left:194.720000pt;}
.x43{left:195.840000pt;}
.x1f{left:198.400000pt;}
.xb{left:224.560000pt;}
.x53{left:225.520000pt;}
.x50{left:249.360000pt;}
.x9{left:250.880000pt;}
.x20{left:263.920000pt;}
.xa{left:267.200000pt;}
.x22{left:275.280000pt;}
.x35{left:278.400000pt;}
.x52{left:279.520000pt;}
.x54{left:281.200000pt;}
.xd{left:283.440000pt;}
.x44{left:287.760000pt;}
.x3b{left:294.560000pt;}
.x7{left:330.000000pt;}
.x8{left:337.440000pt;}
.x24{left:351.200000pt;}
.x26{left:361.440000pt;}
.x37{left:375.120000pt;}
.x45{left:385.120000pt;}
.x14{left:407.760000pt;}
.x27{left:446.480000pt;}
.xf{left:459.760000pt;}
.x29{left:469.280000pt;}
.x2{left:471.529920pt;}
.x11{left:482.000000pt;}
.x2a{left:515.040000pt;}
.x4c{left:538.720000pt;}
.x1{left:546.720000pt;}
.x4{left:563.033440pt;}
.x3{left:593.040000pt;}
.x2c{left:596.640000pt;}
.x3f{left:604.080160pt;}
.x46{left:606.480000pt;}
.x39{left:612.160000pt;}
.x3c{left:615.360000pt;}
.x3e{left:617.360000pt;}
.x48{left:619.040000pt;}
.x41{left:626.400640pt;}
.x2e{left:632.400000pt;}
.x19{left:648.320000pt;}
.x15{left:666.480000pt;}
.x1b{left:681.120000pt;}
}




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