
    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_6481b321ce34393f041c4473.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_d81c0987e5bc7073380d0de4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_0c7c0d3403a3d42af3035343.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.281250;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);}
.v3{vertical-align:-21.780000px;}
.v5{vertical-align:-1.230000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.800000px;}
.v2{vertical-align:21.648000px;}
.v1{vertical-align:31.680000px;}
.ls3f{letter-spacing:-1.518000px;}
.ls43{letter-spacing:-1.452000px;}
.ls76{letter-spacing:-1.386000px;}
.ls6b{letter-spacing:-1.320000px;}
.ls1c{letter-spacing:-1.254000px;}
.ls54{letter-spacing:-1.188000px;}
.ls1b{letter-spacing:-1.122000px;}
.ls5b{letter-spacing:-1.080000px;}
.ls62{letter-spacing:-1.056000px;}
.ls50{letter-spacing:-1.020000px;}
.ls66{letter-spacing:-0.990000px;}
.ls52{letter-spacing:-0.960000px;}
.ls40{letter-spacing:-0.924000px;}
.ls1d{letter-spacing:-0.858000px;}
.ls5a{letter-spacing:-0.850500px;}
.ls64{letter-spacing:-0.831600px;}
.ls19{letter-spacing:-0.792000px;}
.ls63{letter-spacing:-0.726000px;}
.ls4d{letter-spacing:-0.720000px;}
.ls5c{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.672000px;}
.ls17{letter-spacing:-0.660000px;}
.ls4b{letter-spacing:-0.600000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls4f{letter-spacing:-0.540000px;}
.ls16{letter-spacing:-0.528000px;}
.ls5{letter-spacing:-0.513000px;}
.ls41{letter-spacing:-0.462000px;}
.lsb{letter-spacing:-0.456000px;}
.ls6e{letter-spacing:-0.415800px;}
.ls6{letter-spacing:-0.399000px;}
.ls34{letter-spacing:-0.396000px;}
.ls48{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.330000px;}
.ls35{letter-spacing:-0.324000px;}
.ls74{letter-spacing:-0.323400px;}
.ls51{letter-spacing:-0.300000px;}
.ls24{letter-spacing:-0.283500px;}
.ls25{letter-spacing:-0.270000px;}
.ls33{letter-spacing:-0.264000px;}
.ls21{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.198000px;}
.ls77{letter-spacing:-0.184800px;}
.ls4a{letter-spacing:-0.180000px;}
.ls4{letter-spacing:-0.171000px;}
.ls20{letter-spacing:-0.162000px;}
.ls59{letter-spacing:-0.138600px;}
.ls1f{letter-spacing:-0.132000px;}
.ls22{letter-spacing:-0.121500px;}
.ls44{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.114000px;}
.ls23{letter-spacing:-0.108000px;}
.ls15{letter-spacing:-0.066000px;}
.ls53{letter-spacing:-0.060000px;}
.ls8{letter-spacing:-0.057000px;}
.ls70{letter-spacing:-0.054000px;}
.ls26{letter-spacing:-0.040500px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.057000px;}
.ls49{letter-spacing:0.060000px;}
.ls12{letter-spacing:0.066000px;}
.ls13{letter-spacing:0.081000px;}
.ls14{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.114000px;}
.ls46{letter-spacing:0.120000px;}
.ls71{letter-spacing:0.121500px;}
.ls29{letter-spacing:0.132000px;}
.ls30{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.171000px;}
.ls37{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.198000px;}
.ls32{letter-spacing:0.202500px;}
.ls31{letter-spacing:0.216000px;}
.ls2d{letter-spacing:0.264000px;}
.ls3d{letter-spacing:0.283500px;}
.ls42{letter-spacing:0.300000px;}
.ls39{letter-spacing:0.330000px;}
.ls9{letter-spacing:0.342000px;}
.ls45{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.364500px;}
.ls3e{letter-spacing:0.378000px;}
.lsf{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.399000px;}
.ls47{letter-spacing:0.420000px;}
.ls72{letter-spacing:0.426000px;}
.ls61{letter-spacing:0.432000px;}
.ls10{letter-spacing:0.462000px;}
.ls28{letter-spacing:0.480000px;}
.ls2f{letter-spacing:0.528000px;}
.ls75{letter-spacing:0.540000px;}
.ls2a{letter-spacing:0.594000px;}
.lse{letter-spacing:0.660000px;}
.ls27{letter-spacing:0.726000px;}
.ls73{letter-spacing:0.729000px;}
.ls6f{letter-spacing:0.739200px;}
.ls11{letter-spacing:0.792000px;}
.ls36{letter-spacing:0.858000px;}
.ls56{letter-spacing:0.918000px;}
.lsd{letter-spacing:0.924000px;}
.ls57{letter-spacing:0.972000px;}
.ls2c{letter-spacing:0.990000px;}
.ls68{letter-spacing:1.012500px;}
.ls3c{letter-spacing:1.056000px;}
.ls4e{letter-spacing:1.080000px;}
.ls65{letter-spacing:1.122000px;}
.ls5d{letter-spacing:1.188000px;}
.ls4c{letter-spacing:1.200000px;}
.ls58{letter-spacing:1.242000px;}
.ls5f{letter-spacing:1.254000px;}
.ls5e{letter-spacing:1.320000px;}
.ls67{letter-spacing:1.338000px;}
.ls6a{letter-spacing:1.350000px;}
.ls69{letter-spacing:1.404000px;}
.ls38{letter-spacing:1.452000px;}
.ls6d{letter-spacing:1.518000px;}
.ls3b{letter-spacing:1.650000px;}
.ls6c{letter-spacing:1.716000px;}
.ls3a{letter-spacing:1.848000px;}
.ls2e{letter-spacing:1.980000px;}
.ls55{letter-spacing:15.420000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10{word-spacing:-17.424000px;}
.ws33{word-spacing:-17.028000px;}
.wsf{word-spacing:-16.830000px;}
.ws75{word-spacing:-16.500000px;}
.ws74{word-spacing:-16.236000px;}
.ws7e{word-spacing:-16.170000px;}
.ws79{word-spacing:-15.180000px;}
.ws66{word-spacing:-14.418000px;}
.ws13{word-spacing:-13.500000px;}
.ws19{word-spacing:-13.392000px;}
.ws18{word-spacing:-13.284000px;}
.ws7b{word-spacing:-12.289200px;}
.ws50{word-spacing:-11.550000px;}
.ws65{word-spacing:-11.411400px;}
.ws85{word-spacing:-11.365200px;}
.ws7f{word-spacing:-11.226600px;}
.ws77{word-spacing:-11.137500px;}
.ws7a{word-spacing:-11.134200px;}
.ws68{word-spacing:-11.097000px;}
.ws82{word-spacing:-10.854000px;}
.ws70{word-spacing:-10.718400px;}
.ws5a{word-spacing:-10.500000px;}
.ws72{word-spacing:-10.489500px;}
.ws44{word-spacing:-10.408500px;}
.ws35{word-spacing:-10.327500px;}
.ws34{word-spacing:-10.287000px;}
.ws81{word-spacing:-10.246500px;}
.ws1b{word-spacing:-10.206000px;}
.ws14{word-spacing:-10.125000px;}
.ws1d{word-spacing:-10.084500px;}
.ws17{word-spacing:-10.003500px;}
.ws16{word-spacing:-9.963000px;}
.ws1a{word-spacing:-9.841500px;}
.ws67{word-spacing:-9.274500px;}
.wse{word-spacing:-7.872000px;}
.ws26{word-spacing:-0.792000px;}
.ws1f{word-spacing:-0.726000px;}
.ws1e{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.648000px;}
.ws64{word-spacing:-0.600000px;}
.ws25{word-spacing:-0.594000px;}
.ws32{word-spacing:-0.540000px;}
.ws29{word-spacing:-0.528000px;}
.wsc{word-spacing:-0.513000px;}
.ws7d{word-spacing:-0.486000px;}
.ws51{word-spacing:-0.480000px;}
.ws21{word-spacing:-0.462000px;}
.ws3{word-spacing:-0.456000px;}
.ws5c{word-spacing:-0.420000px;}
.ws3e{word-spacing:-0.396000px;}
.ws7c{word-spacing:-0.378000px;}
.ws69{word-spacing:-0.369600px;}
.ws5d{word-spacing:-0.360000px;}
.ws0{word-spacing:-0.342000px;}
.ws2a{word-spacing:-0.330000px;}
.ws47{word-spacing:-0.323400px;}
.ws56{word-spacing:-0.300000px;}
.ws30{word-spacing:-0.270000px;}
.ws27{word-spacing:-0.264000px;}
.ws5f{word-spacing:-0.240000px;}
.ws9{word-spacing:-0.228000px;}
.ws43{word-spacing:-0.216000px;}
.ws20{word-spacing:-0.198000px;}
.ws57{word-spacing:-0.180000px;}
.wsd{word-spacing:-0.171000px;}
.ws28{word-spacing:-0.132000px;}
.ws63{word-spacing:-0.120000px;}
.ws15{word-spacing:-0.108000px;}
.ws2d{word-spacing:-0.066000px;}
.ws61{word-spacing:-0.060000px;}
.ws8{word-spacing:-0.057000px;}
.ws1c{word-spacing:-0.054000px;}
.ws2{word-spacing:0.000000px;}
.ws6f{word-spacing:0.054000px;}
.ws6a{word-spacing:0.066000px;}
.ws6d{word-spacing:0.108000px;}
.ws59{word-spacing:0.120000px;}
.ws4b{word-spacing:0.132000px;}
.ws41{word-spacing:0.198000px;}
.ws4f{word-spacing:0.264000px;}
.ws2e{word-spacing:0.270000px;}
.ws38{word-spacing:0.330000px;}
.ws84{word-spacing:0.378000px;}
.ws40{word-spacing:0.396000px;}
.ws60{word-spacing:0.420000px;}
.ws6b{word-spacing:0.432000px;}
.ws3c{word-spacing:0.462000px;}
.ws58{word-spacing:0.480000px;}
.ws4{word-spacing:0.513000px;}
.ws2c{word-spacing:0.528000px;}
.ws6c{word-spacing:0.540000px;}
.ws4c{word-spacing:0.594000px;}
.ws62{word-spacing:0.600000px;}
.ws37{word-spacing:0.646800px;}
.ws22{word-spacing:0.660000px;}
.ws48{word-spacing:0.726000px;}
.ws2b{word-spacing:0.792000px;}
.ws83{word-spacing:0.810000px;}
.ws4a{word-spacing:0.858000px;}
.ws73{word-spacing:0.864000px;}
.ws4d{word-spacing:0.918000px;}
.ws36{word-spacing:0.924000px;}
.wsb{word-spacing:0.969000px;}
.ws24{word-spacing:0.990000px;}
.ws55{word-spacing:1.020000px;}
.ws3a{word-spacing:1.056000px;}
.ws42{word-spacing:1.080000px;}
.ws1{word-spacing:1.083000px;}
.ws3f{word-spacing:1.122000px;}
.ws6e{word-spacing:1.134000px;}
.ws52{word-spacing:1.140000px;}
.ws23{word-spacing:1.188000px;}
.wsa{word-spacing:1.197000px;}
.ws54{word-spacing:1.200000px;}
.ws31{word-spacing:1.242000px;}
.ws7{word-spacing:1.254000px;}
.ws5{word-spacing:1.311000px;}
.ws46{word-spacing:1.320000px;}
.ws6{word-spacing:1.368000px;}
.ws53{word-spacing:1.380000px;}
.ws4e{word-spacing:1.386000px;}
.ws5b{word-spacing:1.440000px;}
.ws45{word-spacing:1.452000px;}
.ws80{word-spacing:1.458000px;}
.ws39{word-spacing:1.518000px;}
.ws5e{word-spacing:1.560000px;}
.ws3b{word-spacing:1.584000px;}
.ws49{word-spacing:1.650000px;}
.ws78{word-spacing:1.914000px;}
.ws3d{word-spacing:3.894000px;}
.ws76{word-spacing:6.510000px;}
.ws71{word-spacing:9.018000px;}
.ws11{word-spacing:35.712000px;}
.ws12{word-spacing:36.018000px;}
._12{margin-left:-11.346000px;}
._13{margin-left:-10.260000px;}
._4{margin-left:-9.216000px;}
._9{margin-left:-7.854000px;}
._a{margin-left:-6.402000px;}
._7{margin-left:-5.292000px;}
._5{margin-left:-3.294000px;}
._d{margin-left:-2.178000px;}
._1{margin-left:-1.026000px;}
._0{width:1.425000px;}
._e{width:2.836500px;}
._15{width:7.656000px;}
._8{width:12.366000px;}
._b{width:16.968000px;}
._11{width:22.518000px;}
._14{width:33.462000px;}
._10{width:35.112000px;}
._f{width:42.042000px;}
._3{width:47.952000px;}
._2{width:68.742000px;}
._c{width:542.784000px;}
._6{width:1209.312000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:40.500000px;}
.fsa{font-size:42.000000px;}
.fs7{font-size:46.200000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs4{font-size:67.200000px;}
.fs5{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y20f{bottom:57.378000px;}
.y79{bottom:57.498000px;}
.y1d3{bottom:57.618000px;}
.ya2{bottom:57.624000px;}
.y50{bottom:57.684000px;}
.y1b{bottom:57.690000px;}
.y10d{bottom:57.750000px;}
.y181{bottom:57.753000px;}
.ye1{bottom:57.765000px;}
.y132{bottom:57.783000px;}
.y15b{bottom:58.020000px;}
.y21f{bottom:59.665500px;}
.yc6{bottom:59.682000px;}
.y20e{bottom:71.634000px;}
.y78{bottom:71.754000px;}
.y1d2{bottom:71.874000px;}
.ya1{bottom:71.880000px;}
.y4f{bottom:71.928000px;}
.y180{bottom:72.009000px;}
.y131{bottom:72.039000px;}
.y21e{bottom:76.908000px;}
.yc5{bottom:76.924500px;}
.y20d{bottom:85.884000px;}
.y77{bottom:86.010000px;}
.y1d1{bottom:86.130000px;}
.y4e{bottom:86.184000px;}
.y17f{bottom:86.259000px;}
.y231{bottom:86.265000px;}
.y130{bottom:86.283000px;}
.y21d{bottom:94.150500px;}
.yc4{bottom:94.167000px;}
.ye0{bottom:100.005000px;}
.y20c{bottom:100.134000px;}
.y4d{bottom:100.428000px;}
.y17e{bottom:100.515000px;}
.y12f{bottom:100.539000px;}
.y10c{bottom:104.475000px;}
.y15a{bottom:111.283500px;}
.y21c{bottom:111.393000px;}
.yc3{bottom:111.409500px;}
.y1f3{bottom:111.442500px;}
.y20b{bottom:114.390000px;}
.y4c{bottom:114.684000px;}
.y12e{bottom:114.783000px;}
.ydf{bottom:115.755000px;}
.y10b{bottom:121.717500px;}
.y145{bottom:128.415000px;}
.y1d0{bottom:128.481000px;}
.y159{bottom:128.526000px;}
.y1e9{bottom:128.550000px;}
.y21b{bottom:128.635500px;}
.ya0{bottom:128.640000px;}
.y76{bottom:128.644500px;}
.yc2{bottom:128.652000px;}
.y1b1{bottom:128.668500px;}
.y1f2{bottom:128.685000px;}
.y4b{bottom:128.928000px;}
.y12d{bottom:129.039000px;}
.yde{bottom:131.505000px;}
.y1a{bottom:133.740000px;}
.y10a{bottom:138.960000px;}
.y4a{bottom:143.184000px;}
.y12c{bottom:143.289000px;}
.y144{bottom:145.657500px;}
.y1cf{bottom:145.723500px;}
.y158{bottom:145.768500px;}
.y1e8{bottom:145.792500px;}
.y17d{bottom:145.822500px;}
.y21a{bottom:145.878000px;}
.y9f{bottom:145.882500px;}
.y75{bottom:145.887000px;}
.yc1{bottom:145.894500px;}
.y1b0{bottom:145.911000px;}
.y1f1{bottom:145.927500px;}
.ydd{bottom:147.255000px;}
.y19{bottom:148.692000px;}
.y109{bottom:156.202500px;}
.y49{bottom:157.428000px;}
.y12b{bottom:157.539000px;}
.y20a{bottom:162.892500px;}
.y143{bottom:162.900000px;}
.y1ce{bottom:162.966000px;}
.ydc{bottom:163.005000px;}
.y157{bottom:163.011000px;}
.y1e7{bottom:163.035000px;}
.y17c{bottom:163.065000px;}
.y219{bottom:163.120500px;}
.y9e{bottom:163.125000px;}
.y74{bottom:163.129500px;}
.yc0{bottom:163.137000px;}
.y1af{bottom:163.153500px;}
.y1f0{bottom:163.170000px;}
.y18{bottom:169.696500px;}
.y48{bottom:171.684000px;}
.y12a{bottom:171.795000px;}
.y108{bottom:173.445000px;}
.ydb{bottom:178.755000px;}
.y142{bottom:180.142500px;}
.y1cd{bottom:180.208500px;}
.y156{bottom:180.253500px;}
.y1e6{bottom:180.277500px;}
.y209{bottom:180.300000px;}
.y17b{bottom:180.307500px;}
.y218{bottom:180.363000px;}
.y9d{bottom:180.367500px;}
.y73{bottom:180.372000px;}
.ybf{bottom:180.379500px;}
.y1ae{bottom:180.396000px;}
.y1ef{bottom:180.412500px;}
.y17{bottom:184.701750px;}
.y47{bottom:185.934000px;}
.y107{bottom:190.687500px;}
.yda{bottom:194.505000px;}
.y1cc{bottom:197.451000px;}
.y155{bottom:197.496000px;}
.y1e5{bottom:197.520000px;}
.y208{bottom:197.542500px;}
.y17a{bottom:197.550000px;}
.y217{bottom:197.605500px;}
.y9c{bottom:197.610000px;}
.y72{bottom:197.614500px;}
.ybe{bottom:197.622000px;}
.y1ad{bottom:197.638500px;}
.y1ee{bottom:197.655000px;}
.y16{bottom:199.707000px;}
.y46{bottom:200.190000px;}
.y106{bottom:207.930000px;}
.yd9{bottom:210.255000px;}
.y129{bottom:214.687500px;}
.y1cb{bottom:214.693500px;}
.y15{bottom:214.712250px;}
.y154{bottom:214.738500px;}
.y1e4{bottom:214.762500px;}
.y207{bottom:214.785000px;}
.y179{bottom:214.792500px;}
.y216{bottom:214.848000px;}
.y9b{bottom:214.852500px;}
.y71{bottom:214.857000px;}
.ybd{bottom:214.864500px;}
.y1ac{bottom:214.881000px;}
.y1ed{bottom:214.897500px;}
.y105{bottom:225.172500px;}
.yd8{bottom:226.005000px;}
.y14{bottom:229.717500px;}
.y128{bottom:231.930000px;}
.y1ca{bottom:231.936000px;}
.y153{bottom:231.981000px;}
.y1e3{bottom:232.005000px;}
.y206{bottom:232.027500px;}
.y178{bottom:232.035000px;}
.y215{bottom:232.090500px;}
.y9a{bottom:232.095000px;}
.y70{bottom:232.099500px;}
.y141{bottom:232.107000px;}
.y1ab{bottom:232.123500px;}
.y1ec{bottom:232.140000px;}
.y45{bottom:240.720000px;}
.ybc{bottom:240.736500px;}
.yd7{bottom:241.755000px;}
.y104{bottom:242.415000px;}
.y13{bottom:244.722750px;}
.y127{bottom:249.172500px;}
.y1c9{bottom:249.178500px;}
.y152{bottom:249.223500px;}
.y1e2{bottom:249.247500px;}
.y205{bottom:249.270000px;}
.y177{bottom:249.277500px;}
.y214{bottom:249.333000px;}
.y99{bottom:249.337500px;}
.y6f{bottom:249.342000px;}
.y140{bottom:249.349500px;}
.y1aa{bottom:249.366000px;}
.y1eb{bottom:249.382500px;}
.yd6{bottom:257.505000px;}
.y44{bottom:257.962500px;}
.y103{bottom:259.657500px;}
.y12{bottom:259.728000px;}
.y126{bottom:266.415000px;}
.y151{bottom:266.466000px;}
.y1e1{bottom:266.490000px;}
.y204{bottom:266.512500px;}
.y176{bottom:266.520000px;}
.y213{bottom:266.575500px;}
.y98{bottom:266.580000px;}
.y6e{bottom:266.584500px;}
.y13f{bottom:266.592000px;}
.y1a9{bottom:266.608500px;}
.y1ea{bottom:266.625000px;}
.yd5{bottom:273.255000px;}
.y11{bottom:274.733250px;}
.y43{bottom:275.205000px;}
.y102{bottom:276.900000px;}
.y125{bottom:283.657500px;}
.y1c8{bottom:283.680000px;}
.y150{bottom:283.708500px;}
.y1e0{bottom:283.732500px;}
.y203{bottom:283.755000px;}
.y175{bottom:283.762500px;}
.y212{bottom:283.818000px;}
.y97{bottom:283.822500px;}
.y6d{bottom:283.827000px;}
.y13e{bottom:283.834500px;}
.y1a8{bottom:283.851000px;}
.ybb{bottom:283.867500px;}
.yd4{bottom:289.005000px;}
.y10{bottom:289.738500px;}
.y42{bottom:292.447500px;}
.y101{bottom:294.142500px;}
.y124{bottom:300.900000px;}
.y1c7{bottom:300.922500px;}
.y14f{bottom:300.951000px;}
.y1df{bottom:300.975000px;}
.y202{bottom:300.997500px;}
.y174{bottom:301.005000px;}
.y211{bottom:301.060500px;}
.y96{bottom:301.065000px;}
.y6c{bottom:301.069500px;}
.y13d{bottom:301.077000px;}
.y1a7{bottom:301.093500px;}
.yba{bottom:301.110000px;}
.yf{bottom:304.743750px;}
.yd3{bottom:304.755000px;}
.y41{bottom:309.690000px;}
.y100{bottom:311.385000px;}
.y123{bottom:318.142500px;}
.y1c6{bottom:318.165000px;}
.y14e{bottom:318.193500px;}
.y1de{bottom:318.217500px;}
.y201{bottom:318.240000px;}
.y173{bottom:318.247500px;}
.y22f{bottom:318.303000px;}
.y95{bottom:318.307500px;}
.y6b{bottom:318.312000px;}
.y13c{bottom:318.319500px;}
.y1a6{bottom:318.336000px;}
.yb9{bottom:318.352500px;}
.y40{bottom:326.932500px;}
.ye{bottom:334.740000px;}
.y1c5{bottom:335.407500px;}
.y14d{bottom:335.436000px;}
.yd2{bottom:335.437500px;}
.y1dd{bottom:335.460000px;}
.y200{bottom:335.482500px;}
.y172{bottom:335.490000px;}
.y122{bottom:335.520000px;}
.y22e{bottom:335.545500px;}
.y94{bottom:335.550000px;}
.y13b{bottom:335.562000px;}
.y1a5{bottom:335.578500px;}
.yb8{bottom:335.595000px;}
.y3f{bottom:344.175000px;}
.y6a{bottom:344.184000px;}
.yff{bottom:345.885000px;}
.y1c4{bottom:352.650000px;}
.y14c{bottom:352.678500px;}
.yd1{bottom:352.680000px;}
.y1dc{bottom:352.702500px;}
.y1ff{bottom:352.725000px;}
.y171{bottom:352.732500px;}
.y121{bottom:352.762500px;}
.y22d{bottom:352.788000px;}
.y93{bottom:352.792500px;}
.y13a{bottom:352.804500px;}
.y1a4{bottom:352.821000px;}
.yb7{bottom:352.837500px;}
.y3e{bottom:361.417500px;}
.yfe{bottom:361.635000px;}
.y1c3{bottom:369.892500px;}
.y14b{bottom:369.921000px;}
.yd0{bottom:369.922500px;}
.y1db{bottom:369.945000px;}
.y1fe{bottom:369.967500px;}
.y170{bottom:369.975000px;}
.y120{bottom:370.005000px;}
.y22c{bottom:370.030500px;}
.y92{bottom:370.035000px;}
.y139{bottom:370.047000px;}
.y1a3{bottom:370.063500px;}
.yb6{bottom:370.080000px;}
.yd{bottom:370.686750px;}
.yfd{bottom:377.385000px;}
.y3d{bottom:378.660000px;}
.yc{bottom:385.692000px;}
.y14a{bottom:387.163500px;}
.ycf{bottom:387.165000px;}
.y1da{bottom:387.187500px;}
.y1fd{bottom:387.210000px;}
.y16f{bottom:387.217500px;}
.y11f{bottom:387.247500px;}
.y1c2{bottom:387.262500px;}
.y22b{bottom:387.273000px;}
.y91{bottom:387.277500px;}
.y138{bottom:387.289500px;}
.y1a2{bottom:387.306000px;}
.y69{bottom:387.315000px;}
.yb5{bottom:387.322500px;}
.yfc{bottom:393.135000px;}
.y3c{bottom:395.902500px;}
.yce{bottom:404.407500px;}
.y1d9{bottom:404.430000px;}
.y1fc{bottom:404.452500px;}
.y16e{bottom:404.460000px;}
.y11e{bottom:404.490000px;}
.y1c1{bottom:404.505000px;}
.y22a{bottom:404.515500px;}
.y90{bottom:404.520000px;}
.y137{bottom:404.532000px;}
.y1a1{bottom:404.548500px;}
.y68{bottom:404.557500px;}
.yb4{bottom:404.565000px;}
.yb{bottom:406.696500px;}
.yfb{bottom:408.885000px;}
.y3b{bottom:413.145000px;}
.ycd{bottom:421.650000px;}
.y149{bottom:421.665000px;}
.y1d8{bottom:421.672500px;}
.y1fb{bottom:421.695000px;}
.ya{bottom:421.701750px;}
.y16d{bottom:421.702500px;}
.y11d{bottom:421.732500px;}
.y1c0{bottom:421.747500px;}
.y229{bottom:421.758000px;}
.y8f{bottom:421.762500px;}
.y136{bottom:421.774500px;}
.y1a0{bottom:421.791000px;}
.y67{bottom:421.800000px;}
.yb3{bottom:421.807500px;}
.yfa{bottom:424.635000px;}
.y3a{bottom:430.387500px;}
.y9{bottom:436.707000px;}
.ycc{bottom:438.892500px;}
.y148{bottom:438.907500px;}
.y1d7{bottom:438.915000px;}
.y1fa{bottom:438.937500px;}
.y16c{bottom:438.945000px;}
.y11c{bottom:438.975000px;}
.y1bf{bottom:438.990000px;}
.y228{bottom:439.000500px;}
.y8e{bottom:439.005000px;}
.y135{bottom:439.017000px;}
.y19f{bottom:439.033500px;}
.y66{bottom:439.042500px;}
.yb2{bottom:439.050000px;}
.yf9{bottom:440.385000px;}
.y39{bottom:447.630000px;}
.y8{bottom:451.712250px;}
.yf8{bottom:456.135000px;}
.y147{bottom:456.150000px;}
.y1d6{bottom:456.157500px;}
.y1f9{bottom:456.180000px;}
.y16b{bottom:456.187500px;}
.y11b{bottom:456.217500px;}
.y1be{bottom:456.232500px;}
.y227{bottom:456.243000px;}
.y8d{bottom:456.247500px;}
.ycb{bottom:456.259500px;}
.y19e{bottom:456.276000px;}
.y65{bottom:456.285000px;}
.yb1{bottom:456.292500px;}
.y38{bottom:464.872500px;}
.y7{bottom:466.717500px;}
.yf7{bottom:471.885000px;}
.y146{bottom:473.392500px;}
.y1d5{bottom:473.400000px;}
.y1f8{bottom:473.422500px;}
.y16a{bottom:473.430000px;}
.y11a{bottom:473.460000px;}
.y1bd{bottom:473.475000px;}
.y226{bottom:473.485500px;}
.y8c{bottom:473.490000px;}
.yca{bottom:473.502000px;}
.y19d{bottom:473.518500px;}
.y64{bottom:473.527500px;}
.yb0{bottom:473.535000px;}
.y6{bottom:481.722750px;}
.y37{bottom:482.115000px;}
.y190{bottom:482.131500px;}
.yf6{bottom:487.635000px;}
.y1d4{bottom:490.642500px;}
.y1f7{bottom:490.665000px;}
.y169{bottom:490.672500px;}
.y119{bottom:490.702500px;}
.y1bc{bottom:490.717500px;}
.y225{bottom:490.728000px;}
.y8b{bottom:490.732500px;}
.yc9{bottom:490.744500px;}
.y19c{bottom:490.761000px;}
.y63{bottom:490.770000px;}
.yaf{bottom:490.777500px;}
.y5{bottom:496.728000px;}
.y36{bottom:499.357500px;}
.yf5{bottom:503.385000px;}
.y1f6{bottom:507.907500px;}
.y168{bottom:507.915000px;}
.y118{bottom:507.945000px;}
.y1bb{bottom:507.960000px;}
.y224{bottom:507.970500px;}
.y8a{bottom:507.975000px;}
.yc8{bottom:507.987000px;}
.y19b{bottom:508.003500px;}
.y62{bottom:508.012500px;}
.yae{bottom:508.020000px;}
.y4{bottom:511.733250px;}
.y35{bottom:516.600000px;}
.yf4{bottom:519.135000px;}
.y1f5{bottom:525.150000px;}
.y167{bottom:525.157500px;}
.y117{bottom:525.187500px;}
.y1ba{bottom:525.202500px;}
.y223{bottom:525.213000px;}
.y89{bottom:525.217500px;}
.y134{bottom:525.229500px;}
.y19a{bottom:525.246000px;}
.y61{bottom:525.255000px;}
.yad{bottom:525.262500px;}
.y3{bottom:526.738500px;}
.y34{bottom:533.842500px;}
.yc7{bottom:533.859000px;}
.yf3{bottom:534.885000px;}
.y2{bottom:541.743750px;}
.y1f4{bottom:542.392500px;}
.y166{bottom:542.400000px;}
.y116{bottom:542.430000px;}
.y1b9{bottom:542.445000px;}
.y222{bottom:542.455500px;}
.y88{bottom:542.460000px;}
.y184{bottom:542.472000px;}
.y199{bottom:542.488500px;}
.y60{bottom:542.497500px;}
.yac{bottom:542.505000px;}
.yf2{bottom:550.635000px;}
.y33{bottom:551.085000px;}
.y133{bottom:551.101500px;}
.y165{bottom:559.642500px;}
.y115{bottom:559.672500px;}
.y1b8{bottom:559.687500px;}
.y221{bottom:559.698000px;}
.y87{bottom:559.702500px;}
.y183{bottom:559.714500px;}
.y198{bottom:559.731000px;}
.y5f{bottom:559.740000px;}
.yab{bottom:559.747500px;}
.yf1{bottom:566.385000px;}
.y32{bottom:568.327500px;}
.y1{bottom:571.740000px;}
.y114{bottom:576.915000px;}
.y1b7{bottom:576.930000px;}
.y164{bottom:576.940500px;}
.y86{bottom:576.945000px;}
.y18f{bottom:576.957000px;}
.y197{bottom:576.973500px;}
.y5e{bottom:576.982500px;}
.yaa{bottom:576.990000px;}
.yf0{bottom:582.135000px;}
.y31{bottom:585.570000px;}
.y182{bottom:585.586500px;}
.y230{bottom:594.142500px;}
.y113{bottom:594.157500px;}
.y1b6{bottom:594.172500px;}
.y163{bottom:594.183000px;}
.y85{bottom:594.187500px;}
.y18e{bottom:594.199500px;}
.y196{bottom:594.216000px;}
.y5d{bottom:594.225000px;}
.ya9{bottom:594.232500px;}
.yef{bottom:597.885000px;}
.y30{bottom:602.812500px;}
.y112{bottom:611.400000px;}
.y1b5{bottom:611.415000px;}
.y162{bottom:611.425500px;}
.y84{bottom:611.430000px;}
.y18d{bottom:611.442000px;}
.y195{bottom:611.458500px;}
.y5c{bottom:611.467500px;}
.ya8{bottom:611.475000px;}
.yee{bottom:613.635000px;}
.y2f{bottom:620.055000px;}
.y210{bottom:620.071500px;}
.y111{bottom:628.642500px;}
.y1b4{bottom:628.657500px;}
.y161{bottom:628.668000px;}
.y83{bottom:628.672500px;}
.y18c{bottom:628.684500px;}
.y194{bottom:628.701000px;}
.y5b{bottom:628.710000px;}
.ya7{bottom:628.717500px;}
.y22{bottom:628.890000px;}
.yed{bottom:629.385000px;}
.y2e{bottom:637.297500px;}
.yec{bottom:645.135000px;}
.y110{bottom:645.889500px;}
.y1b3{bottom:645.900000px;}
.y220{bottom:645.910500px;}
.y82{bottom:645.915000px;}
.y18b{bottom:645.927000px;}
.y193{bottom:645.943500px;}
.y5a{bottom:645.952500px;}
.ya6{bottom:645.960000px;}
.y2d{bottom:654.540000px;}
.yeb{bottom:660.885000px;}
.y10f{bottom:663.132000px;}
.y1b2{bottom:663.142500px;}
.y81{bottom:663.157500px;}
.y18a{bottom:663.169500px;}
.y192{bottom:663.186000px;}
.y59{bottom:663.195000px;}
.ya5{bottom:663.202500px;}
.y2c{bottom:671.782500px;}
.yea{bottom:676.635000px;}
.y80{bottom:680.400000px;}
.y189{bottom:680.412000px;}
.y191{bottom:680.428500px;}
.y58{bottom:680.437500px;}
.ya4{bottom:680.445000px;}
.y10e{bottom:689.004000px;}
.y2b{bottom:689.025000px;}
.ye9{bottom:692.385000px;}
.y7f{bottom:697.642500px;}
.y188{bottom:697.654500px;}
.y160{bottom:697.671000px;}
.y57{bottom:697.680000px;}
.ya3{bottom:697.687500px;}
.y2a{bottom:706.267500px;}
.ye8{bottom:708.135000px;}
.y21{bottom:713.349000px;}
.y187{bottom:714.897000px;}
.y15f{bottom:714.913500px;}
.y56{bottom:714.922500px;}
.y7e{bottom:714.930000px;}
.y29{bottom:723.543000px;}
.ye7{bottom:723.885000px;}
.y20{bottom:727.605000px;}
.y186{bottom:732.139500px;}
.y15e{bottom:732.156000px;}
.y55{bottom:732.165000px;}
.y7d{bottom:732.172500px;}
.ye6{bottom:739.635000px;}
.y28{bottom:740.785500px;}
.y1f{bottom:745.605000px;}
.y15d{bottom:749.398500px;}
.y54{bottom:749.407500px;}
.y7c{bottom:749.415000px;}
.ye5{bottom:755.385000px;}
.y185{bottom:758.011500px;}
.y27{bottom:758.028000px;}
.y15c{bottom:766.641000px;}
.y53{bottom:766.650000px;}
.y7b{bottom:766.657500px;}
.ye4{bottom:771.135000px;}
.y26{bottom:775.270500px;}
.y52{bottom:783.892500px;}
.y7a{bottom:783.900000px;}
.ye3{bottom:786.885000px;}
.y1e{bottom:790.605000px;}
.y25{bottom:792.513000px;}
.y51{bottom:801.142500px;}
.ye2{bottom:802.635000px;}
.y1d{bottom:814.605000px;}
.y24{bottom:818.385000px;}
.y1c{bottom:865.605000px;}
.y23{bottom:928.500000px;}
.h8{height:47.085938px;}
.h4{height:51.216000px;}
.h3{height:57.618000px;}
.hb{height:57.642000px;}
.hd{height:57.666000px;}
.hc{height:58.536000px;}
.h18{height:58.560000px;}
.he{height:58.584000px;}
.h1{height:60.819000px;}
.h2{height:61.788000px;}
.h13{height:64.020000px;}
.h14{height:64.614000px;}
.h9{height:70.422000px;}
.h19{height:70.505400px;}
.h17{height:70.535400px;}
.h1c{height:70.565400px;}
.h12{height:70.577400px;}
.h1d{height:70.625400px;}
.h1e{height:70.715400px;}
.h1b{height:70.835400px;}
.h1a{height:70.853400px;}
.h11{height:70.895400px;}
.h15{height:70.925400px;}
.ha{height:70.943400px;}
.hf{height:71.045400px;}
.h16{height:71.057400px;}
.h10{height:71.544000px;}
.h7{height:76.824000px;}
.h5{height:102.432000px;}
.h6{height:103.382400px;}
.h0{height:904.500000px;}
.w0{width:634.500000px;}
.x0{left:0.000000px;}
.x4{left:3.000000px;}
.x1{left:73.200000px;}
.x5{left:74.415000px;}
.xb{left:87.456000px;}
.x7{left:88.663500px;}
.x8{left:95.700000px;}
.x6{left:96.927000px;}
.xa{left:118.200000px;}
.x9{left:119.415000px;}
.x2{left:441.000000px;}
.x3{left:442.770000px;}
@media print{
.v3{vertical-align:-19.360000pt;}
.v5{vertical-align:-1.093333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.600000pt;}
.v2{vertical-align:19.242667pt;}
.v1{vertical-align:28.160000pt;}
.ls3f{letter-spacing:-1.349333pt;}
.ls43{letter-spacing:-1.290667pt;}
.ls76{letter-spacing:-1.232000pt;}
.ls6b{letter-spacing:-1.173333pt;}
.ls1c{letter-spacing:-1.114667pt;}
.ls54{letter-spacing:-1.056000pt;}
.ls1b{letter-spacing:-0.997333pt;}
.ls5b{letter-spacing:-0.960000pt;}
.ls62{letter-spacing:-0.938667pt;}
.ls50{letter-spacing:-0.906667pt;}
.ls66{letter-spacing:-0.880000pt;}
.ls52{letter-spacing:-0.853333pt;}
.ls40{letter-spacing:-0.821333pt;}
.ls1d{letter-spacing:-0.762667pt;}
.ls5a{letter-spacing:-0.756000pt;}
.ls64{letter-spacing:-0.739200pt;}
.ls19{letter-spacing:-0.704000pt;}
.ls63{letter-spacing:-0.645333pt;}
.ls4d{letter-spacing:-0.640000pt;}
.ls5c{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.597333pt;}
.ls17{letter-spacing:-0.586667pt;}
.ls4b{letter-spacing:-0.533333pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls4f{letter-spacing:-0.480000pt;}
.ls16{letter-spacing:-0.469333pt;}
.ls5{letter-spacing:-0.456000pt;}
.ls41{letter-spacing:-0.410667pt;}
.lsb{letter-spacing:-0.405333pt;}
.ls6e{letter-spacing:-0.369600pt;}
.ls6{letter-spacing:-0.354667pt;}
.ls34{letter-spacing:-0.352000pt;}
.ls48{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls35{letter-spacing:-0.288000pt;}
.ls74{letter-spacing:-0.287467pt;}
.ls51{letter-spacing:-0.266667pt;}
.ls24{letter-spacing:-0.252000pt;}
.ls25{letter-spacing:-0.240000pt;}
.ls33{letter-spacing:-0.234667pt;}
.ls21{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.176000pt;}
.ls77{letter-spacing:-0.164267pt;}
.ls4a{letter-spacing:-0.160000pt;}
.ls4{letter-spacing:-0.152000pt;}
.ls20{letter-spacing:-0.144000pt;}
.ls59{letter-spacing:-0.123200pt;}
.ls1f{letter-spacing:-0.117333pt;}
.ls22{letter-spacing:-0.108000pt;}
.ls44{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls23{letter-spacing:-0.096000pt;}
.ls15{letter-spacing:-0.058667pt;}
.ls53{letter-spacing:-0.053333pt;}
.ls8{letter-spacing:-0.050667pt;}
.ls70{letter-spacing:-0.048000pt;}
.ls26{letter-spacing:-0.036000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.050667pt;}
.ls49{letter-spacing:0.053333pt;}
.ls12{letter-spacing:0.058667pt;}
.ls13{letter-spacing:0.072000pt;}
.ls14{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.101333pt;}
.ls46{letter-spacing:0.106667pt;}
.ls71{letter-spacing:0.108000pt;}
.ls29{letter-spacing:0.117333pt;}
.ls30{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.152000pt;}
.ls37{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.176000pt;}
.ls32{letter-spacing:0.180000pt;}
.ls31{letter-spacing:0.192000pt;}
.ls2d{letter-spacing:0.234667pt;}
.ls3d{letter-spacing:0.252000pt;}
.ls42{letter-spacing:0.266667pt;}
.ls39{letter-spacing:0.293333pt;}
.ls9{letter-spacing:0.304000pt;}
.ls45{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.324000pt;}
.ls3e{letter-spacing:0.336000pt;}
.lsf{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.354667pt;}
.ls47{letter-spacing:0.373333pt;}
.ls72{letter-spacing:0.378667pt;}
.ls61{letter-spacing:0.384000pt;}
.ls10{letter-spacing:0.410667pt;}
.ls28{letter-spacing:0.426667pt;}
.ls2f{letter-spacing:0.469333pt;}
.ls75{letter-spacing:0.480000pt;}
.ls2a{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.586667pt;}
.ls27{letter-spacing:0.645333pt;}
.ls73{letter-spacing:0.648000pt;}
.ls6f{letter-spacing:0.657067pt;}
.ls11{letter-spacing:0.704000pt;}
.ls36{letter-spacing:0.762667pt;}
.ls56{letter-spacing:0.816000pt;}
.lsd{letter-spacing:0.821333pt;}
.ls57{letter-spacing:0.864000pt;}
.ls2c{letter-spacing:0.880000pt;}
.ls68{letter-spacing:0.900000pt;}
.ls3c{letter-spacing:0.938667pt;}
.ls4e{letter-spacing:0.960000pt;}
.ls65{letter-spacing:0.997333pt;}
.ls5d{letter-spacing:1.056000pt;}
.ls4c{letter-spacing:1.066667pt;}
.ls58{letter-spacing:1.104000pt;}
.ls5f{letter-spacing:1.114667pt;}
.ls5e{letter-spacing:1.173333pt;}
.ls67{letter-spacing:1.189333pt;}
.ls6a{letter-spacing:1.200000pt;}
.ls69{letter-spacing:1.248000pt;}
.ls38{letter-spacing:1.290667pt;}
.ls6d{letter-spacing:1.349333pt;}
.ls3b{letter-spacing:1.466667pt;}
.ls6c{letter-spacing:1.525333pt;}
.ls3a{letter-spacing:1.642667pt;}
.ls2e{letter-spacing:1.760000pt;}
.ls55{letter-spacing:13.706667pt;}
.ws10{word-spacing:-15.488000pt;}
.ws33{word-spacing:-15.136000pt;}
.wsf{word-spacing:-14.960000pt;}
.ws75{word-spacing:-14.666667pt;}
.ws74{word-spacing:-14.432000pt;}
.ws7e{word-spacing:-14.373333pt;}
.ws79{word-spacing:-13.493333pt;}
.ws66{word-spacing:-12.816000pt;}
.ws13{word-spacing:-12.000000pt;}
.ws19{word-spacing:-11.904000pt;}
.ws18{word-spacing:-11.808000pt;}
.ws7b{word-spacing:-10.923733pt;}
.ws50{word-spacing:-10.266667pt;}
.ws65{word-spacing:-10.143467pt;}
.ws85{word-spacing:-10.102400pt;}
.ws7f{word-spacing:-9.979200pt;}
.ws77{word-spacing:-9.900000pt;}
.ws7a{word-spacing:-9.897067pt;}
.ws68{word-spacing:-9.864000pt;}
.ws82{word-spacing:-9.648000pt;}
.ws70{word-spacing:-9.527467pt;}
.ws5a{word-spacing:-9.333333pt;}
.ws72{word-spacing:-9.324000pt;}
.ws44{word-spacing:-9.252000pt;}
.ws35{word-spacing:-9.180000pt;}
.ws34{word-spacing:-9.144000pt;}
.ws81{word-spacing:-9.108000pt;}
.ws1b{word-spacing:-9.072000pt;}
.ws14{word-spacing:-9.000000pt;}
.ws1d{word-spacing:-8.964000pt;}
.ws17{word-spacing:-8.892000pt;}
.ws16{word-spacing:-8.856000pt;}
.ws1a{word-spacing:-8.748000pt;}
.ws67{word-spacing:-8.244000pt;}
.wse{word-spacing:-6.997333pt;}
.ws26{word-spacing:-0.704000pt;}
.ws1f{word-spacing:-0.645333pt;}
.ws1e{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.576000pt;}
.ws64{word-spacing:-0.533333pt;}
.ws25{word-spacing:-0.528000pt;}
.ws32{word-spacing:-0.480000pt;}
.ws29{word-spacing:-0.469333pt;}
.wsc{word-spacing:-0.456000pt;}
.ws7d{word-spacing:-0.432000pt;}
.ws51{word-spacing:-0.426667pt;}
.ws21{word-spacing:-0.410667pt;}
.ws3{word-spacing:-0.405333pt;}
.ws5c{word-spacing:-0.373333pt;}
.ws3e{word-spacing:-0.352000pt;}
.ws7c{word-spacing:-0.336000pt;}
.ws69{word-spacing:-0.328533pt;}
.ws5d{word-spacing:-0.320000pt;}
.ws0{word-spacing:-0.304000pt;}
.ws2a{word-spacing:-0.293333pt;}
.ws47{word-spacing:-0.287467pt;}
.ws56{word-spacing:-0.266667pt;}
.ws30{word-spacing:-0.240000pt;}
.ws27{word-spacing:-0.234667pt;}
.ws5f{word-spacing:-0.213333pt;}
.ws9{word-spacing:-0.202667pt;}
.ws43{word-spacing:-0.192000pt;}
.ws20{word-spacing:-0.176000pt;}
.ws57{word-spacing:-0.160000pt;}
.wsd{word-spacing:-0.152000pt;}
.ws28{word-spacing:-0.117333pt;}
.ws63{word-spacing:-0.106667pt;}
.ws15{word-spacing:-0.096000pt;}
.ws2d{word-spacing:-0.058667pt;}
.ws61{word-spacing:-0.053333pt;}
.ws8{word-spacing:-0.050667pt;}
.ws1c{word-spacing:-0.048000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.048000pt;}
.ws6a{word-spacing:0.058667pt;}
.ws6d{word-spacing:0.096000pt;}
.ws59{word-spacing:0.106667pt;}
.ws4b{word-spacing:0.117333pt;}
.ws41{word-spacing:0.176000pt;}
.ws4f{word-spacing:0.234667pt;}
.ws2e{word-spacing:0.240000pt;}
.ws38{word-spacing:0.293333pt;}
.ws84{word-spacing:0.336000pt;}
.ws40{word-spacing:0.352000pt;}
.ws60{word-spacing:0.373333pt;}
.ws6b{word-spacing:0.384000pt;}
.ws3c{word-spacing:0.410667pt;}
.ws58{word-spacing:0.426667pt;}
.ws4{word-spacing:0.456000pt;}
.ws2c{word-spacing:0.469333pt;}
.ws6c{word-spacing:0.480000pt;}
.ws4c{word-spacing:0.528000pt;}
.ws62{word-spacing:0.533333pt;}
.ws37{word-spacing:0.574933pt;}
.ws22{word-spacing:0.586667pt;}
.ws48{word-spacing:0.645333pt;}
.ws2b{word-spacing:0.704000pt;}
.ws83{word-spacing:0.720000pt;}
.ws4a{word-spacing:0.762667pt;}
.ws73{word-spacing:0.768000pt;}
.ws4d{word-spacing:0.816000pt;}
.ws36{word-spacing:0.821333pt;}
.wsb{word-spacing:0.861333pt;}
.ws24{word-spacing:0.880000pt;}
.ws55{word-spacing:0.906667pt;}
.ws3a{word-spacing:0.938667pt;}
.ws42{word-spacing:0.960000pt;}
.ws1{word-spacing:0.962667pt;}
.ws3f{word-spacing:0.997333pt;}
.ws6e{word-spacing:1.008000pt;}
.ws52{word-spacing:1.013333pt;}
.ws23{word-spacing:1.056000pt;}
.wsa{word-spacing:1.064000pt;}
.ws54{word-spacing:1.066667pt;}
.ws31{word-spacing:1.104000pt;}
.ws7{word-spacing:1.114667pt;}
.ws5{word-spacing:1.165333pt;}
.ws46{word-spacing:1.173333pt;}
.ws6{word-spacing:1.216000pt;}
.ws53{word-spacing:1.226667pt;}
.ws4e{word-spacing:1.232000pt;}
.ws5b{word-spacing:1.280000pt;}
.ws45{word-spacing:1.290667pt;}
.ws80{word-spacing:1.296000pt;}
.ws39{word-spacing:1.349333pt;}
.ws5e{word-spacing:1.386667pt;}
.ws3b{word-spacing:1.408000pt;}
.ws49{word-spacing:1.466667pt;}
.ws78{word-spacing:1.701333pt;}
.ws3d{word-spacing:3.461333pt;}
.ws76{word-spacing:5.786667pt;}
.ws71{word-spacing:8.016000pt;}
.ws11{word-spacing:31.744000pt;}
.ws12{word-spacing:32.016000pt;}
._12{margin-left:-10.085333pt;}
._13{margin-left:-9.120000pt;}
._4{margin-left:-8.192000pt;}
._9{margin-left:-6.981333pt;}
._a{margin-left:-5.690667pt;}
._7{margin-left:-4.704000pt;}
._5{margin-left:-2.928000pt;}
._d{margin-left:-1.936000pt;}
._1{margin-left:-0.912000pt;}
._0{width:1.266667pt;}
._e{width:2.521333pt;}
._15{width:6.805333pt;}
._8{width:10.992000pt;}
._b{width:15.082667pt;}
._11{width:20.016000pt;}
._14{width:29.744000pt;}
._10{width:31.210667pt;}
._f{width:37.370667pt;}
._3{width:42.624000pt;}
._2{width:61.104000pt;}
._c{width:482.474667pt;}
._6{width:1074.944000pt;}
.fs8{font-size:36.000000pt;}
.fsa{font-size:37.333333pt;}
.fs7{font-size:41.066667pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs4{font-size:59.733333pt;}
.fs5{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y20f{bottom:51.002667pt;}
.y79{bottom:51.109333pt;}
.y1d3{bottom:51.216000pt;}
.ya2{bottom:51.221333pt;}
.y50{bottom:51.274667pt;}
.y1b{bottom:51.280000pt;}
.y10d{bottom:51.333333pt;}
.y181{bottom:51.336000pt;}
.ye1{bottom:51.346667pt;}
.y132{bottom:51.362667pt;}
.y15b{bottom:51.573333pt;}
.y21f{bottom:53.036000pt;}
.yc6{bottom:53.050667pt;}
.y20e{bottom:63.674667pt;}
.y78{bottom:63.781333pt;}
.y1d2{bottom:63.888000pt;}
.ya1{bottom:63.893333pt;}
.y4f{bottom:63.936000pt;}
.y180{bottom:64.008000pt;}
.y131{bottom:64.034667pt;}
.y21e{bottom:68.362667pt;}
.yc5{bottom:68.377333pt;}
.y20d{bottom:76.341333pt;}
.y77{bottom:76.453333pt;}
.y1d1{bottom:76.560000pt;}
.y4e{bottom:76.608000pt;}
.y17f{bottom:76.674667pt;}
.y231{bottom:76.680000pt;}
.y130{bottom:76.696000pt;}
.y21d{bottom:83.689333pt;}
.yc4{bottom:83.704000pt;}
.ye0{bottom:88.893333pt;}
.y20c{bottom:89.008000pt;}
.y4d{bottom:89.269333pt;}
.y17e{bottom:89.346667pt;}
.y12f{bottom:89.368000pt;}
.y10c{bottom:92.866667pt;}
.y15a{bottom:98.918667pt;}
.y21c{bottom:99.016000pt;}
.yc3{bottom:99.030667pt;}
.y1f3{bottom:99.060000pt;}
.y20b{bottom:101.680000pt;}
.y4c{bottom:101.941333pt;}
.y12e{bottom:102.029333pt;}
.ydf{bottom:102.893333pt;}
.y10b{bottom:108.193333pt;}
.y145{bottom:114.146667pt;}
.y1d0{bottom:114.205333pt;}
.y159{bottom:114.245333pt;}
.y1e9{bottom:114.266667pt;}
.y21b{bottom:114.342667pt;}
.ya0{bottom:114.346667pt;}
.y76{bottom:114.350667pt;}
.yc2{bottom:114.357333pt;}
.y1b1{bottom:114.372000pt;}
.y1f2{bottom:114.386667pt;}
.y4b{bottom:114.602667pt;}
.y12d{bottom:114.701333pt;}
.yde{bottom:116.893333pt;}
.y1a{bottom:118.880000pt;}
.y10a{bottom:123.520000pt;}
.y4a{bottom:127.274667pt;}
.y12c{bottom:127.368000pt;}
.y144{bottom:129.473333pt;}
.y1cf{bottom:129.532000pt;}
.y158{bottom:129.572000pt;}
.y1e8{bottom:129.593333pt;}
.y17d{bottom:129.620000pt;}
.y21a{bottom:129.669333pt;}
.y9f{bottom:129.673333pt;}
.y75{bottom:129.677333pt;}
.yc1{bottom:129.684000pt;}
.y1b0{bottom:129.698667pt;}
.y1f1{bottom:129.713333pt;}
.ydd{bottom:130.893333pt;}
.y19{bottom:132.170667pt;}
.y109{bottom:138.846667pt;}
.y49{bottom:139.936000pt;}
.y12b{bottom:140.034667pt;}
.y20a{bottom:144.793333pt;}
.y143{bottom:144.800000pt;}
.y1ce{bottom:144.858667pt;}
.ydc{bottom:144.893333pt;}
.y157{bottom:144.898667pt;}
.y1e7{bottom:144.920000pt;}
.y17c{bottom:144.946667pt;}
.y219{bottom:144.996000pt;}
.y9e{bottom:145.000000pt;}
.y74{bottom:145.004000pt;}
.yc0{bottom:145.010667pt;}
.y1af{bottom:145.025333pt;}
.y1f0{bottom:145.040000pt;}
.y18{bottom:150.841333pt;}
.y48{bottom:152.608000pt;}
.y12a{bottom:152.706667pt;}
.y108{bottom:154.173333pt;}
.ydb{bottom:158.893333pt;}
.y142{bottom:160.126667pt;}
.y1cd{bottom:160.185333pt;}
.y156{bottom:160.225333pt;}
.y1e6{bottom:160.246667pt;}
.y209{bottom:160.266667pt;}
.y17b{bottom:160.273333pt;}
.y218{bottom:160.322667pt;}
.y9d{bottom:160.326667pt;}
.y73{bottom:160.330667pt;}
.ybf{bottom:160.337333pt;}
.y1ae{bottom:160.352000pt;}
.y1ef{bottom:160.366667pt;}
.y17{bottom:164.179333pt;}
.y47{bottom:165.274667pt;}
.y107{bottom:169.500000pt;}
.yda{bottom:172.893333pt;}
.y1cc{bottom:175.512000pt;}
.y155{bottom:175.552000pt;}
.y1e5{bottom:175.573333pt;}
.y208{bottom:175.593333pt;}
.y17a{bottom:175.600000pt;}
.y217{bottom:175.649333pt;}
.y9c{bottom:175.653333pt;}
.y72{bottom:175.657333pt;}
.ybe{bottom:175.664000pt;}
.y1ad{bottom:175.678667pt;}
.y1ee{bottom:175.693333pt;}
.y16{bottom:177.517333pt;}
.y46{bottom:177.946667pt;}
.y106{bottom:184.826667pt;}
.yd9{bottom:186.893333pt;}
.y129{bottom:190.833333pt;}
.y1cb{bottom:190.838667pt;}
.y15{bottom:190.855333pt;}
.y154{bottom:190.878667pt;}
.y1e4{bottom:190.900000pt;}
.y207{bottom:190.920000pt;}
.y179{bottom:190.926667pt;}
.y216{bottom:190.976000pt;}
.y9b{bottom:190.980000pt;}
.y71{bottom:190.984000pt;}
.ybd{bottom:190.990667pt;}
.y1ac{bottom:191.005333pt;}
.y1ed{bottom:191.020000pt;}
.y105{bottom:200.153333pt;}
.yd8{bottom:200.893333pt;}
.y14{bottom:204.193333pt;}
.y128{bottom:206.160000pt;}
.y1ca{bottom:206.165333pt;}
.y153{bottom:206.205333pt;}
.y1e3{bottom:206.226667pt;}
.y206{bottom:206.246667pt;}
.y178{bottom:206.253333pt;}
.y215{bottom:206.302667pt;}
.y9a{bottom:206.306667pt;}
.y70{bottom:206.310667pt;}
.y141{bottom:206.317333pt;}
.y1ab{bottom:206.332000pt;}
.y1ec{bottom:206.346667pt;}
.y45{bottom:213.973333pt;}
.ybc{bottom:213.988000pt;}
.yd7{bottom:214.893333pt;}
.y104{bottom:215.480000pt;}
.y13{bottom:217.531333pt;}
.y127{bottom:221.486667pt;}
.y1c9{bottom:221.492000pt;}
.y152{bottom:221.532000pt;}
.y1e2{bottom:221.553333pt;}
.y205{bottom:221.573333pt;}
.y177{bottom:221.580000pt;}
.y214{bottom:221.629333pt;}
.y99{bottom:221.633333pt;}
.y6f{bottom:221.637333pt;}
.y140{bottom:221.644000pt;}
.y1aa{bottom:221.658667pt;}
.y1eb{bottom:221.673333pt;}
.yd6{bottom:228.893333pt;}
.y44{bottom:229.300000pt;}
.y103{bottom:230.806667pt;}
.y12{bottom:230.869333pt;}
.y126{bottom:236.813333pt;}
.y151{bottom:236.858667pt;}
.y1e1{bottom:236.880000pt;}
.y204{bottom:236.900000pt;}
.y176{bottom:236.906667pt;}
.y213{bottom:236.956000pt;}
.y98{bottom:236.960000pt;}
.y6e{bottom:236.964000pt;}
.y13f{bottom:236.970667pt;}
.y1a9{bottom:236.985333pt;}
.y1ea{bottom:237.000000pt;}
.yd5{bottom:242.893333pt;}
.y11{bottom:244.207333pt;}
.y43{bottom:244.626667pt;}
.y102{bottom:246.133333pt;}
.y125{bottom:252.140000pt;}
.y1c8{bottom:252.160000pt;}
.y150{bottom:252.185333pt;}
.y1e0{bottom:252.206667pt;}
.y203{bottom:252.226667pt;}
.y175{bottom:252.233333pt;}
.y212{bottom:252.282667pt;}
.y97{bottom:252.286667pt;}
.y6d{bottom:252.290667pt;}
.y13e{bottom:252.297333pt;}
.y1a8{bottom:252.312000pt;}
.ybb{bottom:252.326667pt;}
.yd4{bottom:256.893333pt;}
.y10{bottom:257.545333pt;}
.y42{bottom:259.953333pt;}
.y101{bottom:261.460000pt;}
.y124{bottom:267.466667pt;}
.y1c7{bottom:267.486667pt;}
.y14f{bottom:267.512000pt;}
.y1df{bottom:267.533333pt;}
.y202{bottom:267.553333pt;}
.y174{bottom:267.560000pt;}
.y211{bottom:267.609333pt;}
.y96{bottom:267.613333pt;}
.y6c{bottom:267.617333pt;}
.y13d{bottom:267.624000pt;}
.y1a7{bottom:267.638667pt;}
.yba{bottom:267.653333pt;}
.yf{bottom:270.883333pt;}
.yd3{bottom:270.893333pt;}
.y41{bottom:275.280000pt;}
.y100{bottom:276.786667pt;}
.y123{bottom:282.793333pt;}
.y1c6{bottom:282.813333pt;}
.y14e{bottom:282.838667pt;}
.y1de{bottom:282.860000pt;}
.y201{bottom:282.880000pt;}
.y173{bottom:282.886667pt;}
.y22f{bottom:282.936000pt;}
.y95{bottom:282.940000pt;}
.y6b{bottom:282.944000pt;}
.y13c{bottom:282.950667pt;}
.y1a6{bottom:282.965333pt;}
.yb9{bottom:282.980000pt;}
.y40{bottom:290.606667pt;}
.ye{bottom:297.546667pt;}
.y1c5{bottom:298.140000pt;}
.y14d{bottom:298.165333pt;}
.yd2{bottom:298.166667pt;}
.y1dd{bottom:298.186667pt;}
.y200{bottom:298.206667pt;}
.y172{bottom:298.213333pt;}
.y122{bottom:298.240000pt;}
.y22e{bottom:298.262667pt;}
.y94{bottom:298.266667pt;}
.y13b{bottom:298.277333pt;}
.y1a5{bottom:298.292000pt;}
.yb8{bottom:298.306667pt;}
.y3f{bottom:305.933333pt;}
.y6a{bottom:305.941333pt;}
.yff{bottom:307.453333pt;}
.y1c4{bottom:313.466667pt;}
.y14c{bottom:313.492000pt;}
.yd1{bottom:313.493333pt;}
.y1dc{bottom:313.513333pt;}
.y1ff{bottom:313.533333pt;}
.y171{bottom:313.540000pt;}
.y121{bottom:313.566667pt;}
.y22d{bottom:313.589333pt;}
.y93{bottom:313.593333pt;}
.y13a{bottom:313.604000pt;}
.y1a4{bottom:313.618667pt;}
.yb7{bottom:313.633333pt;}
.y3e{bottom:321.260000pt;}
.yfe{bottom:321.453333pt;}
.y1c3{bottom:328.793333pt;}
.y14b{bottom:328.818667pt;}
.yd0{bottom:328.820000pt;}
.y1db{bottom:328.840000pt;}
.y1fe{bottom:328.860000pt;}
.y170{bottom:328.866667pt;}
.y120{bottom:328.893333pt;}
.y22c{bottom:328.916000pt;}
.y92{bottom:328.920000pt;}
.y139{bottom:328.930667pt;}
.y1a3{bottom:328.945333pt;}
.yb6{bottom:328.960000pt;}
.yd{bottom:329.499333pt;}
.yfd{bottom:335.453333pt;}
.y3d{bottom:336.586667pt;}
.yc{bottom:342.837333pt;}
.y14a{bottom:344.145333pt;}
.ycf{bottom:344.146667pt;}
.y1da{bottom:344.166667pt;}
.y1fd{bottom:344.186667pt;}
.y16f{bottom:344.193333pt;}
.y11f{bottom:344.220000pt;}
.y1c2{bottom:344.233333pt;}
.y22b{bottom:344.242667pt;}
.y91{bottom:344.246667pt;}
.y138{bottom:344.257333pt;}
.y1a2{bottom:344.272000pt;}
.y69{bottom:344.280000pt;}
.yb5{bottom:344.286667pt;}
.yfc{bottom:349.453333pt;}
.y3c{bottom:351.913333pt;}
.yce{bottom:359.473333pt;}
.y1d9{bottom:359.493333pt;}
.y1fc{bottom:359.513333pt;}
.y16e{bottom:359.520000pt;}
.y11e{bottom:359.546667pt;}
.y1c1{bottom:359.560000pt;}
.y22a{bottom:359.569333pt;}
.y90{bottom:359.573333pt;}
.y137{bottom:359.584000pt;}
.y1a1{bottom:359.598667pt;}
.y68{bottom:359.606667pt;}
.yb4{bottom:359.613333pt;}
.yb{bottom:361.508000pt;}
.yfb{bottom:363.453333pt;}
.y3b{bottom:367.240000pt;}
.ycd{bottom:374.800000pt;}
.y149{bottom:374.813333pt;}
.y1d8{bottom:374.820000pt;}
.y1fb{bottom:374.840000pt;}
.ya{bottom:374.846000pt;}
.y16d{bottom:374.846667pt;}
.y11d{bottom:374.873333pt;}
.y1c0{bottom:374.886667pt;}
.y229{bottom:374.896000pt;}
.y8f{bottom:374.900000pt;}
.y136{bottom:374.910667pt;}
.y1a0{bottom:374.925333pt;}
.y67{bottom:374.933333pt;}
.yb3{bottom:374.940000pt;}
.yfa{bottom:377.453333pt;}
.y3a{bottom:382.566667pt;}
.y9{bottom:388.184000pt;}
.ycc{bottom:390.126667pt;}
.y148{bottom:390.140000pt;}
.y1d7{bottom:390.146667pt;}
.y1fa{bottom:390.166667pt;}
.y16c{bottom:390.173333pt;}
.y11c{bottom:390.200000pt;}
.y1bf{bottom:390.213333pt;}
.y228{bottom:390.222667pt;}
.y8e{bottom:390.226667pt;}
.y135{bottom:390.237333pt;}
.y19f{bottom:390.252000pt;}
.y66{bottom:390.260000pt;}
.yb2{bottom:390.266667pt;}
.yf9{bottom:391.453333pt;}
.y39{bottom:397.893333pt;}
.y8{bottom:401.522000pt;}
.yf8{bottom:405.453333pt;}
.y147{bottom:405.466667pt;}
.y1d6{bottom:405.473333pt;}
.y1f9{bottom:405.493333pt;}
.y16b{bottom:405.500000pt;}
.y11b{bottom:405.526667pt;}
.y1be{bottom:405.540000pt;}
.y227{bottom:405.549333pt;}
.y8d{bottom:405.553333pt;}
.ycb{bottom:405.564000pt;}
.y19e{bottom:405.578667pt;}
.y65{bottom:405.586667pt;}
.yb1{bottom:405.593333pt;}
.y38{bottom:413.220000pt;}
.y7{bottom:414.860000pt;}
.yf7{bottom:419.453333pt;}
.y146{bottom:420.793333pt;}
.y1d5{bottom:420.800000pt;}
.y1f8{bottom:420.820000pt;}
.y16a{bottom:420.826667pt;}
.y11a{bottom:420.853333pt;}
.y1bd{bottom:420.866667pt;}
.y226{bottom:420.876000pt;}
.y8c{bottom:420.880000pt;}
.yca{bottom:420.890667pt;}
.y19d{bottom:420.905333pt;}
.y64{bottom:420.913333pt;}
.yb0{bottom:420.920000pt;}
.y6{bottom:428.198000pt;}
.y37{bottom:428.546667pt;}
.y190{bottom:428.561333pt;}
.yf6{bottom:433.453333pt;}
.y1d4{bottom:436.126667pt;}
.y1f7{bottom:436.146667pt;}
.y169{bottom:436.153333pt;}
.y119{bottom:436.180000pt;}
.y1bc{bottom:436.193333pt;}
.y225{bottom:436.202667pt;}
.y8b{bottom:436.206667pt;}
.yc9{bottom:436.217333pt;}
.y19c{bottom:436.232000pt;}
.y63{bottom:436.240000pt;}
.yaf{bottom:436.246667pt;}
.y5{bottom:441.536000pt;}
.y36{bottom:443.873333pt;}
.yf5{bottom:447.453333pt;}
.y1f6{bottom:451.473333pt;}
.y168{bottom:451.480000pt;}
.y118{bottom:451.506667pt;}
.y1bb{bottom:451.520000pt;}
.y224{bottom:451.529333pt;}
.y8a{bottom:451.533333pt;}
.yc8{bottom:451.544000pt;}
.y19b{bottom:451.558667pt;}
.y62{bottom:451.566667pt;}
.yae{bottom:451.573333pt;}
.y4{bottom:454.874000pt;}
.y35{bottom:459.200000pt;}
.yf4{bottom:461.453333pt;}
.y1f5{bottom:466.800000pt;}
.y167{bottom:466.806667pt;}
.y117{bottom:466.833333pt;}
.y1ba{bottom:466.846667pt;}
.y223{bottom:466.856000pt;}
.y89{bottom:466.860000pt;}
.y134{bottom:466.870667pt;}
.y19a{bottom:466.885333pt;}
.y61{bottom:466.893333pt;}
.yad{bottom:466.900000pt;}
.y3{bottom:468.212000pt;}
.y34{bottom:474.526667pt;}
.yc7{bottom:474.541333pt;}
.yf3{bottom:475.453333pt;}
.y2{bottom:481.550000pt;}
.y1f4{bottom:482.126667pt;}
.y166{bottom:482.133333pt;}
.y116{bottom:482.160000pt;}
.y1b9{bottom:482.173333pt;}
.y222{bottom:482.182667pt;}
.y88{bottom:482.186667pt;}
.y184{bottom:482.197333pt;}
.y199{bottom:482.212000pt;}
.y60{bottom:482.220000pt;}
.yac{bottom:482.226667pt;}
.yf2{bottom:489.453333pt;}
.y33{bottom:489.853333pt;}
.y133{bottom:489.868000pt;}
.y165{bottom:497.460000pt;}
.y115{bottom:497.486667pt;}
.y1b8{bottom:497.500000pt;}
.y221{bottom:497.509333pt;}
.y87{bottom:497.513333pt;}
.y183{bottom:497.524000pt;}
.y198{bottom:497.538667pt;}
.y5f{bottom:497.546667pt;}
.yab{bottom:497.553333pt;}
.yf1{bottom:503.453333pt;}
.y32{bottom:505.180000pt;}
.y1{bottom:508.213333pt;}
.y114{bottom:512.813333pt;}
.y1b7{bottom:512.826667pt;}
.y164{bottom:512.836000pt;}
.y86{bottom:512.840000pt;}
.y18f{bottom:512.850667pt;}
.y197{bottom:512.865333pt;}
.y5e{bottom:512.873333pt;}
.yaa{bottom:512.880000pt;}
.yf0{bottom:517.453333pt;}
.y31{bottom:520.506667pt;}
.y182{bottom:520.521333pt;}
.y230{bottom:528.126667pt;}
.y113{bottom:528.140000pt;}
.y1b6{bottom:528.153333pt;}
.y163{bottom:528.162667pt;}
.y85{bottom:528.166667pt;}
.y18e{bottom:528.177333pt;}
.y196{bottom:528.192000pt;}
.y5d{bottom:528.200000pt;}
.ya9{bottom:528.206667pt;}
.yef{bottom:531.453333pt;}
.y30{bottom:535.833333pt;}
.y112{bottom:543.466667pt;}
.y1b5{bottom:543.480000pt;}
.y162{bottom:543.489333pt;}
.y84{bottom:543.493333pt;}
.y18d{bottom:543.504000pt;}
.y195{bottom:543.518667pt;}
.y5c{bottom:543.526667pt;}
.ya8{bottom:543.533333pt;}
.yee{bottom:545.453333pt;}
.y2f{bottom:551.160000pt;}
.y210{bottom:551.174667pt;}
.y111{bottom:558.793333pt;}
.y1b4{bottom:558.806667pt;}
.y161{bottom:558.816000pt;}
.y83{bottom:558.820000pt;}
.y18c{bottom:558.830667pt;}
.y194{bottom:558.845333pt;}
.y5b{bottom:558.853333pt;}
.ya7{bottom:558.860000pt;}
.y22{bottom:559.013333pt;}
.yed{bottom:559.453333pt;}
.y2e{bottom:566.486667pt;}
.yec{bottom:573.453333pt;}
.y110{bottom:574.124000pt;}
.y1b3{bottom:574.133333pt;}
.y220{bottom:574.142667pt;}
.y82{bottom:574.146667pt;}
.y18b{bottom:574.157333pt;}
.y193{bottom:574.172000pt;}
.y5a{bottom:574.180000pt;}
.ya6{bottom:574.186667pt;}
.y2d{bottom:581.813333pt;}
.yeb{bottom:587.453333pt;}
.y10f{bottom:589.450667pt;}
.y1b2{bottom:589.460000pt;}
.y81{bottom:589.473333pt;}
.y18a{bottom:589.484000pt;}
.y192{bottom:589.498667pt;}
.y59{bottom:589.506667pt;}
.ya5{bottom:589.513333pt;}
.y2c{bottom:597.140000pt;}
.yea{bottom:601.453333pt;}
.y80{bottom:604.800000pt;}
.y189{bottom:604.810667pt;}
.y191{bottom:604.825333pt;}
.y58{bottom:604.833333pt;}
.ya4{bottom:604.840000pt;}
.y10e{bottom:612.448000pt;}
.y2b{bottom:612.466667pt;}
.ye9{bottom:615.453333pt;}
.y7f{bottom:620.126667pt;}
.y188{bottom:620.137333pt;}
.y160{bottom:620.152000pt;}
.y57{bottom:620.160000pt;}
.ya3{bottom:620.166667pt;}
.y2a{bottom:627.793333pt;}
.ye8{bottom:629.453333pt;}
.y21{bottom:634.088000pt;}
.y187{bottom:635.464000pt;}
.y15f{bottom:635.478667pt;}
.y56{bottom:635.486667pt;}
.y7e{bottom:635.493333pt;}
.y29{bottom:643.149333pt;}
.ye7{bottom:643.453333pt;}
.y20{bottom:646.760000pt;}
.y186{bottom:650.790667pt;}
.y15e{bottom:650.805333pt;}
.y55{bottom:650.813333pt;}
.y7d{bottom:650.820000pt;}
.ye6{bottom:657.453333pt;}
.y28{bottom:658.476000pt;}
.y1f{bottom:662.760000pt;}
.y15d{bottom:666.132000pt;}
.y54{bottom:666.140000pt;}
.y7c{bottom:666.146667pt;}
.ye5{bottom:671.453333pt;}
.y185{bottom:673.788000pt;}
.y27{bottom:673.802667pt;}
.y15c{bottom:681.458667pt;}
.y53{bottom:681.466667pt;}
.y7b{bottom:681.473333pt;}
.ye4{bottom:685.453333pt;}
.y26{bottom:689.129333pt;}
.y52{bottom:696.793333pt;}
.y7a{bottom:696.800000pt;}
.ye3{bottom:699.453333pt;}
.y1e{bottom:702.760000pt;}
.y25{bottom:704.456000pt;}
.y51{bottom:712.126667pt;}
.ye2{bottom:713.453333pt;}
.y1d{bottom:724.093333pt;}
.y24{bottom:727.453333pt;}
.y1c{bottom:769.426667pt;}
.y23{bottom:825.333333pt;}
.h8{height:41.854167pt;}
.h4{height:45.525333pt;}
.h3{height:51.216000pt;}
.hb{height:51.237333pt;}
.hd{height:51.258667pt;}
.hc{height:52.032000pt;}
.h18{height:52.053333pt;}
.he{height:52.074667pt;}
.h1{height:54.061333pt;}
.h2{height:54.922667pt;}
.h13{height:56.906667pt;}
.h14{height:57.434667pt;}
.h9{height:62.597333pt;}
.h19{height:62.671467pt;}
.h17{height:62.698133pt;}
.h1c{height:62.724800pt;}
.h12{height:62.735467pt;}
.h1d{height:62.778133pt;}
.h1e{height:62.858133pt;}
.h1b{height:62.964800pt;}
.h1a{height:62.980800pt;}
.h11{height:63.018133pt;}
.h15{height:63.044800pt;}
.ha{height:63.060800pt;}
.hf{height:63.151467pt;}
.h16{height:63.162133pt;}
.h10{height:63.594667pt;}
.h7{height:68.288000pt;}
.h5{height:91.050667pt;}
.h6{height:91.895467pt;}
.h0{height:804.000000pt;}
.w0{width:564.000000pt;}
.x0{left:0.000000pt;}
.x4{left:2.666667pt;}
.x1{left:65.066667pt;}
.x5{left:66.146667pt;}
.xb{left:77.738667pt;}
.x7{left:78.812000pt;}
.x8{left:85.066667pt;}
.x6{left:86.157333pt;}
.xa{left:105.066667pt;}
.x9{left:106.146667pt;}
.x2{left:392.000000pt;}
.x3{left:393.573333pt;}
}




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