
    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_106defa3196cd115a42ef650.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_6ad824ca84c908b71acd5105.woff')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_2f0064c4c9f4dc32488ef5df.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_56baa55c1e7d9d29d9c58c86.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_8ad80c9fb3c0e4f4f0666572.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_6ac5d2f7ccab3b4badab94ba.woff')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_0615fd004613f2932f9123f7.woff')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_b333494458eb7f1d98f1421d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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_efa5007f5721e8702c992261.woff')format("woff");}.ffc{font-family:ffc;line-height:0.938965;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:ffd;src:url('chunks/assets/font_514189ec866bd928ad477038.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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:ff10;src:url('chunks/assets/font_d1ddc1f35c4b3622081ac8d0.woff')format("woff");}.ff10{font-family:ff10;line-height:0.999512;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:ff11;src:url('chunks/assets/font_4947087839a26ba6e7945896.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;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:ff12;src:url('chunks/assets/font_1aba803896af18d9e1ac2c41.woff')format("woff");}.ff12{font-family:ff12;line-height:1.172852;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-53.700000px;}
.v7{vertical-align:-32.520000px;}
.v5{vertical-align:-26.880000px;}
.v2{vertical-align:-15.120000px;}
.v3{vertical-align:-5.760000px;}
.v4{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1f{letter-spacing:-1.260000px;}
.ls1b{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.131400px;}
.lsc{letter-spacing:-0.127200px;}
.ls18{letter-spacing:-0.058320px;}
.ls1e{letter-spacing:-0.053280px;}
.lsb{letter-spacing:-0.018000px;}
.lsa{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls21{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.ls1a{letter-spacing:0.085800px;}
.lse{letter-spacing:0.087600px;}
.ls5{letter-spacing:0.112800px;}
.ls9{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.174240px;}
.ls16{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.252720px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.288000px;}
.ls15{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.306000px;}
.ls6{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.447840px;}
.ls11{letter-spacing:0.504000px;}
.ls1c{letter-spacing:15.300000px;}
.ls20{letter-spacing:43.866720px;}
.ls10{letter-spacing:64.026720px;}
.lsf{letter-spacing:64.170720px;}
.ls1d{letter-spacing:73.386720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws21{word-spacing:-15.238800px;}
.ws8{word-spacing:-14.940000px;}
.ws20{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.505760px;}
.wsf{word-spacing:-13.500000px;}
.ws4{word-spacing:-12.967680px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.wsa{word-spacing:-9.732960px;}
.wsb{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
.ws18{word-spacing:74.719200px;}
.ws19{word-spacing:130.975200px;}
.ws1a{word-spacing:204.419760px;}
.ws1b{word-spacing:204.539760px;}
.ws1c{word-spacing:414.302640px;}
.ws1e{word-spacing:415.252560px;}
.ws1f{word-spacing:438.712560px;}
.ws1d{word-spacing:445.612560px;}
.wse{word-spacing:490.260000px;}
.ws16{word-spacing:529.506000px;}
.ws14{word-spacing:550.398000px;}
.ws12{word-spacing:618.174000px;}
.ws17{word-spacing:647.220000px;}
.ws10{word-spacing:665.724000px;}
.ws13{word-spacing:690.600000px;}
.ws15{word-spacing:734.628000px;}
.ws11{word-spacing:745.500000px;}
._6{margin-left:-5.346240px;}
._4{margin-left:-3.895680px;}
._3{margin-left:-2.268000px;}
._0{margin-left:-1.140000px;}
._1{width:1.044000px;}
._5{width:2.700000px;}
._b{width:3.730080px;}
._2{width:4.752000px;}
._17{width:5.759520px;}
._f{width:6.766560px;}
._10{width:8.696880px;}
._16{width:9.955920px;}
._15{width:11.094720px;}
._e{width:12.118560px;}
._8{width:13.482240px;}
._7{width:16.346880px;}
._18{width:17.569440px;}
._d{width:19.345440px;}
._c{width:20.736720px;}
._12{width:21.789360px;}
._11{width:23.006880px;}
._23{width:24.082320px;}
._14{width:25.099200px;}
._1c{width:27.187200px;}
._13{width:28.238400px;}
._a{width:29.282400px;}
._9{width:30.569040px;}
._24{width:31.720080px;}
._22{width:96.671136px;}
._19{width:246.810000px;}
._1a{width:263.142000px;}
._1b{width:268.592256px;}
._21{width:271.754640px;}
._20{width:346.656000px;}
._1e{width:368.376000px;}
._1f{width:390.396000px;}
._1d{width:395.736000px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc1{color:rgb(23,54,93);}
.fc5{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:59.904000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fsb{font-size:108.000000px;}
.fsd{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y4{bottom:3.600000px;}
.ya2{bottom:3.780000px;}
.y4a{bottom:3.960000px;}
.yea{bottom:4.140000px;}
.y1a{bottom:5.040000px;}
.yf{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.yf3{bottom:11.880000px;}
.y1c{bottom:12.420000px;}
.yd{bottom:13.860000px;}
.ye8{bottom:14.220000px;}
.y10e{bottom:15.585000px;}
.ye1{bottom:15.630000px;}
.y103{bottom:15.735000px;}
.yd2{bottom:15.810000px;}
.y186{bottom:16.230000px;}
.y5{bottom:17.280000px;}
.y137{bottom:17.385000px;}
.y14c{bottom:17.535000px;}
.y3{bottom:20.160000px;}
.y11d{bottom:20.340000px;}
.y44{bottom:20.520000px;}
.y49{bottom:22.140000px;}
.ybb{bottom:24.840000px;}
.ya0{bottom:25.020000px;}
.y47{bottom:25.245000px;}
.yae{bottom:27.690000px;}
.y19{bottom:29.565000px;}
.yc{bottom:30.240000px;}
.ye0{bottom:32.370000px;}
.y102{bottom:32.505000px;}
.yd1{bottom:32.550000px;}
.y185{bottom:34.560000px;}
.y92{bottom:35.280000px;}
.y136{bottom:37.005000px;}
.y43{bottom:37.800000px;}
.y14b{bottom:40.890000px;}
.yd8{bottom:44.355000px;}
.yad{bottom:44.430000px;}
.yca{bottom:44.535000px;}
.y18{bottom:45.945000px;}
.yb{bottom:46.440000px;}
.y10d{bottom:51.765000px;}
.y101{bottom:51.915000px;}
.y17f{bottom:53.280000px;}
.y42{bottom:55.080000px;}
.y135{bottom:55.335000px;}
.ya6{bottom:56.415000px;}
.y6{bottom:57.420000px;}
.y14a{bottom:60.555000px;}
.y17{bottom:62.505000px;}
.yd9{bottom:63.435000px;}
.y108{bottom:63.720000px;}
.yf8{bottom:63.900000px;}
.ye4{bottom:71.790000px;}
.ycb{bottom:71.970000px;}
.y41{bottom:72.180000px;}
.ya{bottom:73.440000px;}
.y134{bottom:73.650000px;}
.y16{bottom:78.165000px;}
.y2{bottom:78.516000px;}
.y149{bottom:78.735000px;}
.yf9{bottom:82.110000px;}
.yda{bottom:82.470000px;}
.y18d{bottom:82.875000px;}
.ya7{bottom:83.955000px;}
.y180{bottom:85.830000px;}
.y111{bottom:87.225000px;}
.yb2{bottom:87.450000px;}
.yd5{bottom:87.585000px;}
.y15{bottom:88.605000px;}
.y40{bottom:89.460000px;}
.y18a{bottom:91.005000px;}
.y133{bottom:91.950000px;}
.y106{bottom:92.700000px;}
.y109{bottom:92.880000px;}
.y9{bottom:93.090000px;}
.y148{bottom:97.095000px;}
.y147{bottom:97.170000px;}
.ycc{bottom:99.360000px;}
.yfa{bottom:100.365000px;}
.ydb{bottom:101.550000px;}
.y190{bottom:104.790000px;}
.y3f{bottom:106.740000px;}
.y14{bottom:106.965000px;}
.y18e{bottom:107.280000px;}
.yb1{bottom:109.050000px;}
.y132{bottom:110.265000px;}
.y8{bottom:111.270000px;}
.ya8{bottom:111.450000px;}
.y189{bottom:115.410000px;}
.y146{bottom:115.455000px;}
.y181{bottom:118.410000px;}
.yfb{bottom:118.590000px;}
.ydc{bottom:120.600000px;}
.y90{bottom:120.996000px;}
.y10a{bottom:122.040000px;}
.y3e{bottom:124.020000px;}
.y12b{bottom:124.230000px;}
.y13{bottom:126.045000px;}
.ycd{bottom:126.750000px;}
.yf7{bottom:127.656000px;}
.y13d{bottom:129.420000px;}
.y129{bottom:133.956000px;}
.y13a{bottom:134.535000px;}
.yfc{bottom:136.830000px;}
.y12c{bottom:137.670000px;}
.y8f{bottom:138.276000px;}
.y10f{bottom:138.630000px;}
.ya9{bottom:138.990000px;}
.ydd{bottom:139.650000px;}
.y3d{bottom:141.300000px;}
.y54{bottom:142.596000px;}
.yf6{bottom:143.316000px;}
.y13e{bottom:145.950000px;}
.y188{bottom:147.960000px;}
.y1aa{bottom:149.976000px;}
.y182{bottom:150.945000px;}
.y12d{bottom:151.050000px;}
.y10b{bottom:151.200000px;}
.y128{bottom:151.230000px;}
.y12{bottom:151.785000px;}
.y17d{bottom:153.570000px;}
.yce{bottom:154.185000px;}
.yfd{bottom:155.055000px;}
.ye3{bottom:156.135000px;}
.y8e{bottom:156.450000px;}
.y104{bottom:157.320000px;}
.y3c{bottom:158.400000px;}
.yde{bottom:158.730000px;}
.y53{bottom:159.870000px;}
.yf5{bottom:162.030000px;}
.y13f{bottom:162.435000px;}
.yaf{bottom:164.085000px;}
.y18c{bottom:164.235000px;}
.y12e{bottom:164.490000px;}
.y151{bottom:165.450000px;}
.yaa{bottom:166.500000px;}
.y1a9{bottom:167.250000px;}
.y127{bottom:168.510000px;}
.y17c{bottom:170.670000px;}
.yfe{bottom:173.310000px;}
.y8d{bottom:174.810000px;}
.y3b{bottom:175.680000px;}
.y11{bottom:176.085000px;}
.y52{bottom:177.150000px;}
.ydf{bottom:177.765000px;}
.y12f{bottom:177.915000px;}
.y140{bottom:178.920000px;}
.y10c{bottom:180.360000px;}
.yf4{bottom:180.750000px;}
.ycf{bottom:181.590000px;}
.y126{bottom:182.370000px;}
.y13c{bottom:182.700000px;}
.y183{bottom:183.495000px;}
.y1a8{bottom:184.530000px;}
.y139{bottom:186.690000px;}
.y17b{bottom:187.950000px;}
.y18b{bottom:188.640000px;}
.y130{bottom:191.310000px;}
.yff{bottom:191.520000px;}
.y8c{bottom:192.090000px;}
.y3a{bottom:192.960000px;}
.yab{bottom:194.040000px;}
.y51{bottom:194.430000px;}
.y141{bottom:195.450000px;}
.yf2{bottom:199.470000px;}
.yc8{bottom:201.810000px;}
.y131{bottom:204.735000px;}
.y187{bottom:204.915000px;}
.y17a{bottom:205.230000px;}
.y14f{bottom:205.350000px;}
.yd0{bottom:208.980000px;}
.y100{bottom:209.775000px;}
.y39{bottom:210.240000px;}
.y8b{bottom:210.450000px;}
.yd4{bottom:211.425000px;}
.y50{bottom:211.710000px;}
.y142{bottom:211.935000px;}
.ye2{bottom:211.965000px;}
.y18f{bottom:213.090000px;}
.y184{bottom:216.030000px;}
.yc6{bottom:217.290000px;}
.y1a7{bottom:219.090000px;}
.y138{bottom:220.215000px;}
.yac{bottom:221.580000px;}
.y179{bottom:222.510000px;}
.y110{bottom:224.745000px;}
.y38{bottom:227.520000px;}
.y143{bottom:228.450000px;}
.y4f{bottom:228.810000px;}
.y2a{bottom:234.180000px;}
.yf1{bottom:235.470000px;}
.y1a6{bottom:236.370000px;}
.yc7{bottom:237.270000px;}
.y178{bottom:239.790000px;}
.y105{bottom:242.490000px;}
.y14e{bottom:243.285000px;}
.y37{bottom:244.800000px;}
.yd3{bottom:244.830000px;}
.y144{bottom:244.950000px;}
.y4e{bottom:246.090000px;}
.yb0{bottom:246.675000px;}
.y8a{bottom:247.170000px;}
.y29{bottom:249.480000px;}
.y1a5{bottom:253.470000px;}
.y177{bottom:256.890000px;}
.yf0{bottom:257.250000px;}
.ye5{bottom:257.835000px;}
.yc5{bottom:260.310000px;}
.y13b{bottom:260.535000px;}
.y145{bottom:261.435000px;}
.y36{bottom:261.930000px;}
.y4d{bottom:263.370000px;}
.y112{bottom:263.985000px;}
.y89{bottom:265.350000px;}
.y28{bottom:267.150000px;}
.y191{bottom:267.510000px;}
.y1a4{bottom:270.750000px;}
.y176{bottom:274.170000px;}
.y150{bottom:277.950000px;}
.y35{bottom:279.210000px;}
.y4c{bottom:280.650000px;}
.y88{bottom:283.710000px;}
.yc4{bottom:283.890000px;}
.y27{bottom:284.430000px;}
.y14d{bottom:284.550000px;}
.y1a3{bottom:288.030000px;}
.y175{bottom:291.450000px;}
.yb3{bottom:292.935000px;}
.yd6{bottom:293.115000px;}
.y34{bottom:296.490000px;}
.y4b{bottom:297.930000px;}
.y87{bottom:300.990000px;}
.yc3{bottom:301.170000px;}
.y26{bottom:301.530000px;}
.y1a2{bottom:305.310000px;}
.y174{bottom:308.730000px;}
.y46{bottom:311.970000px;}
.y33{bottom:313.770000px;}
.y86{bottom:318.270000px;}
.yc2{bottom:318.450000px;}
.y25{bottom:319.350000px;}
.y152{bottom:320.580000px;}
.y1a1{bottom:322.590000px;}
.y173{bottom:326.010000px;}
.yef{bottom:330.870000px;}
.y32{bottom:331.050000px;}
.y85{bottom:335.550000px;}
.y24{bottom:336.810000px;}
.y1a0{bottom:339.915000px;}
.y172{bottom:343.335000px;}
.yee{bottom:348.195000px;}
.y31{bottom:348.330000px;}
.y1d{bottom:348.555000px;}
.y84{bottom:352.695000px;}
.yc1{bottom:352.875000px;}
.y23{bottom:354.090000px;}
.y19f{bottom:357.015000px;}
.y171{bottom:360.435000px;}
.y30{bottom:365.430000px;}
.yed{bottom:365.475000px;}
.y83{bottom:369.975000px;}
.yc0{bottom:370.155000px;}
.y22{bottom:371.550000px;}
.y19e{bottom:374.295000px;}
.y170{bottom:377.715000px;}
.yec{bottom:379.515000px;}
.y107{bottom:379.620000px;}
.y2f{bottom:382.710000px;}
.ybf{bottom:384.195000px;}
.yd7{bottom:384.300000px;}
.ya4{bottom:385.455000px;}
.y82{bottom:387.255000px;}
.y21{bottom:389.010000px;}
.y19d{bottom:391.575000px;}
.y16f{bottom:394.995000px;}
.y2e{bottom:399.990000px;}
.y9f{bottom:400.935000px;}
.y81{bottom:404.535000px;}
.y19c{bottom:408.855000px;}
.y20{bottom:409.170000px;}
.y16e{bottom:412.275000px;}
.y2d{bottom:417.270000px;}
.ya3{bottom:420.915000px;}
.y80{bottom:421.815000px;}
.y19b{bottom:426.135000px;}
.y16d{bottom:429.555000px;}
.y2c{bottom:434.550000px;}
.y1f{bottom:436.710000px;}
.y7f{bottom:439.095000px;}
.ya1{bottom:443.415000px;}
.y16c{bottom:446.835000px;}
.y2b{bottom:451.650000px;}
.y1e{bottom:454.350000px;}
.y7e{bottom:456.195000px;}
.y19a{bottom:460.515000px;}
.y16b{bottom:463.935000px;}
.y9e{bottom:466.455000px;}
.y7d{bottom:473.475000px;}
.y199{bottom:477.795000px;}
.y16a{bottom:481.215000px;}
.y9d{bottom:483.735000px;}
.y7c{bottom:490.755000px;}
.y198{bottom:495.075000px;}
.y169{bottom:498.495000px;}
.y9c{bottom:501.015000px;}
.y7b{bottom:508.035000px;}
.y197{bottom:512.355000px;}
.y168{bottom:515.775000px;}
.y9b{bottom:518.295000px;}
.y7a{bottom:526.395000px;}
.y196{bottom:529.635000px;}
.y167{bottom:533.055000px;}
.y9a{bottom:535.575000px;}
.y125{bottom:543.495000px;}
.y79{bottom:544.755000px;}
.y195{bottom:546.735000px;}
.y166{bottom:550.155000px;}
.y99{bottom:552.855000px;}
.y124{bottom:558.975000px;}
.y78{bottom:561.855000px;}
.y194{bottom:564.015000px;}
.y165{bottom:567.435000px;}
.y98{bottom:569.955000px;}
.y123{bottom:577.695000px;}
.y77{bottom:580.215000px;}
.y193{bottom:581.295000px;}
.y97{bottom:583.995000px;}
.ya5{bottom:584.280000px;}
.y164{bottom:584.715000px;}
.y122{bottom:596.415000px;}
.y76{bottom:597.495000px;}
.y192{bottom:598.575000px;}
.y163{bottom:601.995000px;}
.y121{bottom:615.345000px;}
.y75{bottom:615.885000px;}
.y162{bottom:619.305000px;}
.y74{bottom:633.165000px;}
.y161{bottom:636.585000px;}
.y73{bottom:650.265000px;}
.y120{bottom:650.985000px;}
.y160{bottom:653.685000px;}
.y72{bottom:667.545000px;}
.y11f{bottom:669.705000px;}
.y15f{bottom:670.965000px;}
.yeb{bottom:674.745000px;}
.ybe{bottom:676.545000px;}
.y71{bottom:684.825000px;}
.y15e{bottom:688.245000px;}
.y11e{bottom:688.425000px;}
.ye7{bottom:690.405000px;}
.yba{bottom:692.205000px;}
.y70{bottom:702.105000px;}
.y15d{bottom:705.525000px;}
.y11c{bottom:710.205000px;}
.ye9{bottom:710.565000px;}
.ybd{bottom:711.645000px;}
.y6f{bottom:719.385000px;}
.y15c{bottom:722.805000px;}
.ye6{bottom:734.145000px;}
.ybc{bottom:734.505000px;}
.y6e{bottom:736.665000px;}
.y15b{bottom:740.085000px;}
.y11b{bottom:749.445000px;}
.y6d{bottom:753.765000px;}
.y15a{bottom:757.185000px;}
.yb9{bottom:757.545000px;}
.y11a{bottom:766.545000px;}
.y6c{bottom:771.045000px;}
.y159{bottom:774.465000px;}
.yb8{bottom:774.825000px;}
.y119{bottom:783.825000px;}
.y6b{bottom:788.325000px;}
.y158{bottom:791.745000px;}
.yb7{bottom:792.105000px;}
.y118{bottom:801.105000px;}
.y6a{bottom:805.605000px;}
.y157{bottom:809.025000px;}
.yb6{bottom:809.385000px;}
.y1b{bottom:814.245000px;}
.y117{bottom:818.385000px;}
.y69{bottom:822.885000px;}
.y156{bottom:826.305000px;}
.yb5{bottom:826.485000px;}
.y116{bottom:835.665000px;}
.y68{bottom:839.985000px;}
.y155{bottom:843.585000px;}
.y10{bottom:843.765000px;}
.y115{bottom:852.945000px;}
.y67{bottom:857.265000px;}
.yb4{bottom:857.805000px;}
.yc9{bottom:857.880000px;}
.y154{bottom:860.685000px;}
.y114{bottom:870.045000px;}
.y66{bottom:874.590000px;}
.y153{bottom:874.770000px;}
.y17e{bottom:874.980000px;}
.y113{bottom:884.130000px;}
.y12a{bottom:884.340000px;}
.y65{bottom:891.870000px;}
.y64{bottom:909.150000px;}
.y96{bottom:911.310000px;}
.y63{bottom:926.430000px;}
.y91{bottom:926.790000px;}
.y62{bottom:943.530000px;}
.y95{bottom:946.950000px;}
.y61{bottom:960.810000px;}
.y94{bottom:967.110000px;}
.y60{bottom:978.090000px;}
.y93{bottom:989.790000px;}
.y5f{bottom:995.370000px;}
.y5e{bottom:1012.650000px;}
.y5d{bottom:1029.930000px;}
.ye{bottom:1034.970000px;}
.y5c{bottom:1047.030000px;}
.y7{bottom:1060.350000px;}
.y5b{bottom:1064.310000px;}
.y5a{bottom:1081.590000px;}
.y59{bottom:1098.870000px;}
.y58{bottom:1116.150000px;}
.y57{bottom:1133.430000px;}
.y56{bottom:1150.560000px;}
.y55{bottom:1167.840000px;}
.y1{bottom:1194.120000px;}
.h3a{height:17.100000px;}
.h37{height:17.280000px;}
.h3e{height:17.316000px;}
.h30{height:17.820000px;}
.h25{height:18.000000px;}
.h26{height:18.180000px;}
.h2a{height:18.360000px;}
.h27{height:18.540000px;}
.h28{height:18.720000px;}
.h31{height:18.900000px;}
.h36{height:19.080000px;}
.hc{height:25.020000px;}
.h15{height:29.520000px;}
.h14{height:31.923633px;}
.h13{height:32.103633px;}
.h3{height:32.940000px;}
.h3d{height:34.380000px;}
.h39{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.576000px;}
.h32{height:38.520000px;}
.h2c{height:39.049805px;}
.h2d{height:39.153937px;}
.h35{height:39.240000px;}
.h20{height:42.164648px;}
.h1c{height:42.186445px;}
.h1d{height:43.215117px;}
.h23{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h38{height:45.024258px;}
.h18{height:47.980898px;}
.h45{height:48.312422px;}
.h44{height:48.432422px;}
.h21{height:48.995859px;}
.h22{height:49.115859px;}
.h1b{height:49.255313px;}
.h1a{height:49.742227px;}
.h3c{height:52.170539px;}
.h1f{height:52.260820px;}
.h5{height:53.709961px;}
.ha{height:54.000000px;}
.h4{height:55.291992px;}
.h19{height:56.574492px;}
.h10{height:59.439023px;}
.h42{height:59.582250px;}
.h2f{height:60.660000px;}
.h29{height:60.840000px;}
.h2e{height:60.917695px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h2{height:65.884219px;}
.h6{height:67.824844px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h24{height:81.000000px;}
.h40{height:110.583984px;}
.h43{height:110.731430px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h34{height:289.080000px;}
.h3b{height:291.960000px;}
.h3f{height:297.540000px;}
.h46{height:306.900000px;}
.h2b{height:323.820000px;}
.h33{height:324.000000px;}
.h41{height:357.660000px;}
.h17{height:465.690000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:74.880000px;}
.w32{width:133.740000px;}
.w36{width:133.920000px;}
.w5{width:155.370000px;}
.w30{width:164.160000px;}
.w34{width:164.520000px;}
.w10{width:168.120000px;}
.w12{width:168.660000px;}
.w33{width:201.810000px;}
.w2f{width:203.250000px;}
.wf{width:214.275000px;}
.w23{width:216.930000px;}
.w26{width:217.290000px;}
.w8{width:220.935000px;}
.w16{width:221.610000px;}
.w18{width:222.150000px;}
.wa{width:227.955000px;}
.w1b{width:230.610000px;}
.w1e{width:230.970000px;}
.w1c{width:233.490000px;}
.w1f{width:233.670000px;}
.w2a{width:236.595000px;}
.w15{width:236.775000px;}
.wc{width:237.090000px;}
.we{width:237.270000px;}
.w29{width:237.990000px;}
.w28{width:238.035000px;}
.w2c{width:238.170000px;}
.w2b{width:238.350000px;}
.w31{width:240.195000px;}
.w35{width:240.735000px;}
.w25{width:256.395000px;}
.w22{width:257.835000px;}
.w24{width:266.250000px;}
.w27{width:266.430000px;}
.w1d{width:276.195000px;}
.w1a{width:277.635000px;}
.wb{width:278.490000px;}
.wd{width:279.030000px;}
.w17{width:282.450000px;}
.w19{width:282.810000px;}
.w11{width:319.755000px;}
.w13{width:320.115000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.w21{width:663.120000px;}
.w38{width:672.120000px;}
.w3{width:673.530000px;}
.w2e{width:676.080000px;}
.w20{width:679.680000px;}
.w3a{width:686.880000px;}
.w2d{width:688.320000px;}
.w14{width:689.400000px;}
.w39{width:693.720000px;}
.w37{width:744.270000px;}
.w7{width:747.330000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.xe{left:12.240000px;}
.x59{left:15.336000px;}
.x6e{left:17.640000px;}
.x73{left:20.556000px;}
.x77{left:23.076000px;}
.x71{left:24.876000px;}
.x78{left:26.316000px;}
.x6c{left:29.880000px;}
.xd{left:31.896000px;}
.x70{left:33.480000px;}
.x74{left:35.100000px;}
.x10{left:39.456000px;}
.x76{left:40.536000px;}
.x72{left:46.440000px;}
.x5b{left:47.916000px;}
.x5c{left:51.336000px;}
.x23{left:54.540000px;}
.x6a{left:55.836000px;}
.x31{left:57.315000px;}
.x75{left:58.716000px;}
.x28{left:62.280000px;}
.x5a{left:65.376000px;}
.x49{left:67.425000px;}
.x26{left:68.760000px;}
.x56{left:70.596000px;}
.x2{left:72.360000px;}
.x18{left:73.620000px;}
.x40{left:75.645000px;}
.x19{left:78.330000px;}
.x12{left:79.770000px;}
.x1{left:80.999987px;}
.x5e{left:83.850000px;}
.x42{left:85.005000px;}
.x11{left:86.430000px;}
.x41{left:88.590000px;}
.x1e{left:90.405000px;}
.x39{left:92.160000px;}
.x1d{left:93.960000px;}
.x21{left:95.790000px;}
.x5{left:98.130000px;}
.x38{left:100.260000px;}
.x2a{left:101.700000px;}
.x93{left:102.960000px;}
.x43{left:106.560000px;}
.x15{left:108.035987px;}
.x1b{left:109.620000px;}
.x3d{left:110.910000px;}
.x3a{left:113.580000px;}
.x4b{left:114.840000px;}
.x64{left:117.000000px;}
.x25{left:118.650000px;}
.x45{left:123.150000px;}
.x69{left:125.495987px;}
.x27{left:127.830000px;}
.x44{left:129.930000px;}
.x29{left:131.970000px;}
.x16{left:135.035987px;}
.x4c{left:137.730000px;}
.x97{left:140.220000px;}
.x9f{left:144.465000px;}
.x2c{left:145.620000px;}
.x2b{left:152.385000px;}
.x63{left:163.770000px;}
.x90{left:167.835000px;}
.x62{left:170.535000px;}
.x7c{left:172.725000px;}
.x7b{left:182.490000px;}
.x50{left:185.940000px;}
.x87{left:189.255000px;}
.x86{left:196.845000px;}
.x2d{left:199.800000px;}
.x7d{left:202.065000px;}
.x85{left:204.045000px;}
.xf{left:209.775000px;}
.x13{left:215.175000px;}
.x61{left:224.310000px;}
.x6{left:228.270000px;}
.x5d{left:232.455000px;}
.x4d{left:234.075000px;}
.x46{left:236.085000px;}
.x32{left:244.230000px;}
.x67{left:247.035000px;}
.x2e{left:248.040000px;}
.x7e{left:253.725000px;}
.x47{left:262.005000px;}
.x4e{left:263.520000px;}
.x7f{left:267.225000px;}
.x98{left:268.350000px;}
.x4a{left:270.465000px;}
.x5f{left:271.695000px;}
.x6b{left:278.355000px;}
.x9{left:285.015000px;}
.x92{left:287.714987px;}
.x22{left:289.335000px;}
.x14{left:293.835000px;}
.x9b{left:296.820000px;}
.x65{left:299.085000px;}
.x1a{left:303.015000px;}
.x7a{left:307.874987px;}
.x36{left:311.835000px;}
.x57{left:313.095000px;}
.x51{left:324.074987px;}
.x9d{left:325.290000px;}
.x3c{left:326.774987px;}
.x52{left:332.895000px;}
.x55{left:336.134987px;}
.x20{left:338.654987px;}
.x17{left:341.534987px;}
.x7{left:342.975000px;}
.x35{left:345.134987px;}
.x80{left:348.225000px;}
.x3e{left:352.695000px;}
.x34{left:362.954987px;}
.x8{left:364.215000px;}
.xb{left:366.555000px;}
.x8a{left:372.165000px;}
.xc{left:373.575000px;}
.x88{left:385.170000px;}
.x2f{left:387.750000px;}
.x99{left:396.510000px;}
.x89{left:398.490000px;}
.x8b{left:401.730000px;}
.x94{left:404.610000px;}
.x82{left:416.235000px;}
.x81{left:418.245000px;}
.x9c{left:428.760000px;}
.x6d{left:443.955000px;}
.x8e{left:449.025000px;}
.xa{left:452.280000px;}
.x9e{left:453.450000px;}
.x24{left:459.075000px;}
.x4f{left:462.495000px;}
.x60{left:476.385000px;}
.x48{left:478.770000px;}
.x66{left:483.630000px;}
.x84{left:500.865000px;}
.x83{left:502.305000px;}
.x95{left:515.520000px;}
.x8d{left:517.245000px;}
.x8c{left:519.510000px;}
.x96{left:521.490000px;}
.x9a{left:524.670000px;}
.x30{left:527.475000px;}
.x37{left:535.065000px;}
.x53{left:551.265000px;}
.x58{left:552.525000px;}
.x1c{left:583.125000px;}
.x3f{left:584.745000px;}
.x8f{left:588.525000px;}
.x6f{left:685.770000px;}
.x4{left:745.890000px;}
.x3b{left:778.109987px;}
.x68{left:782.609987px;}
.x54{left:784.589987px;}
.x33{left:786.389987px;}
.x91{left:789.989987px;}
.x1f{left:791.249987px;}
.x79{left:793.409987px;}
@media print{
.v6{vertical-align:-47.733333pt;}
.v7{vertical-align:-28.906667pt;}
.v5{vertical-align:-23.893333pt;}
.v2{vertical-align:-13.440000pt;}
.v3{vertical-align:-5.120000pt;}
.v4{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1f{letter-spacing:-1.120000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.116800pt;}
.lsc{letter-spacing:-0.113067pt;}
.ls18{letter-spacing:-0.051840pt;}
.ls1e{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:-0.016000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls21{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.ls1a{letter-spacing:0.076267pt;}
.lse{letter-spacing:0.077867pt;}
.ls5{letter-spacing:0.100267pt;}
.ls9{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.154880pt;}
.ls16{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.224640pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.256000pt;}
.ls15{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.272000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls11{letter-spacing:0.448000pt;}
.ls1c{letter-spacing:13.600000pt;}
.ls20{letter-spacing:38.992640pt;}
.ls10{letter-spacing:56.912640pt;}
.lsf{letter-spacing:57.040640pt;}
.ls1d{letter-spacing:65.232640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws21{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.280000pt;}
.ws20{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsf{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.526827pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.wsa{word-spacing:-8.651520pt;}
.wsb{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
.ws18{word-spacing:66.417067pt;}
.ws19{word-spacing:116.422400pt;}
.ws1a{word-spacing:181.706453pt;}
.ws1b{word-spacing:181.813120pt;}
.ws1c{word-spacing:368.269013pt;}
.ws1e{word-spacing:369.113387pt;}
.ws1f{word-spacing:389.966720pt;}
.ws1d{word-spacing:396.100053pt;}
.wse{word-spacing:435.786667pt;}
.ws16{word-spacing:470.672000pt;}
.ws14{word-spacing:489.242667pt;}
.ws12{word-spacing:549.488000pt;}
.ws17{word-spacing:575.306667pt;}
.ws10{word-spacing:591.754667pt;}
.ws13{word-spacing:613.866667pt;}
.ws15{word-spacing:653.002667pt;}
.ws11{word-spacing:662.666667pt;}
._6{margin-left:-4.752213pt;}
._4{margin-left:-3.462827pt;}
._3{margin-left:-2.016000pt;}
._0{margin-left:-1.013333pt;}
._1{width:0.928000pt;}
._5{width:2.400000pt;}
._b{width:3.315627pt;}
._2{width:4.224000pt;}
._17{width:5.119573pt;}
._f{width:6.014720pt;}
._10{width:7.730560pt;}
._16{width:8.849707pt;}
._15{width:9.861973pt;}
._e{width:10.772053pt;}
._8{width:11.984213pt;}
._7{width:14.530560pt;}
._18{width:15.617280pt;}
._d{width:17.195947pt;}
._c{width:18.432640pt;}
._12{width:19.368320pt;}
._11{width:20.450560pt;}
._23{width:21.406507pt;}
._14{width:22.310400pt;}
._1c{width:24.166400pt;}
._13{width:25.100800pt;}
._a{width:26.028800pt;}
._9{width:27.172480pt;}
._24{width:28.195627pt;}
._22{width:85.929899pt;}
._19{width:219.386667pt;}
._1a{width:233.904000pt;}
._1b{width:238.748672pt;}
._21{width:241.559680pt;}
._20{width:308.138667pt;}
._1e{width:327.445333pt;}
._1f{width:347.018667pt;}
._1d{width:351.765333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:53.248000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fsb{font-size:96.000000pt;}
.fsd{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y4{bottom:3.200000pt;}
.ya2{bottom:3.360000pt;}
.y4a{bottom:3.520000pt;}
.yea{bottom:3.680000pt;}
.y1a{bottom:4.480000pt;}
.yf{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.yf3{bottom:10.560000pt;}
.y1c{bottom:11.040000pt;}
.yd{bottom:12.320000pt;}
.ye8{bottom:12.640000pt;}
.y10e{bottom:13.853333pt;}
.ye1{bottom:13.893333pt;}
.y103{bottom:13.986667pt;}
.yd2{bottom:14.053333pt;}
.y186{bottom:14.426667pt;}
.y5{bottom:15.360000pt;}
.y137{bottom:15.453333pt;}
.y14c{bottom:15.586667pt;}
.y3{bottom:17.920000pt;}
.y11d{bottom:18.080000pt;}
.y44{bottom:18.240000pt;}
.y49{bottom:19.680000pt;}
.ybb{bottom:22.080000pt;}
.ya0{bottom:22.240000pt;}
.y47{bottom:22.440000pt;}
.yae{bottom:24.613333pt;}
.y19{bottom:26.280000pt;}
.yc{bottom:26.880000pt;}
.ye0{bottom:28.773333pt;}
.y102{bottom:28.893333pt;}
.yd1{bottom:28.933333pt;}
.y185{bottom:30.720000pt;}
.y92{bottom:31.360000pt;}
.y136{bottom:32.893333pt;}
.y43{bottom:33.600000pt;}
.y14b{bottom:36.346667pt;}
.yd8{bottom:39.426667pt;}
.yad{bottom:39.493333pt;}
.yca{bottom:39.586667pt;}
.y18{bottom:40.840000pt;}
.yb{bottom:41.280000pt;}
.y10d{bottom:46.013333pt;}
.y101{bottom:46.146667pt;}
.y17f{bottom:47.360000pt;}
.y42{bottom:48.960000pt;}
.y135{bottom:49.186667pt;}
.ya6{bottom:50.146667pt;}
.y6{bottom:51.040000pt;}
.y14a{bottom:53.826667pt;}
.y17{bottom:55.560000pt;}
.yd9{bottom:56.386667pt;}
.y108{bottom:56.640000pt;}
.yf8{bottom:56.800000pt;}
.ye4{bottom:63.813333pt;}
.ycb{bottom:63.973333pt;}
.y41{bottom:64.160000pt;}
.ya{bottom:65.280000pt;}
.y134{bottom:65.466667pt;}
.y16{bottom:69.480000pt;}
.y2{bottom:69.792000pt;}
.y149{bottom:69.986667pt;}
.yf9{bottom:72.986667pt;}
.yda{bottom:73.306667pt;}
.y18d{bottom:73.666667pt;}
.ya7{bottom:74.626667pt;}
.y180{bottom:76.293333pt;}
.y111{bottom:77.533333pt;}
.yb2{bottom:77.733333pt;}
.yd5{bottom:77.853333pt;}
.y15{bottom:78.760000pt;}
.y40{bottom:79.520000pt;}
.y18a{bottom:80.893333pt;}
.y133{bottom:81.733333pt;}
.y106{bottom:82.400000pt;}
.y109{bottom:82.560000pt;}
.y9{bottom:82.746667pt;}
.y148{bottom:86.306667pt;}
.y147{bottom:86.373333pt;}
.ycc{bottom:88.320000pt;}
.yfa{bottom:89.213333pt;}
.ydb{bottom:90.266667pt;}
.y190{bottom:93.146667pt;}
.y3f{bottom:94.880000pt;}
.y14{bottom:95.080000pt;}
.y18e{bottom:95.360000pt;}
.yb1{bottom:96.933333pt;}
.y132{bottom:98.013333pt;}
.y8{bottom:98.906667pt;}
.ya8{bottom:99.066667pt;}
.y189{bottom:102.586667pt;}
.y146{bottom:102.626667pt;}
.y181{bottom:105.253333pt;}
.yfb{bottom:105.413333pt;}
.ydc{bottom:107.200000pt;}
.y90{bottom:107.552000pt;}
.y10a{bottom:108.480000pt;}
.y3e{bottom:110.240000pt;}
.y12b{bottom:110.426667pt;}
.y13{bottom:112.040000pt;}
.ycd{bottom:112.666667pt;}
.yf7{bottom:113.472000pt;}
.y13d{bottom:115.040000pt;}
.y129{bottom:119.072000pt;}
.y13a{bottom:119.586667pt;}
.yfc{bottom:121.626667pt;}
.y12c{bottom:122.373333pt;}
.y8f{bottom:122.912000pt;}
.y10f{bottom:123.226667pt;}
.ya9{bottom:123.546667pt;}
.ydd{bottom:124.133333pt;}
.y3d{bottom:125.600000pt;}
.y54{bottom:126.752000pt;}
.yf6{bottom:127.392000pt;}
.y13e{bottom:129.733333pt;}
.y188{bottom:131.520000pt;}
.y1aa{bottom:133.312000pt;}
.y182{bottom:134.173333pt;}
.y12d{bottom:134.266667pt;}
.y10b{bottom:134.400000pt;}
.y128{bottom:134.426667pt;}
.y12{bottom:134.920000pt;}
.y17d{bottom:136.506667pt;}
.yce{bottom:137.053333pt;}
.yfd{bottom:137.826667pt;}
.ye3{bottom:138.786667pt;}
.y8e{bottom:139.066667pt;}
.y104{bottom:139.840000pt;}
.y3c{bottom:140.800000pt;}
.yde{bottom:141.093333pt;}
.y53{bottom:142.106667pt;}
.yf5{bottom:144.026667pt;}
.y13f{bottom:144.386667pt;}
.yaf{bottom:145.853333pt;}
.y18c{bottom:145.986667pt;}
.y12e{bottom:146.213333pt;}
.y151{bottom:147.066667pt;}
.yaa{bottom:148.000000pt;}
.y1a9{bottom:148.666667pt;}
.y127{bottom:149.786667pt;}
.y17c{bottom:151.706667pt;}
.yfe{bottom:154.053333pt;}
.y8d{bottom:155.386667pt;}
.y3b{bottom:156.160000pt;}
.y11{bottom:156.520000pt;}
.y52{bottom:157.466667pt;}
.ydf{bottom:158.013333pt;}
.y12f{bottom:158.146667pt;}
.y140{bottom:159.040000pt;}
.y10c{bottom:160.320000pt;}
.yf4{bottom:160.666667pt;}
.ycf{bottom:161.413333pt;}
.y126{bottom:162.106667pt;}
.y13c{bottom:162.400000pt;}
.y183{bottom:163.106667pt;}
.y1a8{bottom:164.026667pt;}
.y139{bottom:165.946667pt;}
.y17b{bottom:167.066667pt;}
.y18b{bottom:167.680000pt;}
.y130{bottom:170.053333pt;}
.yff{bottom:170.240000pt;}
.y8c{bottom:170.746667pt;}
.y3a{bottom:171.520000pt;}
.yab{bottom:172.480000pt;}
.y51{bottom:172.826667pt;}
.y141{bottom:173.733333pt;}
.yf2{bottom:177.306667pt;}
.yc8{bottom:179.386667pt;}
.y131{bottom:181.986667pt;}
.y187{bottom:182.146667pt;}
.y17a{bottom:182.426667pt;}
.y14f{bottom:182.533333pt;}
.yd0{bottom:185.760000pt;}
.y100{bottom:186.466667pt;}
.y39{bottom:186.880000pt;}
.y8b{bottom:187.066667pt;}
.yd4{bottom:187.933333pt;}
.y50{bottom:188.186667pt;}
.y142{bottom:188.386667pt;}
.ye2{bottom:188.413333pt;}
.y18f{bottom:189.413333pt;}
.y184{bottom:192.026667pt;}
.yc6{bottom:193.146667pt;}
.y1a7{bottom:194.746667pt;}
.y138{bottom:195.746667pt;}
.yac{bottom:196.960000pt;}
.y179{bottom:197.786667pt;}
.y110{bottom:199.773333pt;}
.y38{bottom:202.240000pt;}
.y143{bottom:203.066667pt;}
.y4f{bottom:203.386667pt;}
.y2a{bottom:208.160000pt;}
.yf1{bottom:209.306667pt;}
.y1a6{bottom:210.106667pt;}
.yc7{bottom:210.906667pt;}
.y178{bottom:213.146667pt;}
.y105{bottom:215.546667pt;}
.y14e{bottom:216.253333pt;}
.y37{bottom:217.600000pt;}
.yd3{bottom:217.626667pt;}
.y144{bottom:217.733333pt;}
.y4e{bottom:218.746667pt;}
.yb0{bottom:219.266667pt;}
.y8a{bottom:219.706667pt;}
.y29{bottom:221.760000pt;}
.y1a5{bottom:225.306667pt;}
.y177{bottom:228.346667pt;}
.yf0{bottom:228.666667pt;}
.ye5{bottom:229.186667pt;}
.yc5{bottom:231.386667pt;}
.y13b{bottom:231.586667pt;}
.y145{bottom:232.386667pt;}
.y36{bottom:232.826667pt;}
.y4d{bottom:234.106667pt;}
.y112{bottom:234.653333pt;}
.y89{bottom:235.866667pt;}
.y28{bottom:237.466667pt;}
.y191{bottom:237.786667pt;}
.y1a4{bottom:240.666667pt;}
.y176{bottom:243.706667pt;}
.y150{bottom:247.066667pt;}
.y35{bottom:248.186667pt;}
.y4c{bottom:249.466667pt;}
.y88{bottom:252.186667pt;}
.yc4{bottom:252.346667pt;}
.y27{bottom:252.826667pt;}
.y14d{bottom:252.933333pt;}
.y1a3{bottom:256.026667pt;}
.y175{bottom:259.066667pt;}
.yb3{bottom:260.386667pt;}
.yd6{bottom:260.546667pt;}
.y34{bottom:263.546667pt;}
.y4b{bottom:264.826667pt;}
.y87{bottom:267.546667pt;}
.yc3{bottom:267.706667pt;}
.y26{bottom:268.026667pt;}
.y1a2{bottom:271.386667pt;}
.y174{bottom:274.426667pt;}
.y46{bottom:277.306667pt;}
.y33{bottom:278.906667pt;}
.y86{bottom:282.906667pt;}
.yc2{bottom:283.066667pt;}
.y25{bottom:283.866667pt;}
.y152{bottom:284.960000pt;}
.y1a1{bottom:286.746667pt;}
.y173{bottom:289.786667pt;}
.yef{bottom:294.106667pt;}
.y32{bottom:294.266667pt;}
.y85{bottom:298.266667pt;}
.y24{bottom:299.386667pt;}
.y1a0{bottom:302.146667pt;}
.y172{bottom:305.186667pt;}
.yee{bottom:309.506667pt;}
.y31{bottom:309.626667pt;}
.y1d{bottom:309.826667pt;}
.y84{bottom:313.506667pt;}
.yc1{bottom:313.666667pt;}
.y23{bottom:314.746667pt;}
.y19f{bottom:317.346667pt;}
.y171{bottom:320.386667pt;}
.y30{bottom:324.826667pt;}
.yed{bottom:324.866667pt;}
.y83{bottom:328.866667pt;}
.yc0{bottom:329.026667pt;}
.y22{bottom:330.266667pt;}
.y19e{bottom:332.706667pt;}
.y170{bottom:335.746667pt;}
.yec{bottom:337.346667pt;}
.y107{bottom:337.440000pt;}
.y2f{bottom:340.186667pt;}
.ybf{bottom:341.506667pt;}
.yd7{bottom:341.600000pt;}
.ya4{bottom:342.626667pt;}
.y82{bottom:344.226667pt;}
.y21{bottom:345.786667pt;}
.y19d{bottom:348.066667pt;}
.y16f{bottom:351.106667pt;}
.y2e{bottom:355.546667pt;}
.y9f{bottom:356.386667pt;}
.y81{bottom:359.586667pt;}
.y19c{bottom:363.426667pt;}
.y20{bottom:363.706667pt;}
.y16e{bottom:366.466667pt;}
.y2d{bottom:370.906667pt;}
.ya3{bottom:374.146667pt;}
.y80{bottom:374.946667pt;}
.y19b{bottom:378.786667pt;}
.y16d{bottom:381.826667pt;}
.y2c{bottom:386.266667pt;}
.y1f{bottom:388.186667pt;}
.y7f{bottom:390.306667pt;}
.ya1{bottom:394.146667pt;}
.y16c{bottom:397.186667pt;}
.y2b{bottom:401.466667pt;}
.y1e{bottom:403.866667pt;}
.y7e{bottom:405.506667pt;}
.y19a{bottom:409.346667pt;}
.y16b{bottom:412.386667pt;}
.y9e{bottom:414.626667pt;}
.y7d{bottom:420.866667pt;}
.y199{bottom:424.706667pt;}
.y16a{bottom:427.746667pt;}
.y9d{bottom:429.986667pt;}
.y7c{bottom:436.226667pt;}
.y198{bottom:440.066667pt;}
.y169{bottom:443.106667pt;}
.y9c{bottom:445.346667pt;}
.y7b{bottom:451.586667pt;}
.y197{bottom:455.426667pt;}
.y168{bottom:458.466667pt;}
.y9b{bottom:460.706667pt;}
.y7a{bottom:467.906667pt;}
.y196{bottom:470.786667pt;}
.y167{bottom:473.826667pt;}
.y9a{bottom:476.066667pt;}
.y125{bottom:483.106667pt;}
.y79{bottom:484.226667pt;}
.y195{bottom:485.986667pt;}
.y166{bottom:489.026667pt;}
.y99{bottom:491.426667pt;}
.y124{bottom:496.866667pt;}
.y78{bottom:499.426667pt;}
.y194{bottom:501.346667pt;}
.y165{bottom:504.386667pt;}
.y98{bottom:506.626667pt;}
.y123{bottom:513.506667pt;}
.y77{bottom:515.746667pt;}
.y193{bottom:516.706667pt;}
.y97{bottom:519.106667pt;}
.ya5{bottom:519.360000pt;}
.y164{bottom:519.746667pt;}
.y122{bottom:530.146667pt;}
.y76{bottom:531.106667pt;}
.y192{bottom:532.066667pt;}
.y163{bottom:535.106667pt;}
.y121{bottom:546.973333pt;}
.y75{bottom:547.453333pt;}
.y162{bottom:550.493333pt;}
.y74{bottom:562.813333pt;}
.y161{bottom:565.853333pt;}
.y73{bottom:578.013333pt;}
.y120{bottom:578.653333pt;}
.y160{bottom:581.053333pt;}
.y72{bottom:593.373333pt;}
.y11f{bottom:595.293333pt;}
.y15f{bottom:596.413333pt;}
.yeb{bottom:599.773333pt;}
.ybe{bottom:601.373333pt;}
.y71{bottom:608.733333pt;}
.y15e{bottom:611.773333pt;}
.y11e{bottom:611.933333pt;}
.ye7{bottom:613.693333pt;}
.yba{bottom:615.293333pt;}
.y70{bottom:624.093333pt;}
.y15d{bottom:627.133333pt;}
.y11c{bottom:631.293333pt;}
.ye9{bottom:631.613333pt;}
.ybd{bottom:632.573333pt;}
.y6f{bottom:639.453333pt;}
.y15c{bottom:642.493333pt;}
.ye6{bottom:652.573333pt;}
.ybc{bottom:652.893333pt;}
.y6e{bottom:654.813333pt;}
.y15b{bottom:657.853333pt;}
.y11b{bottom:666.173333pt;}
.y6d{bottom:670.013333pt;}
.y15a{bottom:673.053333pt;}
.yb9{bottom:673.373333pt;}
.y11a{bottom:681.373333pt;}
.y6c{bottom:685.373333pt;}
.y159{bottom:688.413333pt;}
.yb8{bottom:688.733333pt;}
.y119{bottom:696.733333pt;}
.y6b{bottom:700.733333pt;}
.y158{bottom:703.773333pt;}
.yb7{bottom:704.093333pt;}
.y118{bottom:712.093333pt;}
.y6a{bottom:716.093333pt;}
.y157{bottom:719.133333pt;}
.yb6{bottom:719.453333pt;}
.y1b{bottom:723.773333pt;}
.y117{bottom:727.453333pt;}
.y69{bottom:731.453333pt;}
.y156{bottom:734.493333pt;}
.yb5{bottom:734.653333pt;}
.y116{bottom:742.813333pt;}
.y68{bottom:746.653333pt;}
.y155{bottom:749.853333pt;}
.y10{bottom:750.013333pt;}
.y115{bottom:758.173333pt;}
.y67{bottom:762.013333pt;}
.yb4{bottom:762.493333pt;}
.yc9{bottom:762.560000pt;}
.y154{bottom:765.053333pt;}
.y114{bottom:773.373333pt;}
.y66{bottom:777.413333pt;}
.y153{bottom:777.573333pt;}
.y17e{bottom:777.760000pt;}
.y113{bottom:785.893333pt;}
.y12a{bottom:786.080000pt;}
.y65{bottom:792.773333pt;}
.y64{bottom:808.133333pt;}
.y96{bottom:810.053333pt;}
.y63{bottom:823.493333pt;}
.y91{bottom:823.813333pt;}
.y62{bottom:838.693333pt;}
.y95{bottom:841.733333pt;}
.y61{bottom:854.053333pt;}
.y94{bottom:859.653333pt;}
.y60{bottom:869.413333pt;}
.y93{bottom:879.813333pt;}
.y5f{bottom:884.773333pt;}
.y5e{bottom:900.133333pt;}
.y5d{bottom:915.493333pt;}
.ye{bottom:919.973333pt;}
.y5c{bottom:930.693333pt;}
.y7{bottom:942.533333pt;}
.y5b{bottom:946.053333pt;}
.y5a{bottom:961.413333pt;}
.y59{bottom:976.773333pt;}
.y58{bottom:992.133333pt;}
.y57{bottom:1007.493333pt;}
.y56{bottom:1022.720000pt;}
.y55{bottom:1038.080000pt;}
.y1{bottom:1061.440000pt;}
.h3a{height:15.200000pt;}
.h37{height:15.360000pt;}
.h3e{height:15.392000pt;}
.h30{height:15.840000pt;}
.h25{height:16.000000pt;}
.h26{height:16.160000pt;}
.h2a{height:16.320000pt;}
.h27{height:16.480000pt;}
.h28{height:16.640000pt;}
.h31{height:16.800000pt;}
.h36{height:16.960000pt;}
.hc{height:22.240000pt;}
.h15{height:26.240000pt;}
.h14{height:28.376563pt;}
.h13{height:28.536562pt;}
.h3{height:29.280000pt;}
.h3d{height:30.560000pt;}
.h39{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.512000pt;}
.h32{height:34.240000pt;}
.h2c{height:34.710938pt;}
.h2d{height:34.803500pt;}
.h35{height:34.880000pt;}
.h20{height:37.479688pt;}
.h1c{height:37.499062pt;}
.h1d{height:38.413438pt;}
.h23{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h38{height:40.021563pt;}
.h18{height:42.649687pt;}
.h45{height:42.944375pt;}
.h44{height:43.051042pt;}
.h21{height:43.551875pt;}
.h22{height:43.658542pt;}
.h1b{height:43.782500pt;}
.h1a{height:44.215312pt;}
.h3c{height:46.373812pt;}
.h1f{height:46.454062pt;}
.h5{height:47.742188pt;}
.ha{height:48.000000pt;}
.h4{height:49.148438pt;}
.h19{height:50.288438pt;}
.h10{height:52.834688pt;}
.h42{height:52.962000pt;}
.h2f{height:53.920000pt;}
.h29{height:54.080000pt;}
.h2e{height:54.149062pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h2{height:58.563750pt;}
.h6{height:60.288750pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h24{height:72.000000pt;}
.h40{height:98.296875pt;}
.h43{height:98.427937pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h34{height:256.960000pt;}
.h3b{height:259.520000pt;}
.h3f{height:264.480000pt;}
.h46{height:272.800000pt;}
.h2b{height:287.840000pt;}
.h33{height:288.000000pt;}
.h41{height:317.920000pt;}
.h17{height:413.946667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:66.560000pt;}
.w32{width:118.880000pt;}
.w36{width:119.040000pt;}
.w5{width:138.106667pt;}
.w30{width:145.920000pt;}
.w34{width:146.240000pt;}
.w10{width:149.440000pt;}
.w12{width:149.920000pt;}
.w33{width:179.386667pt;}
.w2f{width:180.666667pt;}
.wf{width:190.466667pt;}
.w23{width:192.826667pt;}
.w26{width:193.146667pt;}
.w8{width:196.386667pt;}
.w16{width:196.986667pt;}
.w18{width:197.466667pt;}
.wa{width:202.626667pt;}
.w1b{width:204.986667pt;}
.w1e{width:205.306667pt;}
.w1c{width:207.546667pt;}
.w1f{width:207.706667pt;}
.w2a{width:210.306667pt;}
.w15{width:210.466667pt;}
.wc{width:210.746667pt;}
.we{width:210.906667pt;}
.w29{width:211.546667pt;}
.w28{width:211.586667pt;}
.w2c{width:211.706667pt;}
.w2b{width:211.866667pt;}
.w31{width:213.506667pt;}
.w35{width:213.986667pt;}
.w25{width:227.906667pt;}
.w22{width:229.186667pt;}
.w24{width:236.666667pt;}
.w27{width:236.826667pt;}
.w1d{width:245.506667pt;}
.w1a{width:246.786667pt;}
.wb{width:247.546667pt;}
.wd{width:248.026667pt;}
.w17{width:251.066667pt;}
.w19{width:251.386667pt;}
.w11{width:284.226667pt;}
.w13{width:284.546667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.w21{width:589.440000pt;}
.w38{width:597.440000pt;}
.w3{width:598.693333pt;}
.w2e{width:600.960000pt;}
.w20{width:604.160000pt;}
.w3a{width:610.560000pt;}
.w2d{width:611.840000pt;}
.w14{width:612.800000pt;}
.w39{width:616.640000pt;}
.w37{width:661.573333pt;}
.w7{width:664.293333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.xe{left:10.880000pt;}
.x59{left:13.632000pt;}
.x6e{left:15.680000pt;}
.x73{left:18.272000pt;}
.x77{left:20.512000pt;}
.x71{left:22.112000pt;}
.x78{left:23.392000pt;}
.x6c{left:26.560000pt;}
.xd{left:28.352000pt;}
.x70{left:29.760000pt;}
.x74{left:31.200000pt;}
.x10{left:35.072000pt;}
.x76{left:36.032000pt;}
.x72{left:41.280000pt;}
.x5b{left:42.592000pt;}
.x5c{left:45.632000pt;}
.x23{left:48.480000pt;}
.x6a{left:49.632000pt;}
.x31{left:50.946667pt;}
.x75{left:52.192000pt;}
.x28{left:55.360000pt;}
.x5a{left:58.112000pt;}
.x49{left:59.933333pt;}
.x26{left:61.120000pt;}
.x56{left:62.752000pt;}
.x2{left:64.320000pt;}
.x18{left:65.440000pt;}
.x40{left:67.240000pt;}
.x19{left:69.626667pt;}
.x12{left:70.906667pt;}
.x1{left:71.999988pt;}
.x5e{left:74.533333pt;}
.x42{left:75.560000pt;}
.x11{left:76.826667pt;}
.x41{left:78.746667pt;}
.x1e{left:80.360000pt;}
.x39{left:81.920000pt;}
.x1d{left:83.520000pt;}
.x21{left:85.146667pt;}
.x5{left:87.226667pt;}
.x38{left:89.120000pt;}
.x2a{left:90.400000pt;}
.x93{left:91.520000pt;}
.x43{left:94.720000pt;}
.x15{left:96.031988pt;}
.x1b{left:97.440000pt;}
.x3d{left:98.586667pt;}
.x3a{left:100.960000pt;}
.x4b{left:102.080000pt;}
.x64{left:104.000000pt;}
.x25{left:105.466667pt;}
.x45{left:109.466667pt;}
.x69{left:111.551988pt;}
.x27{left:113.626667pt;}
.x44{left:115.493333pt;}
.x29{left:117.306667pt;}
.x16{left:120.031988pt;}
.x4c{left:122.426667pt;}
.x97{left:124.640000pt;}
.x9f{left:128.413333pt;}
.x2c{left:129.440000pt;}
.x2b{left:135.453333pt;}
.x63{left:145.573333pt;}
.x90{left:149.186667pt;}
.x62{left:151.586667pt;}
.x7c{left:153.533333pt;}
.x7b{left:162.213333pt;}
.x50{left:165.280000pt;}
.x87{left:168.226667pt;}
.x86{left:174.973333pt;}
.x2d{left:177.600000pt;}
.x7d{left:179.613333pt;}
.x85{left:181.373333pt;}
.xf{left:186.466667pt;}
.x13{left:191.266667pt;}
.x61{left:199.386667pt;}
.x6{left:202.906667pt;}
.x5d{left:206.626667pt;}
.x4d{left:208.066667pt;}
.x46{left:209.853333pt;}
.x32{left:217.093333pt;}
.x67{left:219.586667pt;}
.x2e{left:220.480000pt;}
.x7e{left:225.533333pt;}
.x47{left:232.893333pt;}
.x4e{left:234.240000pt;}
.x7f{left:237.533333pt;}
.x98{left:238.533333pt;}
.x4a{left:240.413333pt;}
.x5f{left:241.506667pt;}
.x6b{left:247.426667pt;}
.x9{left:253.346667pt;}
.x92{left:255.746655pt;}
.x22{left:257.186667pt;}
.x14{left:261.186667pt;}
.x9b{left:263.840000pt;}
.x65{left:265.853333pt;}
.x1a{left:269.346667pt;}
.x7a{left:273.666655pt;}
.x36{left:277.186667pt;}
.x57{left:278.306667pt;}
.x51{left:288.066655pt;}
.x9d{left:289.146667pt;}
.x3c{left:290.466655pt;}
.x52{left:295.906667pt;}
.x55{left:298.786655pt;}
.x20{left:301.026655pt;}
.x17{left:303.586655pt;}
.x7{left:304.866667pt;}
.x35{left:306.786655pt;}
.x80{left:309.533333pt;}
.x3e{left:313.506667pt;}
.x34{left:322.626655pt;}
.x8{left:323.746667pt;}
.xb{left:325.826667pt;}
.x8a{left:330.813333pt;}
.xc{left:332.066667pt;}
.x88{left:342.373333pt;}
.x2f{left:344.666667pt;}
.x99{left:352.453333pt;}
.x89{left:354.213333pt;}
.x8b{left:357.093333pt;}
.x94{left:359.653333pt;}
.x82{left:369.986667pt;}
.x81{left:371.773333pt;}
.x9c{left:381.120000pt;}
.x6d{left:394.626667pt;}
.x8e{left:399.133333pt;}
.xa{left:402.026667pt;}
.x9e{left:403.066667pt;}
.x24{left:408.066667pt;}
.x4f{left:411.106667pt;}
.x60{left:423.453333pt;}
.x48{left:425.573333pt;}
.x66{left:429.893333pt;}
.x84{left:445.213333pt;}
.x83{left:446.493333pt;}
.x95{left:458.240000pt;}
.x8d{left:459.773333pt;}
.x8c{left:461.786667pt;}
.x96{left:463.546667pt;}
.x9a{left:466.373333pt;}
.x30{left:468.866667pt;}
.x37{left:475.613333pt;}
.x53{left:490.013333pt;}
.x58{left:491.133333pt;}
.x1c{left:518.333333pt;}
.x3f{left:519.773333pt;}
.x8f{left:523.133333pt;}
.x6f{left:609.573333pt;}
.x4{left:663.013333pt;}
.x3b{left:691.653322pt;}
.x68{left:695.653322pt;}
.x54{left:697.413322pt;}
.x33{left:699.013322pt;}
.x91{left:702.213322pt;}
.x1f{left:703.333322pt;}
.x79{left:705.253322pt;}
}




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