
    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_58a1eaebfbdc3ed4404892b9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.752000;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_21976bdcf9fcfca96166aa09.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.766000;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_e72512888bad0ff941c798b1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_90354f7b61e7c56aa395ef13.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.780000;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_6471a76c05b11c210dfd72e9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892000;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_27ac57be1b312d29065e602d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;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_a6a8dea5f9417c48751442a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.879000;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_fed18a036145f5b904cd70b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:3.620000;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:-34.182000px;}
.v5{vertical-align:-17.358000px;}
.v3{vertical-align:-8.070000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:10.812000px;}
.vb{vertical-align:12.252000px;}
.v4{vertical-align:13.866000px;}
.v7{vertical-align:17.358000px;}
.v6{vertical-align:21.696000px;}
.va{vertical-align:28.242000px;}
.ve{vertical-align:32.934000px;}
.v1{vertical-align:34.182000px;}
.vd{vertical-align:40.824000px;}
.v9{vertical-align:41.904000px;}
.vc{vertical-align:49.458000px;}
.v8{vertical-align:101.856000px;}
.ls3{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000017px;}
.ls12{letter-spacing:0.000113px;}
.lsc{letter-spacing:0.000925px;}
.ls45{letter-spacing:0.001702px;}
.ls2b{letter-spacing:0.001710px;}
.ls21{letter-spacing:0.001873px;}
.ls65{letter-spacing:0.001932px;}
.ls22{letter-spacing:0.002832px;}
.ls14{letter-spacing:0.002982px;}
.ls6{letter-spacing:0.003634px;}
.ls28{letter-spacing:0.004200px;}
.lsa{letter-spacing:0.004872px;}
.ls2d{letter-spacing:0.005701px;}
.ls55{letter-spacing:0.066925px;}
.ls41{letter-spacing:0.084049px;}
.ls3f{letter-spacing:0.317108px;}
.ls36{letter-spacing:1.046982px;}
.ls34{letter-spacing:1.197634px;}
.ls30{letter-spacing:2.588982px;}
.ls4d{letter-spacing:2.592113px;}
.ls48{letter-spacing:2.594982px;}
.ls49{letter-spacing:2.598113px;}
.ls2e{letter-spacing:2.840982px;}
.ls3a{letter-spacing:2.983200px;}
.lsf{letter-spacing:2.988600px;}
.ls1e{letter-spacing:2.989200px;}
.ls5{letter-spacing:2.994600px;}
.ls62{letter-spacing:3.182934px;}
.ls29{letter-spacing:3.182982px;}
.ls51{letter-spacing:3.234017px;}
.ls4a{letter-spacing:3.263498px;}
.ls5f{letter-spacing:3.528017px;}
.ls63{letter-spacing:4.243542px;}
.lse{letter-spacing:4.601108px;}
.ls1a{letter-spacing:4.992017px;}
.ls3b{letter-spacing:6.079930px;}
.ls31{letter-spacing:6.257498px;}
.ls57{letter-spacing:7.487108px;}
.ls3c{letter-spacing:7.493108px;}
.ls37{letter-spacing:8.344948px;}
.ls3e{letter-spacing:8.843509px;}
.ls50{letter-spacing:12.690017px;}
.ls33{letter-spacing:13.279032px;}
.ls27{letter-spacing:13.280383px;}
.ls4c{letter-spacing:13.280747px;}
.ls2c{letter-spacing:13.282200px;}
.ls4f{letter-spacing:13.283509px;}
.ls32{letter-spacing:13.283701px;}
.ls25{letter-spacing:13.285032px;}
.ls47{letter-spacing:13.286383px;}
.ls4b{letter-spacing:14.934600px;}
.ls4e{letter-spacing:14.940600px;}
.ls35{letter-spacing:16.272600px;}
.ls3d{letter-spacing:16.603032px;}
.ls26{letter-spacing:16.869634px;}
.ls5d{letter-spacing:17.472600px;}
.ls1b{letter-spacing:17.562600px;}
.ls60{letter-spacing:19.595498px;}
.ls40{letter-spacing:19.910852px;}
.ls5c{letter-spacing:19.925700px;}
.ls53{letter-spacing:20.329702px;}
.ls46{letter-spacing:20.454600px;}
.ls43{letter-spacing:20.460600px;}
.ls2a{letter-spacing:20.831498px;}
.ls2f{letter-spacing:21.128852px;}
.ls24{letter-spacing:21.151032px;}
.ls5e{letter-spacing:21.714600px;}
.ls0{letter-spacing:22.075200px;}
.ls10{letter-spacing:22.908600px;}
.ls1{letter-spacing:22.909200px;}
.ls8{letter-spacing:22.914600px;}
.ls1d{letter-spacing:22.915200px;}
.ls19{letter-spacing:23.052600px;}
.ls52{letter-spacing:23.653702px;}
.ls61{letter-spacing:23.773032px;}
.ls18{letter-spacing:23.796600px;}
.ls44{letter-spacing:25.477032px;}
.ls17{letter-spacing:26.028600px;}
.ls42{letter-spacing:26.281032px;}
.ls64{letter-spacing:26.490600px;}
.ls2{letter-spacing:26.900600px;}
.ls56{letter-spacing:29.960383px;}
.ls1c{letter-spacing:35.334600px;}
.ls54{letter-spacing:39.488383px;}
.ls39{letter-spacing:219.239740px;}
.ls16{letter-spacing:390.911498px;}
.ls15{letter-spacing:393.212852px;}
.lsd{letter-spacing:398.851702px;}
.lsb{letter-spacing:405.487702px;}
.ls7{letter-spacing:412.812600px;}
.ls13{letter-spacing:415.051702px;}
.ls11{letter-spacing:427.580747px;}
.ls4{letter-spacing:433.737634px;}
.ls23{letter-spacing:451.903200px;}
.ls1f{letter-spacing:536.881200px;}
.ls20{letter-spacing:608.689200px;}
.ls5b{letter-spacing:655.519200px;}
.ls58{letter-spacing:658.147200px;}
.ls5a{letter-spacing:663.457200px;}
.ls59{letter-spacing:690.043200px;}
.ls38{letter-spacing:1068.083701px;}
.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;}
}
.ws7e{word-spacing:-65.693384px;}
.ws9{word-spacing:-64.904742px;}
.ws84{word-spacing:-52.554839px;}
.ws79{word-spacing:-45.985237px;}
.ws28{word-spacing:-44.671712px;}
.ws66{word-spacing:-42.082022px;}
.ws56{word-spacing:-39.416294px;}
.ws7c{word-spacing:-36.642443px;}
.ws7{word-spacing:-19.427100px;}
.ws1e{word-spacing:-14.943900px;}
.ws11{word-spacing:-13.449600px;}
.ws4{word-spacing:-11.955150px;}
.ws74{word-spacing:-10.460700px;}
.ws65{word-spacing:-6.754643px;}
.ws6{word-spacing:-5.487426px;}
.ws72{word-spacing:-4.226123px;}
.ws71{word-spacing:-3.724009px;}
.ws12{word-spacing:-3.586545px;}
.ws7b{word-spacing:-3.244855px;}
.ws7a{word-spacing:-3.181363px;}
.ws78{word-spacing:-2.065363px;}
.ws7d{word-spacing:-1.715555px;}
.ws67{word-spacing:-1.657500px;}
.ws99{word-spacing:-0.478205px;}
.ws40{word-spacing:-0.358654px;}
.wsa6{word-spacing:-0.119551px;}
.ws2{word-spacing:-0.095641px;}
.ws24{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.053200px;}
.ws13{word-spacing:-0.000109px;}
.ws8{word-spacing:0.000000px;}
.ws3c{word-spacing:0.119551px;}
.wsa5{word-spacing:0.478205px;}
.ws15{word-spacing:0.777083px;}
.wsa7{word-spacing:0.956410px;}
.wsb{word-spacing:1.022170px;}
.ws4f{word-spacing:1.554166px;}
.ws6d{word-spacing:1.733492px;}
.wsa{word-spacing:1.775347px;}
.wsa0{word-spacing:1.793268px;}
.ws9f{word-spacing:1.912819px;}
.ws5{word-spacing:2.008474px;}
.ws31{word-spacing:2.331248px;}
.wsb4{word-spacing:2.630133px;}
.ws4b{word-spacing:2.689902px;}
.ws55{word-spacing:2.869229px;}
.wsc7{word-spacing:2.917057px;}
.ws17{word-spacing:2.929004px;}
.ws44{word-spacing:2.988780px;}
.wsa1{word-spacing:3.048556px;}
.ws63{word-spacing:3.168107px;}
.ws16{word-spacing:3.287658px;}
.ws9a{word-spacing:3.347434px;}
.ws6c{word-spacing:3.466985px;}
.wsa2{word-spacing:3.526760px;}
.ws60{word-spacing:3.586536px;}
.ws41{word-spacing:3.646312px;}
.ws9d{word-spacing:3.765863px;}
.ws2f{word-spacing:3.825638px;}
.ws50{word-spacing:3.885414px;}
.ws19{word-spacing:3.945190px;}
.ws1a{word-spacing:4.004965px;}
.ws64{word-spacing:4.064741px;}
.ws1c{word-spacing:4.124516px;}
.ws1d{word-spacing:4.184292px;}
.ws1f{word-spacing:4.244068px;}
.ws43{word-spacing:4.303843px;}
.ws9c{word-spacing:4.423394px;}
.ws97{word-spacing:4.542946px;}
.ws96{word-spacing:4.602721px;}
.ws25{word-spacing:4.603648px;}
.ws2d{word-spacing:4.605398px;}
.ws2c{word-spacing:4.607602px;}
.ws5f{word-spacing:4.722272px;}
.wsb6{word-spacing:4.734239px;}
.ws81{word-spacing:4.782048px;}
.wsa8{word-spacing:4.841824px;}
.ws26{word-spacing:4.961375px;}
.ws35{word-spacing:5.021150px;}
.wsaf{word-spacing:5.021163px;}
.ws3d{word-spacing:5.080926px;}
.ws3e{word-spacing:5.140702px;}
.ws8a{word-spacing:5.200477px;}
.ws33{word-spacing:5.260253px;}
.wsc8{word-spacing:5.547190px;}
.ws2e{word-spacing:5.618906px;}
.wsb5{word-spacing:5.642831px;}
.wsc{word-spacing:5.648832px;}
.ws8e{word-spacing:5.738458px;}
.ws3b{word-spacing:5.858009px;}
.ws48{word-spacing:5.917784px;}
.ws75{word-spacing:5.950637px;}
.ws77{word-spacing:5.956637px;}
.ws6e{word-spacing:5.977560px;}
.ws5d{word-spacing:6.037336px;}
.ws3f{word-spacing:6.097111px;}
.ws3a{word-spacing:6.156887px;}
.wsc0{word-spacing:6.264499px;}
.wsbf{word-spacing:6.312319px;}
.ws91{word-spacing:6.336214px;}
.ws4d{word-spacing:6.455765px;}
.wsb9{word-spacing:6.455781px;}
.ws10{word-spacing:6.455808px;}
.wsc1{word-spacing:6.503602px;}
.ws4a{word-spacing:6.515540px;}
.ws70{word-spacing:6.635092px;}
.ws39{word-spacing:6.694867px;}
.ws80{word-spacing:6.754643px;}
.ws7f{word-spacing:6.776798px;}
.wsc2{word-spacing:6.790525px;}
.ws37{word-spacing:6.814418px;}
.ws94{word-spacing:6.933970px;}
.ws83{word-spacing:6.981808px;}
.ws27{word-spacing:6.993745px;}
.ws5b{word-spacing:7.053521px;}
.ws9e{word-spacing:7.173072px;}
.wsac{word-spacing:7.268731px;}
.ws6f{word-spacing:7.292623px;}
.ws38{word-spacing:7.352399px;}
.ws4c{word-spacing:7.412174px;}
.ws76{word-spacing:7.423882px;}
.ws20{word-spacing:7.460014px;}
.ws9b{word-spacing:7.471950px;}
.ws8d{word-spacing:7.531726px;}
.wsb3{word-spacing:7.555655px;}
.ws42{word-spacing:7.591501px;}
.ws1b{word-spacing:7.711052px;}
.wsf{word-spacing:7.746970px;}
.ws23{word-spacing:7.938220px;}
.ws92{word-spacing:7.950155px;}
.ws59{word-spacing:7.966500px;}
.ws3{word-spacing:7.986040px;}
.wsc3{word-spacing:8.033861px;}
.ws32{word-spacing:8.069706px;}
.ws34{word-spacing:8.129482px;}
.ws53{word-spacing:8.189257px;}
.ws5e{word-spacing:8.249033px;}
.wsb2{word-spacing:8.320784px;}
.ws62{word-spacing:8.368584px;}
.ws8c{word-spacing:8.547911px;}
.ws73{word-spacing:8.662451px;}
.wsbd{word-spacing:8.751170px;}
.ws36{word-spacing:8.787013px;}
.ws4e{word-spacing:8.846789px;}
.ws90{word-spacing:9.085891px;}
.wsb7{word-spacing:9.181555px;}
.ws8b{word-spacing:9.205442px;}
.wsa9{word-spacing:9.324994px;}
.wsbc{word-spacing:9.564120px;}
.ws30{word-spacing:9.623872px;}
.wsd{word-spacing:9.791309px;}
.ws5c{word-spacing:9.862974px;}
.wsae{word-spacing:9.898864px;}
.wse{word-spacing:9.952704px;}
.ws93{word-spacing:10.161852px;}
.wsc4{word-spacing:10.281429px;}
.wsbe{word-spacing:10.616173px;}
.ws51{word-spacing:10.699832px;}
.ws98{word-spacing:10.819384px;}
.wsa3{word-spacing:11.536691px;}
.wsa4{word-spacing:11.596466px;}
.ws69{word-spacing:11.651517px;}
.ws6a{word-spacing:11.651737px;}
.ws95{word-spacing:11.716018px;}
.wsc5{word-spacing:11.763868px;}
.ws8f{word-spacing:11.955120px;}
.wsb1{word-spacing:12.242074px;}
.ws5a{word-spacing:12.313774px;}
.wsb8{word-spacing:12.337715px;}
.ws22{word-spacing:12.481177px;}
.ws61{word-spacing:12.552876px;}
.wsbb{word-spacing:12.911562px;}
.ws47{word-spacing:13.628837px;}
.ws45{word-spacing:13.748388px;}
.ws21{word-spacing:14.107077px;}
.wsc6{word-spacing:14.824386px;}
.ws18{word-spacing:14.884124px;}
.ws54{word-spacing:14.943900px;}
.wsaa{word-spacing:15.900310px;}
.wsab{word-spacing:16.976270px;}
.wsb0{word-spacing:17.215416px;}
.ws46{word-spacing:17.394700px;}
.wsad{word-spacing:17.932725px;}
.ws82{word-spacing:18.889137px;}
.ws49{word-spacing:19.845499px;}
.ws86{word-spacing:19.845549px;}
.ws52{word-spacing:19.893370px;}
.ws0{word-spacing:19.896875px;}
.wsba{word-spacing:25.915730px;}
.ws14{word-spacing:29.828024px;}
.ws88{word-spacing:115.917134px;}
.ws89{word-spacing:139.827434px;}
.ws85{word-spacing:225.521950px;}
.ws87{word-spacing:317.815708px;}
.ws2a{word-spacing:325.316897px;}
.ws29{word-spacing:341.593746px;}
.ws2b{word-spacing:373.838248px;}
.ws6b{word-spacing:423.212310px;}
.ws58{word-spacing:614.685992px;}
.ws68{word-spacing:615.033823px;}
.ws57{word-spacing:627.980119px;}
._35{margin-left:-35.328682px;}
._2c{margin-left:-7.711052px;}
._8{margin-left:-5.618962px;}
._6{margin-left:-4.542957px;}
._1{margin-left:-3.511213px;}
._0{margin-left:-2.128008px;}
._2{margin-left:-1.004250px;}
._16{width:1.009134px;}
._4{width:2.444822px;}
._3{width:3.538724px;}
._5{width:5.886270px;}
._7{width:8.392550px;}
._2d{width:11.961937px;}
._4b{width:17.490337px;}
._1d{width:18.993160px;}
._17{width:20.957322px;}
._34{width:21.973507px;}
._1c{width:23.177396px;}
._9{width:25.598633px;}
._1b{width:26.695835px;}
._1a{width:29.887800px;}
._4d{width:36.044687px;}
._a{width:39.223025px;}
._b{width:41.125716px;}
._4a{width:44.831700px;}
._4e{width:46.479568px;}
._49{width:53.798040px;}
._38{width:84.570722px;}
._48{width:115.526188px;}
._46{width:127.920105px;}
._3b{width:148.387322px;}
._42{width:151.830405px;}
._44{width:157.712339px;}
._3e{width:172.292675px;}
._47{width:181.670459px;}
._43{width:211.558334px;}
._2e{width:219.218729px;}
._45{width:236.807611px;}
._41{width:274.012038px;}
._32{width:290.988351px;}
._15{width:297.092059px;}
._18{width:316.341846px;}
._19{width:325.630948px;}
._12{width:330.798170px;}
._14{width:331.988954px;}
._13{width:337.433262px;}
._e{width:364.546607px;}
._d{width:366.847961px;}
._11{width:380.591245px;}
._f{width:383.878903px;}
._10{width:390.513995px;}
._40{width:426.298321px;}
._3f{width:433.063354px;}
._33{width:435.167460px;}
._30{width:443.153500px;}
._24{width:449.728824px;}
._36{width:480.103832px;}
._31{width:534.012640px;}
._2f{width:571.217067px;}
._1f{width:578.820542px;}
._3d{width:585.764582px;}
._2b{width:616.024969px;}
._21{width:639.935269px;}
._39{width:672.979304px;}
._3a{width:676.087643px;}
._3c{width:729.170578px;}
._23{width:921.789886px;}
._25{width:937.331581px;}
._27{width:948.043378px;}
._20{width:1002.176314px;}
._2a{width:1026.086614px;}
._28{width:1044.641007px;}
._29{width:1073.907214px;}
._22{width:1147.024912px;}
._26{width:1152.285178px;}
._1e{width:1161.562374px;}
._c{width:1384.741114px;}
._4c{width:2089.674084px;}
._37{width:2099.379611px;}
.fc1{color:rgb(0,128,172);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fsa{font-size:40.647600px;}
.fsb{font-size:41.842800px;}
.fs8{font-size:45.429600px;}
.fs2{font-size:47.820600px;}
.fs0{font-size:53.200200px;}
.fs7{font-size:53.798400px;}
.fs6{font-size:59.058000px;}
.fs9{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs5{font-size:77.708400px;}
.fs1{font-size:95.641200px;}
.fs4{font-size:101.619000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:53.050500px;}
.y5e{bottom:64.857000px;}
.y2a{bottom:67.995000px;}
.y29{bottom:87.421500px;}
.y5d{bottom:88.170000px;}
.y7e{bottom:90.757500px;}
.y28{bottom:102.366000px;}
.y160{bottom:103.113000px;}
.yda{bottom:105.727500px;}
.y129{bottom:106.075500px;}
.yaa{bottom:106.239000px;}
.y10d{bottom:106.546500px;}
.y5c{bottom:106.633500px;}
.y27{bottom:117.310500px;}
.y15f{bottom:117.958500px;}
.y10c{bottom:124.923000px;}
.y5b{bottom:125.098500px;}
.yd9{bottom:131.505000px;}
.y128{bottom:132.892500px;}
.y15e{bottom:132.903000px;}
.ya9{bottom:133.548000px;}
.y10b{bottom:143.301000px;}
.y5a{bottom:143.563500px;}
.y26{bottom:144.957000px;}
.y15d{bottom:147.748500px;}
.ya8{bottom:160.857000px;}
.y10a{bottom:161.677500px;}
.y59{bottom:162.028500px;}
.y15c{bottom:162.594000px;}
.y25{bottom:163.717500px;}
.y127{bottom:168.597000px;}
.y15b{bottom:177.439500px;}
.ya7{bottom:178.926000px;}
.y109{bottom:180.054000px;}
.y58{bottom:180.493500px;}
.yd8{bottom:184.491000px;}
.y126{bottom:186.502500px;}
.y24{bottom:188.986500px;}
.y15a{bottom:192.382500px;}
.ya6{bottom:196.995000px;}
.y108{bottom:198.432000px;}
.y57{bottom:198.957000px;}
.yd7{bottom:199.435500px;}
.y125{bottom:204.408000px;}
.y23{bottom:206.917500px;}
.y159{bottom:207.228000px;}
.yd6{bottom:214.378500px;}
.ya5{bottom:215.064000px;}
.y107{bottom:216.808500px;}
.y56{bottom:217.422000px;}
.y158{bottom:222.172500px;}
.y124{bottom:222.313500px;}
.y22{bottom:224.848500px;}
.yd5{bottom:229.323000px;}
.ya4{bottom:233.134500px;}
.y106{bottom:235.185000px;}
.y55{bottom:235.887000px;}
.y157{bottom:237.018000px;}
.y123{bottom:240.219000px;}
.y21{bottom:242.781000px;}
.yd4{bottom:244.267500px;}
.ya3{bottom:251.203500px;}
.y156{bottom:251.962500px;}
.y105{bottom:253.563000px;}
.y54{bottom:254.352000px;}
.y122{bottom:258.124500px;}
.yd3{bottom:259.210500px;}
.y20{bottom:260.712000px;}
.y155{bottom:266.808000px;}
.ya2{bottom:269.272500px;}
.y104{bottom:271.939500px;}
.y53{bottom:272.817000px;}
.yd2{bottom:274.155000px;}
.y121{bottom:276.031500px;}
.y1f{bottom:278.643000px;}
.y154{bottom:281.751000px;}
.ya1{bottom:287.341500px;}
.yd1{bottom:289.099500px;}
.y103{bottom:290.316000px;}
.y52{bottom:291.280500px;}
.y1e{bottom:296.575500px;}
.y153{bottom:296.596500px;}
.y120{bottom:302.848500px;}
.y102{bottom:308.694000px;}
.y51{bottom:309.745500px;}
.yd0{bottom:310.110000px;}
.y152{bottom:311.541000px;}
.y1d{bottom:314.506500px;}
.ya0{bottom:324.163500px;}
.y151{bottom:326.386500px;}
.y101{bottom:327.070500px;}
.y50{bottom:328.210500px;}
.ycf{bottom:329.224500px;}
.y11f{bottom:338.553000px;}
.y150{bottom:341.329500px;}
.y1c{bottom:341.401500px;}
.yce{bottom:344.169000px;}
.y100{bottom:345.447000px;}
.y4f{bottom:346.675500px;}
.y14f{bottom:356.175000px;}
.y11e{bottom:356.458500px;}
.y9f{bottom:361.668000px;}
.yff{bottom:363.823500px;}
.y4e{bottom:365.139000px;}
.ycd{bottom:370.585500px;}
.y14e{bottom:371.119500px;}
.y11d{bottom:374.364000px;}
.y9e{bottom:379.737000px;}
.yfe{bottom:382.201500px;}
.y14d{bottom:385.965000px;}
.ycc{bottom:388.144500px;}
.y11c{bottom:392.269500px;}
.y9d{bottom:397.806000px;}
.yfd{bottom:400.578000px;}
.y1b{bottom:400.903500px;}
.y14c{bottom:400.909500px;}
.ycb{bottom:405.703500px;}
.y7d{bottom:409.266000px;}
.y11b{bottom:410.175000px;}
.y14b{bottom:415.755000px;}
.y9c{bottom:415.875000px;}
.yfc{bottom:418.954500px;}
.y4d{bottom:426.160500px;}
.yca{bottom:426.511500px;}
.y7c{bottom:427.446000px;}
.y11a{bottom:428.080500px;}
.y1a{bottom:428.283000px;}
.y14a{bottom:430.698000px;}
.y9b{bottom:433.945500px;}
.yc9{bottom:437.122500px;}
.yfb{bottom:437.332500px;}
.y19{bottom:444.721500px;}
.y149{bottom:445.543500px;}
.y4c{bottom:445.587000px;}
.y7b{bottom:445.626000px;}
.y119{bottom:445.986000px;}
.y9a{bottom:452.014500px;}
.yfa{bottom:455.709000px;}
.y148{bottom:460.488000px;}
.y7a{bottom:463.806000px;}
.y118{bottom:463.893000px;}
.y4b{bottom:465.015000px;}
.yc8{bottom:469.063500px;}
.y99{bottom:470.083500px;}
.y18{bottom:470.127000px;}
.yf9{bottom:474.085500px;}
.y147{bottom:475.333500px;}
.y79{bottom:481.986000px;}
.y4a{bottom:484.441500px;}
.y17{bottom:486.565500px;}
.yc7{bottom:486.622500px;}
.y98{bottom:488.152500px;}
.y146{bottom:490.276500px;}
.y117{bottom:491.616000px;}
.yf8{bottom:492.463500px;}
.y78{bottom:500.164500px;}
.y16{bottom:503.004000px;}
.y49{bottom:503.869500px;}
.y145{bottom:505.122000px;}
.y97{bottom:506.223000px;}
.yf7{bottom:510.840000px;}
.yc3{bottom:513.102000px;}
.y77{bottom:518.344500px;}
.y15{bottom:519.442500px;}
.y144{bottom:520.066500px;}
.y48{bottom:523.296000px;}
.yc2{bottom:523.713000px;}
.y96{bottom:524.292000px;}
.yc1{bottom:526.851000px;}
.yf6{bottom:529.216500px;}
.yc5{bottom:532.147500px;}
.y143{bottom:534.912000px;}
.y14{bottom:535.879500px;}
.y76{bottom:536.524500px;}
.yc6{bottom:537.451500px;}
.y95{bottom:542.361000px;}
.y47{bottom:542.722500px;}
.yc4{bottom:544.512000px;}
.yf5{bottom:547.594500px;}
.y142{bottom:549.757500px;}
.y13{bottom:552.318000px;}
.y75{bottom:554.704500px;}
.y94{bottom:560.430000px;}
.y46{bottom:562.150500px;}
.yc0{bottom:562.974000px;}
.y141{bottom:564.603000px;}
.yf4{bottom:565.971000px;}
.y12{bottom:568.756500px;}
.y74{bottom:572.884500px;}
.y93{bottom:578.499000px;}
.y140{bottom:579.547500px;}
.ybf{bottom:580.533000px;}
.y45{bottom:581.577000px;}
.yf3{bottom:584.347500px;}
.y11{bottom:585.195000px;}
.y73{bottom:591.064500px;}
.y13f{bottom:594.393000px;}
.y92{bottom:596.569500px;}
.ybe{bottom:598.092000px;}
.y44{bottom:601.005000px;}
.y10{bottom:601.633500px;}
.yf2{bottom:602.725500px;}
.y72{bottom:609.243000px;}
.y13e{bottom:609.336000px;}
.y91{bottom:614.638500px;}
.ybd{bottom:615.651000px;}
.y43{bottom:620.431500px;}
.yf1{bottom:621.102000px;}
.y13d{bottom:624.181500px;}
.yf{bottom:627.039000px;}
.ybc{bottom:633.210000px;}
.y13c{bottom:639.126000px;}
.y42{bottom:639.859500px;}
.y71{bottom:646.837500px;}
.ybb{bottom:650.769000px;}
.y90{bottom:652.071000px;}
.y13b{bottom:653.971500px;}
.y41{bottom:659.286000px;}
.y40{bottom:662.506500px;}
.y8f{bottom:667.015500px;}
.yba{bottom:668.328000px;}
.y13a{bottom:668.914500px;}
.y70{bottom:675.219000px;}
.yf0{bottom:676.978500px;}
.y3f{bottom:678.714000px;}
.y8e{bottom:681.958500px;}
.y139{bottom:683.760000px;}
.ye{bottom:684.904500px;}
.yb9{bottom:685.885500px;}
.yef{bottom:691.921500px;}
.y8d{bottom:696.903000px;}
.y3d{bottom:698.043000px;}
.y3e{bottom:698.140500px;}
.y138{bottom:698.704500px;}
.yd{bottom:699.849000px;}
.yb8{bottom:703.444500px;}
.yee{bottom:706.866000px;}
.y8c{bottom:711.846000px;}
.y137{bottom:713.550000px;}
.y6f{bottom:714.048000px;}
.y3c{bottom:717.567000px;}
.yc{bottom:720.769500px;}
.yb7{bottom:721.003500px;}
.yed{bottom:721.809000px;}
.y8b{bottom:726.790500px;}
.y136{bottom:728.494500px;}
.y6e{bottom:732.228000px;}
.yb{bottom:735.714000px;}
.yec{bottom:736.753500px;}
.y3a{bottom:736.897500px;}
.y3b{bottom:736.995000px;}
.yb6{bottom:738.562500px;}
.y8a{bottom:741.735000px;}
.y135{bottom:743.340000px;}
.y6d{bottom:750.408000px;}
.yeb{bottom:751.698000px;}
.yb5{bottom:756.121500px;}
.y39{bottom:756.421500px;}
.y89{bottom:756.678000px;}
.y134{bottom:758.185500px;}
.ya{bottom:761.418000px;}
.yea{bottom:766.641000px;}
.y6c{bottom:768.588000px;}
.y88{bottom:771.622500px;}
.y133{bottom:773.031000px;}
.y38{bottom:775.849500px;}
.ye9{bottom:781.585500px;}
.y9{bottom:783.834000px;}
.y87{bottom:786.567000px;}
.y6b{bottom:786.768000px;}
.y132{bottom:787.876500px;}
.yb4{bottom:790.866000px;}
.y37{bottom:795.276000px;}
.ye8{bottom:796.530000px;}
.y131{bottom:802.819500px;}
.y6a{bottom:804.948000px;}
.y86{bottom:807.577500px;}
.ye7{bottom:811.473000px;}
.y36{bottom:813.208500px;}
.y8{bottom:820.765500px;}
.y69{bottom:823.128000px;}
.ye6{bottom:826.417500px;}
.y130{bottom:826.632000px;}
.y85{bottom:826.693500px;}
.y35{bottom:832.636500px;}
.y116{bottom:836.160000px;}
.y68{bottom:841.306500px;}
.ye5{bottom:841.362000px;}
.y115{bottom:846.769500px;}
.y7{bottom:850.653000px;}
.y34{bottom:852.063000px;}
.y16a{bottom:855.484500px;}
.ye4{bottom:856.305000px;}
.y84{bottom:858.321000px;}
.y67{bottom:859.486500px;}
.yb3{bottom:861.685500px;}
.y12f{bottom:862.201500px;}
.y169{bottom:870.429000px;}
.ye3{bottom:871.249500px;}
.y33{bottom:871.491000px;}
.y83{bottom:876.391500px;}
.yb2{bottom:876.628500px;}
.y66{bottom:877.666500px;}
.y114{bottom:879.585000px;}
.y12e{bottom:880.084500px;}
.y168{bottom:885.373500px;}
.ye2{bottom:886.194000px;}
.y6{bottom:886.704000px;}
.y32{bottom:890.917500px;}
.yb1{bottom:891.573000px;}
.y65{bottom:895.846500px;}
.y113{bottom:897.490500px;}
.y12d{bottom:897.969000px;}
.y167{bottom:900.316500px;}
.ye1{bottom:901.137000px;}
.y5{bottom:904.636500px;}
.yb0{bottom:906.517500px;}
.y31{bottom:910.344000px;}
.y82{bottom:913.212000px;}
.y64{bottom:914.026500px;}
.y166{bottom:915.261000px;}
.y112{bottom:915.396000px;}
.y12c{bottom:915.852000px;}
.yaf{bottom:921.460500px;}
.ye0{bottom:922.147500px;}
.y30{bottom:929.772000px;}
.y165{bottom:930.205500px;}
.y63{bottom:932.206500px;}
.y111{bottom:933.301500px;}
.yae{bottom:936.405000px;}
.ydf{bottom:937.092000px;}
.y4{bottom:941.785500px;}
.y12b{bottom:942.603000px;}
.y164{bottom:945.148500px;}
.y2f{bottom:949.198500px;}
.y62{bottom:950.385000px;}
.y81{bottom:950.716500px;}
.y110{bottom:951.208500px;}
.yad{bottom:951.349500px;}
.yde{bottom:952.036500px;}
.y3{bottom:956.730000px;}
.y163{bottom:960.093000px;}
.ydd{bottom:966.979500px;}
.y61{bottom:968.565000px;}
.y2e{bottom:968.626500px;}
.y80{bottom:968.787000px;}
.y10f{bottom:969.114000px;}
.yac{bottom:972.360000px;}
.y162{bottom:975.037500px;}
.y12a{bottom:978.174000px;}
.ydc{bottom:981.924000px;}
.y60{bottom:986.745000px;}
.y7f{bottom:986.856000px;}
.y10e{bottom:987.019500px;}
.y161{bottom:989.980500px;}
.yab{bottom:991.476000px;}
.y2d{bottom:995.526000px;}
.ydb{bottom:1001.040000px;}
.y5f{bottom:1004.925000px;}
.y2{bottom:1009.407000px;}
.y1{bottom:1035.426000px;}
.y2c{bottom:1037.802000px;}
.h11{height:28.331377px;}
.h1a{height:28.578632px;}
.ha{height:32.661470px;}
.h13{height:32.709470px;}
.h21{height:33.044035px;}
.hb{height:37.174694px;}
.h2{height:38.782946px;}
.h1e{height:40.408306px;}
.h16{height:40.826735px;}
.hd{height:41.304940px;}
.h18{height:41.663593px;}
.h4{height:42.369052px;}
.h12{height:42.603052px;}
.h24{height:42.843052px;}
.h26{height:42.849052px;}
.hc{height:47.665382px;}
.h17{height:49.134922px;}
.he{height:52.961182px;}
.h25{height:53.181052px;}
.h10{height:53.261182px;}
.h20{height:54.215593px;}
.h1b{height:56.820632px;}
.h14{height:58.768721px;}
.h15{height:58.774721px;}
.h1d{height:62.885593px;}
.h5{height:63.553843px;}
.hf{height:66.827182px;}
.h9{height:68.849642px;}
.h7{height:69.623642px;}
.h3{height:72.113465px;}
.h8{height:75.345426px;}
.h1c{height:78.036632px;}
.h1f{height:82.724735px;}
.h6{height:90.034434px;}
.h22{height:94.865182px;}
.h23{height:95.399182px;}
.h19{height:141.666550px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x12{left:58.468500px;}
.xe{left:60.283500px;}
.x37{left:65.268000px;}
.x46{left:66.430500px;}
.x17{left:68.865000px;}
.x7{left:72.090000px;}
.x1e{left:74.010000px;}
.x5{left:75.343500px;}
.x13{left:76.401000px;}
.x20{left:78.384000px;}
.x18{left:80.884500px;}
.x1b{left:84.060000px;}
.x47{left:87.841500px;}
.x42{left:94.333500px;}
.x15{left:95.641500px;}
.x2c{left:98.503500px;}
.x1c{left:99.996000px;}
.x16{left:115.263000px;}
.x9{left:116.290500px;}
.xa{left:129.247500px;}
.x2b{left:135.211500px;}
.x1d{left:145.513500px;}
.x35{left:156.562500px;}
.x2d{left:158.176500px;}
.x21{left:167.656500px;}
.x38{left:168.970500px;}
.x43{left:185.692500px;}
.x22{left:187.278000px;}
.x29{left:188.533500px;}
.x1f{left:190.573500px;}
.x36{left:194.815500px;}
.x2e{left:197.851500px;}
.x44{left:202.693500px;}
.x2a{left:208.153500px;}
.x48{left:216.874500px;}
.x6{left:228.381000px;}
.xb{left:234.231000px;}
.x2f{left:245.884500px;}
.x30{left:250.237500px;}
.x1{left:257.418000px;}
.x28{left:271.213500px;}
.x31{left:280.467000px;}
.x10{left:284.758500px;}
.x39{left:286.711500px;}
.x19{left:293.328000px;}
.x3{left:298.098000px;}
.x1a{left:309.025500px;}
.x2{left:314.139000px;}
.xf{left:320.355000px;}
.xd{left:321.364500px;}
.x11{left:327.432000px;}
.x33{left:338.607000px;}
.x8{left:345.376500px;}
.x24{left:360.430500px;}
.x25{left:380.052000px;}
.x26{left:382.680000px;}
.x23{left:399.222000px;}
.x27{left:402.301500px;}
.x3a{left:404.452500px;}
.x14{left:410.202000px;}
.x32{left:412.242000px;}
.x3b{left:463.323000px;}
.x34{left:480.145500px;}
.x45{left:499.581000px;}
.x3c{left:522.195000px;}
.x40{left:545.158500px;}
.x41{left:564.780000px;}
.x3d{left:588.537000px;}
.x4{left:615.985500px;}
.x3e{left:647.407500px;}
.xc{left:657.009000px;}
.x3f{left:706.278000px;}
@media print{
.v2{vertical-align:-30.384000pt;}
.v5{vertical-align:-15.429333pt;}
.v3{vertical-align:-7.173333pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:9.610667pt;}
.vb{vertical-align:10.890667pt;}
.v4{vertical-align:12.325333pt;}
.v7{vertical-align:15.429333pt;}
.v6{vertical-align:19.285333pt;}
.va{vertical-align:25.104000pt;}
.ve{vertical-align:29.274667pt;}
.v1{vertical-align:30.384000pt;}
.vd{vertical-align:36.288000pt;}
.v9{vertical-align:37.248000pt;}
.vc{vertical-align:43.962667pt;}
.v8{vertical-align:90.538667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000015pt;}
.ls12{letter-spacing:0.000100pt;}
.lsc{letter-spacing:0.000822pt;}
.ls45{letter-spacing:0.001513pt;}
.ls2b{letter-spacing:0.001520pt;}
.ls21{letter-spacing:0.001665pt;}
.ls65{letter-spacing:0.001717pt;}
.ls22{letter-spacing:0.002517pt;}
.ls14{letter-spacing:0.002651pt;}
.ls6{letter-spacing:0.003230pt;}
.ls28{letter-spacing:0.003733pt;}
.lsa{letter-spacing:0.004331pt;}
.ls2d{letter-spacing:0.005068pt;}
.ls55{letter-spacing:0.059489pt;}
.ls41{letter-spacing:0.074710pt;}
.ls3f{letter-spacing:0.281874pt;}
.ls36{letter-spacing:0.930651pt;}
.ls34{letter-spacing:1.064563pt;}
.ls30{letter-spacing:2.301317pt;}
.ls4d{letter-spacing:2.304100pt;}
.ls48{letter-spacing:2.306651pt;}
.ls49{letter-spacing:2.309434pt;}
.ls2e{letter-spacing:2.525317pt;}
.ls3a{letter-spacing:2.651733pt;}
.lsf{letter-spacing:2.656533pt;}
.ls1e{letter-spacing:2.657067pt;}
.ls5{letter-spacing:2.661867pt;}
.ls62{letter-spacing:2.829275pt;}
.ls29{letter-spacing:2.829317pt;}
.ls51{letter-spacing:2.874682pt;}
.ls4a{letter-spacing:2.900887pt;}
.ls5f{letter-spacing:3.136015pt;}
.ls63{letter-spacing:3.772037pt;}
.lse{letter-spacing:4.089874pt;}
.ls1a{letter-spacing:4.437348pt;}
.ls3b{letter-spacing:5.404382pt;}
.ls31{letter-spacing:5.562221pt;}
.ls57{letter-spacing:6.655207pt;}
.ls3c{letter-spacing:6.660541pt;}
.ls37{letter-spacing:7.417731pt;}
.ls3e{letter-spacing:7.860897pt;}
.ls50{letter-spacing:11.280015pt;}
.ls33{letter-spacing:11.803584pt;}
.ls27{letter-spacing:11.804785pt;}
.ls4c{letter-spacing:11.805108pt;}
.ls2c{letter-spacing:11.806400pt;}
.ls4f{letter-spacing:11.807564pt;}
.ls32{letter-spacing:11.807734pt;}
.ls25{letter-spacing:11.808917pt;}
.ls47{letter-spacing:11.810118pt;}
.ls4b{letter-spacing:13.275200pt;}
.ls4e{letter-spacing:13.280533pt;}
.ls35{letter-spacing:14.464533pt;}
.ls3d{letter-spacing:14.758251pt;}
.ls26{letter-spacing:14.995230pt;}
.ls5d{letter-spacing:15.531200pt;}
.ls1b{letter-spacing:15.611200pt;}
.ls60{letter-spacing:17.418221pt;}
.ls40{letter-spacing:17.698535pt;}
.ls5c{letter-spacing:17.711733pt;}
.ls53{letter-spacing:18.070846pt;}
.ls46{letter-spacing:18.181867pt;}
.ls43{letter-spacing:18.187200pt;}
.ls2a{letter-spacing:18.516887pt;}
.ls2f{letter-spacing:18.781202pt;}
.ls24{letter-spacing:18.800917pt;}
.ls5e{letter-spacing:19.301867pt;}
.ls0{letter-spacing:19.622400pt;}
.ls10{letter-spacing:20.363200pt;}
.ls1{letter-spacing:20.363733pt;}
.ls8{letter-spacing:20.368533pt;}
.ls1d{letter-spacing:20.369067pt;}
.ls19{letter-spacing:20.491200pt;}
.ls52{letter-spacing:21.025513pt;}
.ls61{letter-spacing:21.131584pt;}
.ls18{letter-spacing:21.152533pt;}
.ls44{letter-spacing:22.646251pt;}
.ls17{letter-spacing:23.136533pt;}
.ls42{letter-spacing:23.360917pt;}
.ls64{letter-spacing:23.547200pt;}
.ls2{letter-spacing:23.911645pt;}
.ls56{letter-spacing:26.631452pt;}
.ls1c{letter-spacing:31.408533pt;}
.ls54{letter-spacing:35.100785pt;}
.ls39{letter-spacing:194.879769pt;}
.ls16{letter-spacing:347.476887pt;}
.ls15{letter-spacing:349.522535pt;}
.lsd{letter-spacing:354.534846pt;}
.lsb{letter-spacing:360.433513pt;}
.ls7{letter-spacing:366.944533pt;}
.ls13{letter-spacing:368.934846pt;}
.ls11{letter-spacing:380.071775pt;}
.ls4{letter-spacing:385.544563pt;}
.ls23{letter-spacing:401.691733pt;}
.ls1f{letter-spacing:477.227733pt;}
.ls20{letter-spacing:541.057067pt;}
.ls5b{letter-spacing:582.683733pt;}
.ls58{letter-spacing:585.019733pt;}
.ls5a{letter-spacing:589.739733pt;}
.ls59{letter-spacing:613.371733pt;}
.ls38{letter-spacing:949.407734pt;}
.ws7e{word-spacing:-58.394119pt;}
.ws9{word-spacing:-57.693104pt;}
.ws84{word-spacing:-46.715413pt;}
.ws79{word-spacing:-40.875766pt;}
.ws28{word-spacing:-39.708189pt;}
.ws66{word-spacing:-37.406242pt;}
.ws56{word-spacing:-35.036706pt;}
.ws7c{word-spacing:-32.571060pt;}
.ws7{word-spacing:-17.268533pt;}
.ws1e{word-spacing:-13.283467pt;}
.ws11{word-spacing:-11.955200pt;}
.ws4{word-spacing:-10.626800pt;}
.ws74{word-spacing:-9.298400pt;}
.ws65{word-spacing:-6.004127pt;}
.ws6{word-spacing:-4.877712pt;}
.ws72{word-spacing:-3.756554pt;}
.ws71{word-spacing:-3.310230pt;}
.ws12{word-spacing:-3.188040pt;}
.ws7b{word-spacing:-2.884316pt;}
.ws7a{word-spacing:-2.827878pt;}
.ws78{word-spacing:-1.835878pt;}
.ws7d{word-spacing:-1.524938pt;}
.ws67{word-spacing:-1.473333pt;}
.ws99{word-spacing:-0.425071pt;}
.ws40{word-spacing:-0.318803pt;}
.wsa6{word-spacing:-0.106268pt;}
.ws2{word-spacing:-0.085014pt;}
.ws24{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.047289pt;}
.ws13{word-spacing:-0.000097pt;}
.ws8{word-spacing:0.000000pt;}
.ws3c{word-spacing:0.106268pt;}
.wsa5{word-spacing:0.425071pt;}
.ws15{word-spacing:0.690740pt;}
.wsa7{word-spacing:0.850142pt;}
.wsb{word-spacing:0.908595pt;}
.ws4f{word-spacing:1.381481pt;}
.ws6d{word-spacing:1.540882pt;}
.wsa{word-spacing:1.578086pt;}
.wsa0{word-spacing:1.594016pt;}
.ws9f{word-spacing:1.700284pt;}
.ws5{word-spacing:1.785310pt;}
.ws31{word-spacing:2.072221pt;}
.wsb4{word-spacing:2.337896pt;}
.ws4b{word-spacing:2.391024pt;}
.ws55{word-spacing:2.550426pt;}
.wsc7{word-spacing:2.592939pt;}
.ws17{word-spacing:2.603559pt;}
.ws44{word-spacing:2.656693pt;}
.wsa1{word-spacing:2.709827pt;}
.ws63{word-spacing:2.816095pt;}
.ws16{word-spacing:2.922363pt;}
.ws9a{word-spacing:2.975497pt;}
.ws6c{word-spacing:3.081764pt;}
.wsa2{word-spacing:3.134898pt;}
.ws60{word-spacing:3.188032pt;}
.ws41{word-spacing:3.241166pt;}
.ws9d{word-spacing:3.347434pt;}
.ws2f{word-spacing:3.400567pt;}
.ws50{word-spacing:3.453701pt;}
.ws19{word-spacing:3.506835pt;}
.ws1a{word-spacing:3.559969pt;}
.ws64{word-spacing:3.613103pt;}
.ws1c{word-spacing:3.666237pt;}
.ws1d{word-spacing:3.719371pt;}
.ws1f{word-spacing:3.772505pt;}
.ws43{word-spacing:3.825638pt;}
.ws9c{word-spacing:3.931906pt;}
.ws97{word-spacing:4.038174pt;}
.ws96{word-spacing:4.091308pt;}
.ws25{word-spacing:4.092131pt;}
.ws2d{word-spacing:4.093687pt;}
.ws2c{word-spacing:4.095646pt;}
.ws5f{word-spacing:4.197575pt;}
.wsb6{word-spacing:4.208213pt;}
.ws81{word-spacing:4.250709pt;}
.wsa8{word-spacing:4.303843pt;}
.ws26{word-spacing:4.410111pt;}
.ws35{word-spacing:4.463245pt;}
.wsaf{word-spacing:4.463256pt;}
.ws3d{word-spacing:4.516379pt;}
.ws3e{word-spacing:4.569513pt;}
.ws8a{word-spacing:4.622646pt;}
.ws33{word-spacing:4.675780pt;}
.wsc8{word-spacing:4.930835pt;}
.ws2e{word-spacing:4.994583pt;}
.wsb5{word-spacing:5.015850pt;}
.wsc{word-spacing:5.021184pt;}
.ws8e{word-spacing:5.100851pt;}
.ws3b{word-spacing:5.207119pt;}
.ws48{word-spacing:5.260253pt;}
.ws75{word-spacing:5.289455pt;}
.ws77{word-spacing:5.294788pt;}
.ws6e{word-spacing:5.313387pt;}
.ws5d{word-spacing:5.366521pt;}
.ws3f{word-spacing:5.419654pt;}
.ws3a{word-spacing:5.472788pt;}
.wsc0{word-spacing:5.568443pt;}
.wsbf{word-spacing:5.610950pt;}
.ws91{word-spacing:5.632190pt;}
.ws4d{word-spacing:5.738458pt;}
.wsb9{word-spacing:5.738472pt;}
.ws10{word-spacing:5.738496pt;}
.wsc1{word-spacing:5.780979pt;}
.ws4a{word-spacing:5.791591pt;}
.ws70{word-spacing:5.897859pt;}
.ws39{word-spacing:5.950993pt;}
.ws80{word-spacing:6.004127pt;}
.ws7f{word-spacing:6.023821pt;}
.wsc2{word-spacing:6.036022pt;}
.ws37{word-spacing:6.057261pt;}
.ws94{word-spacing:6.163529pt;}
.ws83{word-spacing:6.206051pt;}
.ws27{word-spacing:6.216662pt;}
.ws5b{word-spacing:6.269796pt;}
.ws9e{word-spacing:6.376064pt;}
.wsac{word-spacing:6.461094pt;}
.ws6f{word-spacing:6.482332pt;}
.ws38{word-spacing:6.535466pt;}
.ws4c{word-spacing:6.588599pt;}
.ws76{word-spacing:6.599006pt;}
.ws20{word-spacing:6.631123pt;}
.ws9b{word-spacing:6.641733pt;}
.ws8d{word-spacing:6.694867pt;}
.wsb3{word-spacing:6.716138pt;}
.ws42{word-spacing:6.748001pt;}
.ws1b{word-spacing:6.854269pt;}
.wsf{word-spacing:6.886195pt;}
.ws23{word-spacing:7.056195pt;}
.ws92{word-spacing:7.066804pt;}
.ws59{word-spacing:7.081333pt;}
.ws3{word-spacing:7.098702pt;}
.wsc3{word-spacing:7.141210pt;}
.ws32{word-spacing:7.173072pt;}
.ws34{word-spacing:7.226206pt;}
.ws53{word-spacing:7.279340pt;}
.ws5e{word-spacing:7.332474pt;}
.wsb2{word-spacing:7.396253pt;}
.ws62{word-spacing:7.438741pt;}
.ws8c{word-spacing:7.598143pt;}
.ws73{word-spacing:7.699956pt;}
.wsbd{word-spacing:7.778818pt;}
.ws36{word-spacing:7.810678pt;}
.ws4e{word-spacing:7.863812pt;}
.ws90{word-spacing:8.076348pt;}
.wsb7{word-spacing:8.161382pt;}
.ws8b{word-spacing:8.182615pt;}
.wsa9{word-spacing:8.288883pt;}
.wsbc{word-spacing:8.501440pt;}
.ws30{word-spacing:8.554553pt;}
.wsd{word-spacing:8.703386pt;}
.ws5c{word-spacing:8.767088pt;}
.wsae{word-spacing:8.798990pt;}
.wse{word-spacing:8.846848pt;}
.ws93{word-spacing:9.032757pt;}
.wsc4{word-spacing:9.139048pt;}
.wsbe{word-spacing:9.436598pt;}
.ws51{word-spacing:9.510962pt;}
.ws98{word-spacing:9.617230pt;}
.wsa3{word-spacing:10.254836pt;}
.wsa4{word-spacing:10.307970pt;}
.ws69{word-spacing:10.356904pt;}
.ws6a{word-spacing:10.357099pt;}
.ws95{word-spacing:10.414238pt;}
.wsc5{word-spacing:10.456771pt;}
.ws8f{word-spacing:10.626773pt;}
.wsb1{word-spacing:10.881843pt;}
.ws5a{word-spacing:10.945577pt;}
.wsb8{word-spacing:10.966858pt;}
.ws22{word-spacing:11.094379pt;}
.ws61{word-spacing:11.158112pt;}
.wsbb{word-spacing:11.476944pt;}
.ws47{word-spacing:12.114522pt;}
.ws45{word-spacing:12.220789pt;}
.ws21{word-spacing:12.539624pt;}
.wsc6{word-spacing:13.177232pt;}
.ws18{word-spacing:13.230333pt;}
.ws54{word-spacing:13.283467pt;}
.wsaa{word-spacing:14.133609pt;}
.wsab{word-spacing:15.090018pt;}
.wsb0{word-spacing:15.302592pt;}
.ws46{word-spacing:15.461955pt;}
.wsad{word-spacing:15.940200pt;}
.ws82{word-spacing:16.790344pt;}
.ws49{word-spacing:17.640444pt;}
.ws86{word-spacing:17.640488pt;}
.ws52{word-spacing:17.682995pt;}
.ws0{word-spacing:17.686111pt;}
.wsba{word-spacing:23.036205pt;}
.ws14{word-spacing:26.513799pt;}
.ws88{word-spacing:103.037453pt;}
.ws89{word-spacing:124.291053pt;}
.ws85{word-spacing:200.463955pt;}
.ws87{word-spacing:282.502851pt;}
.ws2a{word-spacing:289.170575pt;}
.ws29{word-spacing:303.638885pt;}
.ws2b{word-spacing:332.300665pt;}
.ws6b{word-spacing:376.188720pt;}
.ws58{word-spacing:546.387549pt;}
.ws68{word-spacing:546.696732pt;}
.ws57{word-spacing:558.204550pt;}
._35{margin-left:-31.403273pt;}
._2c{margin-left:-6.854269pt;}
._8{margin-left:-4.994633pt;}
._6{margin-left:-4.038184pt;}
._1{margin-left:-3.121078pt;}
._0{margin-left:-1.891563pt;}
._2{margin-left:-0.892667pt;}
._16{width:0.897008pt;}
._4{width:2.173175pt;}
._3{width:3.145533pt;}
._5{width:5.232240pt;}
._7{width:7.460045pt;}
._2d{width:10.632833pt;}
._4b{width:15.546966pt;}
._1d{width:16.882809pt;}
._17{width:18.628731pt;}
._34{width:19.532006pt;}
._1c{width:20.602130pt;}
._9{width:22.754340pt;}
._1b{width:23.729631pt;}
._1a{width:26.566933pt;}
._4d{width:32.039722pt;}
._a{width:34.864911pt;}
._b{width:36.556192pt;}
._4a{width:39.850400pt;}
._4e{width:41.315171pt;}
._49{width:47.820480pt;}
._38{width:75.173975pt;}
._48{width:102.689945pt;}
._46{width:113.706760pt;}
._3b{width:131.899842pt;}
._42{width:134.960360pt;}
._44{width:140.188746pt;}
._3e{width:153.149045pt;}
._47{width:161.484853pt;}
._43{width:188.051853pt;}
._2e{width:194.861093pt;}
._45{width:210.495654pt;}
._41{width:243.566256pt;}
._32{width:258.656312pt;}
._15{width:264.081830pt;}
._18{width:281.192752pt;}
._19{width:289.449731pt;}
._12{width:294.042818pt;}
._14{width:295.101293pt;}
._13{width:299.940677pt;}
._e{width:324.041428pt;}
._d{width:326.087076pt;}
._11{width:338.303329pt;}
._f{width:341.225692pt;}
._10{width:347.123551pt;}
._40{width:378.931841pt;}
._3f{width:384.945203pt;}
._33{width:386.815520pt;}
._30{width:393.914222pt;}
._24{width:399.758955pt;}
._36{width:426.758962pt;}
._31{width:474.677902pt;}
._2f{width:507.748504pt;}
._1f{width:514.507149pt;}
._3d{width:520.679628pt;}
._2b{width:547.577750pt;}
._21{width:568.831350pt;}
._39{width:598.203826pt;}
._3a{width:600.966794pt;}
._3c{width:648.151625pt;}
._23{width:819.368787pt;}
._25{width:833.183627pt;}
._27{width:842.705225pt;}
._20{width:890.823390pt;}
._2a{width:912.076990pt;}
._28{width:928.569784pt;}
._29{width:954.584190pt;}
._22{width:1019.577699pt;}
._26{width:1024.253491pt;}
._1e{width:1032.499888pt;}
._c{width:1230.880990pt;}
._4c{width:1857.488075pt;}
._37{width:1866.115210pt;}
.fsc{font-size:31.880533pt;}
.fsa{font-size:36.131200pt;}
.fsb{font-size:37.193600pt;}
.fs8{font-size:40.381867pt;}
.fs2{font-size:42.507200pt;}
.fs0{font-size:47.289067pt;}
.fs7{font-size:47.820800pt;}
.fs6{font-size:52.496000pt;}
.fs9{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs5{font-size:69.074133pt;}
.fs1{font-size:85.014400pt;}
.fs4{font-size:90.328000pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:47.156000pt;}
.y5e{bottom:57.650667pt;}
.y2a{bottom:60.440000pt;}
.y29{bottom:77.708000pt;}
.y5d{bottom:78.373333pt;}
.y7e{bottom:80.673333pt;}
.y28{bottom:90.992000pt;}
.y160{bottom:91.656000pt;}
.yda{bottom:93.980000pt;}
.y129{bottom:94.289333pt;}
.yaa{bottom:94.434667pt;}
.y10d{bottom:94.708000pt;}
.y5c{bottom:94.785333pt;}
.y27{bottom:104.276000pt;}
.y15f{bottom:104.852000pt;}
.y10c{bottom:111.042667pt;}
.y5b{bottom:111.198667pt;}
.yd9{bottom:116.893333pt;}
.y128{bottom:118.126667pt;}
.y15e{bottom:118.136000pt;}
.ya9{bottom:118.709333pt;}
.y10b{bottom:127.378667pt;}
.y5a{bottom:127.612000pt;}
.y26{bottom:128.850667pt;}
.y15d{bottom:131.332000pt;}
.ya8{bottom:142.984000pt;}
.y10a{bottom:143.713333pt;}
.y59{bottom:144.025333pt;}
.y15c{bottom:144.528000pt;}
.y25{bottom:145.526667pt;}
.y127{bottom:149.864000pt;}
.y15b{bottom:157.724000pt;}
.ya7{bottom:159.045333pt;}
.y109{bottom:160.048000pt;}
.y58{bottom:160.438667pt;}
.yd8{bottom:163.992000pt;}
.y126{bottom:165.780000pt;}
.y24{bottom:167.988000pt;}
.y15a{bottom:171.006667pt;}
.ya6{bottom:175.106667pt;}
.y108{bottom:176.384000pt;}
.y57{bottom:176.850667pt;}
.yd7{bottom:177.276000pt;}
.y125{bottom:181.696000pt;}
.y23{bottom:183.926667pt;}
.y159{bottom:184.202667pt;}
.yd6{bottom:190.558667pt;}
.ya5{bottom:191.168000pt;}
.y107{bottom:192.718667pt;}
.y56{bottom:193.264000pt;}
.y158{bottom:197.486667pt;}
.y124{bottom:197.612000pt;}
.y22{bottom:199.865333pt;}
.yd5{bottom:203.842667pt;}
.ya4{bottom:207.230667pt;}
.y106{bottom:209.053333pt;}
.y55{bottom:209.677333pt;}
.y157{bottom:210.682667pt;}
.y123{bottom:213.528000pt;}
.y21{bottom:215.805333pt;}
.yd4{bottom:217.126667pt;}
.ya3{bottom:223.292000pt;}
.y156{bottom:223.966667pt;}
.y105{bottom:225.389333pt;}
.y54{bottom:226.090667pt;}
.y122{bottom:229.444000pt;}
.yd3{bottom:230.409333pt;}
.y20{bottom:231.744000pt;}
.y155{bottom:237.162667pt;}
.ya2{bottom:239.353333pt;}
.y104{bottom:241.724000pt;}
.y53{bottom:242.504000pt;}
.yd2{bottom:243.693333pt;}
.y121{bottom:245.361333pt;}
.y1f{bottom:247.682667pt;}
.y154{bottom:250.445333pt;}
.ya1{bottom:255.414667pt;}
.yd1{bottom:256.977333pt;}
.y103{bottom:258.058667pt;}
.y52{bottom:258.916000pt;}
.y1e{bottom:263.622667pt;}
.y153{bottom:263.641333pt;}
.y120{bottom:269.198667pt;}
.y102{bottom:274.394667pt;}
.y51{bottom:275.329333pt;}
.yd0{bottom:275.653333pt;}
.y152{bottom:276.925333pt;}
.y1d{bottom:279.561333pt;}
.ya0{bottom:288.145333pt;}
.y151{bottom:290.121333pt;}
.y101{bottom:290.729333pt;}
.y50{bottom:291.742667pt;}
.ycf{bottom:292.644000pt;}
.y11f{bottom:300.936000pt;}
.y150{bottom:303.404000pt;}
.y1c{bottom:303.468000pt;}
.yce{bottom:305.928000pt;}
.y100{bottom:307.064000pt;}
.y4f{bottom:308.156000pt;}
.y14f{bottom:316.600000pt;}
.y11e{bottom:316.852000pt;}
.y9f{bottom:321.482667pt;}
.yff{bottom:323.398667pt;}
.y4e{bottom:324.568000pt;}
.ycd{bottom:329.409333pt;}
.y14e{bottom:329.884000pt;}
.y11d{bottom:332.768000pt;}
.y9e{bottom:337.544000pt;}
.yfe{bottom:339.734667pt;}
.y14d{bottom:343.080000pt;}
.ycc{bottom:345.017333pt;}
.y11c{bottom:348.684000pt;}
.y9d{bottom:353.605333pt;}
.yfd{bottom:356.069333pt;}
.y1b{bottom:356.358667pt;}
.y14c{bottom:356.364000pt;}
.ycb{bottom:360.625333pt;}
.y7d{bottom:363.792000pt;}
.y11b{bottom:364.600000pt;}
.y14b{bottom:369.560000pt;}
.y9c{bottom:369.666667pt;}
.yfc{bottom:372.404000pt;}
.y4d{bottom:378.809333pt;}
.yca{bottom:379.121333pt;}
.y7c{bottom:379.952000pt;}
.y11a{bottom:380.516000pt;}
.y1a{bottom:380.696000pt;}
.y14a{bottom:382.842667pt;}
.y9b{bottom:385.729333pt;}
.yc9{bottom:388.553333pt;}
.yfb{bottom:388.740000pt;}
.y19{bottom:395.308000pt;}
.y149{bottom:396.038667pt;}
.y4c{bottom:396.077333pt;}
.y7b{bottom:396.112000pt;}
.y119{bottom:396.432000pt;}
.y9a{bottom:401.790667pt;}
.yfa{bottom:405.074667pt;}
.y148{bottom:409.322667pt;}
.y7a{bottom:412.272000pt;}
.y118{bottom:412.349333pt;}
.y4b{bottom:413.346667pt;}
.yc8{bottom:416.945333pt;}
.y99{bottom:417.852000pt;}
.y18{bottom:417.890667pt;}
.yf9{bottom:421.409333pt;}
.y147{bottom:422.518667pt;}
.y79{bottom:428.432000pt;}
.y4a{bottom:430.614667pt;}
.y17{bottom:432.502667pt;}
.yc7{bottom:432.553333pt;}
.y98{bottom:433.913333pt;}
.y146{bottom:435.801333pt;}
.y117{bottom:436.992000pt;}
.yf8{bottom:437.745333pt;}
.y78{bottom:444.590667pt;}
.y16{bottom:447.114667pt;}
.y49{bottom:447.884000pt;}
.y145{bottom:448.997333pt;}
.y97{bottom:449.976000pt;}
.yf7{bottom:454.080000pt;}
.yc3{bottom:456.090667pt;}
.y77{bottom:460.750667pt;}
.y15{bottom:461.726667pt;}
.y144{bottom:462.281333pt;}
.y48{bottom:465.152000pt;}
.yc2{bottom:465.522667pt;}
.y96{bottom:466.037333pt;}
.yc1{bottom:468.312000pt;}
.yf6{bottom:470.414667pt;}
.yc5{bottom:473.020000pt;}
.y143{bottom:475.477333pt;}
.y14{bottom:476.337333pt;}
.y76{bottom:476.910667pt;}
.yc6{bottom:477.734667pt;}
.y95{bottom:482.098667pt;}
.y47{bottom:482.420000pt;}
.yc4{bottom:484.010667pt;}
.yf5{bottom:486.750667pt;}
.y142{bottom:488.673333pt;}
.y13{bottom:490.949333pt;}
.y75{bottom:493.070667pt;}
.y94{bottom:498.160000pt;}
.y46{bottom:499.689333pt;}
.yc0{bottom:500.421333pt;}
.y141{bottom:501.869333pt;}
.yf4{bottom:503.085333pt;}
.y12{bottom:505.561333pt;}
.y74{bottom:509.230667pt;}
.y93{bottom:514.221333pt;}
.y140{bottom:515.153333pt;}
.ybf{bottom:516.029333pt;}
.y45{bottom:516.957333pt;}
.yf3{bottom:519.420000pt;}
.y11{bottom:520.173333pt;}
.y73{bottom:525.390667pt;}
.y13f{bottom:528.349333pt;}
.y92{bottom:530.284000pt;}
.ybe{bottom:531.637333pt;}
.y44{bottom:534.226667pt;}
.y10{bottom:534.785333pt;}
.yf2{bottom:535.756000pt;}
.y72{bottom:541.549333pt;}
.y13e{bottom:541.632000pt;}
.y91{bottom:546.345333pt;}
.ybd{bottom:547.245333pt;}
.y43{bottom:551.494667pt;}
.yf1{bottom:552.090667pt;}
.y13d{bottom:554.828000pt;}
.yf{bottom:557.368000pt;}
.ybc{bottom:562.853333pt;}
.y13c{bottom:568.112000pt;}
.y42{bottom:568.764000pt;}
.y71{bottom:574.966667pt;}
.ybb{bottom:578.461333pt;}
.y90{bottom:579.618667pt;}
.y13b{bottom:581.308000pt;}
.y41{bottom:586.032000pt;}
.y40{bottom:588.894667pt;}
.y8f{bottom:592.902667pt;}
.yba{bottom:594.069333pt;}
.y13a{bottom:594.590667pt;}
.y70{bottom:600.194667pt;}
.yf0{bottom:601.758667pt;}
.y3f{bottom:603.301333pt;}
.y8e{bottom:606.185333pt;}
.y139{bottom:607.786667pt;}
.ye{bottom:608.804000pt;}
.yb9{bottom:609.676000pt;}
.yef{bottom:615.041333pt;}
.y8d{bottom:619.469333pt;}
.y3d{bottom:620.482667pt;}
.y3e{bottom:620.569333pt;}
.y138{bottom:621.070667pt;}
.yd{bottom:622.088000pt;}
.yb8{bottom:625.284000pt;}
.yee{bottom:628.325333pt;}
.y8c{bottom:632.752000pt;}
.y137{bottom:634.266667pt;}
.y6f{bottom:634.709333pt;}
.y3c{bottom:637.837333pt;}
.yc{bottom:640.684000pt;}
.yb7{bottom:640.892000pt;}
.yed{bottom:641.608000pt;}
.y8b{bottom:646.036000pt;}
.y136{bottom:647.550667pt;}
.y6e{bottom:650.869333pt;}
.yb{bottom:653.968000pt;}
.yec{bottom:654.892000pt;}
.y3a{bottom:655.020000pt;}
.y3b{bottom:655.106667pt;}
.yb6{bottom:656.500000pt;}
.y8a{bottom:659.320000pt;}
.y135{bottom:660.746667pt;}
.y6d{bottom:667.029333pt;}
.yeb{bottom:668.176000pt;}
.yb5{bottom:672.108000pt;}
.y39{bottom:672.374667pt;}
.y89{bottom:672.602667pt;}
.y134{bottom:673.942667pt;}
.ya{bottom:676.816000pt;}
.yea{bottom:681.458667pt;}
.y6c{bottom:683.189333pt;}
.y88{bottom:685.886667pt;}
.y133{bottom:687.138667pt;}
.y38{bottom:689.644000pt;}
.ye9{bottom:694.742667pt;}
.y9{bottom:696.741333pt;}
.y87{bottom:699.170667pt;}
.y6b{bottom:699.349333pt;}
.y132{bottom:700.334667pt;}
.yb4{bottom:702.992000pt;}
.y37{bottom:706.912000pt;}
.ye8{bottom:708.026667pt;}
.y131{bottom:713.617333pt;}
.y6a{bottom:715.509333pt;}
.y86{bottom:717.846667pt;}
.ye7{bottom:721.309333pt;}
.y36{bottom:722.852000pt;}
.y8{bottom:729.569333pt;}
.y69{bottom:731.669333pt;}
.ye6{bottom:734.593333pt;}
.y130{bottom:734.784000pt;}
.y85{bottom:734.838667pt;}
.y35{bottom:740.121333pt;}
.y116{bottom:743.253333pt;}
.y68{bottom:747.828000pt;}
.ye5{bottom:747.877333pt;}
.y115{bottom:752.684000pt;}
.y7{bottom:756.136000pt;}
.y34{bottom:757.389333pt;}
.y16a{bottom:760.430667pt;}
.ye4{bottom:761.160000pt;}
.y84{bottom:762.952000pt;}
.y67{bottom:763.988000pt;}
.yb3{bottom:765.942667pt;}
.y12f{bottom:766.401333pt;}
.y169{bottom:773.714667pt;}
.ye3{bottom:774.444000pt;}
.y33{bottom:774.658667pt;}
.y83{bottom:779.014667pt;}
.yb2{bottom:779.225333pt;}
.y66{bottom:780.148000pt;}
.y114{bottom:781.853333pt;}
.y12e{bottom:782.297333pt;}
.y168{bottom:786.998667pt;}
.ye2{bottom:787.728000pt;}
.y6{bottom:788.181333pt;}
.y32{bottom:791.926667pt;}
.yb1{bottom:792.509333pt;}
.y65{bottom:796.308000pt;}
.y113{bottom:797.769333pt;}
.y12d{bottom:798.194667pt;}
.y167{bottom:800.281333pt;}
.ye1{bottom:801.010667pt;}
.y5{bottom:804.121333pt;}
.yb0{bottom:805.793333pt;}
.y31{bottom:809.194667pt;}
.y82{bottom:811.744000pt;}
.y64{bottom:812.468000pt;}
.y166{bottom:813.565333pt;}
.y112{bottom:813.685333pt;}
.y12c{bottom:814.090667pt;}
.yaf{bottom:819.076000pt;}
.ye0{bottom:819.686667pt;}
.y30{bottom:826.464000pt;}
.y165{bottom:826.849333pt;}
.y63{bottom:828.628000pt;}
.y111{bottom:829.601333pt;}
.yae{bottom:832.360000pt;}
.ydf{bottom:832.970667pt;}
.y4{bottom:837.142667pt;}
.y12b{bottom:837.869333pt;}
.y164{bottom:840.132000pt;}
.y2f{bottom:843.732000pt;}
.y62{bottom:844.786667pt;}
.y81{bottom:845.081333pt;}
.y110{bottom:845.518667pt;}
.yad{bottom:845.644000pt;}
.yde{bottom:846.254667pt;}
.y3{bottom:850.426667pt;}
.y163{bottom:853.416000pt;}
.ydd{bottom:859.537333pt;}
.y61{bottom:860.946667pt;}
.y2e{bottom:861.001333pt;}
.y80{bottom:861.144000pt;}
.y10f{bottom:861.434667pt;}
.yac{bottom:864.320000pt;}
.y162{bottom:866.700000pt;}
.y12a{bottom:869.488000pt;}
.ydc{bottom:872.821333pt;}
.y60{bottom:877.106667pt;}
.y7f{bottom:877.205333pt;}
.y10e{bottom:877.350667pt;}
.y161{bottom:879.982667pt;}
.yab{bottom:881.312000pt;}
.y2d{bottom:884.912000pt;}
.ydb{bottom:889.813333pt;}
.y5f{bottom:893.266667pt;}
.y2{bottom:897.250667pt;}
.y1{bottom:920.378667pt;}
.y2c{bottom:922.490667pt;}
.h11{height:25.183446pt;}
.h1a{height:25.403229pt;}
.ha{height:29.032418pt;}
.h13{height:29.075084pt;}
.h21{height:29.372475pt;}
.hb{height:33.044173pt;}
.h2{height:34.473730pt;}
.h1e{height:35.918494pt;}
.h16{height:36.290431pt;}
.hd{height:36.715502pt;}
.h18{height:37.034305pt;}
.h4{height:37.661379pt;}
.h12{height:37.869379pt;}
.h24{height:38.082713pt;}
.h26{height:38.088046pt;}
.hc{height:42.369229pt;}
.h17{height:43.675486pt;}
.he{height:47.076606pt;}
.h25{height:47.272046pt;}
.h10{height:47.343273pt;}
.h20{height:48.191638pt;}
.h1b{height:50.507229pt;}
.h14{height:52.238863pt;}
.h15{height:52.244196pt;}
.h1d{height:55.898305pt;}
.h5{height:56.492305pt;}
.hf{height:59.401939pt;}
.h9{height:61.199682pt;}
.h7{height:61.887682pt;}
.h3{height:64.100858pt;}
.h8{height:66.973712pt;}
.h1c{height:69.365895pt;}
.h1f{height:73.533098pt;}
.h6{height:80.030608pt;}
.h22{height:84.324606pt;}
.h23{height:84.799273pt;}
.h19{height:125.925822pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x12{left:51.972000pt;}
.xe{left:53.585333pt;}
.x37{left:58.016000pt;}
.x46{left:59.049333pt;}
.x17{left:61.213333pt;}
.x7{left:64.080000pt;}
.x1e{left:65.786667pt;}
.x5{left:66.972000pt;}
.x13{left:67.912000pt;}
.x20{left:69.674667pt;}
.x18{left:71.897333pt;}
.x1b{left:74.720000pt;}
.x47{left:78.081333pt;}
.x42{left:83.852000pt;}
.x15{left:85.014667pt;}
.x2c{left:87.558667pt;}
.x1c{left:88.885333pt;}
.x16{left:102.456000pt;}
.x9{left:103.369333pt;}
.xa{left:114.886667pt;}
.x2b{left:120.188000pt;}
.x1d{left:129.345333pt;}
.x35{left:139.166667pt;}
.x2d{left:140.601333pt;}
.x21{left:149.028000pt;}
.x38{left:150.196000pt;}
.x43{left:165.060000pt;}
.x22{left:166.469333pt;}
.x29{left:167.585333pt;}
.x1f{left:169.398667pt;}
.x36{left:173.169333pt;}
.x2e{left:175.868000pt;}
.x44{left:180.172000pt;}
.x2a{left:185.025333pt;}
.x48{left:192.777333pt;}
.x6{left:203.005333pt;}
.xb{left:208.205333pt;}
.x2f{left:218.564000pt;}
.x30{left:222.433333pt;}
.x1{left:228.816000pt;}
.x28{left:241.078667pt;}
.x31{left:249.304000pt;}
.x10{left:253.118667pt;}
.x39{left:254.854667pt;}
.x19{left:260.736000pt;}
.x3{left:264.976000pt;}
.x1a{left:274.689333pt;}
.x2{left:279.234667pt;}
.xf{left:284.760000pt;}
.xd{left:285.657333pt;}
.x11{left:291.050667pt;}
.x33{left:300.984000pt;}
.x8{left:307.001333pt;}
.x24{left:320.382667pt;}
.x25{left:337.824000pt;}
.x26{left:340.160000pt;}
.x23{left:354.864000pt;}
.x27{left:357.601333pt;}
.x3a{left:359.513333pt;}
.x14{left:364.624000pt;}
.x32{left:366.437333pt;}
.x3b{left:411.842667pt;}
.x34{left:426.796000pt;}
.x45{left:444.072000pt;}
.x3c{left:464.173333pt;}
.x40{left:484.585333pt;}
.x41{left:502.026667pt;}
.x3d{left:523.144000pt;}
.x4{left:547.542667pt;}
.x3e{left:575.473333pt;}
.xc{left:584.008000pt;}
.x3f{left:627.802667pt;}
}




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