
    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_69326e4662c150419aebdc8d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.180000;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_cf73e66a82d45fb9de91beec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.090000;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_cf017b1d2a51020073b4e26f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.189000;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_f84dd44692eb2e716252e048.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8019cf8b8d057bbcb2f8a6ec.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.092000;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);}
.v1{vertical-align:-34.649400px;}
.v9{vertical-align:-19.800000px;}
.v3{vertical-align:-17.819400px;}
.v6{vertical-align:-15.840000px;}
.v4{vertical-align:-6.000600px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:15.840600px;}
.v5{vertical-align:17.820000px;}
.v8{vertical-align:28.776000px;}
.v2{vertical-align:34.649400px;}
.ls19{letter-spacing:-2.160000px;}
.ls5{letter-spacing:-1.056000px;}
.ls6{letter-spacing:-0.864000px;}
.ls1a{letter-spacing:-0.032400px;}
.ls18{letter-spacing:-0.006300px;}
.lsd{letter-spacing:-0.005400px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.000960px;}
.ls17{letter-spacing:0.003480px;}
.ls2{letter-spacing:0.004080px;}
.ls9{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls12{letter-spacing:0.054000px;}
.ls14{letter-spacing:0.432000px;}
.ls15{letter-spacing:0.768000px;}
.ls10{letter-spacing:0.820800px;}
.lsb{letter-spacing:0.864000px;}
.lsc{letter-spacing:0.891000px;}
.ls11{letter-spacing:0.896400px;}
.lse{letter-spacing:0.993600px;}
.lsf{letter-spacing:1.355400px;}
.ls0{letter-spacing:2.435400px;}
.ls4{letter-spacing:2.604000px;}
.ls7{letter-spacing:6.075000px;}
.lsa{letter-spacing:11.842200px;}
.ls16{letter-spacing:949.627200px;}
.ls8{letter-spacing:951.513600px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6{word-spacing:-54.000000px;}
.wse9{word-spacing:-12.600000px;}
.ws102{word-spacing:-12.593700px;}
.ws0{word-spacing:-12.180000px;}
.ws4d{word-spacing:-12.171600px;}
.ws1{word-spacing:-12.144000px;}
.ws4c{word-spacing:-12.069000px;}
.ws4e{word-spacing:-11.400000px;}
.wsa5{word-spacing:-11.232000px;}
.ws4{word-spacing:-10.805400px;}
.ws3{word-spacing:-10.800000px;}
.ws156{word-spacing:-9.936000px;}
.wsa8{word-spacing:-9.604800px;}
.ws4b{word-spacing:-9.185400px;}
.ws7{word-spacing:-9.180000px;}
.wsa6{word-spacing:-8.928000px;}
.ws80{word-spacing:-8.548200px;}
.ws104{word-spacing:-7.020000px;}
.ws103{word-spacing:-6.960000px;}
.ws5{word-spacing:-6.264000px;}
.ws2{word-spacing:-5.324400px;}
.wsa7{word-spacing:-4.732800px;}
.wsb9{word-spacing:-4.060800px;}
.ws86{word-spacing:-3.094200px;}
.wsa{word-spacing:-2.604000px;}
.ws122{word-spacing:-2.262600px;}
.wsff{word-spacing:-1.976400px;}
.ws128{word-spacing:-1.711800px;}
.ws129{word-spacing:-1.706400px;}
.wsfe{word-spacing:-1.684800px;}
.ws16c{word-spacing:-1.657800px;}
.ws15f{word-spacing:-1.652400px;}
.ws162{word-spacing:-1.582200px;}
.ws12d{word-spacing:-1.404000px;}
.ws10a{word-spacing:-1.377000px;}
.ws14f{word-spacing:-1.360800px;}
.ws88{word-spacing:-1.355400px;}
.ws186{word-spacing:-1.317600px;}
.ws121{word-spacing:-1.306800px;}
.wscc{word-spacing:-1.301400px;}
.ws11d{word-spacing:-1.166400px;}
.ws14e{word-spacing:-1.155600px;}
.ws87{word-spacing:-1.139400px;}
.ws10d{word-spacing:-1.128600px;}
.ws185{word-spacing:-1.117800px;}
.ws3f{word-spacing:-1.047600px;}
.ws157{word-spacing:-1.042200px;}
.ws41{word-spacing:-1.020600px;}
.wsf8{word-spacing:-0.999000px;}
.ws1f{word-spacing:-0.972000px;}
.wsaf{word-spacing:-0.950400px;}
.ws6d{word-spacing:-0.874800px;}
.ws89{word-spacing:-0.820800px;}
.ws1b{word-spacing:-0.734400px;}
.ws7d{word-spacing:-0.642600px;}
.ws11{word-spacing:-0.621000px;}
.wsf{word-spacing:-0.599400px;}
.ws15{word-spacing:-0.588600px;}
.wscd{word-spacing:-0.534600px;}
.wscb{word-spacing:-0.518400px;}
.ws10{word-spacing:-0.507600px;}
.ws8e{word-spacing:-0.410400px;}
.ws14a{word-spacing:-0.367200px;}
.ws42{word-spacing:-0.361800px;}
.wsbc{word-spacing:-0.345600px;}
.ws5c{word-spacing:-0.340200px;}
.ws15d{word-spacing:-0.313200px;}
.ws134{word-spacing:-0.232200px;}
.ws136{word-spacing:-0.221400px;}
.ws115{word-spacing:-0.167400px;}
.ws116{word-spacing:-0.162000px;}
.ws183{word-spacing:-0.156600px;}
.ws135{word-spacing:-0.151200px;}
.ws61{word-spacing:-0.124200px;}
.wsa2{word-spacing:-0.054000px;}
.wsee{word-spacing:-0.048600px;}
.ws63{word-spacing:-0.016200px;}
.ws19{word-spacing:-0.005400px;}
.ws4f{word-spacing:-0.004800px;}
.ws8{word-spacing:0.000000px;}
.ws5d{word-spacing:0.010800px;}
.ws114{word-spacing:0.027000px;}
.ws39{word-spacing:0.059400px;}
.wsd8{word-spacing:0.091800px;}
.ws11f{word-spacing:0.108000px;}
.ws123{word-spacing:0.113400px;}
.ws82{word-spacing:0.291600px;}
.ws143{word-spacing:0.388800px;}
.ws184{word-spacing:0.399600px;}
.wsae{word-spacing:0.426600px;}
.ws44{word-spacing:0.437400px;}
.ws33{word-spacing:0.534600px;}
.ws12f{word-spacing:0.594000px;}
.ws112{word-spacing:0.599400px;}
.ws8d{word-spacing:0.777600px;}
.wsfa{word-spacing:0.831600px;}
.ws9e{word-spacing:0.864000px;}
.ws101{word-spacing:0.912600px;}
.ws100{word-spacing:0.918000px;}
.ws7b{word-spacing:0.928800px;}
.ws105{word-spacing:1.020600px;}
.ws106{word-spacing:1.026000px;}
.wsc8{word-spacing:1.069200px;}
.ws12{word-spacing:1.074600px;}
.ws98{word-spacing:1.123200px;}
.wsf9{word-spacing:1.128600px;}
.wsd{word-spacing:1.161000px;}
.wsa4{word-spacing:1.306800px;}
.ws95{word-spacing:1.312200px;}
.ws110{word-spacing:1.425600px;}
.ws111{word-spacing:1.436400px;}
.ws127{word-spacing:1.452600px;}
.ws17{word-spacing:1.463400px;}
.ws12a{word-spacing:1.485000px;}
.ws11e{word-spacing:1.576800px;}
.ws1a{word-spacing:1.603800px;}
.wsef{word-spacing:1.776600px;}
.ws53{word-spacing:1.830600px;}
.ws132{word-spacing:1.857600px;}
.ws119{word-spacing:1.927800px;}
.ws109{word-spacing:2.008800px;}
.ws13{word-spacing:2.025000px;}
.ws68{word-spacing:2.046600px;}
.ws18a{word-spacing:2.111400px;}
.ws9d{word-spacing:2.160000px;}
.wsde{word-spacing:2.170800px;}
.ws14{word-spacing:2.224800px;}
.ws7e{word-spacing:2.241000px;}
.ws118{word-spacing:2.262600px;}
.ws7f{word-spacing:2.268000px;}
.wsb2{word-spacing:2.354400px;}
.ws18{word-spacing:2.397600px;}
.wse6{word-spacing:2.413800px;}
.ws2b{word-spacing:2.424600px;}
.ws5e{word-spacing:2.435400px;}
.ws10e{word-spacing:2.457000px;}
.ws107{word-spacing:2.462400px;}
.ws10f{word-spacing:2.467800px;}
.ws108{word-spacing:2.473200px;}
.ws90{word-spacing:2.484000px;}
.ws62{word-spacing:2.575800px;}
.wsf6{word-spacing:2.635200px;}
.ws9c{word-spacing:2.662200px;}
.ws124{word-spacing:2.716200px;}
.ws85{word-spacing:2.732400px;}
.ws12b{word-spacing:2.775600px;}
.ws12c{word-spacing:2.781000px;}
.ws180{word-spacing:2.905200px;}
.ws3e{word-spacing:3.002400px;}
.wscf{word-spacing:3.034800px;}
.wse2{word-spacing:3.132000px;}
.wse3{word-spacing:3.142800px;}
.ws54{word-spacing:3.169800px;}
.ws56{word-spacing:3.175200px;}
.ws57{word-spacing:3.191400px;}
.ws17a{word-spacing:3.342600px;}
.ws65{word-spacing:3.348000px;}
.ws160{word-spacing:3.364200px;}
.ws137{word-spacing:3.402000px;}
.ws181{word-spacing:3.412800px;}
.wsc{word-spacing:3.439800px;}
.ws84{word-spacing:3.445200px;}
.ws14d{word-spacing:3.461400px;}
.ws71{word-spacing:3.493800px;}
.wsd1{word-spacing:3.542400px;}
.wsdd{word-spacing:3.553200px;}
.ws11a{word-spacing:3.574800px;}
.ws11b{word-spacing:3.580200px;}
.ws165{word-spacing:3.612600px;}
.ws43{word-spacing:3.693600px;}
.ws34{word-spacing:3.726000px;}
.ws35{word-spacing:3.736800px;}
.ws16{word-spacing:3.774600px;}
.ws11c{word-spacing:3.796200px;}
.wsca{word-spacing:3.801600px;}
.wse4{word-spacing:3.807000px;}
.wsc9{word-spacing:3.823200px;}
.ws2e{word-spacing:3.834000px;}
.ws113{word-spacing:3.839400px;}
.wsfb{word-spacing:3.882600px;}
.wsb7{word-spacing:3.925800px;}
.ws17b{word-spacing:3.936600px;}
.ws161{word-spacing:3.963600px;}
.ws13b{word-spacing:3.990600px;}
.ws147{word-spacing:4.012200px;}
.wsb{word-spacing:4.044600px;}
.wsc5{word-spacing:4.120200px;}
.ws172{word-spacing:4.158000px;}
.ws159{word-spacing:4.174200px;}
.ws8f{word-spacing:4.195800px;}
.ws55{word-spacing:4.201200px;}
.ws15a{word-spacing:4.206600px;}
.ws130{word-spacing:4.212000px;}
.ws12e{word-spacing:4.228200px;}
.ws164{word-spacing:4.249800px;}
.ws83{word-spacing:4.255200px;}
.wsf0{word-spacing:4.330800px;}
.ws38{word-spacing:4.384800px;}
.ws69{word-spacing:4.411800px;}
.ws6a{word-spacing:4.417200px;}
.ws14b{word-spacing:4.438800px;}
.ws2f{word-spacing:4.509000px;}
.ws179{word-spacing:4.552200px;}
.wsd0{word-spacing:4.579200px;}
.wsce{word-spacing:4.584600px;}
.ws146{word-spacing:4.719600px;}
.ws138{word-spacing:4.741200px;}
.ws139{word-spacing:4.773600px;}
.wsb6{word-spacing:4.800600px;}
.ws189{word-spacing:4.806000px;}
.wsd9{word-spacing:4.849200px;}
.ws120{word-spacing:4.924800px;}
.ws131{word-spacing:4.951800px;}
.ws75{word-spacing:5.113800px;}
.ws16e{word-spacing:5.124600px;}
.wsea{word-spacing:5.146200px;}
.ws27{word-spacing:5.248800px;}
.ws26{word-spacing:5.324400px;}
.ws3b{word-spacing:5.373000px;}
.ws7a{word-spacing:5.389200px;}
.ws79{word-spacing:5.394600px;}
.ws36{word-spacing:5.405400px;}
.ws5a{word-spacing:5.524200px;}
.ws5f{word-spacing:5.551200px;}
.wsfd{word-spacing:5.562000px;}
.wsfc{word-spacing:5.567400px;}
.ws4a{word-spacing:5.594400px;}
.ws40{word-spacing:5.637600px;}
.ws99{word-spacing:5.653800px;}
.ws158{word-spacing:5.670000px;}
.ws9b{word-spacing:5.686200px;}
.ws91{word-spacing:5.837400px;}
.ws8b{word-spacing:5.842800px;}
.wse7{word-spacing:5.904000px;}
.ws17e{word-spacing:5.923800px;}
.ws17f{word-spacing:5.950800px;}
.ws155{word-spacing:5.977800px;}
.ws10b{word-spacing:5.999400px;}
.ws10c{word-spacing:6.004800px;}
.ws16f{word-spacing:6.026400px;}
.ws96{word-spacing:6.042600px;}
.ws24{word-spacing:6.075000px;}
.ws166{word-spacing:6.085800px;}
.wsd2{word-spacing:6.280200px;}
.ws117{word-spacing:6.388200px;}
.ws15e{word-spacing:6.409800px;}
.ws93{word-spacing:6.447600px;}
.wsb4{word-spacing:6.458400px;}
.wsb5{word-spacing:6.490800px;}
.wsbd{word-spacing:6.501600px;}
.ws168{word-spacing:6.507000px;}
.ws32{word-spacing:6.523200px;}
.ws125{word-spacing:6.534000px;}
.ws9a{word-spacing:6.550200px;}
.ws126{word-spacing:6.555600px;}
.wse{word-spacing:6.642000px;}
.ws49{word-spacing:6.685200px;}
.ws45{word-spacing:6.739200px;}
.ws52{word-spacing:6.787800px;}
.ws171{word-spacing:6.804000px;}
.ws173{word-spacing:6.858000px;}
.ws97{word-spacing:6.868800px;}
.ws2d{word-spacing:6.917400px;}
.ws3a{word-spacing:6.949800px;}
.ws1d{word-spacing:6.971400px;}
.wsc0{word-spacing:7.020000px;}
.ws76{word-spacing:7.025400px;}
.ws73{word-spacing:7.074000px;}
.wsda{word-spacing:7.084800px;}
.ws142{word-spacing:7.122600px;}
.ws154{word-spacing:7.133400px;}
.ws47{word-spacing:7.149600px;}
.ws14c{word-spacing:7.171200px;}
.ws81{word-spacing:7.257600px;}
.ws18b{word-spacing:7.263000px;}
.ws3c{word-spacing:7.311600px;}
.wsac{word-spacing:7.317000px;}
.ws16d{word-spacing:7.441200px;}
.ws67{word-spacing:7.479000px;}
.ws59{word-spacing:7.495200px;}
.ws5b{word-spacing:7.500600px;}
.wsa0{word-spacing:7.533000px;}
.wse0{word-spacing:7.543800px;}
.wse1{word-spacing:7.554600px;}
.wsd6{word-spacing:7.641000px;}
.ws167{word-spacing:7.657200px;}
.wsd5{word-spacing:7.695000px;}
.wsdf{word-spacing:7.722000px;}
.ws50{word-spacing:7.786800px;}
.ws94{word-spacing:7.905600px;}
.ws37{word-spacing:7.959600px;}
.wsf5{word-spacing:8.035200px;}
.wsb8{word-spacing:8.164800px;}
.ws151{word-spacing:8.181000px;}
.ws77{word-spacing:8.240400px;}
.ws29{word-spacing:8.256600px;}
.ws7c{word-spacing:8.364600px;}
.ws20{word-spacing:8.370000px;}
.ws141{word-spacing:8.380800px;}
.ws21{word-spacing:8.402400px;}
.ws153{word-spacing:8.586000px;}
.wsc6{word-spacing:8.618400px;}
.ws188{word-spacing:8.623800px;}
.ws22{word-spacing:8.640000px;}
.ws8c{word-spacing:8.683200px;}
.wsdc{word-spacing:8.834400px;}
.wsbe{word-spacing:8.850600px;}
.wsbf{word-spacing:8.866800px;}
.ws1e{word-spacing:8.899200px;}
.ws64{word-spacing:8.947800px;}
.wseb{word-spacing:9.120600px;}
.ws6f{word-spacing:9.201600px;}
.ws16b{word-spacing:9.244800px;}
.ws72{word-spacing:9.315000px;}
.ws74{word-spacing:9.325800px;}
.wsc3{word-spacing:9.352800px;}
.wsc4{word-spacing:9.363600px;}
.wsad{word-spacing:9.520200px;}
.wsbb{word-spacing:9.558000px;}
.ws6b{word-spacing:9.865800px;}
.ws25{word-spacing:9.984600px;}
.ws58{word-spacing:10.054800px;}
.ws70{word-spacing:10.060200px;}
.ws152{word-spacing:10.098000px;}
.ws187{word-spacing:10.146600px;}
.wsc2{word-spacing:10.324800px;}
.wsf4{word-spacing:10.476000px;}
.ws31{word-spacing:10.562400px;}
.ws66{word-spacing:10.611000px;}
.ws150{word-spacing:10.827000px;}
.ws133{word-spacing:11.048400px;}
.wsab{word-spacing:11.086200px;}
.ws148{word-spacing:11.156400px;}
.ws1c{word-spacing:11.313000px;}
.ws169{word-spacing:11.512800px;}
.wsb3{word-spacing:11.750400px;}
.ws6c{word-spacing:11.782800px;}
.ws6e{word-spacing:11.842200px;}
.wsd3{word-spacing:11.934000px;}
.ws2a{word-spacing:12.063600px;}
.wsf3{word-spacing:12.360600px;}
.wsf2{word-spacing:12.366000px;}
.ws60{word-spacing:13.084200px;}
.ws149{word-spacing:13.122000px;}
.wsb0{word-spacing:13.213800px;}
.ws13e{word-spacing:13.386600px;}
.wse5{word-spacing:13.537800px;}
.ws140{word-spacing:13.640400px;}
.wsd7{word-spacing:13.813200px;}
.ws17c{word-spacing:13.894200px;}
.ws170{word-spacing:13.899600px;}
.ws163{word-spacing:13.996800px;}
.ws2c{word-spacing:14.115600px;}
.ws144{word-spacing:14.310000px;}
.ws145{word-spacing:14.326200px;}
.ws175{word-spacing:14.418000px;}
.wsf7{word-spacing:14.423400px;}
.ws46{word-spacing:14.428800px;}
.wsc7{word-spacing:14.644800px;}
.ws182{word-spacing:15.001200px;}
.ws51{word-spacing:15.201000px;}
.wsf1{word-spacing:15.228000px;}
.ws17d{word-spacing:15.784200px;}
.ws23{word-spacing:16.011000px;}
.ws92{word-spacing:16.021800px;}
.ws9{word-spacing:16.200000px;}
.ws13c{word-spacing:16.243200px;}
.ws15b{word-spacing:16.475400px;}
.ws178{word-spacing:16.480800px;}
.wsa1{word-spacing:16.556400px;}
.ws15c{word-spacing:16.632000px;}
.ws28{word-spacing:16.648200px;}
.wsb1{word-spacing:16.772400px;}
.ws174{word-spacing:16.961400px;}
.wsdb{word-spacing:17.010000px;}
.ws9f{word-spacing:18.165600px;}
.ws8a{word-spacing:18.900000px;}
.ws13d{word-spacing:19.110600px;}
.wsa3{word-spacing:19.197000px;}
.wsc1{word-spacing:19.445400px;}
.ws13a{word-spacing:19.731600px;}
.ws177{word-spacing:20.185200px;}
.ws3d{word-spacing:20.665800px;}
.ws16a{word-spacing:20.908800px;}
.wsed{word-spacing:22.528800px;}
.wsd4{word-spacing:22.566600px;}
.wsaa{word-spacing:23.463000px;}
.ws30{word-spacing:23.770800px;}
.ws48{word-spacing:27.561600px;}
.ws78{word-spacing:28.139400px;}
.ws176{word-spacing:28.366200px;}
.wsec{word-spacing:34.630200px;}
.wsba{word-spacing:35.445600px;}
.ws13f{word-spacing:36.855000px;}
.wse8{word-spacing:206.400000px;}
.wsa9{word-spacing:773.208000px;}
._1c{margin-left:-773.218500px;}
._33{margin-left:-206.400000px;}
._1e{margin-left:-34.797600px;}
._1f{margin-left:-27.727500px;}
._19{margin-left:-23.000700px;}
._1a{margin-left:-19.408500px;}
._10{margin-left:-18.304500px;}
._e{margin-left:-16.830420px;}
._20{margin-left:-15.765120px;}
._c{margin-left:-14.708520px;}
._d{margin-left:-13.482600px;}
._13{margin-left:-12.441600px;}
._1b{margin-left:-11.433180px;}
._9{margin-left:-9.890700px;}
._b{margin-left:-7.999800px;}
._17{margin-left:-6.831000px;}
._0{margin-left:-5.562000px;}
._2{margin-left:-3.888000px;}
._7{margin-left:-2.593500px;}
._1{margin-left:-1.188000px;}
._a{width:1.554000px;}
._6{width:2.656500px;}
._8{width:4.003200px;}
._5{width:5.092500px;}
._f{width:6.613620px;}
._11{width:8.472600px;}
._12{width:9.914520px;}
._14{width:11.998800px;}
._18{width:15.188700px;}
._21{width:17.073600px;}
._23{width:18.312000px;}
._15{width:20.919720px;}
._16{width:22.584000px;}
._3c{width:43.070400px;}
._26{width:158.400000px;}
._31{width:206.400000px;}
._38{width:224.463600px;}
._35{width:232.660800px;}
._28{width:241.387200px;}
._3b{width:286.881600px;}
._27{width:298.123200px;}
._24{width:307.622400px;}
._3a{width:434.400000px;}
._36{width:444.470400px;}
._25{width:467.592000px;}
._32{width:469.473600px;}
._39{width:471.163200px;}
._2c{width:480.931200px;}
._29{width:499.617600px;}
._2b{width:508.833600px;}
._22{width:523.670400px;}
._2a{width:526.497600px;}
._34{width:575.198400px;}
._30{width:597.474600px;}
._2d{width:611.160000px;}
._2f{width:645.777600px;}
._1d{width:683.422020px;}
._3d{width:685.995600px;}
._37{width:692.400000px;}
._2e{width:707.745600px;}
._4{width:879.314400px;}
._3{width:939.848400px;}
.fc1{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.840000px;}
.fs5{font-size:31.320000px;}
.fsc{font-size:34.800000px;}
.fs8{font-size:36.000000px;}
.fs6{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs9{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fs2{font-size:60.900000px;}
.fs7{font-size:63.000000px;}
.fs4{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y5d{bottom:0.180000px;}
.y1{bottom:78.579900px;}
.y14a{bottom:114.946050px;}
.y2e{bottom:116.039700px;}
.y143{bottom:117.415350px;}
.ye6{bottom:119.349450px;}
.ya2{bottom:120.915750px;}
.y101{bottom:123.445200px;}
.y12e{bottom:127.570050px;}
.y149{bottom:131.146050px;}
.y2d{bottom:132.239700px;}
.y142{bottom:133.615350px;}
.ya1{bottom:137.115750px;}
.y100{bottom:139.645200px;}
.ye5{bottom:140.305050px;}
.y12d{bottom:143.770050px;}
.y148{bottom:147.346050px;}
.y2c{bottom:148.439700px;}
.y141{bottom:149.815350px;}
.ya0{bottom:153.315750px;}
.y6c{bottom:154.841550px;}
.y6d{bottom:155.021550px;}
.yff{bottom:155.845200px;}
.y12c{bottom:159.968700px;}
.ye4{bottom:161.564250px;}
.y2b{bottom:164.639700px;}
.y140{bottom:166.015350px;}
.y147{bottom:167.797200px;}
.y9f{bottom:169.515750px;}
.y6b{bottom:171.848100px;}
.yfe{bottom:172.045200px;}
.y12b{bottom:176.168700px;}
.y2a{bottom:180.839700px;}
.y13f{bottom:182.215350px;}
.ye3{bottom:182.824650px;}
.y6a{bottom:188.048100px;}
.yfd{bottom:188.245200px;}
.y9e{bottom:189.966900px;}
.y12a{bottom:192.368700px;}
.y29{bottom:197.039700px;}
.y13e{bottom:198.415350px;}
.ye2{bottom:204.083850px;}
.yfc{bottom:204.445200px;}
.y69{bottom:208.500600px;}
.y129{bottom:208.570050px;}
.y28{bottom:213.239700px;}
.y13d{bottom:214.615350px;}
.y9d{bottom:218.923050px;}
.y128{bottom:224.770050px;}
.yfb{bottom:224.897550px;}
.ye1{bottom:225.343050px;}
.y27{bottom:229.439700px;}
.y13c{bottom:230.815350px;}
.y9c{bottom:235.123050px;}
.y68{bottom:239.581650px;}
.y127{bottom:240.968700px;}
.y26{bottom:245.639700px;}
.ye0{bottom:246.602250px;}
.y13b{bottom:247.015350px;}
.y9b{bottom:251.323050px;}
.y67{bottom:255.781650px;}
.y126{bottom:257.168700px;}
.y25{bottom:261.839700px;}
.y13a{bottom:263.215350px;}
.y9a{bottom:267.523050px;}
.ydf{bottom:267.862650px;}
.y125{bottom:273.368700px;}
.y66{bottom:274.106550px;}
.y24{bottom:278.039700px;}
.y139{bottom:279.415350px;}
.y99{bottom:283.723350px;}
.yde{bottom:289.121850px;}
.y124{bottom:289.570050px;}
.y65{bottom:292.431450px;}
.yf2{bottom:293.588700px;}
.y23{bottom:294.239700px;}
.y138{bottom:295.615350px;}
.y98{bottom:299.923350px;}
.y123{bottom:305.770050px;}
.yf1{bottom:309.788700px;}
.yf9{bottom:309.788850px;}
.ydd{bottom:310.381050px;}
.y22{bottom:310.439700px;}
.y64{bottom:310.759050px;}
.y137{bottom:311.815350px;}
.y97{bottom:316.123350px;}
.y122{bottom:321.968700px;}
.yf0{bottom:325.988700px;}
.yf8{bottom:325.988850px;}
.y21{bottom:326.639700px;}
.y136{bottom:328.015350px;}
.y63{bottom:329.084700px;}
.ydc{bottom:331.640250px;}
.y96{bottom:332.323350px;}
.y121{bottom:338.168700px;}
.yef{bottom:342.188700px;}
.yf7{bottom:342.188850px;}
.y20{bottom:342.839700px;}
.y135{bottom:344.215350px;}
.y62{bottom:345.284700px;}
.y95{bottom:348.523350px;}
.ydb{bottom:352.899450px;}
.y120{bottom:354.368700px;}
.yee{bottom:358.388700px;}
.yf6{bottom:358.388850px;}
.y1f{bottom:359.039700px;}
.y134{bottom:360.415350px;}
.y60{bottom:362.804700px;}
.y61{bottom:362.984700px;}
.y94{bottom:364.723350px;}
.y11f{bottom:370.570050px;}
.yda{bottom:374.161050px;}
.yed{bottom:374.588700px;}
.yf5{bottom:374.588850px;}
.y1e{bottom:375.239700px;}
.y133{bottom:376.615350px;}
.y93{bottom:380.923350px;}
.y5e{bottom:381.130200px;}
.y5f{bottom:381.310200px;}
.y11e{bottom:386.770050px;}
.yec{bottom:390.788700px;}
.yf4{bottom:390.788850px;}
.y1d{bottom:391.439700px;}
.y132{bottom:392.815350px;}
.yd9{bottom:395.420250px;}
.y92{bottom:397.123350px;}
.y5c{bottom:398.137050px;}
.y11d{bottom:402.968700px;}
.yeb{bottom:406.988850px;}
.y1c{bottom:407.639700px;}
.y131{bottom:409.015350px;}
.y91{bottom:413.323350px;}
.y5b{bottom:414.337050px;}
.yd8{bottom:416.679450px;}
.y11c{bottom:419.168700px;}
.yea{bottom:423.188850px;}
.y1b{bottom:423.839700px;}
.y130{bottom:425.215350px;}
.y90{bottom:429.523350px;}
.y5a{bottom:430.537050px;}
.yd7{bottom:437.938650px;}
.ye9{bottom:439.388850px;}
.y11b{bottom:439.621200px;}
.y1a{bottom:440.039700px;}
.y12f{bottom:441.415350px;}
.y8f{bottom:445.723350px;}
.y59{bottom:450.988200px;}
.yf3{bottom:455.588700px;}
.ye8{bottom:455.588850px;}
.y32{bottom:456.239700px;}
.y19{bottom:456.239850px;}
.yd6{bottom:459.200250px;}
.y8e{bottom:461.923350px;}
.y31{bottom:472.439700px;}
.y18{bottom:472.439850px;}
.y8d{bottom:478.123350px;}
.yd5{bottom:480.459450px;}
.y58{bottom:484.196850px;}
.y30{bottom:488.639700px;}
.y17{bottom:488.639850px;}
.y8c{bottom:494.323350px;}
.yfa{bottom:496.483200px;}
.yd4{bottom:501.718650px;}
.y16{bottom:504.839550px;}
.y2f{bottom:504.839700px;}
.y11a{bottom:509.737200px;}
.y8b{bottom:510.523350px;}
.yd3{bottom:522.977850px;}
.y57{bottom:524.356350px;}
.y8a{bottom:526.723350px;}
.y119{bottom:538.693350px;}
.y56{bottom:540.556350px;}
.y89{bottom:542.923350px;}
.yd1{bottom:543.533850px;}
.yd0{bottom:550.739850px;}
.y118{bottom:554.893350px;}
.y55{bottom:556.756350px;}
.yd2{bottom:557.933850px;}
.y88{bottom:559.123350px;}
.y117{bottom:571.093350px;}
.y15{bottom:572.903700px;}
.y54{bottom:572.956500px;}
.y87{bottom:575.323350px;}
.ycf{bottom:578.683200px;}
.y116{bottom:587.293350px;}
.y53{bottom:589.156500px;}
.y86{bottom:591.523350px;}
.y14{bottom:601.859850px;}
.y115{bottom:603.493350px;}
.y52{bottom:605.356500px;}
.y85{bottom:607.723350px;}
.y13{bottom:618.059850px;}
.y114{bottom:619.693350px;}
.y51{bottom:621.556500px;}
.y84{bottom:623.923350px;}
.ybb{bottom:625.744350px;}
.y12{bottom:634.259850px;}
.y113{bottom:635.893350px;}
.yce{bottom:637.756350px;}
.y50{bottom:637.756500px;}
.yba{bottom:641.944350px;}
.y83{bottom:644.375850px;}
.y11{bottom:650.459850px;}
.y112{bottom:652.093350px;}
.ycd{bottom:653.956350px;}
.y4f{bottom:653.956500px;}
.y146{bottom:653.956650px;}
.yb9{bottom:658.144350px;}
.y82{bottom:661.475850px;}
.y10{bottom:666.659850px;}
.y111{bottom:668.293350px;}
.ycc{bottom:670.156350px;}
.y4e{bottom:670.156500px;}
.y145{bottom:670.156650px;}
.yb8{bottom:674.344350px;}
.yf{bottom:682.859850px;}
.y110{bottom:684.493350px;}
.ycb{bottom:686.356350px;}
.y4d{bottom:686.356500px;}
.y144{bottom:686.356650px;}
.yb7{bottom:690.544500px;}
.ye{bottom:699.059850px;}
.y10f{bottom:700.693350px;}
.y4c{bottom:702.556500px;}
.yca{bottom:702.556650px;}
.y81{bottom:704.088300px;}
.yb6{bottom:706.744500px;}
.yd{bottom:715.259850px;}
.y10e{bottom:716.893500px;}
.y4b{bottom:718.756500px;}
.yc9{bottom:718.756650px;}
.yb5{bottom:722.944500px;}
.yc{bottom:731.459850px;}
.y10d{bottom:733.093500px;}
.y4a{bottom:734.956500px;}
.yc8{bottom:734.956650px;}
.y80{bottom:735.169350px;}
.yb4{bottom:739.144500px;}
.yb{bottom:747.659700px;}
.y10c{bottom:749.293500px;}
.y49{bottom:751.156500px;}
.yc7{bottom:751.156650px;}
.y7f{bottom:753.494850px;}
.yb3{bottom:755.344500px;}
.y10b{bottom:765.493500px;}
.y48{bottom:767.356500px;}
.yc6{bottom:767.356650px;}
.yb2{bottom:771.544500px;}
.y7e{bottom:771.822450px;}
.ya{bottom:776.615850px;}
.y10a{bottom:781.693500px;}
.y47{bottom:783.556500px;}
.yc5{bottom:783.556650px;}
.yb1{bottom:787.744500px;}
.y7d{bottom:790.147350px;}
.y9{bottom:792.815850px;}
.y109{bottom:797.893500px;}
.y46{bottom:799.756500px;}
.yc4{bottom:799.756650px;}
.yb0{bottom:803.944500px;}
.y7c{bottom:806.347350px;}
.y108{bottom:814.093500px;}
.y45{bottom:815.956500px;}
.yc3{bottom:815.956650px;}
.yaf{bottom:820.144500px;}
.y8{bottom:826.022700px;}
.y107{bottom:830.293500px;}
.y44{bottom:832.156500px;}
.yc2{bottom:832.156650px;}
.y7b{bottom:835.305150px;}
.yae{bottom:836.344500px;}
.y43{bottom:848.356500px;}
.yc1{bottom:848.356650px;}
.y106{bottom:850.744500px;}
.yad{bottom:852.544500px;}
.y42{bottom:864.556500px;}
.yc0{bottom:864.556650px;}
.y7a{bottom:866.386200px;}
.yac{bottom:868.744500px;}
.y7{bottom:871.335000px;}
.y105{bottom:872.997000px;}
.y41{bottom:880.756500px;}
.ybf{bottom:880.756650px;}
.y79{bottom:884.711100px;}
.yab{bottom:884.944500px;}
.y40{bottom:896.956500px;}
.ybe{bottom:896.956650px;}
.yaa{bottom:901.144650px;}
.y78{bottom:903.038700px;}
.y6{bottom:908.143500px;}
.y3f{bottom:913.156500px;}
.ybd{bottom:913.156650px;}
.ya9{bottom:917.344650px;}
.y77{bottom:923.489850px;}
.y3e{bottom:929.356500px;}
.ybc{bottom:929.356650px;}
.ya8{bottom:933.544650px;}
.y104{bottom:945.556500px;}
.y3d{bottom:945.556650px;}
.ya7{bottom:949.744650px;}
.y76{bottom:954.572250px;}
.y3c{bottom:961.756650px;}
.ya6{bottom:965.944650px;}
.y75{bottom:972.897600px;}
.y103{bottom:977.956500px;}
.y3b{bottom:977.956650px;}
.ya5{bottom:982.144650px;}
.y5{bottom:989.271000px;}
.y74{bottom:993.350100px;}
.y102{bottom:994.156500px;}
.y3a{bottom:994.156650px;}
.ya4{bottom:998.344650px;}
.y39{bottom:1010.356650px;}
.ya3{bottom:1018.797150px;}
.y4{bottom:1020.771000px;}
.y73{bottom:1024.431150px;}
.y38{bottom:1026.556650px;}
.y72{bottom:1040.631150px;}
.y37{bottom:1042.756650px;}
.y71{bottom:1056.830850px;}
.y36{bottom:1058.956650px;}
.y70{bottom:1075.155750px;}
.y35{bottom:1075.156650px;}
.y6f{bottom:1091.355750px;}
.y34{bottom:1091.356650px;}
.y6e{bottom:1107.555750px;}
.y33{bottom:1107.556650px;}
.y3{bottom:1129.624800px;}
.y2{bottom:1167.084600px;}
.ye7{bottom:1167.084750px;}
.ha{height:32.724000px;}
.hb{height:43.085400px;}
.hc{height:43.086000px;}
.h8{height:43.362000px;}
.he{height:43.632000px;}
.hd{height:46.512000px;}
.h1{height:49.086000px;}
.h5{height:49.086600px;}
.h6{height:49.087200px;}
.h7{height:51.408000px;}
.h4{height:53.856000px;}
.h10{height:54.540000px;}
.h3{height:65.448000px;}
.hf{height:72.408000px;}
.h2{height:95.445000px;}
.h9{height:1262.797500px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.677000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xc{left:106.062600px;}
.xd{left:118.818750px;}
.x2{left:127.322550px;}
.x10{left:131.574600px;}
.x9{left:140.078550px;}
.x8{left:148.582350px;}
.xe{left:155.652450px;}
.x1b{left:176.092950px;}
.x1c{left:195.354450px;}
.x1d{left:197.479950px;}
.x3{left:206.362950px;}
.x24{left:232.894950px;}
.x11{left:237.941550px;}
.xf{left:239.838450px;}
.x23{left:262.530450px;}
.x4{left:305.401350px;}
.x5{left:345.197100px;}
.x6{left:372.312600px;}
.x21{left:391.034100px;}
.x25{left:410.379750px;}
.x22{left:419.412600px;}
.x7{left:422.959350px;}
.x12{left:444.590550px;}
.x1{left:445.590600px;}
.x1e{left:451.786350px;}
.x13{left:457.346700px;}
.xa{left:465.851400px;}
.xb{left:478.607550px;}
.x18{left:493.142100px;}
.x15{left:513.726750px;}
.x16{left:520.911450px;}
.x14{left:544.391100px;}
.x1a{left:545.449650px;}
.x19{left:552.849600px;}
.x17{left:570.140100px;}
.x1f{left:577.896750px;}
.x20{left:594.966750px;}
@media print{
.v1{vertical-align:-30.799467pt;}
.v9{vertical-align:-17.600000pt;}
.v3{vertical-align:-15.839467pt;}
.v6{vertical-align:-14.080000pt;}
.v4{vertical-align:-5.333867pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:14.080533pt;}
.v5{vertical-align:15.840000pt;}
.v8{vertical-align:25.578667pt;}
.v2{vertical-align:30.799467pt;}
.ls19{letter-spacing:-1.920000pt;}
.ls5{letter-spacing:-0.938667pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls1a{letter-spacing:-0.028800pt;}
.ls18{letter-spacing:-0.005600pt;}
.lsd{letter-spacing:-0.004800pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.000853pt;}
.ls17{letter-spacing:0.003093pt;}
.ls2{letter-spacing:0.003627pt;}
.ls9{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls12{letter-spacing:0.048000pt;}
.ls14{letter-spacing:0.384000pt;}
.ls15{letter-spacing:0.682667pt;}
.ls10{letter-spacing:0.729600pt;}
.lsb{letter-spacing:0.768000pt;}
.lsc{letter-spacing:0.792000pt;}
.ls11{letter-spacing:0.796800pt;}
.lse{letter-spacing:0.883200pt;}
.lsf{letter-spacing:1.204800pt;}
.ls0{letter-spacing:2.164800pt;}
.ls4{letter-spacing:2.314667pt;}
.ls7{letter-spacing:5.400000pt;}
.lsa{letter-spacing:10.526400pt;}
.ls16{letter-spacing:844.113067pt;}
.ls8{letter-spacing:845.789867pt;}
.ws6{word-spacing:-48.000000pt;}
.wse9{word-spacing:-11.200000pt;}
.ws102{word-spacing:-11.194400pt;}
.ws0{word-spacing:-10.826667pt;}
.ws4d{word-spacing:-10.819200pt;}
.ws1{word-spacing:-10.794667pt;}
.ws4c{word-spacing:-10.728000pt;}
.ws4e{word-spacing:-10.133333pt;}
.wsa5{word-spacing:-9.984000pt;}
.ws4{word-spacing:-9.604800pt;}
.ws3{word-spacing:-9.600000pt;}
.ws156{word-spacing:-8.832000pt;}
.wsa8{word-spacing:-8.537600pt;}
.ws4b{word-spacing:-8.164800pt;}
.ws7{word-spacing:-8.160000pt;}
.wsa6{word-spacing:-7.936000pt;}
.ws80{word-spacing:-7.598400pt;}
.ws104{word-spacing:-6.240000pt;}
.ws103{word-spacing:-6.186667pt;}
.ws5{word-spacing:-5.568000pt;}
.ws2{word-spacing:-4.732800pt;}
.wsa7{word-spacing:-4.206933pt;}
.wsb9{word-spacing:-3.609600pt;}
.ws86{word-spacing:-2.750400pt;}
.wsa{word-spacing:-2.314667pt;}
.ws122{word-spacing:-2.011200pt;}
.wsff{word-spacing:-1.756800pt;}
.ws128{word-spacing:-1.521600pt;}
.ws129{word-spacing:-1.516800pt;}
.wsfe{word-spacing:-1.497600pt;}
.ws16c{word-spacing:-1.473600pt;}
.ws15f{word-spacing:-1.468800pt;}
.ws162{word-spacing:-1.406400pt;}
.ws12d{word-spacing:-1.248000pt;}
.ws10a{word-spacing:-1.224000pt;}
.ws14f{word-spacing:-1.209600pt;}
.ws88{word-spacing:-1.204800pt;}
.ws186{word-spacing:-1.171200pt;}
.ws121{word-spacing:-1.161600pt;}
.wscc{word-spacing:-1.156800pt;}
.ws11d{word-spacing:-1.036800pt;}
.ws14e{word-spacing:-1.027200pt;}
.ws87{word-spacing:-1.012800pt;}
.ws10d{word-spacing:-1.003200pt;}
.ws185{word-spacing:-0.993600pt;}
.ws3f{word-spacing:-0.931200pt;}
.ws157{word-spacing:-0.926400pt;}
.ws41{word-spacing:-0.907200pt;}
.wsf8{word-spacing:-0.888000pt;}
.ws1f{word-spacing:-0.864000pt;}
.wsaf{word-spacing:-0.844800pt;}
.ws6d{word-spacing:-0.777600pt;}
.ws89{word-spacing:-0.729600pt;}
.ws1b{word-spacing:-0.652800pt;}
.ws7d{word-spacing:-0.571200pt;}
.ws11{word-spacing:-0.552000pt;}
.wsf{word-spacing:-0.532800pt;}
.ws15{word-spacing:-0.523200pt;}
.wscd{word-spacing:-0.475200pt;}
.wscb{word-spacing:-0.460800pt;}
.ws10{word-spacing:-0.451200pt;}
.ws8e{word-spacing:-0.364800pt;}
.ws14a{word-spacing:-0.326400pt;}
.ws42{word-spacing:-0.321600pt;}
.wsbc{word-spacing:-0.307200pt;}
.ws5c{word-spacing:-0.302400pt;}
.ws15d{word-spacing:-0.278400pt;}
.ws134{word-spacing:-0.206400pt;}
.ws136{word-spacing:-0.196800pt;}
.ws115{word-spacing:-0.148800pt;}
.ws116{word-spacing:-0.144000pt;}
.ws183{word-spacing:-0.139200pt;}
.ws135{word-spacing:-0.134400pt;}
.ws61{word-spacing:-0.110400pt;}
.wsa2{word-spacing:-0.048000pt;}
.wsee{word-spacing:-0.043200pt;}
.ws63{word-spacing:-0.014400pt;}
.ws19{word-spacing:-0.004800pt;}
.ws4f{word-spacing:-0.004267pt;}
.ws8{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.009600pt;}
.ws114{word-spacing:0.024000pt;}
.ws39{word-spacing:0.052800pt;}
.wsd8{word-spacing:0.081600pt;}
.ws11f{word-spacing:0.096000pt;}
.ws123{word-spacing:0.100800pt;}
.ws82{word-spacing:0.259200pt;}
.ws143{word-spacing:0.345600pt;}
.ws184{word-spacing:0.355200pt;}
.wsae{word-spacing:0.379200pt;}
.ws44{word-spacing:0.388800pt;}
.ws33{word-spacing:0.475200pt;}
.ws12f{word-spacing:0.528000pt;}
.ws112{word-spacing:0.532800pt;}
.ws8d{word-spacing:0.691200pt;}
.wsfa{word-spacing:0.739200pt;}
.ws9e{word-spacing:0.768000pt;}
.ws101{word-spacing:0.811200pt;}
.ws100{word-spacing:0.816000pt;}
.ws7b{word-spacing:0.825600pt;}
.ws105{word-spacing:0.907200pt;}
.ws106{word-spacing:0.912000pt;}
.wsc8{word-spacing:0.950400pt;}
.ws12{word-spacing:0.955200pt;}
.ws98{word-spacing:0.998400pt;}
.wsf9{word-spacing:1.003200pt;}
.wsd{word-spacing:1.032000pt;}
.wsa4{word-spacing:1.161600pt;}
.ws95{word-spacing:1.166400pt;}
.ws110{word-spacing:1.267200pt;}
.ws111{word-spacing:1.276800pt;}
.ws127{word-spacing:1.291200pt;}
.ws17{word-spacing:1.300800pt;}
.ws12a{word-spacing:1.320000pt;}
.ws11e{word-spacing:1.401600pt;}
.ws1a{word-spacing:1.425600pt;}
.wsef{word-spacing:1.579200pt;}
.ws53{word-spacing:1.627200pt;}
.ws132{word-spacing:1.651200pt;}
.ws119{word-spacing:1.713600pt;}
.ws109{word-spacing:1.785600pt;}
.ws13{word-spacing:1.800000pt;}
.ws68{word-spacing:1.819200pt;}
.ws18a{word-spacing:1.876800pt;}
.ws9d{word-spacing:1.920000pt;}
.wsde{word-spacing:1.929600pt;}
.ws14{word-spacing:1.977600pt;}
.ws7e{word-spacing:1.992000pt;}
.ws118{word-spacing:2.011200pt;}
.ws7f{word-spacing:2.016000pt;}
.wsb2{word-spacing:2.092800pt;}
.ws18{word-spacing:2.131200pt;}
.wse6{word-spacing:2.145600pt;}
.ws2b{word-spacing:2.155200pt;}
.ws5e{word-spacing:2.164800pt;}
.ws10e{word-spacing:2.184000pt;}
.ws107{word-spacing:2.188800pt;}
.ws10f{word-spacing:2.193600pt;}
.ws108{word-spacing:2.198400pt;}
.ws90{word-spacing:2.208000pt;}
.ws62{word-spacing:2.289600pt;}
.wsf6{word-spacing:2.342400pt;}
.ws9c{word-spacing:2.366400pt;}
.ws124{word-spacing:2.414400pt;}
.ws85{word-spacing:2.428800pt;}
.ws12b{word-spacing:2.467200pt;}
.ws12c{word-spacing:2.472000pt;}
.ws180{word-spacing:2.582400pt;}
.ws3e{word-spacing:2.668800pt;}
.wscf{word-spacing:2.697600pt;}
.wse2{word-spacing:2.784000pt;}
.wse3{word-spacing:2.793600pt;}
.ws54{word-spacing:2.817600pt;}
.ws56{word-spacing:2.822400pt;}
.ws57{word-spacing:2.836800pt;}
.ws17a{word-spacing:2.971200pt;}
.ws65{word-spacing:2.976000pt;}
.ws160{word-spacing:2.990400pt;}
.ws137{word-spacing:3.024000pt;}
.ws181{word-spacing:3.033600pt;}
.wsc{word-spacing:3.057600pt;}
.ws84{word-spacing:3.062400pt;}
.ws14d{word-spacing:3.076800pt;}
.ws71{word-spacing:3.105600pt;}
.wsd1{word-spacing:3.148800pt;}
.wsdd{word-spacing:3.158400pt;}
.ws11a{word-spacing:3.177600pt;}
.ws11b{word-spacing:3.182400pt;}
.ws165{word-spacing:3.211200pt;}
.ws43{word-spacing:3.283200pt;}
.ws34{word-spacing:3.312000pt;}
.ws35{word-spacing:3.321600pt;}
.ws16{word-spacing:3.355200pt;}
.ws11c{word-spacing:3.374400pt;}
.wsca{word-spacing:3.379200pt;}
.wse4{word-spacing:3.384000pt;}
.wsc9{word-spacing:3.398400pt;}
.ws2e{word-spacing:3.408000pt;}
.ws113{word-spacing:3.412800pt;}
.wsfb{word-spacing:3.451200pt;}
.wsb7{word-spacing:3.489600pt;}
.ws17b{word-spacing:3.499200pt;}
.ws161{word-spacing:3.523200pt;}
.ws13b{word-spacing:3.547200pt;}
.ws147{word-spacing:3.566400pt;}
.wsb{word-spacing:3.595200pt;}
.wsc5{word-spacing:3.662400pt;}
.ws172{word-spacing:3.696000pt;}
.ws159{word-spacing:3.710400pt;}
.ws8f{word-spacing:3.729600pt;}
.ws55{word-spacing:3.734400pt;}
.ws15a{word-spacing:3.739200pt;}
.ws130{word-spacing:3.744000pt;}
.ws12e{word-spacing:3.758400pt;}
.ws164{word-spacing:3.777600pt;}
.ws83{word-spacing:3.782400pt;}
.wsf0{word-spacing:3.849600pt;}
.ws38{word-spacing:3.897600pt;}
.ws69{word-spacing:3.921600pt;}
.ws6a{word-spacing:3.926400pt;}
.ws14b{word-spacing:3.945600pt;}
.ws2f{word-spacing:4.008000pt;}
.ws179{word-spacing:4.046400pt;}
.wsd0{word-spacing:4.070400pt;}
.wsce{word-spacing:4.075200pt;}
.ws146{word-spacing:4.195200pt;}
.ws138{word-spacing:4.214400pt;}
.ws139{word-spacing:4.243200pt;}
.wsb6{word-spacing:4.267200pt;}
.ws189{word-spacing:4.272000pt;}
.wsd9{word-spacing:4.310400pt;}
.ws120{word-spacing:4.377600pt;}
.ws131{word-spacing:4.401600pt;}
.ws75{word-spacing:4.545600pt;}
.ws16e{word-spacing:4.555200pt;}
.wsea{word-spacing:4.574400pt;}
.ws27{word-spacing:4.665600pt;}
.ws26{word-spacing:4.732800pt;}
.ws3b{word-spacing:4.776000pt;}
.ws7a{word-spacing:4.790400pt;}
.ws79{word-spacing:4.795200pt;}
.ws36{word-spacing:4.804800pt;}
.ws5a{word-spacing:4.910400pt;}
.ws5f{word-spacing:4.934400pt;}
.wsfd{word-spacing:4.944000pt;}
.wsfc{word-spacing:4.948800pt;}
.ws4a{word-spacing:4.972800pt;}
.ws40{word-spacing:5.011200pt;}
.ws99{word-spacing:5.025600pt;}
.ws158{word-spacing:5.040000pt;}
.ws9b{word-spacing:5.054400pt;}
.ws91{word-spacing:5.188800pt;}
.ws8b{word-spacing:5.193600pt;}
.wse7{word-spacing:5.248000pt;}
.ws17e{word-spacing:5.265600pt;}
.ws17f{word-spacing:5.289600pt;}
.ws155{word-spacing:5.313600pt;}
.ws10b{word-spacing:5.332800pt;}
.ws10c{word-spacing:5.337600pt;}
.ws16f{word-spacing:5.356800pt;}
.ws96{word-spacing:5.371200pt;}
.ws24{word-spacing:5.400000pt;}
.ws166{word-spacing:5.409600pt;}
.wsd2{word-spacing:5.582400pt;}
.ws117{word-spacing:5.678400pt;}
.ws15e{word-spacing:5.697600pt;}
.ws93{word-spacing:5.731200pt;}
.wsb4{word-spacing:5.740800pt;}
.wsb5{word-spacing:5.769600pt;}
.wsbd{word-spacing:5.779200pt;}
.ws168{word-spacing:5.784000pt;}
.ws32{word-spacing:5.798400pt;}
.ws125{word-spacing:5.808000pt;}
.ws9a{word-spacing:5.822400pt;}
.ws126{word-spacing:5.827200pt;}
.wse{word-spacing:5.904000pt;}
.ws49{word-spacing:5.942400pt;}
.ws45{word-spacing:5.990400pt;}
.ws52{word-spacing:6.033600pt;}
.ws171{word-spacing:6.048000pt;}
.ws173{word-spacing:6.096000pt;}
.ws97{word-spacing:6.105600pt;}
.ws2d{word-spacing:6.148800pt;}
.ws3a{word-spacing:6.177600pt;}
.ws1d{word-spacing:6.196800pt;}
.wsc0{word-spacing:6.240000pt;}
.ws76{word-spacing:6.244800pt;}
.ws73{word-spacing:6.288000pt;}
.wsda{word-spacing:6.297600pt;}
.ws142{word-spacing:6.331200pt;}
.ws154{word-spacing:6.340800pt;}
.ws47{word-spacing:6.355200pt;}
.ws14c{word-spacing:6.374400pt;}
.ws81{word-spacing:6.451200pt;}
.ws18b{word-spacing:6.456000pt;}
.ws3c{word-spacing:6.499200pt;}
.wsac{word-spacing:6.504000pt;}
.ws16d{word-spacing:6.614400pt;}
.ws67{word-spacing:6.648000pt;}
.ws59{word-spacing:6.662400pt;}
.ws5b{word-spacing:6.667200pt;}
.wsa0{word-spacing:6.696000pt;}
.wse0{word-spacing:6.705600pt;}
.wse1{word-spacing:6.715200pt;}
.wsd6{word-spacing:6.792000pt;}
.ws167{word-spacing:6.806400pt;}
.wsd5{word-spacing:6.840000pt;}
.wsdf{word-spacing:6.864000pt;}
.ws50{word-spacing:6.921600pt;}
.ws94{word-spacing:7.027200pt;}
.ws37{word-spacing:7.075200pt;}
.wsf5{word-spacing:7.142400pt;}
.wsb8{word-spacing:7.257600pt;}
.ws151{word-spacing:7.272000pt;}
.ws77{word-spacing:7.324800pt;}
.ws29{word-spacing:7.339200pt;}
.ws7c{word-spacing:7.435200pt;}
.ws20{word-spacing:7.440000pt;}
.ws141{word-spacing:7.449600pt;}
.ws21{word-spacing:7.468800pt;}
.ws153{word-spacing:7.632000pt;}
.wsc6{word-spacing:7.660800pt;}
.ws188{word-spacing:7.665600pt;}
.ws22{word-spacing:7.680000pt;}
.ws8c{word-spacing:7.718400pt;}
.wsdc{word-spacing:7.852800pt;}
.wsbe{word-spacing:7.867200pt;}
.wsbf{word-spacing:7.881600pt;}
.ws1e{word-spacing:7.910400pt;}
.ws64{word-spacing:7.953600pt;}
.wseb{word-spacing:8.107200pt;}
.ws6f{word-spacing:8.179200pt;}
.ws16b{word-spacing:8.217600pt;}
.ws72{word-spacing:8.280000pt;}
.ws74{word-spacing:8.289600pt;}
.wsc3{word-spacing:8.313600pt;}
.wsc4{word-spacing:8.323200pt;}
.wsad{word-spacing:8.462400pt;}
.wsbb{word-spacing:8.496000pt;}
.ws6b{word-spacing:8.769600pt;}
.ws25{word-spacing:8.875200pt;}
.ws58{word-spacing:8.937600pt;}
.ws70{word-spacing:8.942400pt;}
.ws152{word-spacing:8.976000pt;}
.ws187{word-spacing:9.019200pt;}
.wsc2{word-spacing:9.177600pt;}
.wsf4{word-spacing:9.312000pt;}
.ws31{word-spacing:9.388800pt;}
.ws66{word-spacing:9.432000pt;}
.ws150{word-spacing:9.624000pt;}
.ws133{word-spacing:9.820800pt;}
.wsab{word-spacing:9.854400pt;}
.ws148{word-spacing:9.916800pt;}
.ws1c{word-spacing:10.056000pt;}
.ws169{word-spacing:10.233600pt;}
.wsb3{word-spacing:10.444800pt;}
.ws6c{word-spacing:10.473600pt;}
.ws6e{word-spacing:10.526400pt;}
.wsd3{word-spacing:10.608000pt;}
.ws2a{word-spacing:10.723200pt;}
.wsf3{word-spacing:10.987200pt;}
.wsf2{word-spacing:10.992000pt;}
.ws60{word-spacing:11.630400pt;}
.ws149{word-spacing:11.664000pt;}
.wsb0{word-spacing:11.745600pt;}
.ws13e{word-spacing:11.899200pt;}
.wse5{word-spacing:12.033600pt;}
.ws140{word-spacing:12.124800pt;}
.wsd7{word-spacing:12.278400pt;}
.ws17c{word-spacing:12.350400pt;}
.ws170{word-spacing:12.355200pt;}
.ws163{word-spacing:12.441600pt;}
.ws2c{word-spacing:12.547200pt;}
.ws144{word-spacing:12.720000pt;}
.ws145{word-spacing:12.734400pt;}
.ws175{word-spacing:12.816000pt;}
.wsf7{word-spacing:12.820800pt;}
.ws46{word-spacing:12.825600pt;}
.wsc7{word-spacing:13.017600pt;}
.ws182{word-spacing:13.334400pt;}
.ws51{word-spacing:13.512000pt;}
.wsf1{word-spacing:13.536000pt;}
.ws17d{word-spacing:14.030400pt;}
.ws23{word-spacing:14.232000pt;}
.ws92{word-spacing:14.241600pt;}
.ws9{word-spacing:14.400000pt;}
.ws13c{word-spacing:14.438400pt;}
.ws15b{word-spacing:14.644800pt;}
.ws178{word-spacing:14.649600pt;}
.wsa1{word-spacing:14.716800pt;}
.ws15c{word-spacing:14.784000pt;}
.ws28{word-spacing:14.798400pt;}
.wsb1{word-spacing:14.908800pt;}
.ws174{word-spacing:15.076800pt;}
.wsdb{word-spacing:15.120000pt;}
.ws9f{word-spacing:16.147200pt;}
.ws8a{word-spacing:16.800000pt;}
.ws13d{word-spacing:16.987200pt;}
.wsa3{word-spacing:17.064000pt;}
.wsc1{word-spacing:17.284800pt;}
.ws13a{word-spacing:17.539200pt;}
.ws177{word-spacing:17.942400pt;}
.ws3d{word-spacing:18.369600pt;}
.ws16a{word-spacing:18.585600pt;}
.wsed{word-spacing:20.025600pt;}
.wsd4{word-spacing:20.059200pt;}
.wsaa{word-spacing:20.856000pt;}
.ws30{word-spacing:21.129600pt;}
.ws48{word-spacing:24.499200pt;}
.ws78{word-spacing:25.012800pt;}
.ws176{word-spacing:25.214400pt;}
.wsec{word-spacing:30.782400pt;}
.wsba{word-spacing:31.507200pt;}
.ws13f{word-spacing:32.760000pt;}
.wse8{word-spacing:183.466667pt;}
.wsa9{word-spacing:687.296000pt;}
._1c{margin-left:-687.305333pt;}
._33{margin-left:-183.466667pt;}
._1e{margin-left:-30.931200pt;}
._1f{margin-left:-24.646667pt;}
._19{margin-left:-20.445067pt;}
._1a{margin-left:-17.252000pt;}
._10{margin-left:-16.270667pt;}
._e{margin-left:-14.960373pt;}
._20{margin-left:-14.013440pt;}
._c{margin-left:-13.074240pt;}
._d{margin-left:-11.984533pt;}
._13{margin-left:-11.059200pt;}
._1b{margin-left:-10.162827pt;}
._9{margin-left:-8.791733pt;}
._b{margin-left:-7.110933pt;}
._17{margin-left:-6.072000pt;}
._0{margin-left:-4.944000pt;}
._2{margin-left:-3.456000pt;}
._7{margin-left:-2.305333pt;}
._1{margin-left:-1.056000pt;}
._a{width:1.381333pt;}
._6{width:2.361333pt;}
._8{width:3.558400pt;}
._5{width:4.526667pt;}
._f{width:5.878773pt;}
._11{width:7.531200pt;}
._12{width:8.812907pt;}
._14{width:10.665600pt;}
._18{width:13.501067pt;}
._21{width:15.176533pt;}
._23{width:16.277333pt;}
._15{width:18.595307pt;}
._16{width:20.074667pt;}
._3c{width:38.284800pt;}
._26{width:140.800000pt;}
._31{width:183.466667pt;}
._38{width:199.523200pt;}
._35{width:206.809600pt;}
._28{width:214.566400pt;}
._3b{width:255.005867pt;}
._27{width:264.998400pt;}
._24{width:273.442133pt;}
._3a{width:386.133333pt;}
._36{width:395.084800pt;}
._25{width:415.637333pt;}
._32{width:417.309867pt;}
._39{width:418.811733pt;}
._2c{width:427.494400pt;}
._29{width:444.104533pt;}
._2b{width:452.296533pt;}
._22{width:465.484800pt;}
._2a{width:467.997867pt;}
._34{width:511.287467pt;}
._30{width:531.088533pt;}
._2d{width:543.253333pt;}
._2f{width:574.024533pt;}
._1d{width:607.486240pt;}
._3d{width:609.773867pt;}
._37{width:615.466667pt;}
._2e{width:629.107200pt;}
._4{width:781.612800pt;}
._3{width:835.420800pt;}
.fsa{font-size:24.746667pt;}
.fs5{font-size:27.840000pt;}
.fsc{font-size:30.933333pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs9{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fs2{font-size:54.133333pt;}
.fs7{font-size:56.000000pt;}
.fs4{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:0.160000pt;}
.y1{bottom:69.848800pt;}
.y14a{bottom:102.174267pt;}
.y2e{bottom:103.146400pt;}
.y143{bottom:104.369200pt;}
.ye6{bottom:106.088400pt;}
.ya2{bottom:107.480667pt;}
.y101{bottom:109.729067pt;}
.y12e{bottom:113.395600pt;}
.y149{bottom:116.574267pt;}
.y2d{bottom:117.546400pt;}
.y142{bottom:118.769200pt;}
.ya1{bottom:121.880667pt;}
.y100{bottom:124.129067pt;}
.ye5{bottom:124.715600pt;}
.y12d{bottom:127.795600pt;}
.y148{bottom:130.974267pt;}
.y2c{bottom:131.946400pt;}
.y141{bottom:133.169200pt;}
.ya0{bottom:136.280667pt;}
.y6c{bottom:137.636933pt;}
.y6d{bottom:137.796933pt;}
.yff{bottom:138.529067pt;}
.y12c{bottom:142.194400pt;}
.ye4{bottom:143.612667pt;}
.y2b{bottom:146.346400pt;}
.y140{bottom:147.569200pt;}
.y147{bottom:149.153067pt;}
.y9f{bottom:150.680667pt;}
.y6b{bottom:152.753867pt;}
.yfe{bottom:152.929067pt;}
.y12b{bottom:156.594400pt;}
.y2a{bottom:160.746400pt;}
.y13f{bottom:161.969200pt;}
.ye3{bottom:162.510800pt;}
.y6a{bottom:167.153867pt;}
.yfd{bottom:167.329067pt;}
.y9e{bottom:168.859467pt;}
.y12a{bottom:170.994400pt;}
.y29{bottom:175.146400pt;}
.y13e{bottom:176.369200pt;}
.ye2{bottom:181.407867pt;}
.yfc{bottom:181.729067pt;}
.y69{bottom:185.333867pt;}
.y129{bottom:185.395600pt;}
.y28{bottom:189.546400pt;}
.y13d{bottom:190.769200pt;}
.y9d{bottom:194.598267pt;}
.y128{bottom:199.795600pt;}
.yfb{bottom:199.908933pt;}
.ye1{bottom:200.304933pt;}
.y27{bottom:203.946400pt;}
.y13c{bottom:205.169200pt;}
.y9c{bottom:208.998267pt;}
.y68{bottom:212.961467pt;}
.y127{bottom:214.194400pt;}
.y26{bottom:218.346400pt;}
.ye0{bottom:219.202000pt;}
.y13b{bottom:219.569200pt;}
.y9b{bottom:223.398267pt;}
.y67{bottom:227.361467pt;}
.y126{bottom:228.594400pt;}
.y25{bottom:232.746400pt;}
.y13a{bottom:233.969200pt;}
.y9a{bottom:237.798267pt;}
.ydf{bottom:238.100133pt;}
.y125{bottom:242.994400pt;}
.y66{bottom:243.650267pt;}
.y24{bottom:247.146400pt;}
.y139{bottom:248.369200pt;}
.y99{bottom:252.198533pt;}
.yde{bottom:256.997200pt;}
.y124{bottom:257.395600pt;}
.y65{bottom:259.939067pt;}
.yf2{bottom:260.967733pt;}
.y23{bottom:261.546400pt;}
.y138{bottom:262.769200pt;}
.y98{bottom:266.598533pt;}
.y123{bottom:271.795600pt;}
.yf1{bottom:275.367733pt;}
.yf9{bottom:275.367867pt;}
.ydd{bottom:275.894267pt;}
.y22{bottom:275.946400pt;}
.y64{bottom:276.230267pt;}
.y137{bottom:277.169200pt;}
.y97{bottom:280.998533pt;}
.y122{bottom:286.194400pt;}
.yf0{bottom:289.767733pt;}
.yf8{bottom:289.767867pt;}
.y21{bottom:290.346400pt;}
.y136{bottom:291.569200pt;}
.y63{bottom:292.519733pt;}
.ydc{bottom:294.791333pt;}
.y96{bottom:295.398533pt;}
.y121{bottom:300.594400pt;}
.yef{bottom:304.167733pt;}
.yf7{bottom:304.167867pt;}
.y20{bottom:304.746400pt;}
.y135{bottom:305.969200pt;}
.y62{bottom:306.919733pt;}
.y95{bottom:309.798533pt;}
.ydb{bottom:313.688400pt;}
.y120{bottom:314.994400pt;}
.yee{bottom:318.567733pt;}
.yf6{bottom:318.567867pt;}
.y1f{bottom:319.146400pt;}
.y134{bottom:320.369200pt;}
.y60{bottom:322.493067pt;}
.y61{bottom:322.653067pt;}
.y94{bottom:324.198533pt;}
.y11f{bottom:329.395600pt;}
.yda{bottom:332.587600pt;}
.yed{bottom:332.967733pt;}
.yf5{bottom:332.967867pt;}
.y1e{bottom:333.546400pt;}
.y133{bottom:334.769200pt;}
.y93{bottom:338.598533pt;}
.y5e{bottom:338.782400pt;}
.y5f{bottom:338.942400pt;}
.y11e{bottom:343.795600pt;}
.yec{bottom:347.367733pt;}
.yf4{bottom:347.367867pt;}
.y1d{bottom:347.946400pt;}
.y132{bottom:349.169200pt;}
.yd9{bottom:351.484667pt;}
.y92{bottom:352.998533pt;}
.y5c{bottom:353.899600pt;}
.y11d{bottom:358.194400pt;}
.yeb{bottom:361.767867pt;}
.y1c{bottom:362.346400pt;}
.y131{bottom:363.569200pt;}
.y91{bottom:367.398533pt;}
.y5b{bottom:368.299600pt;}
.yd8{bottom:370.381733pt;}
.y11c{bottom:372.594400pt;}
.yea{bottom:376.167867pt;}
.y1b{bottom:376.746400pt;}
.y130{bottom:377.969200pt;}
.y90{bottom:381.798533pt;}
.y5a{bottom:382.699600pt;}
.yd7{bottom:389.278800pt;}
.ye9{bottom:390.567867pt;}
.y11b{bottom:390.774400pt;}
.y1a{bottom:391.146400pt;}
.y12f{bottom:392.369200pt;}
.y8f{bottom:396.198533pt;}
.y59{bottom:400.878400pt;}
.yf3{bottom:404.967733pt;}
.ye8{bottom:404.967867pt;}
.y32{bottom:405.546400pt;}
.y19{bottom:405.546533pt;}
.yd6{bottom:408.178000pt;}
.y8e{bottom:410.598533pt;}
.y31{bottom:419.946400pt;}
.y18{bottom:419.946533pt;}
.y8d{bottom:424.998533pt;}
.yd5{bottom:427.075067pt;}
.y58{bottom:430.397200pt;}
.y30{bottom:434.346400pt;}
.y17{bottom:434.346533pt;}
.y8c{bottom:439.398533pt;}
.yfa{bottom:441.318400pt;}
.yd4{bottom:445.972133pt;}
.y16{bottom:448.746267pt;}
.y2f{bottom:448.746400pt;}
.y11a{bottom:453.099733pt;}
.y8b{bottom:453.798533pt;}
.yd3{bottom:464.869200pt;}
.y57{bottom:466.094533pt;}
.y8a{bottom:468.198533pt;}
.y119{bottom:478.838533pt;}
.y56{bottom:480.494533pt;}
.y89{bottom:482.598533pt;}
.yd1{bottom:483.141200pt;}
.yd0{bottom:489.546533pt;}
.y118{bottom:493.238533pt;}
.y55{bottom:494.894533pt;}
.yd2{bottom:495.941200pt;}
.y88{bottom:496.998533pt;}
.y117{bottom:507.638533pt;}
.y15{bottom:509.247733pt;}
.y54{bottom:509.294667pt;}
.y87{bottom:511.398533pt;}
.ycf{bottom:514.385067pt;}
.y116{bottom:522.038533pt;}
.y53{bottom:523.694667pt;}
.y86{bottom:525.798533pt;}
.y14{bottom:534.986533pt;}
.y115{bottom:536.438533pt;}
.y52{bottom:538.094667pt;}
.y85{bottom:540.198533pt;}
.y13{bottom:549.386533pt;}
.y114{bottom:550.838533pt;}
.y51{bottom:552.494667pt;}
.y84{bottom:554.598533pt;}
.ybb{bottom:556.217200pt;}
.y12{bottom:563.786533pt;}
.y113{bottom:565.238533pt;}
.yce{bottom:566.894533pt;}
.y50{bottom:566.894667pt;}
.yba{bottom:570.617200pt;}
.y83{bottom:572.778533pt;}
.y11{bottom:578.186533pt;}
.y112{bottom:579.638533pt;}
.ycd{bottom:581.294533pt;}
.y4f{bottom:581.294667pt;}
.y146{bottom:581.294800pt;}
.yb9{bottom:585.017200pt;}
.y82{bottom:587.978533pt;}
.y10{bottom:592.586533pt;}
.y111{bottom:594.038533pt;}
.ycc{bottom:595.694533pt;}
.y4e{bottom:595.694667pt;}
.y145{bottom:595.694800pt;}
.yb8{bottom:599.417200pt;}
.yf{bottom:606.986533pt;}
.y110{bottom:608.438533pt;}
.ycb{bottom:610.094533pt;}
.y4d{bottom:610.094667pt;}
.y144{bottom:610.094800pt;}
.yb7{bottom:613.817333pt;}
.ye{bottom:621.386533pt;}
.y10f{bottom:622.838533pt;}
.y4c{bottom:624.494667pt;}
.yca{bottom:624.494800pt;}
.y81{bottom:625.856267pt;}
.yb6{bottom:628.217333pt;}
.yd{bottom:635.786533pt;}
.y10e{bottom:637.238667pt;}
.y4b{bottom:638.894667pt;}
.yc9{bottom:638.894800pt;}
.yb5{bottom:642.617333pt;}
.yc{bottom:650.186533pt;}
.y10d{bottom:651.638667pt;}
.y4a{bottom:653.294667pt;}
.yc8{bottom:653.294800pt;}
.y80{bottom:653.483867pt;}
.yb4{bottom:657.017333pt;}
.yb{bottom:664.586400pt;}
.y10c{bottom:666.038667pt;}
.y49{bottom:667.694667pt;}
.yc7{bottom:667.694800pt;}
.y7f{bottom:669.773200pt;}
.yb3{bottom:671.417333pt;}
.y10b{bottom:680.438667pt;}
.y48{bottom:682.094667pt;}
.yc6{bottom:682.094800pt;}
.yb2{bottom:685.817333pt;}
.y7e{bottom:686.064400pt;}
.ya{bottom:690.325200pt;}
.y10a{bottom:694.838667pt;}
.y47{bottom:696.494667pt;}
.yc5{bottom:696.494800pt;}
.yb1{bottom:700.217333pt;}
.y7d{bottom:702.353200pt;}
.y9{bottom:704.725200pt;}
.y109{bottom:709.238667pt;}
.y46{bottom:710.894667pt;}
.yc4{bottom:710.894800pt;}
.yb0{bottom:714.617333pt;}
.y7c{bottom:716.753200pt;}
.y108{bottom:723.638667pt;}
.y45{bottom:725.294667pt;}
.yc3{bottom:725.294800pt;}
.yaf{bottom:729.017333pt;}
.y8{bottom:734.242400pt;}
.y107{bottom:738.038667pt;}
.y44{bottom:739.694667pt;}
.yc2{bottom:739.694800pt;}
.y7b{bottom:742.493467pt;}
.yae{bottom:743.417333pt;}
.y43{bottom:754.094667pt;}
.yc1{bottom:754.094800pt;}
.y106{bottom:756.217333pt;}
.yad{bottom:757.817333pt;}
.y42{bottom:768.494667pt;}
.yc0{bottom:768.494800pt;}
.y7a{bottom:770.121067pt;}
.yac{bottom:772.217333pt;}
.y7{bottom:774.520000pt;}
.y105{bottom:775.997333pt;}
.y41{bottom:782.894667pt;}
.ybf{bottom:782.894800pt;}
.y79{bottom:786.409867pt;}
.yab{bottom:786.617333pt;}
.y40{bottom:797.294667pt;}
.ybe{bottom:797.294800pt;}
.yaa{bottom:801.017467pt;}
.y78{bottom:802.701067pt;}
.y6{bottom:807.238667pt;}
.y3f{bottom:811.694667pt;}
.ybd{bottom:811.694800pt;}
.ya9{bottom:815.417467pt;}
.y77{bottom:820.879867pt;}
.y3e{bottom:826.094667pt;}
.ybc{bottom:826.094800pt;}
.ya8{bottom:829.817467pt;}
.y104{bottom:840.494667pt;}
.y3d{bottom:840.494800pt;}
.ya7{bottom:844.217467pt;}
.y76{bottom:848.508667pt;}
.y3c{bottom:854.894800pt;}
.ya6{bottom:858.617467pt;}
.y75{bottom:864.797867pt;}
.y103{bottom:869.294667pt;}
.y3b{bottom:869.294800pt;}
.ya5{bottom:873.017467pt;}
.y5{bottom:879.352000pt;}
.y74{bottom:882.977867pt;}
.y102{bottom:883.694667pt;}
.y3a{bottom:883.694800pt;}
.ya4{bottom:887.417467pt;}
.y39{bottom:898.094800pt;}
.ya3{bottom:905.597467pt;}
.y4{bottom:907.352000pt;}
.y73{bottom:910.605467pt;}
.y38{bottom:912.494800pt;}
.y72{bottom:925.005467pt;}
.y37{bottom:926.894800pt;}
.y71{bottom:939.405200pt;}
.y36{bottom:941.294800pt;}
.y70{bottom:955.694000pt;}
.y35{bottom:955.694800pt;}
.y6f{bottom:970.094000pt;}
.y34{bottom:970.094800pt;}
.y6e{bottom:984.494000pt;}
.y33{bottom:984.494800pt;}
.y3{bottom:1004.110933pt;}
.y2{bottom:1037.408533pt;}
.ye7{bottom:1037.408667pt;}
.ha{height:29.088000pt;}
.hb{height:38.298133pt;}
.hc{height:38.298667pt;}
.h8{height:38.544000pt;}
.he{height:38.784000pt;}
.hd{height:41.344000pt;}
.h1{height:43.632000pt;}
.h5{height:43.632533pt;}
.h6{height:43.633067pt;}
.h7{height:45.696000pt;}
.h4{height:47.872000pt;}
.h10{height:48.480000pt;}
.h3{height:58.176000pt;}
.hf{height:64.362667pt;}
.h2{height:84.840000pt;}
.h9{height:1122.486667pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.490667pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xc{left:94.277867pt;}
.xd{left:105.616667pt;}
.x2{left:113.175600pt;}
.x10{left:116.955200pt;}
.x9{left:124.514267pt;}
.x8{left:132.073200pt;}
.xe{left:138.357733pt;}
.x1b{left:156.527067pt;}
.x1c{left:173.648400pt;}
.x1d{left:175.537733pt;}
.x3{left:183.433733pt;}
.x24{left:207.017733pt;}
.x11{left:211.503600pt;}
.xf{left:213.189733pt;}
.x23{left:233.360400pt;}
.x4{left:271.467867pt;}
.x5{left:306.841867pt;}
.x6{left:330.944533pt;}
.x21{left:347.585867pt;}
.x25{left:364.782000pt;}
.x22{left:372.811200pt;}
.x7{left:375.963867pt;}
.x12{left:395.191600pt;}
.x1{left:396.080533pt;}
.x1e{left:401.587867pt;}
.x13{left:406.530400pt;}
.xa{left:414.090133pt;}
.xb{left:425.428933pt;}
.x18{left:438.348533pt;}
.x15{left:456.646000pt;}
.x16{left:463.032400pt;}
.x14{left:483.903200pt;}
.x1a{left:484.844133pt;}
.x19{left:491.421867pt;}
.x17{left:506.791200pt;}
.x1f{left:513.686000pt;}
.x20{left:528.859333pt;}
}




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