
    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_bc77f3547f74b92748e02f8c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_a989437ac8296d7fb16755b1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_795da9ca65990c74c5c4fd1c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_ece189f9506b1463e19ce599.woff')format("woff");}.ff4{font-family:ff4;line-height:0.931152;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_02b8727435e613a9dfb11e16.woff')format("woff");}.ff5{font-family:ff5;line-height:0.849000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0fcbfe857237512d2c8d1f68.woff')format("woff");}.ff6{font-family:ff6;line-height:1.028000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_df407191633d3313b8e65bc5.woff')format("woff");}.ff7{font-family:ff7;line-height:0.706000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f437591913bbd4e34a04442d.woff')format("woff");}.ff8{font-family:ff8;line-height:0.922852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ca50d6499769dc9629de19c7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e24fe02b51175569fc8ab6f4.woff')format("woff");}.ffa{font-family:ffa;line-height:0.904000;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:ffb;src:url('chunks/assets/font_afefdb30e38835fed4793fa3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.899414;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:ffc;src:url('chunks/assets/font_bcc976a48dd0a4d2f8a2486a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.944336;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);}
.v4{vertical-align:-23.760000px;}
.v3{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.800000px;}
.v2{vertical-align:23.976000px;}
.v6{vertical-align:37.500000px;}
.v1{vertical-align:175.200000px;}
.ls1d{letter-spacing:-7.200000px;}
.ls36{letter-spacing:-4.800000px;}
.ls38{letter-spacing:-2.112000px;}
.ls26{letter-spacing:-1.872000px;}
.ls33{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.864000px;}
.ls2b{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls25{letter-spacing:-0.648000px;}
.lsa{letter-spacing:-0.576000px;}
.ls2d{letter-spacing:-0.504000px;}
.ls35{letter-spacing:-0.480000px;}
.ls11{letter-spacing:-0.432000px;}
.lsb{letter-spacing:-0.360000px;}
.ls2c{letter-spacing:-0.302400px;}
.ls1f{letter-spacing:-0.300000px;}
.lsc{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.252000px;}
.ls37{letter-spacing:-0.240000px;}
.ls16{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.144000px;}
.ls27{letter-spacing:-0.072000px;}
.ls5{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls24{letter-spacing:0.115200px;}
.ls9{letter-spacing:0.144000px;}
.ls23{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls3b{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.432000px;}
.ls13{letter-spacing:0.504000px;}
.ls12{letter-spacing:0.576000px;}
.ls15{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls14{letter-spacing:0.792000px;}
.ls28{letter-spacing:0.864000px;}
.ls19{letter-spacing:0.936000px;}
.ls20{letter-spacing:1.008000px;}
.ls21{letter-spacing:1.080000px;}
.ls1e{letter-spacing:1.152000px;}
.ls18{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.512000px;}
.ls22{letter-spacing:1.656000px;}
.ls1{letter-spacing:2.850000px;}
.ls39{letter-spacing:3.120000px;}
.ls32{letter-spacing:3.422400px;}
.ls2f{letter-spacing:4.248000px;}
.ls3{letter-spacing:4.560000px;}
.ls34{letter-spacing:4.752000px;}
.ls2a{letter-spacing:5.112000px;}
.ls1a{letter-spacing:7.200000px;}
.ls31{letter-spacing:7.610400px;}
.ls30{letter-spacing:7.632000px;}
.ls29{letter-spacing:7.920000px;}
.ls3a{letter-spacing:8.100000px;}
.ls0{letter-spacing:8.436000px;}
.ls6{letter-spacing:8.460000px;}
.ls4{letter-spacing:10.368751px;}
.ls2{letter-spacing:10.740000px;}
.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;}
}
.ws2{word-spacing:-25.320000px;}
.ws64{word-spacing:-23.274000px;}
.ws4f{word-spacing:-20.592000px;}
.ws13{word-spacing:-20.232000px;}
.ws51{word-spacing:-19.800000px;}
.ws1{word-spacing:-18.867000px;}
.ws48{word-spacing:-18.546000px;}
.ws44{word-spacing:-18.288000px;}
.ws1f{word-spacing:-18.144000px;}
.ws55{word-spacing:-17.856000px;}
.ws19{word-spacing:-17.784000px;}
.ws45{word-spacing:-17.712000px;}
.ws58{word-spacing:-16.860000px;}
.ws59{word-spacing:-16.704000px;}
.ws2a{word-spacing:-16.560000px;}
.ws33{word-spacing:-14.820000px;}
.wsb{word-spacing:-14.162400px;}
.ws54{word-spacing:-13.910400px;}
.ws52{word-spacing:-13.860000px;}
.ws53{word-spacing:-13.488000px;}
.ws5c{word-spacing:-12.336000px;}
.ws4a{word-spacing:-11.856000px;}
.ws5f{word-spacing:-11.616000px;}
.ws20{word-spacing:-10.584000px;}
.ws47{word-spacing:-8.640000px;}
.wsa{word-spacing:-8.496000px;}
.ws11{word-spacing:-8.460000px;}
.ws4e{word-spacing:-7.920000px;}
.ws24{word-spacing:-7.200000px;}
.ws5e{word-spacing:-7.056000px;}
.ws2b{word-spacing:-6.636000px;}
.ws9{word-spacing:-4.560000px;}
.ws63{word-spacing:-3.120000px;}
.ws40{word-spacing:-1.656000px;}
.ws21{word-spacing:-1.512000px;}
.ws22{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.152000px;}
.ws3d{word-spacing:-1.080000px;}
.ws3e{word-spacing:-1.008000px;}
.ws27{word-spacing:-0.936000px;}
.ws4b{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.792000px;}
.wsf{word-spacing:-0.720000px;}
.ws1d{word-spacing:-0.648000px;}
.ws1a{word-spacing:-0.576000px;}
.ws1b{word-spacing:-0.504000px;}
.ws16{word-spacing:-0.432000px;}
.wse{word-spacing:-0.360000px;}
.ws66{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.288000px;}
.ws41{word-spacing:-0.216000px;}
.ws12{word-spacing:-0.144000px;}
.ws14{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:0.048000px;}
.ws46{word-spacing:0.072000px;}
.ws15{word-spacing:0.144000px;}
.ws1e{word-spacing:0.216000px;}
.ws62{word-spacing:0.240000px;}
.ws10{word-spacing:0.288000px;}
.ws2c{word-spacing:0.300000px;}
.wsd{word-spacing:0.360000px;}
.ws17{word-spacing:0.432000px;}
.ws5d{word-spacing:0.480000px;}
.ws56{word-spacing:0.504000px;}
.wsc{word-spacing:0.576000px;}
.ws42{word-spacing:0.648000px;}
.ws25{word-spacing:0.720000px;}
.ws50{word-spacing:0.792000px;}
.ws26{word-spacing:0.864000px;}
.ws5a{word-spacing:0.936000px;}
.ws4c{word-spacing:1.080000px;}
.ws65{word-spacing:1.440000px;}
.ws7{word-spacing:1.800000px;}
.ws4d{word-spacing:2.160000px;}
.ws2d{word-spacing:2.400000px;}
.ws43{word-spacing:2.448000px;}
.ws28{word-spacing:3.024000px;}
.ws3f{word-spacing:3.096000px;}
.ws60{word-spacing:3.360000px;}
.ws6{word-spacing:4.200000px;}
.ws61{word-spacing:8.160000px;}
.ws57{word-spacing:8.712000px;}
.ws23{word-spacing:10.152000px;}
.ws5b{word-spacing:13.780200px;}
.ws4{word-spacing:17.160000px;}
.ws5{word-spacing:73.140000px;}
.ws0{word-spacing:146.196000px;}
.ws30{word-spacing:280.188000px;}
.ws37{word-spacing:364.116000px;}
.ws36{word-spacing:367.776000px;}
.ws3a{word-spacing:380.580000px;}
.ws3c{word-spacing:422.700000px;}
.ws39{word-spacing:441.978000px;}
.ws34{word-spacing:446.280000px;}
.ws2e{word-spacing:448.680000px;}
.ws32{word-spacing:450.000000px;}
.ws35{word-spacing:457.620000px;}
.ws38{word-spacing:457.770000px;}
.ws3b{word-spacing:459.120000px;}
.ws31{word-spacing:523.380000px;}
.ws2f{word-spacing:762.558000px;}
.ws49{word-spacing:941.640000px;}
._10{margin-left:-948.820800px;}
._7{margin-left:-68.880000px;}
._9{margin-left:-14.520000px;}
._15{margin-left:-13.483200px;}
._a{margin-left:-11.928000px;}
._25{margin-left:-10.213800px;}
._26{margin-left:-8.478600px;}
._f{margin-left:-7.228800px;}
._3{margin-left:-5.964000px;}
._2{margin-left:-4.056000px;}
._6{margin-left:-2.124000px;}
._1{margin-left:-1.068000px;}
._11{width:1.036800px;}
._5{width:2.124000px;}
._4{width:3.150000px;}
._0{width:4.284000px;}
._c{width:5.298000px;}
._e{width:6.303600px;}
._d{width:7.502400px;}
._b{width:8.970000px;}
._12{width:10.182000px;}
._8{width:11.280000px;}
._13{width:12.540000px;}
._27{width:13.796100px;}
._2a{width:18.180000px;}
._14{width:31.646100px;}
._28{width:46.032000px;}
._29{width:65.278800px;}
._16{width:83.245200px;}
._19{width:119.292000px;}
._1d{width:126.402000px;}
._17{width:139.086000px;}
._1b{width:156.066000px;}
._18{width:216.996000px;}
._1a{width:223.416000px;}
._23{width:359.659200px;}
._1c{width:376.902000px;}
._1e{width:461.322000px;}
._1f{width:496.848000px;}
._24{width:661.656000px;}
._20{width:845.430000px;}
._21{width:916.230000px;}
._22{width:1012.830000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.700000px;}
.fs8{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:120.000000px;}
.fs5{font-size:414.925800px;}
.y0{bottom:0.000000px;}
.y2{bottom:55.500000px;}
.y1{bottom:72.000000px;}
.y6b{bottom:117.000000px;}
.y17c{bottom:118.420200px;}
.y23{bottom:119.478750px;}
.y232{bottom:119.604000px;}
.y202{bottom:120.216000px;}
.y139{bottom:120.576300px;}
.y47{bottom:121.207500px;}
.y24c{bottom:121.736250px;}
.yd6{bottom:125.968500px;}
.y6a{bottom:132.000000px;}
.y231{bottom:134.748000px;}
.y201{bottom:135.360000px;}
.y8e{bottom:136.207500px;}
.y138{bottom:139.476300px;}
.y24b{bottom:140.486250px;}
.y17b{bottom:140.776200px;}
.y22{bottom:141.384750px;}
.y69{bottom:147.000000px;}
.y230{bottom:149.892000px;}
.y200{bottom:150.516000px;}
.y157{bottom:151.207500px;}
.yd5{bottom:152.953500px;}
.yf6{bottom:157.223850px;}
.y137{bottom:158.376300px;}
.y24a{bottom:159.236250px;}
.y1df{bottom:160.476300px;}
.y46{bottom:161.088000px;}
.y118{bottom:162.000000px;}
.y17a{bottom:163.132200px;}
.y21{bottom:163.290750px;}
.y1f{bottom:163.302750px;}
.y22f{bottom:165.036000px;}
.y1ff{bottom:165.660000px;}
.y68{bottom:166.207500px;}
.y8d{bottom:175.950000px;}
.yf5{bottom:176.573850px;}
.y249{bottom:177.986250px;}
.y1bd{bottom:178.448250px;}
.y197{bottom:178.742100px;}
.yd4{bottom:179.938500px;}
.y22e{bottom:180.180000px;}
.y1fe{bottom:180.804000px;}
.y117{bottom:181.207500px;}
.y1de{bottom:182.526300px;}
.y45{bottom:182.994000px;}
.y67{bottom:184.500000px;}
.y20{bottom:185.196750px;}
.y179{bottom:185.488200px;}
.y136{bottom:185.882250px;}
.y156{bottom:190.909800px;}
.y19b{bottom:194.041050px;}
.y22d{bottom:195.324000px;}
.y1fd{bottom:195.960000px;}
.y248{bottom:196.736250px;}
.y8c{bottom:198.306000px;}
.y116{bottom:199.500000px;}
.y1bc{bottom:200.642250px;}
.y196{bottom:201.242100px;}
.y66{bottom:203.707500px;}
.yf4{bottom:204.428850px;}
.y1dd{bottom:204.576300px;}
.y44{bottom:204.900000px;}
.yad{bottom:206.172150px;}
.yd3{bottom:206.923500px;}
.y178{bottom:207.844200px;}
.y135{bottom:208.526250px;}
.y22c{bottom:210.468000px;}
.y1fc{bottom:211.104000px;}
.y19a{bottom:212.341050px;}
.y155{bottom:213.409800px;}
.y115{bottom:214.500000px;}
.y247{bottom:215.486250px;}
.y8b{bottom:220.662000px;}
.y1bb{bottom:222.836250px;}
.y195{bottom:223.742100px;}
.yf3{bottom:223.778850px;}
.y22b{bottom:225.612000px;}
.y1fb{bottom:226.248000px;}
.y1dc{bottom:226.626300px;}
.y43{bottom:226.800000px;}
.yac{bottom:227.772150px;}
.y114{bottom:229.500000px;}
.y177{bottom:230.200200px;}
.y134{bottom:231.170250px;}
.yd2{bottom:233.908500px;}
.y246{bottom:234.236250px;}
.y154{bottom:235.909800px;}
.y199{bottom:239.146050px;}
.y22a{bottom:240.756000px;}
.y1fa{bottom:241.404000px;}
.y8a{bottom:243.306000px;}
.y1ba{bottom:245.030250px;}
.y194{bottom:246.242100px;}
.y65{bottom:247.116000px;}
.y1db{bottom:248.676300px;}
.y113{bottom:248.707500px;}
.yab{bottom:249.372150px;}
.y1e{bottom:250.902750px;}
.yf2{bottom:251.728800px;}
.y176{bottom:252.556200px;}
.y245{bottom:252.986250px;}
.y133{bottom:253.814250px;}
.yd1{bottom:254.008500px;}
.y229{bottom:255.900000px;}
.y1f9{bottom:256.548000px;}
.y153{bottom:258.409800px;}
.y89{bottom:265.950000px;}
.y193{bottom:268.742100px;}
.y1d{bottom:269.052750px;}
.y64{bottom:270.066000px;}
.y42{bottom:270.474000px;}
.y1da{bottom:270.726450px;}
.yaa{bottom:270.972150px;}
.y228{bottom:271.044000px;}
.y1f8{bottom:271.692000px;}
.y244{bottom:271.736250px;}
.yf1{bottom:274.822800px;}
.y175{bottom:274.912200px;}
.y1b9{bottom:275.733150px;}
.y132{bottom:276.458250px;}
.yd0{bottom:280.993500px;}
.y227{bottom:286.188000px;}
.y1f7{bottom:286.836000px;}
.y88{bottom:288.000000px;}
.y112{bottom:288.582000px;}
.y243{bottom:290.486250px;}
.y192{bottom:291.242100px;}
.y41{bottom:292.380000px;}
.ya9{bottom:292.572150px;}
.y63{bottom:292.710000px;}
.y1b8{bottom:294.183150px;}
.y1c{bottom:295.705650px;}
.y174{bottom:297.268200px;}
.yf0{bottom:297.916800px;}
.y131{bottom:299.102250px;}
.ycf{bottom:301.093500px;}
.y226{bottom:301.332000px;}
.y1f6{bottom:301.980000px;}
.y152{bottom:306.287250px;}
.y242{bottom:309.236250px;}
.y87{bottom:310.050000px;}
.y111{bottom:311.388000px;}
.y1b7{bottom:312.633150px;}
.y191{bottom:313.742100px;}
.y1b{bottom:314.155650px;}
.ya8{bottom:314.172150px;}
.y40{bottom:314.286000px;}
.y1d9{bottom:314.826300px;}
.y62{bottom:315.354000px;}
.y225{bottom:316.476000px;}
.y1f5{bottom:317.136000px;}
.y173{bottom:319.624200px;}
.yef{bottom:321.010800px;}
.y130{bottom:321.746250px;}
.y241{bottom:327.986250px;}
.yce{bottom:328.078500px;}
.y224{bottom:331.620000px;}
.y86{bottom:332.100000px;}
.y1f4{bottom:332.280000px;}
.y1a{bottom:332.605650px;}
.y151{bottom:333.272250px;}
.y110{bottom:334.194000px;}
.ya7{bottom:335.772150px;}
.y3f{bottom:336.192000px;}
.y190{bottom:336.242100px;}
.y1d8{bottom:336.876300px;}
.y61{bottom:337.998000px;}
.y1b6{bottom:339.588150px;}
.y172{bottom:341.980200px;}
.yee{bottom:344.104800px;}
.y12f{bottom:344.390250px;}
.y240{bottom:346.736250px;}
.y223{bottom:346.764000px;}
.y1f3{bottom:347.424000px;}
.ycd{bottom:348.178500px;}
.y19{bottom:351.055650px;}
.y85{bottom:354.150000px;}
.y10f{bottom:356.862000px;}
.y1b5{bottom:358.038150px;}
.y3e{bottom:358.098000px;}
.ya6{bottom:358.128150px;}
.y18f{bottom:358.742100px;}
.y1d7{bottom:358.926300px;}
.y150{bottom:360.255750px;}
.y60{bottom:360.642000px;}
.y222{bottom:361.908000px;}
.y1f2{bottom:362.568000px;}
.y171{bottom:364.336200px;}
.y23f{bottom:365.486250px;}
.y12e{bottom:367.034250px;}
.yed{bottom:367.198800px;}
.y18{bottom:369.505650px;}
.ycc{bottom:375.163500px;}
.y84{bottom:376.200000px;}
.y221{bottom:377.052000px;}
.y1f1{bottom:377.712000px;}
.y14f{bottom:379.025700px;}
.y10e{bottom:379.668000px;}
.y3d{bottom:380.004000px;}
.ya5{bottom:380.484150px;}
.y1d6{bottom:380.976300px;}
.y5f{bottom:383.286000px;}
.y23e{bottom:384.236250px;}
.y1b4{bottom:385.010100px;}
.y170{bottom:386.692200px;}
.y17{bottom:387.955650px;}
.y12d{bottom:389.678250px;}
.yec{bottom:390.292800px;}
.y220{bottom:392.196000px;}
.y1f0{bottom:392.868000px;}
.ycb{bottom:395.263500px;}
.y14e{bottom:397.769700px;}
.y83{bottom:398.250000px;}
.y3c{bottom:401.910000px;}
.y10d{bottom:402.474000px;}
.ya4{bottom:402.840150px;}
.y23d{bottom:402.986250px;}
.y1d5{bottom:403.026300px;}
.y18e{bottom:403.742100px;}
.y5e{bottom:405.930000px;}
.y16{bottom:406.405650px;}
.y1b3{bottom:407.204100px;}
.y21f{bottom:407.340000px;}
.y16f{bottom:409.048200px;}
.y12c{bottom:412.322250px;}
.yeb{bottom:413.386800px;}
.y1ef{bottom:414.396000px;}
.y82{bottom:420.300000px;}
.yca{bottom:422.248500px;}
.y21e{bottom:422.484000px;}
.y3b{bottom:423.816000px;}
.y15{bottom:424.855650px;}
.y14d{bottom:425.027700px;}
.y1d4{bottom:425.076300px;}
.ya3{bottom:425.196150px;}
.y10c{bottom:425.280000px;}
.y18d{bottom:426.242100px;}
.y5d{bottom:428.574000px;}
.y1b2{bottom:429.398100px;}
.y16e{bottom:431.404200px;}
.y23c{bottom:434.492100px;}
.y12b{bottom:434.966250px;}
.yea{bottom:436.480800px;}
.y21d{bottom:437.628000px;}
.yc9{bottom:442.348500px;}
.y81{bottom:442.350000px;}
.y14{bottom:443.305650px;}
.y14c{bottom:443.771700px;}
.y3a{bottom:445.722000px;}
.y1d3{bottom:447.126300px;}
.ya2{bottom:447.552150px;}
.y10b{bottom:448.086000px;}
.y18c{bottom:448.742100px;}
.y5c{bottom:451.218000px;}
.y1b1{bottom:451.592100px;}
.y21c{bottom:452.772000px;}
.y16d{bottom:453.760200px;}
.y12a{bottom:457.610250px;}
.ye9{bottom:459.574800px;}
.y1ee{bottom:459.696000px;}
.y14b{bottom:462.515700px;}
.y80{bottom:464.400000px;}
.y23b{bottom:465.252000px;}
.y39{bottom:467.628000px;}
.y21b{bottom:467.916000px;}
.y1d2{bottom:469.176300px;}
.yc8{bottom:469.333500px;}
.ya1{bottom:469.908150px;}
.y13{bottom:470.260650px;}
.y10a{bottom:470.892000px;}
.y18b{bottom:471.242100px;}
.y5b{bottom:473.862000px;}
.y1ed{bottom:474.840000px;}
.y16c{bottom:476.116200px;}
.y129{bottom:480.254250px;}
.y14a{bottom:481.259700px;}
.y1b0{bottom:482.296050px;}
.ye8{bottom:482.668800px;}
.y21a{bottom:483.060000px;}
.y25d{bottom:484.500000px;}
.y7f{bottom:486.450000px;}
.yc7{bottom:489.433500px;}
.y38{bottom:489.534000px;}
.y1ec{bottom:489.984000px;}
.y1d1{bottom:491.226300px;}
.ya0{bottom:492.264150px;}
.y109{bottom:493.698000px;}
.y18a{bottom:493.742100px;}
.y5a{bottom:496.506000px;}
.y219{bottom:498.204000px;}
.y16b{bottom:498.472200px;}
.y1af{bottom:500.746050px;}
.y128{bottom:502.898250px;}
.y25c{bottom:503.250000px;}
.y1eb{bottom:505.128000px;}
.ye7{bottom:505.762800px;}
.y7e{bottom:508.500000px;}
.y149{bottom:508.513650px;}
.y37{bottom:511.440000px;}
.y1d0{bottom:513.276300px;}
.y218{bottom:513.348000px;}
.y23a{bottom:514.500000px;}
.y9f{bottom:514.620150px;}
.y12{bottom:514.660650px;}
.y189{bottom:516.242100px;}
.yc6{bottom:516.418500px;}
.y108{bottom:516.504000px;}
.y59{bottom:519.222000px;}
.y1ea{bottom:520.272000px;}
.y16a{bottom:520.828200px;}
.y25b{bottom:522.000000px;}
.y127{bottom:525.542250px;}
.y148{bottom:527.263650px;}
.y1ae{bottom:527.754000px;}
.y217{bottom:528.492000px;}
.ye6{bottom:528.856800px;}
.y239{bottom:529.500000px;}
.y7d{bottom:530.550000px;}
.y11{bottom:533.110650px;}
.y36{bottom:533.346000px;}
.y1cf{bottom:535.326300px;}
.yc5{bottom:536.518500px;}
.y9e{bottom:536.976150px;}
.y188{bottom:538.742100px;}
.y107{bottom:539.310000px;}
.y25a{bottom:540.750000px;}
.y1e9{bottom:541.800000px;}
.y58{bottom:541.866000px;}
.y169{bottom:543.184200px;}
.y216{bottom:543.636000px;}
.yb4{bottom:543.842100px;}
.y238{bottom:544.500000px;}
.y126{bottom:548.186250px;}
.y1ad{bottom:549.948000px;}
.ye5{bottom:551.950800px;}
.y7c{bottom:552.600000px;}
.y35{bottom:555.252000px;}
.y215{bottom:558.780000px;}
.y9d{bottom:559.332150px;}
.y237{bottom:559.500000px;}
.y10{bottom:560.063550px;}
.y187{bottom:561.242100px;}
.y106{bottom:562.116000px;}
.yc4{bottom:563.503500px;}
.y57{bottom:564.510000px;}
.y1ce{bottom:565.879200px;}
.yb3{bottom:566.342100px;}
.y147{bottom:567.000000px;}
.y259{bottom:570.750000px;}
.y125{bottom:570.830250px;}
.y1ac{bottom:572.142000px;}
.y214{bottom:573.924000px;}
.y168{bottom:574.036050px;}
.y236{bottom:574.500000px;}
.y7b{bottom:574.650000px;}
.ye4{bottom:575.044800px;}
.y34{bottom:577.158000px;}
.yf{bottom:578.513550px;}
.y9c{bottom:581.688150px;}
.yc3{bottom:583.603500px;}
.y186{bottom:583.742100px;}
.y1cd{bottom:584.179200px;}
.y105{bottom:584.922000px;}
.y56{bottom:587.154000px;}
.y1e8{bottom:587.190000px;}
.y213{bottom:589.068000px;}
.y235{bottom:589.500000px;}
.y167{bottom:592.636050px;}
.y1ab{bottom:594.336000px;}
.y7a{bottom:596.700000px;}
.ye{bottom:596.963550px;}
.ye3{bottom:598.138800px;}
.y33{bottom:599.064000px;}
.y124{bottom:601.983150px;}
.y9b{bottom:604.038150px;}
.y212{bottom:604.212000px;}
.y234{bottom:604.500000px;}
.y185{bottom:606.242100px;}
.y104{bottom:607.728000px;}
.y55{bottom:609.798000px;}
.y1e7{bottom:609.834000px;}
.yc2{bottom:610.588500px;}
.y1cc{bottom:610.984200px;}
.yb2{bottom:611.180100px;}
.y146{bottom:612.000000px;}
.yd{bottom:615.413550px;}
.y1aa{bottom:616.530000px;}
.y79{bottom:618.750000px;}
.y211{bottom:619.356000px;}
.y233{bottom:619.500000px;}
.y166{bottom:619.741050px;}
.y123{bottom:620.883150px;}
.y32{bottom:620.970000px;}
.ye2{bottom:621.232800px;}
.y184{bottom:628.742100px;}
.y1cb{bottom:629.284200px;}
.y103{bottom:630.534000px;}
.yc1{bottom:630.688500px;}
.y258{bottom:630.750000px;}
.y54{bottom:632.442000px;}
.y1e6{bottom:632.478000px;}
.yb1{bottom:633.086100px;}
.yc{bottom:633.863550px;}
.y145{bottom:634.500000px;}
.y165{bottom:638.341050px;}
.y1a9{bottom:638.724000px;}
.y78{bottom:640.800000px;}
.y31{bottom:642.876000px;}
.ye1{bottom:644.332650px;}
.y122{bottom:648.288150px;}
.y210{bottom:649.500000px;}
.y9a{bottom:649.650150px;}
.y183{bottom:651.242100px;}
.yb{bottom:652.313550px;}
.y102{bottom:653.340000px;}
.yb0{bottom:654.992100px;}
.y53{bottom:655.086000px;}
.y1e5{bottom:655.122000px;}
.y1ca{bottom:656.088150px;}
.y164{bottom:656.941050px;}
.y144{bottom:657.000000px;}
.yc0{bottom:657.673500px;}
.y1a8{bottom:660.918000px;}
.y77{bottom:662.850000px;}
.y20f{bottom:664.500000px;}
.y30{bottom:664.782000px;}
.y121{bottom:667.188150px;}
.y257{bottom:668.250000px;}
.ya{bottom:670.763550px;}
.y99{bottom:672.294150px;}
.y182{bottom:673.742100px;}
.y101{bottom:676.146000px;}
.y52{bottom:677.730000px;}
.y1e4{bottom:677.766000px;}
.ybf{bottom:677.773500px;}
.y1c9{bottom:678.138150px;}
.y143{bottom:679.500000px;}
.y1a7{bottom:683.112000px;}
.y163{bottom:684.046050px;}
.y76{bottom:684.900000px;}
.yaf{bottom:685.396050px;}
.y2f{bottom:686.688000px;}
.y256{bottom:687.000000px;}
.y9{bottom:689.213550px;}
.ye0{bottom:690.544800px;}
.y20e{bottom:694.500000px;}
.y120{bottom:694.616100px;}
.y98{bottom:694.938150px;}
.y181{bottom:696.242100px;}
.y100{bottom:698.952000px;}
.y1c8{bottom:700.188150px;}
.y51{bottom:700.374000px;}
.y1e3{bottom:700.410000px;}
.y142{bottom:702.000000px;}
.y162{bottom:702.646050px;}
.yae{bottom:703.696050px;}
.ybe{bottom:704.758500px;}
.y1a6{bottom:705.306000px;}
.y255{bottom:705.750000px;}
.y198{bottom:706.950000px;}
.y2e{bottom:708.594000px;}
.y20d{bottom:709.500000px;}
.ydf{bottom:713.638800px;}
.y8{bottom:716.168550px;}
.y11f{bottom:717.260100px;}
.y180{bottom:718.742100px;}
.y161{bottom:721.246050px;}
.yff{bottom:721.758000px;}
.y1c7{bottom:722.238150px;}
.y50{bottom:723.018000px;}
.y1e2{bottom:723.054000px;}
.y141{bottom:724.500000px;}
.ybd{bottom:724.858500px;}
.y97{bottom:726.091050px;}
.y1a5{bottom:727.554000px;}
.y75{bottom:729.000000px;}
.y2d{bottom:730.446000px;}
.yde{bottom:736.732800px;}
.y20c{bottom:739.500000px;}
.y11e{bottom:739.904100px;}
.y254{bottom:743.250000px;}
.yfe{bottom:744.564000px;}
.y96{bottom:744.991050px;}
.y4f{bottom:745.662000px;}
.y1e1{bottom:745.698000px;}
.y140{bottom:747.000000px;}
.y160{bottom:748.302000px;}
.y17f{bottom:749.746050px;}
.y1a4{bottom:749.748000px;}
.y74{bottom:751.050000px;}
.ybc{bottom:751.843500px;}
.y2c{bottom:752.352000px;}
.y1c6{bottom:752.792100px;}
.y20b{bottom:754.500000px;}
.y7{bottom:761.454300px;}
.y253{bottom:762.000000px;}
.y11d{bottom:762.548100px;}
.yfd{bottom:767.370000px;}
.y4e{bottom:768.306000px;}
.y1e0{bottom:768.342000px;}
.y17e{bottom:768.496050px;}
.y13f{bottom:769.500000px;}
.y15f{bottom:770.658000px;}
.y1c5{bottom:771.092100px;}
.y1a3{bottom:771.942000px;}
.ybb{bottom:771.943500px;}
.y95{bottom:772.396050px;}
.y73{bottom:773.100000px;}
.y2b{bottom:774.258000px;}
.y252{bottom:780.750000px;}
.y6{bottom:783.354300px;}
.y20a{bottom:784.500000px;}
.y11c{bottom:785.192100px;}
.ydd{bottom:785.205450px;}
.y17d{bottom:787.246050px;}
.yfc{bottom:790.176000px;}
.y4d{bottom:790.986000px;}
.y94{bottom:791.296050px;}
.y13e{bottom:792.000000px;}
.y15e{bottom:793.014000px;}
.y1a2{bottom:794.136000px;}
.y72{bottom:795.150000px;}
.y2a{bottom:796.164000px;}
.y1c4{bottom:797.896050px;}
.yba{bottom:798.928500px;}
.y209{bottom:799.500000px;}
.y93{bottom:810.196050px;}
.ydc{bottom:812.190450px;}
.yfb{bottom:812.982000px;}
.y4c{bottom:813.630000px;}
.y13d{bottom:814.500000px;}
.y15d{bottom:815.370000px;}
.y1a1{bottom:816.330000px;}
.y11b{bottom:816.346050px;}
.y71{bottom:817.200000px;}
.y29{bottom:818.070000px;}
.y251{bottom:818.250000px;}
.yb9{bottom:819.028500px;}
.y1c3{bottom:819.946050px;}
.y208{bottom:829.500000px;}
.y11a{bottom:835.246050px;}
.yfa{bottom:835.788000px;}
.y4b{bottom:836.274000px;}
.y13c{bottom:837.000000px;}
.y92{bottom:837.612000px;}
.y15c{bottom:837.726000px;}
.y1a0{bottom:838.524000px;}
.ydb{bottom:839.175450px;}
.y70{bottom:839.250000px;}
.y28{bottom:839.976000px;}
.y1c2{bottom:841.996050px;}
.y207{bottom:844.500000px;}
.yb8{bottom:846.013500px;}
.y5{bottom:849.900000px;}
.y119{bottom:854.146050px;}
.yb7{bottom:855.388500px;}
.y250{bottom:855.750000px;}
.yda{bottom:857.925450px;}
.yf9{bottom:858.594000px;}
.y4a{bottom:858.918000px;}
.y13b{bottom:859.500000px;}
.y15b{bottom:860.082000px;}
.y91{bottom:860.256000px;}
.y19f{bottom:860.718000px;}
.y6f{bottom:861.300000px;}
.y27{bottom:861.882000px;}
.y1c1{bottom:864.046050px;}
.y206{bottom:874.500000px;}
.y4{bottom:879.300000px;}
.yf8{bottom:881.394000px;}
.y49{bottom:881.562000px;}
.y13a{bottom:882.000000px;}
.y15a{bottom:882.438000px;}
.y90{bottom:882.900000px;}
.y19e{bottom:882.912000px;}
.y6e{bottom:883.350000px;}
.y26{bottom:883.788000px;}
.yd9{bottom:884.910450px;}
.y205{bottom:889.500000px;}
.y24f{bottom:893.250000px;}
.y1c0{bottom:894.600000px;}
.yf7{bottom:904.200000px;}
.y48{bottom:904.206000px;}
.yb6{bottom:904.500000px;}
.y159{bottom:904.794000px;}
.y19d{bottom:905.106000px;}
.y6d{bottom:905.400000px;}
.y8f{bottom:905.544000px;}
.y25{bottom:905.694000px;}
.yd8{bottom:911.895450px;}
.y24e{bottom:912.000000px;}
.y1bf{bottom:912.900000px;}
.y204{bottom:919.500000px;}
.yd7{bottom:921.270450px;}
.y3{bottom:926.850000px;}
.yb5{bottom:927.000000px;}
.y158{bottom:927.150000px;}
.y19c{bottom:927.300000px;}
.y6c{bottom:927.450000px;}
.y24{bottom:927.600000px;}
.y24d{bottom:930.750000px;}
.y1be{bottom:931.200000px;}
.y203{bottom:934.500000px;}
.ha{height:24.630908px;}
.hd{height:30.313623px;}
.h15{height:33.117188px;}
.h14{height:39.072000px;}
.h3{height:39.326660px;}
.hb{height:40.757812px;}
.h2{height:41.396484px;}
.h12{height:42.685547px;}
.h16{height:45.852539px;}
.hf{height:48.840000px;}
.h6{height:49.675781px;}
.h5{height:50.580000px;}
.h1{height:50.947266px;}
.he{height:53.988000px;}
.h13{height:56.041992px;}
.h8{height:61.136719px;}
.h9{height:61.352719px;}
.h11{height:61.688719px;}
.hc{height:66.555703px;}
.h10{height:88.447266px;}
.h4{height:101.894531px;}
.h7{height:290.448060px;}
.h0{height:1017.000000px;}
.w0{width:720.000000px;}
.x0{left:0.000000px;}
.x1{left:67.500000px;}
.xa{left:73.827750px;}
.x8{left:82.373400px;}
.x3{left:97.263750px;}
.x7{left:112.513950px;}
.x4{left:115.319100px;}
.xe{left:118.827750px;}
.x6{left:127.381950px;}
.x13{left:130.519500px;}
.x2{left:135.000000px;}
.x9{left:142.263750px;}
.x14{left:148.636950px;}
.x12{left:163.518750px;}
.x15{left:180.526950px;}
.xc{left:236.277750px;}
.x10{left:281.262750px;}
.x11{left:343.452750px;}
.xb{left:520.287750px;}
.xd{left:547.302750px;}
.xf{left:565.287750px;}
.x5{left:625.781250px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v3{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.600000pt;}
.v2{vertical-align:21.312000pt;}
.v6{vertical-align:33.333333pt;}
.v1{vertical-align:155.733333pt;}
.ls1d{letter-spacing:-6.400000pt;}
.ls36{letter-spacing:-4.266667pt;}
.ls38{letter-spacing:-1.877333pt;}
.ls26{letter-spacing:-1.664000pt;}
.ls33{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.768000pt;}
.ls2b{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls25{letter-spacing:-0.576000pt;}
.lsa{letter-spacing:-0.512000pt;}
.ls2d{letter-spacing:-0.448000pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls11{letter-spacing:-0.384000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls2c{letter-spacing:-0.268800pt;}
.ls1f{letter-spacing:-0.266667pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.224000pt;}
.ls37{letter-spacing:-0.213333pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls27{letter-spacing:-0.064000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls24{letter-spacing:0.102400pt;}
.ls9{letter-spacing:0.128000pt;}
.ls23{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls3b{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.384000pt;}
.ls13{letter-spacing:0.448000pt;}
.ls12{letter-spacing:0.512000pt;}
.ls15{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls28{letter-spacing:0.768000pt;}
.ls19{letter-spacing:0.832000pt;}
.ls20{letter-spacing:0.896000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls1e{letter-spacing:1.024000pt;}
.ls18{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.344000pt;}
.ls22{letter-spacing:1.472000pt;}
.ls1{letter-spacing:2.533333pt;}
.ls39{letter-spacing:2.773333pt;}
.ls32{letter-spacing:3.042133pt;}
.ls2f{letter-spacing:3.776000pt;}
.ls3{letter-spacing:4.053333pt;}
.ls34{letter-spacing:4.224000pt;}
.ls2a{letter-spacing:4.544000pt;}
.ls1a{letter-spacing:6.400000pt;}
.ls31{letter-spacing:6.764800pt;}
.ls30{letter-spacing:6.784000pt;}
.ls29{letter-spacing:7.040000pt;}
.ls3a{letter-spacing:7.200000pt;}
.ls0{letter-spacing:7.498667pt;}
.ls6{letter-spacing:7.520000pt;}
.ls4{letter-spacing:9.216668pt;}
.ls2{letter-spacing:9.546667pt;}
.ws2{word-spacing:-22.506667pt;}
.ws64{word-spacing:-20.688000pt;}
.ws4f{word-spacing:-18.304000pt;}
.ws13{word-spacing:-17.984000pt;}
.ws51{word-spacing:-17.600000pt;}
.ws1{word-spacing:-16.770667pt;}
.ws48{word-spacing:-16.485333pt;}
.ws44{word-spacing:-16.256000pt;}
.ws1f{word-spacing:-16.128000pt;}
.ws55{word-spacing:-15.872000pt;}
.ws19{word-spacing:-15.808000pt;}
.ws45{word-spacing:-15.744000pt;}
.ws58{word-spacing:-14.986667pt;}
.ws59{word-spacing:-14.848000pt;}
.ws2a{word-spacing:-14.720000pt;}
.ws33{word-spacing:-13.173333pt;}
.wsb{word-spacing:-12.588800pt;}
.ws54{word-spacing:-12.364800pt;}
.ws52{word-spacing:-12.320000pt;}
.ws53{word-spacing:-11.989333pt;}
.ws5c{word-spacing:-10.965333pt;}
.ws4a{word-spacing:-10.538667pt;}
.ws5f{word-spacing:-10.325333pt;}
.ws20{word-spacing:-9.408000pt;}
.ws47{word-spacing:-7.680000pt;}
.wsa{word-spacing:-7.552000pt;}
.ws11{word-spacing:-7.520000pt;}
.ws4e{word-spacing:-7.040000pt;}
.ws24{word-spacing:-6.400000pt;}
.ws5e{word-spacing:-6.272000pt;}
.ws2b{word-spacing:-5.898667pt;}
.ws9{word-spacing:-4.053333pt;}
.ws63{word-spacing:-2.773333pt;}
.ws40{word-spacing:-1.472000pt;}
.ws21{word-spacing:-1.344000pt;}
.ws22{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.024000pt;}
.ws3d{word-spacing:-0.960000pt;}
.ws3e{word-spacing:-0.896000pt;}
.ws27{word-spacing:-0.832000pt;}
.ws4b{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.704000pt;}
.wsf{word-spacing:-0.640000pt;}
.ws1d{word-spacing:-0.576000pt;}
.ws1a{word-spacing:-0.512000pt;}
.ws1b{word-spacing:-0.448000pt;}
.ws16{word-spacing:-0.384000pt;}
.wse{word-spacing:-0.320000pt;}
.ws66{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.256000pt;}
.ws41{word-spacing:-0.192000pt;}
.ws12{word-spacing:-0.128000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:0.042667pt;}
.ws46{word-spacing:0.064000pt;}
.ws15{word-spacing:0.128000pt;}
.ws1e{word-spacing:0.192000pt;}
.ws62{word-spacing:0.213333pt;}
.ws10{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.266667pt;}
.wsd{word-spacing:0.320000pt;}
.ws17{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.426667pt;}
.ws56{word-spacing:0.448000pt;}
.wsc{word-spacing:0.512000pt;}
.ws42{word-spacing:0.576000pt;}
.ws25{word-spacing:0.640000pt;}
.ws50{word-spacing:0.704000pt;}
.ws26{word-spacing:0.768000pt;}
.ws5a{word-spacing:0.832000pt;}
.ws4c{word-spacing:0.960000pt;}
.ws65{word-spacing:1.280000pt;}
.ws7{word-spacing:1.600000pt;}
.ws4d{word-spacing:1.920000pt;}
.ws2d{word-spacing:2.133333pt;}
.ws43{word-spacing:2.176000pt;}
.ws28{word-spacing:2.688000pt;}
.ws3f{word-spacing:2.752000pt;}
.ws60{word-spacing:2.986667pt;}
.ws6{word-spacing:3.733333pt;}
.ws61{word-spacing:7.253333pt;}
.ws57{word-spacing:7.744000pt;}
.ws23{word-spacing:9.024000pt;}
.ws5b{word-spacing:12.249067pt;}
.ws4{word-spacing:15.253333pt;}
.ws5{word-spacing:65.013333pt;}
.ws0{word-spacing:129.952000pt;}
.ws30{word-spacing:249.056000pt;}
.ws37{word-spacing:323.658667pt;}
.ws36{word-spacing:326.912000pt;}
.ws3a{word-spacing:338.293333pt;}
.ws3c{word-spacing:375.733333pt;}
.ws39{word-spacing:392.869333pt;}
.ws34{word-spacing:396.693333pt;}
.ws2e{word-spacing:398.826667pt;}
.ws32{word-spacing:400.000000pt;}
.ws35{word-spacing:406.773333pt;}
.ws38{word-spacing:406.906667pt;}
.ws3b{word-spacing:408.106667pt;}
.ws31{word-spacing:465.226667pt;}
.ws2f{word-spacing:677.829333pt;}
.ws49{word-spacing:837.013333pt;}
._10{margin-left:-843.396267pt;}
._7{margin-left:-61.226667pt;}
._9{margin-left:-12.906667pt;}
._15{margin-left:-11.985067pt;}
._a{margin-left:-10.602667pt;}
._25{margin-left:-9.078933pt;}
._26{margin-left:-7.536533pt;}
._f{margin-left:-6.425600pt;}
._3{margin-left:-5.301333pt;}
._2{margin-left:-3.605333pt;}
._6{margin-left:-1.888000pt;}
._1{margin-left:-0.949333pt;}
._11{width:0.921600pt;}
._5{width:1.888000pt;}
._4{width:2.800000pt;}
._0{width:3.808000pt;}
._c{width:4.709333pt;}
._e{width:5.603200pt;}
._d{width:6.668800pt;}
._b{width:7.973333pt;}
._12{width:9.050667pt;}
._8{width:10.026667pt;}
._13{width:11.146667pt;}
._27{width:12.263200pt;}
._2a{width:16.160000pt;}
._14{width:28.129867pt;}
._28{width:40.917333pt;}
._29{width:58.025600pt;}
._16{width:73.995733pt;}
._19{width:106.037333pt;}
._1d{width:112.357333pt;}
._17{width:123.632000pt;}
._1b{width:138.725333pt;}
._18{width:192.885333pt;}
._1a{width:198.592000pt;}
._23{width:319.697067pt;}
._1c{width:335.024000pt;}
._1e{width:410.064000pt;}
._1f{width:441.642667pt;}
._24{width:588.138667pt;}
._20{width:751.493333pt;}
._21{width:814.426667pt;}
._22{width:900.293333pt;}
.fs7{font-size:31.733333pt;}
.fs8{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:106.666667pt;}
.fs5{font-size:368.822933pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.333333pt;}
.y1{bottom:64.000000pt;}
.y6b{bottom:104.000000pt;}
.y17c{bottom:105.262400pt;}
.y23{bottom:106.203333pt;}
.y232{bottom:106.314667pt;}
.y202{bottom:106.858667pt;}
.y139{bottom:107.178933pt;}
.y47{bottom:107.740000pt;}
.y24c{bottom:108.210000pt;}
.yd6{bottom:111.972000pt;}
.y6a{bottom:117.333333pt;}
.y231{bottom:119.776000pt;}
.y201{bottom:120.320000pt;}
.y8e{bottom:121.073333pt;}
.y138{bottom:123.978933pt;}
.y24b{bottom:124.876667pt;}
.y17b{bottom:125.134400pt;}
.y22{bottom:125.675333pt;}
.y69{bottom:130.666667pt;}
.y230{bottom:133.237333pt;}
.y200{bottom:133.792000pt;}
.y157{bottom:134.406667pt;}
.yd5{bottom:135.958667pt;}
.yf6{bottom:139.754533pt;}
.y137{bottom:140.778933pt;}
.y24a{bottom:141.543333pt;}
.y1df{bottom:142.645600pt;}
.y46{bottom:143.189333pt;}
.y118{bottom:144.000000pt;}
.y17a{bottom:145.006400pt;}
.y21{bottom:145.147333pt;}
.y1f{bottom:145.158000pt;}
.y22f{bottom:146.698667pt;}
.y1ff{bottom:147.253333pt;}
.y68{bottom:147.740000pt;}
.y8d{bottom:156.400000pt;}
.yf5{bottom:156.954533pt;}
.y249{bottom:158.210000pt;}
.y1bd{bottom:158.620667pt;}
.y197{bottom:158.881867pt;}
.yd4{bottom:159.945333pt;}
.y22e{bottom:160.160000pt;}
.y1fe{bottom:160.714667pt;}
.y117{bottom:161.073333pt;}
.y1de{bottom:162.245600pt;}
.y45{bottom:162.661333pt;}
.y67{bottom:164.000000pt;}
.y20{bottom:164.619333pt;}
.y179{bottom:164.878400pt;}
.y136{bottom:165.228667pt;}
.y156{bottom:169.697600pt;}
.y19b{bottom:172.480933pt;}
.y22d{bottom:173.621333pt;}
.y1fd{bottom:174.186667pt;}
.y248{bottom:174.876667pt;}
.y8c{bottom:176.272000pt;}
.y116{bottom:177.333333pt;}
.y1bc{bottom:178.348667pt;}
.y196{bottom:178.881867pt;}
.y66{bottom:181.073333pt;}
.yf4{bottom:181.714533pt;}
.y1dd{bottom:181.845600pt;}
.y44{bottom:182.133333pt;}
.yad{bottom:183.264133pt;}
.yd3{bottom:183.932000pt;}
.y178{bottom:184.750400pt;}
.y135{bottom:185.356667pt;}
.y22c{bottom:187.082667pt;}
.y1fc{bottom:187.648000pt;}
.y19a{bottom:188.747600pt;}
.y155{bottom:189.697600pt;}
.y115{bottom:190.666667pt;}
.y247{bottom:191.543333pt;}
.y8b{bottom:196.144000pt;}
.y1bb{bottom:198.076667pt;}
.y195{bottom:198.881867pt;}
.yf3{bottom:198.914533pt;}
.y22b{bottom:200.544000pt;}
.y1fb{bottom:201.109333pt;}
.y1dc{bottom:201.445600pt;}
.y43{bottom:201.600000pt;}
.yac{bottom:202.464133pt;}
.y114{bottom:204.000000pt;}
.y177{bottom:204.622400pt;}
.y134{bottom:205.484667pt;}
.yd2{bottom:207.918667pt;}
.y246{bottom:208.210000pt;}
.y154{bottom:209.697600pt;}
.y199{bottom:212.574267pt;}
.y22a{bottom:214.005333pt;}
.y1fa{bottom:214.581333pt;}
.y8a{bottom:216.272000pt;}
.y1ba{bottom:217.804667pt;}
.y194{bottom:218.881867pt;}
.y65{bottom:219.658667pt;}
.y1db{bottom:221.045600pt;}
.y113{bottom:221.073333pt;}
.yab{bottom:221.664133pt;}
.y1e{bottom:223.024667pt;}
.yf2{bottom:223.758933pt;}
.y176{bottom:224.494400pt;}
.y245{bottom:224.876667pt;}
.y133{bottom:225.612667pt;}
.yd1{bottom:225.785333pt;}
.y229{bottom:227.466667pt;}
.y1f9{bottom:228.042667pt;}
.y153{bottom:229.697600pt;}
.y89{bottom:236.400000pt;}
.y193{bottom:238.881867pt;}
.y1d{bottom:239.158000pt;}
.y64{bottom:240.058667pt;}
.y42{bottom:240.421333pt;}
.y1da{bottom:240.645733pt;}
.yaa{bottom:240.864133pt;}
.y228{bottom:240.928000pt;}
.y1f8{bottom:241.504000pt;}
.y244{bottom:241.543333pt;}
.yf1{bottom:244.286933pt;}
.y175{bottom:244.366400pt;}
.y1b9{bottom:245.096133pt;}
.y132{bottom:245.740667pt;}
.yd0{bottom:249.772000pt;}
.y227{bottom:254.389333pt;}
.y1f7{bottom:254.965333pt;}
.y88{bottom:256.000000pt;}
.y112{bottom:256.517333pt;}
.y243{bottom:258.210000pt;}
.y192{bottom:258.881867pt;}
.y41{bottom:259.893333pt;}
.ya9{bottom:260.064133pt;}
.y63{bottom:260.186667pt;}
.y1b8{bottom:261.496133pt;}
.y1c{bottom:262.849467pt;}
.y174{bottom:264.238400pt;}
.yf0{bottom:264.814933pt;}
.y131{bottom:265.868667pt;}
.ycf{bottom:267.638667pt;}
.y226{bottom:267.850667pt;}
.y1f6{bottom:268.426667pt;}
.y152{bottom:272.255333pt;}
.y242{bottom:274.876667pt;}
.y87{bottom:275.600000pt;}
.y111{bottom:276.789333pt;}
.y1b7{bottom:277.896133pt;}
.y191{bottom:278.881867pt;}
.y1b{bottom:279.249467pt;}
.ya8{bottom:279.264133pt;}
.y40{bottom:279.365333pt;}
.y1d9{bottom:279.845600pt;}
.y62{bottom:280.314667pt;}
.y225{bottom:281.312000pt;}
.y1f5{bottom:281.898667pt;}
.y173{bottom:284.110400pt;}
.yef{bottom:285.342933pt;}
.y130{bottom:285.996667pt;}
.y241{bottom:291.543333pt;}
.yce{bottom:291.625333pt;}
.y224{bottom:294.773333pt;}
.y86{bottom:295.200000pt;}
.y1f4{bottom:295.360000pt;}
.y1a{bottom:295.649467pt;}
.y151{bottom:296.242000pt;}
.y110{bottom:297.061333pt;}
.ya7{bottom:298.464133pt;}
.y3f{bottom:298.837333pt;}
.y190{bottom:298.881867pt;}
.y1d8{bottom:299.445600pt;}
.y61{bottom:300.442667pt;}
.y1b6{bottom:301.856133pt;}
.y172{bottom:303.982400pt;}
.yee{bottom:305.870933pt;}
.y12f{bottom:306.124667pt;}
.y240{bottom:308.210000pt;}
.y223{bottom:308.234667pt;}
.y1f3{bottom:308.821333pt;}
.ycd{bottom:309.492000pt;}
.y19{bottom:312.049467pt;}
.y85{bottom:314.800000pt;}
.y10f{bottom:317.210667pt;}
.y1b5{bottom:318.256133pt;}
.y3e{bottom:318.309333pt;}
.ya6{bottom:318.336133pt;}
.y18f{bottom:318.881867pt;}
.y1d7{bottom:319.045600pt;}
.y150{bottom:320.227333pt;}
.y60{bottom:320.570667pt;}
.y222{bottom:321.696000pt;}
.y1f2{bottom:322.282667pt;}
.y171{bottom:323.854400pt;}
.y23f{bottom:324.876667pt;}
.y12e{bottom:326.252667pt;}
.yed{bottom:326.398933pt;}
.y18{bottom:328.449467pt;}
.ycc{bottom:333.478667pt;}
.y84{bottom:334.400000pt;}
.y221{bottom:335.157333pt;}
.y1f1{bottom:335.744000pt;}
.y14f{bottom:336.911733pt;}
.y10e{bottom:337.482667pt;}
.y3d{bottom:337.781333pt;}
.ya5{bottom:338.208133pt;}
.y1d6{bottom:338.645600pt;}
.y5f{bottom:340.698667pt;}
.y23e{bottom:341.543333pt;}
.y1b4{bottom:342.231200pt;}
.y170{bottom:343.726400pt;}
.y17{bottom:344.849467pt;}
.y12d{bottom:346.380667pt;}
.yec{bottom:346.926933pt;}
.y220{bottom:348.618667pt;}
.y1f0{bottom:349.216000pt;}
.ycb{bottom:351.345333pt;}
.y14e{bottom:353.573067pt;}
.y83{bottom:354.000000pt;}
.y3c{bottom:357.253333pt;}
.y10d{bottom:357.754667pt;}
.ya4{bottom:358.080133pt;}
.y23d{bottom:358.210000pt;}
.y1d5{bottom:358.245600pt;}
.y18e{bottom:358.881867pt;}
.y5e{bottom:360.826667pt;}
.y16{bottom:361.249467pt;}
.y1b3{bottom:361.959200pt;}
.y21f{bottom:362.080000pt;}
.y16f{bottom:363.598400pt;}
.y12c{bottom:366.508667pt;}
.yeb{bottom:367.454933pt;}
.y1ef{bottom:368.352000pt;}
.y82{bottom:373.600000pt;}
.yca{bottom:375.332000pt;}
.y21e{bottom:375.541333pt;}
.y3b{bottom:376.725333pt;}
.y15{bottom:377.649467pt;}
.y14d{bottom:377.802400pt;}
.y1d4{bottom:377.845600pt;}
.ya3{bottom:377.952133pt;}
.y10c{bottom:378.026667pt;}
.y18d{bottom:378.881867pt;}
.y5d{bottom:380.954667pt;}
.y1b2{bottom:381.687200pt;}
.y16e{bottom:383.470400pt;}
.y23c{bottom:386.215200pt;}
.y12b{bottom:386.636667pt;}
.yea{bottom:387.982933pt;}
.y21d{bottom:389.002667pt;}
.yc9{bottom:393.198667pt;}
.y81{bottom:393.200000pt;}
.y14{bottom:394.049467pt;}
.y14c{bottom:394.463733pt;}
.y3a{bottom:396.197333pt;}
.y1d3{bottom:397.445600pt;}
.ya2{bottom:397.824133pt;}
.y10b{bottom:398.298667pt;}
.y18c{bottom:398.881867pt;}
.y5c{bottom:401.082667pt;}
.y1b1{bottom:401.415200pt;}
.y21c{bottom:402.464000pt;}
.y16d{bottom:403.342400pt;}
.y12a{bottom:406.764667pt;}
.ye9{bottom:408.510933pt;}
.y1ee{bottom:408.618667pt;}
.y14b{bottom:411.125067pt;}
.y80{bottom:412.800000pt;}
.y23b{bottom:413.557333pt;}
.y39{bottom:415.669333pt;}
.y21b{bottom:415.925333pt;}
.y1d2{bottom:417.045600pt;}
.yc8{bottom:417.185333pt;}
.ya1{bottom:417.696133pt;}
.y13{bottom:418.009467pt;}
.y10a{bottom:418.570667pt;}
.y18b{bottom:418.881867pt;}
.y5b{bottom:421.210667pt;}
.y1ed{bottom:422.080000pt;}
.y16c{bottom:423.214400pt;}
.y129{bottom:426.892667pt;}
.y14a{bottom:427.786400pt;}
.y1b0{bottom:428.707600pt;}
.ye8{bottom:429.038933pt;}
.y21a{bottom:429.386667pt;}
.y25d{bottom:430.666667pt;}
.y7f{bottom:432.400000pt;}
.yc7{bottom:435.052000pt;}
.y38{bottom:435.141333pt;}
.y1ec{bottom:435.541333pt;}
.y1d1{bottom:436.645600pt;}
.ya0{bottom:437.568133pt;}
.y109{bottom:438.842667pt;}
.y18a{bottom:438.881867pt;}
.y5a{bottom:441.338667pt;}
.y219{bottom:442.848000pt;}
.y16b{bottom:443.086400pt;}
.y1af{bottom:445.107600pt;}
.y128{bottom:447.020667pt;}
.y25c{bottom:447.333333pt;}
.y1eb{bottom:449.002667pt;}
.ye7{bottom:449.566933pt;}
.y7e{bottom:452.000000pt;}
.y149{bottom:452.012133pt;}
.y37{bottom:454.613333pt;}
.y1d0{bottom:456.245600pt;}
.y218{bottom:456.309333pt;}
.y23a{bottom:457.333333pt;}
.y9f{bottom:457.440133pt;}
.y12{bottom:457.476133pt;}
.y189{bottom:458.881867pt;}
.yc6{bottom:459.038667pt;}
.y108{bottom:459.114667pt;}
.y59{bottom:461.530667pt;}
.y1ea{bottom:462.464000pt;}
.y16a{bottom:462.958400pt;}
.y25b{bottom:464.000000pt;}
.y127{bottom:467.148667pt;}
.y148{bottom:468.678800pt;}
.y1ae{bottom:469.114667pt;}
.y217{bottom:469.770667pt;}
.ye6{bottom:470.094933pt;}
.y239{bottom:470.666667pt;}
.y7d{bottom:471.600000pt;}
.y11{bottom:473.876133pt;}
.y36{bottom:474.085333pt;}
.y1cf{bottom:475.845600pt;}
.yc5{bottom:476.905333pt;}
.y9e{bottom:477.312133pt;}
.y188{bottom:478.881867pt;}
.y107{bottom:479.386667pt;}
.y25a{bottom:480.666667pt;}
.y1e9{bottom:481.600000pt;}
.y58{bottom:481.658667pt;}
.y169{bottom:482.830400pt;}
.y216{bottom:483.232000pt;}
.yb4{bottom:483.415200pt;}
.y238{bottom:484.000000pt;}
.y126{bottom:487.276667pt;}
.y1ad{bottom:488.842667pt;}
.ye5{bottom:490.622933pt;}
.y7c{bottom:491.200000pt;}
.y35{bottom:493.557333pt;}
.y215{bottom:496.693333pt;}
.y9d{bottom:497.184133pt;}
.y237{bottom:497.333333pt;}
.y10{bottom:497.834267pt;}
.y187{bottom:498.881867pt;}
.y106{bottom:499.658667pt;}
.yc4{bottom:500.892000pt;}
.y57{bottom:501.786667pt;}
.y1ce{bottom:503.003733pt;}
.yb3{bottom:503.415200pt;}
.y147{bottom:504.000000pt;}
.y259{bottom:507.333333pt;}
.y125{bottom:507.404667pt;}
.y1ac{bottom:508.570667pt;}
.y214{bottom:510.154667pt;}
.y168{bottom:510.254267pt;}
.y236{bottom:510.666667pt;}
.y7b{bottom:510.800000pt;}
.ye4{bottom:511.150933pt;}
.y34{bottom:513.029333pt;}
.yf{bottom:514.234267pt;}
.y9c{bottom:517.056133pt;}
.yc3{bottom:518.758667pt;}
.y186{bottom:518.881867pt;}
.y1cd{bottom:519.270400pt;}
.y105{bottom:519.930667pt;}
.y56{bottom:521.914667pt;}
.y1e8{bottom:521.946667pt;}
.y213{bottom:523.616000pt;}
.y235{bottom:524.000000pt;}
.y167{bottom:526.787600pt;}
.y1ab{bottom:528.298667pt;}
.y7a{bottom:530.400000pt;}
.ye{bottom:530.634267pt;}
.ye3{bottom:531.678933pt;}
.y33{bottom:532.501333pt;}
.y124{bottom:535.096133pt;}
.y9b{bottom:536.922800pt;}
.y212{bottom:537.077333pt;}
.y234{bottom:537.333333pt;}
.y185{bottom:538.881867pt;}
.y104{bottom:540.202667pt;}
.y55{bottom:542.042667pt;}
.y1e7{bottom:542.074667pt;}
.yc2{bottom:542.745333pt;}
.y1cc{bottom:543.097067pt;}
.yb2{bottom:543.271200pt;}
.y146{bottom:544.000000pt;}
.yd{bottom:547.034267pt;}
.y1aa{bottom:548.026667pt;}
.y79{bottom:550.000000pt;}
.y211{bottom:550.538667pt;}
.y233{bottom:550.666667pt;}
.y166{bottom:550.880933pt;}
.y123{bottom:551.896133pt;}
.y32{bottom:551.973333pt;}
.ye2{bottom:552.206933pt;}
.y184{bottom:558.881867pt;}
.y1cb{bottom:559.363733pt;}
.y103{bottom:560.474667pt;}
.yc1{bottom:560.612000pt;}
.y258{bottom:560.666667pt;}
.y54{bottom:562.170667pt;}
.y1e6{bottom:562.202667pt;}
.yb1{bottom:562.743200pt;}
.yc{bottom:563.434267pt;}
.y145{bottom:564.000000pt;}
.y165{bottom:567.414267pt;}
.y1a9{bottom:567.754667pt;}
.y78{bottom:569.600000pt;}
.y31{bottom:571.445333pt;}
.ye1{bottom:572.740133pt;}
.y122{bottom:576.256133pt;}
.y210{bottom:577.333333pt;}
.y9a{bottom:577.466800pt;}
.y183{bottom:578.881867pt;}
.yb{bottom:579.834267pt;}
.y102{bottom:580.746667pt;}
.yb0{bottom:582.215200pt;}
.y53{bottom:582.298667pt;}
.y1e5{bottom:582.330667pt;}
.y1ca{bottom:583.189467pt;}
.y164{bottom:583.947600pt;}
.y144{bottom:584.000000pt;}
.yc0{bottom:584.598667pt;}
.y1a8{bottom:587.482667pt;}
.y77{bottom:589.200000pt;}
.y20f{bottom:590.666667pt;}
.y30{bottom:590.917333pt;}
.y121{bottom:593.056133pt;}
.y257{bottom:594.000000pt;}
.ya{bottom:596.234267pt;}
.y99{bottom:597.594800pt;}
.y182{bottom:598.881867pt;}
.y101{bottom:601.018667pt;}
.y52{bottom:602.426667pt;}
.y1e4{bottom:602.458667pt;}
.ybf{bottom:602.465333pt;}
.y1c9{bottom:602.789467pt;}
.y143{bottom:604.000000pt;}
.y1a7{bottom:607.210667pt;}
.y163{bottom:608.040933pt;}
.y76{bottom:608.800000pt;}
.yaf{bottom:609.240933pt;}
.y2f{bottom:610.389333pt;}
.y256{bottom:610.666667pt;}
.y9{bottom:612.634267pt;}
.ye0{bottom:613.817600pt;}
.y20e{bottom:617.333333pt;}
.y120{bottom:617.436533pt;}
.y98{bottom:617.722800pt;}
.y181{bottom:618.881867pt;}
.y100{bottom:621.290667pt;}
.y1c8{bottom:622.389467pt;}
.y51{bottom:622.554667pt;}
.y1e3{bottom:622.586667pt;}
.y142{bottom:624.000000pt;}
.y162{bottom:624.574267pt;}
.yae{bottom:625.507600pt;}
.ybe{bottom:626.452000pt;}
.y1a6{bottom:626.938667pt;}
.y255{bottom:627.333333pt;}
.y198{bottom:628.400000pt;}
.y2e{bottom:629.861333pt;}
.y20d{bottom:630.666667pt;}
.ydf{bottom:634.345600pt;}
.y8{bottom:636.594267pt;}
.y11f{bottom:637.564533pt;}
.y180{bottom:638.881867pt;}
.y161{bottom:641.107600pt;}
.yff{bottom:641.562667pt;}
.y1c7{bottom:641.989467pt;}
.y50{bottom:642.682667pt;}
.y1e2{bottom:642.714667pt;}
.y141{bottom:644.000000pt;}
.ybd{bottom:644.318667pt;}
.y97{bottom:645.414267pt;}
.y1a5{bottom:646.714667pt;}
.y75{bottom:648.000000pt;}
.y2d{bottom:649.285333pt;}
.yde{bottom:654.873600pt;}
.y20c{bottom:657.333333pt;}
.y11e{bottom:657.692533pt;}
.y254{bottom:660.666667pt;}
.yfe{bottom:661.834667pt;}
.y96{bottom:662.214267pt;}
.y4f{bottom:662.810667pt;}
.y1e1{bottom:662.842667pt;}
.y140{bottom:664.000000pt;}
.y160{bottom:665.157333pt;}
.y17f{bottom:666.440933pt;}
.y1a4{bottom:666.442667pt;}
.y74{bottom:667.600000pt;}
.ybc{bottom:668.305333pt;}
.y2c{bottom:668.757333pt;}
.y1c6{bottom:669.148533pt;}
.y20b{bottom:670.666667pt;}
.y7{bottom:676.848267pt;}
.y253{bottom:677.333333pt;}
.y11d{bottom:677.820533pt;}
.yfd{bottom:682.106667pt;}
.y4e{bottom:682.938667pt;}
.y1e0{bottom:682.970667pt;}
.y17e{bottom:683.107600pt;}
.y13f{bottom:684.000000pt;}
.y15f{bottom:685.029333pt;}
.y1c5{bottom:685.415200pt;}
.y1a3{bottom:686.170667pt;}
.ybb{bottom:686.172000pt;}
.y95{bottom:686.574267pt;}
.y73{bottom:687.200000pt;}
.y2b{bottom:688.229333pt;}
.y252{bottom:694.000000pt;}
.y6{bottom:696.314933pt;}
.y20a{bottom:697.333333pt;}
.y11c{bottom:697.948533pt;}
.ydd{bottom:697.960400pt;}
.y17d{bottom:699.774267pt;}
.yfc{bottom:702.378667pt;}
.y4d{bottom:703.098667pt;}
.y94{bottom:703.374267pt;}
.y13e{bottom:704.000000pt;}
.y15e{bottom:704.901333pt;}
.y1a2{bottom:705.898667pt;}
.y72{bottom:706.800000pt;}
.y2a{bottom:707.701333pt;}
.y1c4{bottom:709.240933pt;}
.yba{bottom:710.158667pt;}
.y209{bottom:710.666667pt;}
.y93{bottom:720.174267pt;}
.ydc{bottom:721.947067pt;}
.yfb{bottom:722.650667pt;}
.y4c{bottom:723.226667pt;}
.y13d{bottom:724.000000pt;}
.y15d{bottom:724.773333pt;}
.y1a1{bottom:725.626667pt;}
.y11b{bottom:725.640933pt;}
.y71{bottom:726.400000pt;}
.y29{bottom:727.173333pt;}
.y251{bottom:727.333333pt;}
.yb9{bottom:728.025333pt;}
.y1c3{bottom:728.840933pt;}
.y208{bottom:737.333333pt;}
.y11a{bottom:742.440933pt;}
.yfa{bottom:742.922667pt;}
.y4b{bottom:743.354667pt;}
.y13c{bottom:744.000000pt;}
.y92{bottom:744.544000pt;}
.y15c{bottom:744.645333pt;}
.y1a0{bottom:745.354667pt;}
.ydb{bottom:745.933733pt;}
.y70{bottom:746.000000pt;}
.y28{bottom:746.645333pt;}
.y1c2{bottom:748.440933pt;}
.y207{bottom:750.666667pt;}
.yb8{bottom:752.012000pt;}
.y5{bottom:755.466667pt;}
.y119{bottom:759.240933pt;}
.yb7{bottom:760.345333pt;}
.y250{bottom:760.666667pt;}
.yda{bottom:762.600400pt;}
.yf9{bottom:763.194667pt;}
.y4a{bottom:763.482667pt;}
.y13b{bottom:764.000000pt;}
.y15b{bottom:764.517333pt;}
.y91{bottom:764.672000pt;}
.y19f{bottom:765.082667pt;}
.y6f{bottom:765.600000pt;}
.y27{bottom:766.117333pt;}
.y1c1{bottom:768.040933pt;}
.y206{bottom:777.333333pt;}
.y4{bottom:781.600000pt;}
.yf8{bottom:783.461333pt;}
.y49{bottom:783.610667pt;}
.y13a{bottom:784.000000pt;}
.y15a{bottom:784.389333pt;}
.y90{bottom:784.800000pt;}
.y19e{bottom:784.810667pt;}
.y6e{bottom:785.200000pt;}
.y26{bottom:785.589333pt;}
.yd9{bottom:786.587067pt;}
.y205{bottom:790.666667pt;}
.y24f{bottom:794.000000pt;}
.y1c0{bottom:795.200000pt;}
.yf7{bottom:803.733333pt;}
.y48{bottom:803.738667pt;}
.yb6{bottom:804.000000pt;}
.y159{bottom:804.261333pt;}
.y19d{bottom:804.538667pt;}
.y6d{bottom:804.800000pt;}
.y8f{bottom:804.928000pt;}
.y25{bottom:805.061333pt;}
.yd8{bottom:810.573733pt;}
.y24e{bottom:810.666667pt;}
.y1bf{bottom:811.466667pt;}
.y204{bottom:817.333333pt;}
.yd7{bottom:818.907067pt;}
.y3{bottom:823.866667pt;}
.yb5{bottom:824.000000pt;}
.y158{bottom:824.133333pt;}
.y19c{bottom:824.266667pt;}
.y6c{bottom:824.400000pt;}
.y24{bottom:824.533333pt;}
.y24d{bottom:827.333333pt;}
.y1be{bottom:827.733333pt;}
.y203{bottom:830.666667pt;}
.ha{height:21.894141pt;}
.hd{height:26.945443pt;}
.h15{height:29.437500pt;}
.h14{height:34.730667pt;}
.h3{height:34.957031pt;}
.hb{height:36.229167pt;}
.h2{height:36.796875pt;}
.h12{height:37.942708pt;}
.h16{height:40.757812pt;}
.hf{height:43.413333pt;}
.h6{height:44.156250pt;}
.h5{height:44.960000pt;}
.h1{height:45.286458pt;}
.he{height:47.989333pt;}
.h13{height:49.815104pt;}
.h8{height:54.343750pt;}
.h9{height:54.535750pt;}
.h11{height:54.834417pt;}
.hc{height:59.160625pt;}
.h10{height:78.619792pt;}
.h4{height:90.572917pt;}
.h7{height:258.176053pt;}
.h0{height:904.000000pt;}
.w0{width:640.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.000000pt;}
.xa{left:65.624667pt;}
.x8{left:73.220800pt;}
.x3{left:86.456667pt;}
.x7{left:100.012400pt;}
.x4{left:102.505867pt;}
.xe{left:105.624667pt;}
.x6{left:113.228400pt;}
.x13{left:116.017333pt;}
.x2{left:120.000000pt;}
.x9{left:126.456667pt;}
.x14{left:132.121733pt;}
.x12{left:145.350000pt;}
.x15{left:160.468400pt;}
.xc{left:210.024667pt;}
.x10{left:250.011333pt;}
.x11{left:305.291333pt;}
.xb{left:462.478000pt;}
.xd{left:486.491333pt;}
.xf{left:502.478000pt;}
.x5{left:556.250000pt;}
}




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