
    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_351711b8061092251132be7d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5461573e20ff1335ef3969e1.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c7eaa50816a17f1fe6d80f92.woff2')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_d967d50195e722c19d656e6c.woff2')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_9555f3d3271594c8ed0ca7be.woff2')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_a897018ac87a27b232bd89d2.woff2')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_5632a2273a4f3c85ca8534f1.woff2')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_8d2aa5ee0dcbe26690430cad.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.754395;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_f98902293fd83dbadb06e050.woff2')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_6e55f5d68d98ab481e8e48cb.woff2')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_14b0dc3db674cd9437336c87.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.914062;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_059a44ecd9f28e09ce765144.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.914062;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_230343fd994565138fcfc1e0.woff2')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_01ce8cbd34e42b9a86a59126.woff2')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_6193fc93719873dbca485474.woff2')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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_683868232459c169645b4332.woff2')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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v5{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v1{vertical-align:20.880000px;}
.ls1d{letter-spacing:-3.420000px;}
.ls1c{letter-spacing:-3.240000px;}
.ls1b{letter-spacing:-2.520000px;}
.lsc{letter-spacing:-0.666000px;}
.lsb{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.106800px;}
.lsa{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.066240px;}
.ls13{letter-spacing:0.100800px;}
.ls1{letter-spacing:0.132600px;}
.ls11{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.206400px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.288000px;}
.ls18{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.447840px;}
.ls16{letter-spacing:0.504000px;}
.ls6{letter-spacing:0.894240px;}
.lsd{letter-spacing:0.900000px;}
.ls8{letter-spacing:5.220000px;}
.ls1a{letter-spacing:25.146720px;}
.ls19{letter-spacing:52.506720px;}
.ls10{letter-spacing:55.386720px;}
.lse{letter-spacing:64.170720px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws1d{word-spacing:-15.238800px;}
.wse{word-spacing:-15.146400px;}
.ws17{word-spacing:-14.976000px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws8{word-spacing:-14.274000px;}
.ws19{word-spacing:-13.536000px;}
.ws9{word-spacing:-13.505760px;}
.ws1a{word-spacing:-13.500000px;}
.ws1f{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws20{word-spacing:-11.700000px;}
.wsa{word-spacing:-9.732960px;}
.wsd{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
.wsf{word-spacing:243.900000px;}
.ws10{word-spacing:272.880000px;}
.ws11{word-spacing:334.620000px;}
.ws14{word-spacing:340.680000px;}
.ws16{word-spacing:453.204000px;}
.ws15{word-spacing:453.456000px;}
.ws1e{word-spacing:455.286000px;}
.ws1c{word-spacing:480.900000px;}
.ws1b{word-spacing:489.720000px;}
.ws18{word-spacing:492.000000px;}
.ws12{word-spacing:613.601280px;}
.ws13{word-spacing:702.720000px;}
._6{margin-left:-5.312160px;}
._4{margin-left:-4.234080px;}
._3{margin-left:-2.352000px;}
._0{margin-left:-1.284000px;}
._1{width:1.128000px;}
._5{width:2.784000px;}
._2{width:4.584000px;}
._10{width:6.113040px;}
._a{width:7.828560px;}
._9{width:9.262800px;}
._11{width:10.458000px;}
._c{width:11.981040px;}
._b{width:13.147200px;}
._8{width:16.142640px;}
._d{width:17.330400px;}
._7{width:19.464720px;}
._12{width:20.469840px;}
._13{width:21.698880px;}
._14{width:22.765440px;}
._f{width:24.918480px;}
._e{width:26.174880px;}
._15{width:28.027440px;}
._23{width:57.489120px;}
._22{width:80.496720px;}
._20{width:127.800000px;}
._18{width:134.045520px;}
._16{width:191.444640px;}
._19{width:194.324640px;}
._1d{width:197.472000px;}
._1c{width:201.924000px;}
._1b{width:250.784640px;}
._1a{width:257.052000px;}
._21{width:262.792416px;}
._1f{width:267.816000px;}
._1e{width:269.136000px;}
._17{width:375.224640px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fsa{font-size:54.144000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y45{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y19a{bottom:3.780000px;}
.y4a{bottom:3.960000px;}
.y197{bottom:4.140000px;}
.ya4{bottom:4.320000px;}
.yc5{bottom:4.350000px;}
.ya6{bottom:4.500000px;}
.yc7{bottom:4.680000px;}
.y1a{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.y48{bottom:10.620000px;}
.y180{bottom:11.880000px;}
.y1c{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y133{bottom:15.735000px;}
.y15f{bottom:15.870000px;}
.y1a7{bottom:15.915000px;}
.ye9{bottom:16.170000px;}
.y124{bottom:16.230000px;}
.yfa{bottom:16.275000px;}
.ybd{bottom:16.350000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y182{bottom:20.370000px;}
.y44{bottom:20.520000px;}
.y49{bottom:22.320000px;}
.y47{bottom:25.380000px;}
.y19{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y132{bottom:32.550000px;}
.y1a6{bottom:32.685000px;}
.y15c{bottom:32.730000px;}
.y15e{bottom:33.195000px;}
.ye8{bottom:34.560000px;}
.y123{bottom:34.590000px;}
.ybc{bottom:34.635000px;}
.y5{bottom:36.720000px;}
.y43{bottom:37.620000px;}
.y12b{bottom:44.640000px;}
.y18{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.ye0{bottom:47.370000px;}
.y16f{bottom:48.030000px;}
.yb3{bottom:48.210000px;}
.y170{bottom:48.570000px;}
.y15d{bottom:48.750000px;}
.y122{bottom:51.840000px;}
.yf9{bottom:51.915000px;}
.y42{bottom:54.900000px;}
.y1{bottom:57.780000px;}
.y19f{bottom:59.730000px;}
.y166{bottom:60.120000px;}
.y155{bottom:60.270000px;}
.y17{bottom:62.505000px;}
.y11c{bottom:64.650000px;}
.yef{bottom:64.725000px;}
.yb4{bottom:66.135000px;}
.y12c{bottom:70.995000px;}
.ye1{bottom:71.205000px;}
.y41{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y16{bottom:78.885000px;}
.y167{bottom:78.915000px;}
.yf0{bottom:81.255000px;}
.yb5{bottom:84.090000px;}
.y156{bottom:84.780000px;}
.y1a0{bottom:87.840000px;}
.y40{bottom:89.460000px;}
.y11d{bottom:89.640000px;}
.yc2{bottom:92.055000px;}
.y8{bottom:93.090000px;}
.y15{bottom:94.725000px;}
.ye2{bottom:95.010000px;}
.y137{bottom:95.550000px;}
.y12d{bottom:97.380000px;}
.y168{bottom:97.710000px;}
.yf1{bottom:97.815000px;}
.y128{bottom:99.255000px;}
.yb6{bottom:102.030000px;}
.yec{bottom:102.810000px;}
.y93{bottom:103.356000px;}
.y14{bottom:105.165000px;}
.y163{bottom:105.555000px;}
.yb1{bottom:106.236000px;}
.y3f{bottom:106.740000px;}
.y174{bottom:106.995000px;}
.y1c8{bottom:108.756000px;}
.y157{bottom:109.290000px;}
.yff{bottom:111.315000px;}
.y7{bottom:111.450000px;}
.y153{bottom:112.176000px;}
.yde{bottom:112.716000px;}
.y1ab{bottom:113.550000px;}
.yf2{bottom:114.375000px;}
.y11e{bottom:114.585000px;}
.y11a{bottom:114.876000px;}
.y1a1{bottom:115.920000px;}
.yc1{bottom:116.025000px;}
.y169{bottom:116.490000px;}
.ye3{bottom:118.830000px;}
.y55{bottom:119.376000px;}
.yb7{bottom:119.955000px;}
.y92{bottom:120.636000px;}
.yb0{bottom:123.516000px;}
.y13{bottom:123.525000px;}
.y12e{bottom:123.765000px;}
.y3e{bottom:124.020000px;}
.y19d{bottom:125.496000px;}
.y1c7{bottom:126.036000px;}
.yfe{bottom:127.830000px;}
.ydd{bottom:129.996000px;}
.y152{bottom:130.176000px;}
.y160{bottom:130.530000px;}
.yf3{bottom:130.935000px;}
.y136{bottom:132.195000px;}
.y158{bottom:133.770000px;}
.ybe{bottom:133.995000px;}
.y16a{bottom:135.285000px;}
.y54{bottom:136.656000px;}
.yb8{bottom:137.910000px;}
.y91{bottom:137.916000px;}
.y119{bottom:138.456000px;}
.y11f{bottom:139.530000px;}
.y19c{bottom:140.256000px;}
.yaf{bottom:140.616000px;}
.y3d{bottom:141.120000px;}
.y12{bottom:142.425000px;}
.ye4{bottom:142.665000px;}
.y1c6{bottom:143.316000px;}
.y134{bottom:144.000000px;}
.y1a2{bottom:144.030000px;}
.yfd{bottom:145.770000px;}
.ydc{bottom:147.276000px;}
.yf4{bottom:147.450000px;}
.y127{bottom:147.705000px;}
.y12f{bottom:150.120000px;}
.y151{bottom:151.410000px;}
.y53{bottom:153.930000px;}
.y16b{bottom:154.080000px;}
.y161{bottom:155.055000px;}
.y90{bottom:155.190000px;}
.y118{bottom:155.550000px;}
.yb9{bottom:155.850000px;}
.yae{bottom:157.890000px;}
.y159{bottom:158.295000px;}
.y3c{bottom:158.400000px;}
.y1c5{bottom:160.590000px;}
.y19b{bottom:161.310000px;}
.yeb{bottom:162.435000px;}
.yf5{bottom:164.010000px;}
.y120{bottom:164.520000px;}
.ydb{bottom:164.550000px;}
.y1aa{bottom:166.425000px;}
.ye5{bottom:166.500000px;}
.y11{bottom:168.165000px;}
.y150{bottom:168.690000px;}
.y52{bottom:171.210000px;}
.y1a3{bottom:172.110000px;}
.y8f{bottom:172.470000px;}
.y117{bottom:172.830000px;}
.y16c{bottom:172.875000px;}
.yba{bottom:173.805000px;}
.yad{bottom:175.170000px;}
.y3b{bottom:175.680000px;}
.y130{bottom:176.505000px;}
.y125{bottom:176.610000px;}
.y1c4{bottom:177.870000px;}
.yf6{bottom:180.570000px;}
.y199{bottom:181.290000px;}
.yda{bottom:181.830000px;}
.y15a{bottom:182.805000px;}
.y14f{bottom:185.970000px;}
.y51{bottom:188.490000px;}
.y121{bottom:189.465000px;}
.y8e{bottom:189.750000px;}
.y116{bottom:190.110000px;}
.ye6{bottom:190.335000px;}
.y16d{bottom:191.670000px;}
.ybb{bottom:191.730000px;}
.yac{bottom:192.450000px;}
.y10{bottom:192.645000px;}
.y3a{bottom:192.960000px;}
.y173{bottom:193.065000px;}
.yfc{bottom:194.040000px;}
.y1c3{bottom:194.970000px;}
.yf7{bottom:197.130000px;}
.yd9{bottom:199.110000px;}
.y1a4{bottom:200.235000px;}
.y1a9{bottom:200.340000px;}
.y198{bottom:200.550000px;}
.y2b{bottom:202.500000px;}
.y131{bottom:202.890000px;}
.y14e{bottom:203.250000px;}
.ybf{bottom:204.480000px;}
.y50{bottom:205.590000px;}
.yab{bottom:206.490000px;}
.yb2{bottom:206.640000px;}
.y8d{bottom:206.850000px;}
.y15b{bottom:207.330000px;}
.y115{bottom:207.390000px;}
.y39{bottom:210.240000px;}
.y16e{bottom:210.450000px;}
.y1c2{bottom:212.250000px;}
.yf8{bottom:213.660000px;}
.ye7{bottom:214.170000px;}
.yd8{bottom:216.210000px;}
.y2a{bottom:219.780000px;}
.y14d{bottom:220.530000px;}
.yc0{bottom:221.145000px;}
.y135{bottom:221.760000px;}
.y4f{bottom:222.870000px;}
.y8c{bottom:224.130000px;}
.y114{bottom:224.670000px;}
.y126{bottom:225.210000px;}
.y38{bottom:227.520000px;}
.y172{bottom:227.850000px;}
.y1a5{bottom:228.315000px;}
.y1c1{bottom:229.530000px;}
.yd7{bottom:230.250000px;}
.yee{bottom:230.580000px;}
.y29{bottom:237.060000px;}
.y14c{bottom:237.810000px;}
.y4e{bottom:240.150000px;}
.y162{bottom:240.810000px;}
.y8b{bottom:241.410000px;}
.y113{bottom:241.950000px;}
.yfb{bottom:243.690000px;}
.y196{bottom:243.750000px;}
.y37{bottom:244.620000px;}
.y1c0{bottom:246.810000px;}
.y171{bottom:249.450000px;}
.yc3{bottom:249.945000px;}
.y28{bottom:254.160000px;}
.y14b{bottom:254.910000px;}
.y129{bottom:255.090000px;}
.y112{bottom:255.990000px;}
.y12a{bottom:256.140000px;}
.y4d{bottom:257.430000px;}
.yea{bottom:257.760000px;}
.y8a{bottom:258.690000px;}
.y1a8{bottom:260.100000px;}
.y195{bottom:261.030000px;}
.y36{bottom:261.930000px;}
.y1bf{bottom:264.090000px;}
.y14a{bottom:268.950000px;}
.y165{bottom:269.280000px;}
.y138{bottom:270.285000px;}
.y27{bottom:272.010000px;}
.y100{bottom:272.310000px;}
.y164{bottom:274.500000px;}
.y4c{bottom:274.710000px;}
.y89{bottom:275.970000px;}
.y175{bottom:276.630000px;}
.y194{bottom:278.310000px;}
.y35{bottom:279.210000px;}
.y1be{bottom:281.370000px;}
.y26{bottom:288.750000px;}
.y4b{bottom:291.990000px;}
.y88{bottom:293.250000px;}
.y193{bottom:295.590000px;}
.yed{bottom:295.890000px;}
.y1ac{bottom:295.920000px;}
.y34{bottom:296.490000px;}
.y1bd{bottom:298.470000px;}
.y25{bottom:305.130000px;}
.y46{bottom:305.850000px;}
.y87{bottom:310.350000px;}
.y192{bottom:312.690000px;}
.y33{bottom:313.770000px;}
.y1bc{bottom:315.750000px;}
.y24{bottom:322.230000px;}
.y86{bottom:327.630000px;}
.y191{bottom:329.970000px;}
.y32{bottom:330.870000px;}
.y1bb{bottom:333.030000px;}
.y23{bottom:339.690000px;}
.y1d{bottom:342.615000px;}
.y85{bottom:346.035000px;}
.y190{bottom:347.295000px;}
.y31{bottom:348.150000px;}
.y1ba{bottom:350.355000px;}
.y22{bottom:356.970000px;}
.y84{bottom:363.315000px;}
.y18f{bottom:364.575000px;}
.y30{bottom:365.430000px;}
.y1b9{bottom:367.635000px;}
.y21{bottom:374.430000px;}
.y83{bottom:380.595000px;}
.y18e{bottom:381.855000px;}
.y2f{bottom:382.710000px;}
.y1b8{bottom:384.915000px;}
.y20{bottom:392.070000px;}
.y82{bottom:397.695000px;}
.y18d{bottom:399.135000px;}
.y2e{bottom:399.990000px;}
.y1b7{bottom:402.015000px;}
.y81{bottom:414.975000px;}
.y18c{bottom:416.235000px;}
.y2d{bottom:417.270000px;}
.y1b6{bottom:419.295000px;}
.y1f{bottom:419.430000px;}
.y80{bottom:432.255000px;}
.y18b{bottom:433.515000px;}
.y2c{bottom:434.370000px;}
.y1b5{bottom:436.575000px;}
.y1e{bottom:437.070000px;}
.y7f{bottom:450.615000px;}
.y18a{bottom:450.795000px;}
.y1b4{bottom:453.855000px;}
.y7e{bottom:467.895000px;}
.y189{bottom:468.075000px;}
.y1b3{bottom:471.135000px;}
.y7d{bottom:485.175000px;}
.y188{bottom:485.355000px;}
.yaa{bottom:487.875000px;}
.y1b2{bottom:488.235000px;}
.y187{bottom:500.115000px;}
.y7c{bottom:502.275000px;}
.ya9{bottom:502.635000px;}
.y1b1{bottom:505.515000px;}
.y186{bottom:518.115000px;}
.y7b{bottom:520.635000px;}
.y1b0{bottom:522.795000px;}
.ya8{bottom:523.335000px;}
.yd6{bottom:534.135000px;}
.y185{bottom:536.115000px;}
.y7a{bottom:537.915000px;}
.y1af{bottom:540.075000px;}
.ya7{bottom:543.495000px;}
.yd5{bottom:548.895000px;}
.y184{bottom:554.115000px;}
.y79{bottom:556.275000px;}
.y1ae{bottom:557.355000px;}
.y111{bottom:557.715000px;}
.ya5{bottom:563.835000px;}
.yd4{bottom:569.415000px;}
.y183{bottom:572.115000px;}
.y110{bottom:572.475000px;}
.y78{bottom:574.635000px;}
.y149{bottom:575.895000px;}
.ya3{bottom:584.535000px;}
.yd3{bottom:589.755000px;}
.y181{bottom:590.115000px;}
.y148{bottom:590.655000px;}
.y77{bottom:591.735000px;}
.y10f{bottom:592.815000px;}
.ya2{bottom:607.965000px;}
.y76{bottom:609.045000px;}
.yd2{bottom:609.945000px;}
.y147{bottom:611.025000px;}
.y10e{bottom:613.005000px;}
.ya1{bottom:625.245000px;}
.y75{bottom:626.325000px;}
.yd1{bottom:630.645000px;}
.y146{bottom:631.365000px;}
.y10d{bottom:633.885000px;}
.ya0{bottom:642.525000px;}
.y74{bottom:643.605000px;}
.y145{bottom:652.065000px;}
.yd0{bottom:654.045000px;}
.y10c{bottom:657.465000px;}
.y9f{bottom:659.805000px;}
.y17f{bottom:660.525000px;}
.y73{bottom:660.885000px;}
.ycf{bottom:671.325000px;}
.y10b{bottom:674.745000px;}
.y144{bottom:675.645000px;}
.y9e{bottom:677.085000px;}
.y72{bottom:678.165000px;}
.yce{bottom:688.605000px;}
.y10a{bottom:691.845000px;}
.y143{bottom:692.925000px;}
.y9d{bottom:694.185000px;}
.y71{bottom:695.265000px;}
.y17e{bottom:699.045000px;}
.ycd{bottom:705.885000px;}
.y109{bottom:709.125000px;}
.y142{bottom:710.205000px;}
.y9c{bottom:711.465000px;}
.y70{bottom:712.545000px;}
.y17d{bottom:716.325000px;}
.ycc{bottom:723.165000px;}
.y108{bottom:726.405000px;}
.y141{bottom:727.485000px;}
.y9b{bottom:728.745000px;}
.y6f{bottom:729.825000px;}
.y17c{bottom:733.605000px;}
.ycb{bottom:740.445000px;}
.y107{bottom:743.685000px;}
.y140{bottom:744.585000px;}
.y9a{bottom:746.025000px;}
.y6e{bottom:747.105000px;}
.y17b{bottom:750.885000px;}
.yca{bottom:754.305000px;}
.ydf{bottom:754.560000px;}
.y106{bottom:760.965000px;}
.y13f{bottom:761.865000px;}
.y99{bottom:763.305000px;}
.y6d{bottom:764.385000px;}
.y17a{bottom:767.985000px;}
.y105{bottom:775.005000px;}
.y11b{bottom:775.080000px;}
.y13e{bottom:779.145000px;}
.y98{bottom:780.585000px;}
.y6c{bottom:781.665000px;}
.y179{bottom:785.265000px;}
.y1b{bottom:791.025000px;}
.y13d{bottom:793.185000px;}
.y154{bottom:793.260000px;}
.y97{bottom:797.685000px;}
.y6b{bottom:798.765000px;}
.y178{bottom:802.545000px;}
.y96{bottom:814.965000px;}
.y6a{bottom:816.045000px;}
.y177{bottom:819.825000px;}
.yf{bottom:820.545000px;}
.y95{bottom:832.245000px;}
.y69{bottom:833.325000px;}
.y176{bottom:833.865000px;}
.y19e{bottom:833.940000px;}
.y94{bottom:849.525000px;}
.y68{bottom:850.605000px;}
.y67{bottom:867.885000px;}
.y66{bottom:885.030000px;}
.y65{bottom:902.310000px;}
.y1ad{bottom:907.530000px;}
.y64{bottom:919.590000px;}
.y63{bottom:936.870000px;}
.y62{bottom:954.150000px;}
.y61{bottom:971.430000px;}
.y60{bottom:988.530000px;}
.y5f{bottom:1005.810000px;}
.y5e{bottom:1023.090000px;}
.yd{bottom:1028.310000px;}
.y5d{bottom:1040.370000px;}
.y6{bottom:1053.510000px;}
.y5c{bottom:1057.650000px;}
.y104{bottom:1061.430000px;}
.y5b{bottom:1074.930000px;}
.y103{bottom:1076.190000px;}
.yc9{bottom:1081.590000px;}
.y5a{bottom:1092.030000px;}
.yc8{bottom:1096.350000px;}
.y102{bottom:1096.530000px;}
.y13c{bottom:1099.050000px;}
.y59{bottom:1109.310000px;}
.y13b{bottom:1113.810000px;}
.yc6{bottom:1116.690000px;}
.y101{bottom:1116.870000px;}
.y58{bottom:1126.590000px;}
.y13a{bottom:1134.150000px;}
.yc4{bottom:1137.570000px;}
.y57{bottom:1143.900000px;}
.y139{bottom:1154.340000px;}
.y56{bottom:1161.180000px;}
.h3c{height:17.100000px;}
.h36{height:17.280000px;}
.h3e{height:18.360000px;}
.h3d{height:19.260000px;}
.h28{height:19.440000px;}
.h25{height:19.476000px;}
.h27{height:19.620000px;}
.h2d{height:19.656000px;}
.h2f{height:19.800000px;}
.h26{height:19.980000px;}
.h2e{height:20.160000px;}
.h3f{height:20.340000px;}
.hc{height:24.840000px;}
.h41{height:27.147656px;}
.h14{height:29.520000px;}
.h13{height:32.103633px;}
.h2{height:32.976000px;}
.h3b{height:34.416000px;}
.h3a{height:34.560000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.756000px;}
.h35{height:37.705078px;}
.h34{height:37.805625px;}
.h1d{height:41.726953px;}
.h2a{height:41.827500px;}
.h1c{height:42.164648px;}
.h1f{height:42.186445px;}
.h23{height:43.506914px;}
.he{height:44.002969px;}
.h2b{height:44.606953px;}
.hb{height:44.820000px;}
.h39{height:46.736719px;}
.h19{height:46.881563px;}
.h4{height:47.223633px;}
.h17{height:47.980898px;}
.h21{height:48.027656px;}
.h22{height:48.207656px;}
.h24{height:48.312422px;}
.h1b{height:49.255313px;}
.h1a{height:49.742227px;}
.h2c{height:50.800781px;}
.h20{height:52.260820px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h18{height:56.574492px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:62.028281px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:207.750000px;}
.h29{height:278.100000px;}
.h32{height:283.140000px;}
.h33{height:298.440000px;}
.h31{height:300.420000px;}
.h37{height:302.580000px;}
.h38{height:303.480000px;}
.h30{height:323.820000px;}
.h40{height:324.000000px;}
.h16{height:448.410000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:71.100000px;}
.w3{width:74.880000px;}
.w30{width:75.780000px;}
.w35{width:85.500000px;}
.w33{width:85.536000px;}
.w2c{width:88.236000px;}
.w2f{width:106.380000px;}
.w2e{width:106.776000px;}
.w2d{width:126.360000px;}
.w2b{width:131.796000px;}
.we{width:136.656000px;}
.w5{width:151.950000px;}
.w31{width:158.070000px;}
.w24{width:165.450000px;}
.w26{width:168.330000px;}
.w25{width:169.230000px;}
.w27{width:169.410000px;}
.w1e{width:184.890000px;}
.w23{width:188.670000px;}
.w13{width:193.530000px;}
.w32{width:202.710000px;}
.w1b{width:203.250000px;}
.w18{width:205.590000px;}
.wc{width:206.310000px;}
.w34{width:211.890000px;}
.w8{width:223.275000px;}
.wa{width:247.575000px;}
.w16{width:249.555000px;}
.w10{width:252.210000px;}
.w19{width:255.315000px;}
.w1d{width:260.850000px;}
.w22{width:266.070000px;}
.w12{width:273.270000px;}
.w11{width:278.355000px;}
.w1a{width:286.590000px;}
.w17{width:290.010000px;}
.w21{width:290.415000px;}
.wb{width:291.270000px;}
.w1c{width:299.235000px;}
.wf{width:356.115000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.wd{width:658.080000px;}
.w15{width:663.120000px;}
.w2a{width:669.240000px;}
.w2{width:673.530000px;}
.w14{width:673.920000px;}
.w20{width:676.080000px;}
.w1f{width:678.240000px;}
.w29{width:681.840000px;}
.w36{width:702.000000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x27{left:7.560000px;}
.x2{left:8.640000px;}
.xd{left:11.880000px;}
.xf{left:39.996000px;}
.x22{left:60.120000px;}
.x34{left:63.390000px;}
.x76{left:64.515000px;}
.x6e{left:67.170000px;}
.x8a{left:68.190000px;}
.x1d{left:69.735000px;}
.x54{left:71.175000px;}
.x1{left:72.360000px;}
.x6a{left:75.060000px;}
.x4{left:80.999987px;}
.x10{left:87.150000px;}
.x81{left:95.400000px;}
.x5{left:98.130000px;}
.x62{left:105.480000px;}
.x13{left:108.035987px;}
.x2f{left:109.440000px;}
.x70{left:111.780000px;}
.x35{left:114.840000px;}
.x19{left:117.360000px;}
.x52{left:132.915000px;}
.x71{left:134.100000px;}
.x64{left:136.800000px;}
.x1b{left:137.910000px;}
.x51{left:139.650000px;}
.x31{left:140.790000px;}
.x63{left:143.535000px;}
.x1a{left:145.410000px;}
.x30{left:148.320000px;}
.x4a{left:149.685000px;}
.x49{left:157.215000px;}
.x83{left:159.555000px;}
.x82{left:166.320000px;}
.x36{left:176.010000px;}
.x72{left:179.460000px;}
.x53{left:187.125000px;}
.x65{left:196.560000px;}
.x1c{left:198.105000px;}
.x23{left:200.730000px;}
.x6f{left:205.710000px;}
.x73{left:207.720000px;}
.x25{left:210.630000px;}
.x11{left:215.175000px;}
.x84{left:217.335000px;}
.x1e{left:222.840000px;}
.x6{left:224.850000px;}
.x40{left:227.880000px;}
.x3c{left:230.430000px;}
.x7e{left:232.050000px;}
.x85{left:236.595000px;}
.x57{left:238.215000px;}
.x55{left:239.220000px;}
.x50{left:240.375000px;}
.x6b{left:244.830000px;}
.x32{left:250.530000px;}
.x7d{left:257.249987px;}
.x4d{left:260.205000px;}
.x79{left:267.149987px;}
.x8b{left:270.930000px;}
.x5d{left:272.189987px;}
.x59{left:275.609987px;}
.x47{left:278.534987px;}
.x37{left:279.720000px;}
.x18{left:281.594987px;}
.x29{left:282.854987px;}
.x14{left:284.474987px;}
.x24{left:285.734987px;}
.x9{left:288.435000px;}
.x78{left:294.914987px;}
.x12{left:296.175000px;}
.x5e{left:297.974987px;}
.x2e{left:302.294987px;}
.x2a{left:305.174987px;}
.xe{left:307.155000px;}
.x44{left:308.234987px;}
.x41{left:309.314987px;}
.x74{left:313.050000px;}
.x66{left:318.990000px;}
.x15{left:321.555000px;}
.x42{left:323.535000px;}
.x1f{left:328.350000px;}
.x3d{left:336.030000px;}
.x4b{left:342.285000px;}
.x7{left:346.395000px;}
.x67{left:351.030000px;}
.x2b{left:352.335000px;}
.x86{left:358.530000px;}
.x5a{left:364.395000px;}
.x8{left:367.635000px;}
.xb{left:369.975000px;}
.xc{left:373.575000px;}
.x87{left:377.430000px;}
.x6c{left:386.280000px;}
.x38{left:387.360000px;}
.x4e{left:395.565000px;}
.x8c{left:407.265000px;}
.x5f{left:409.575000px;}
.x39{left:415.695000px;}
.x7a{left:421.995000px;}
.x20{left:430.950000px;}
.x7f{left:435.495000px;}
.x3e{left:438.660000px;}
.xa{left:455.700000px;}
.x4c{left:457.920000px;}
.x68{left:471.135000px;}
.x33{left:485.970000px;}
.x69{left:490.500000px;}
.x3a{left:492.300000px;}
.x88{left:499.350000px;}
.x3b{left:501.870000px;}
.x89{left:518.250000px;}
.x75{left:521.925000px;}
.x56{left:527.040000px;}
.x6d{left:529.635000px;}
.x4f{left:530.895000px;}
.x21{left:532.110000px;}
.x3f{left:541.260000px;}
.x8d{left:548.070000px;}
.x26{left:567.645000px;}
.x60{left:578.625000px;}
.x16{left:613.545000px;}
.x45{left:616.605000px;}
.x2c{left:626.325000px;}
.x5b{left:631.185000px;}
.x48{left:634.965000px;}
.x7b{left:636.585000px;}
.x80{left:734.370000px;}
.x7c{left:744.090000px;}
.x3{left:745.890000px;}
.x61{left:748.770000px;}
.x17{left:775.589987px;}
.x2d{left:778.109987px;}
.x5c{left:781.169987px;}
.x28{left:783.509987px;}
.x46{left:784.589987px;}
.x43{left:785.669987px;}
.x58{left:787.469987px;}
.x77{left:797.549987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v5{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v1{vertical-align:18.560000pt;}
.ls1d{letter-spacing:-3.040000pt;}
.ls1c{letter-spacing:-2.880000pt;}
.ls1b{letter-spacing:-2.240000pt;}
.lsc{letter-spacing:-0.592000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.094933pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.058880pt;}
.ls13{letter-spacing:0.089600pt;}
.ls1{letter-spacing:0.117867pt;}
.ls11{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.183467pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.256000pt;}
.ls18{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls16{letter-spacing:0.448000pt;}
.ls6{letter-spacing:0.794880pt;}
.lsd{letter-spacing:0.800000pt;}
.ls8{letter-spacing:4.640000pt;}
.ls1a{letter-spacing:22.352640pt;}
.ls19{letter-spacing:46.672640pt;}
.ls10{letter-spacing:49.232640pt;}
.lse{letter-spacing:57.040640pt;}
.wsc{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws1d{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.463467pt;}
.ws17{word-spacing:-13.312000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.688000pt;}
.ws19{word-spacing:-12.032000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws1f{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws20{word-spacing:-10.400000pt;}
.wsa{word-spacing:-8.651520pt;}
.wsd{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
.wsf{word-spacing:216.800000pt;}
.ws10{word-spacing:242.560000pt;}
.ws11{word-spacing:297.440000pt;}
.ws14{word-spacing:302.826667pt;}
.ws16{word-spacing:402.848000pt;}
.ws15{word-spacing:403.072000pt;}
.ws1e{word-spacing:404.698667pt;}
.ws1c{word-spacing:427.466667pt;}
.ws1b{word-spacing:435.306667pt;}
.ws18{word-spacing:437.333333pt;}
.ws12{word-spacing:545.423360pt;}
.ws13{word-spacing:624.640000pt;}
._6{margin-left:-4.721920pt;}
._4{margin-left:-3.763627pt;}
._3{margin-left:-2.090667pt;}
._0{margin-left:-1.141333pt;}
._1{width:1.002667pt;}
._5{width:2.474667pt;}
._2{width:4.074667pt;}
._10{width:5.433813pt;}
._a{width:6.958720pt;}
._9{width:8.233600pt;}
._11{width:9.296000pt;}
._c{width:10.649813pt;}
._b{width:11.686400pt;}
._8{width:14.349013pt;}
._d{width:15.404800pt;}
._7{width:17.301973pt;}
._12{width:18.195413pt;}
._13{width:19.287893pt;}
._14{width:20.235947pt;}
._f{width:22.149760pt;}
._e{width:23.266560pt;}
._15{width:24.913280pt;}
._23{width:51.101440pt;}
._22{width:71.552640pt;}
._20{width:113.600000pt;}
._18{width:119.151573pt;}
._16{width:170.173013pt;}
._19{width:172.733013pt;}
._1d{width:175.530667pt;}
._1c{width:179.488000pt;}
._1b{width:222.919680pt;}
._1a{width:228.490667pt;}
._21{width:233.593259pt;}
._1f{width:238.058667pt;}
._1e{width:239.232000pt;}
._17{width:333.533013pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fsa{font-size:48.128000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y45{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y19a{bottom:3.360000pt;}
.y4a{bottom:3.520000pt;}
.y197{bottom:3.680000pt;}
.ya4{bottom:3.840000pt;}
.yc5{bottom:3.866667pt;}
.ya6{bottom:4.000000pt;}
.yc7{bottom:4.160000pt;}
.y1a{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.y48{bottom:9.440000pt;}
.y180{bottom:10.560000pt;}
.y1c{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y133{bottom:13.986667pt;}
.y15f{bottom:14.106667pt;}
.y1a7{bottom:14.146667pt;}
.ye9{bottom:14.373333pt;}
.y124{bottom:14.426667pt;}
.yfa{bottom:14.466667pt;}
.ybd{bottom:14.533333pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y182{bottom:18.106667pt;}
.y44{bottom:18.240000pt;}
.y49{bottom:19.840000pt;}
.y47{bottom:22.560000pt;}
.y19{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y132{bottom:28.933333pt;}
.y1a6{bottom:29.053333pt;}
.y15c{bottom:29.093333pt;}
.y15e{bottom:29.506667pt;}
.ye8{bottom:30.720000pt;}
.y123{bottom:30.746667pt;}
.ybc{bottom:30.786667pt;}
.y5{bottom:32.640000pt;}
.y43{bottom:33.440000pt;}
.y12b{bottom:39.680000pt;}
.y18{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.ye0{bottom:42.106667pt;}
.y16f{bottom:42.693333pt;}
.yb3{bottom:42.853333pt;}
.y170{bottom:43.173333pt;}
.y15d{bottom:43.333333pt;}
.y122{bottom:46.080000pt;}
.yf9{bottom:46.146667pt;}
.y42{bottom:48.800000pt;}
.y1{bottom:51.360000pt;}
.y19f{bottom:53.093333pt;}
.y166{bottom:53.440000pt;}
.y155{bottom:53.573333pt;}
.y17{bottom:55.560000pt;}
.y11c{bottom:57.466667pt;}
.yef{bottom:57.533333pt;}
.yb4{bottom:58.786667pt;}
.y12c{bottom:63.106667pt;}
.ye1{bottom:63.293333pt;}
.y41{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y16{bottom:70.120000pt;}
.y167{bottom:70.146667pt;}
.yf0{bottom:72.226667pt;}
.yb5{bottom:74.746667pt;}
.y156{bottom:75.360000pt;}
.y1a0{bottom:78.080000pt;}
.y40{bottom:79.520000pt;}
.y11d{bottom:79.680000pt;}
.yc2{bottom:81.826667pt;}
.y8{bottom:82.746667pt;}
.y15{bottom:84.200000pt;}
.ye2{bottom:84.453333pt;}
.y137{bottom:84.933333pt;}
.y12d{bottom:86.560000pt;}
.y168{bottom:86.853333pt;}
.yf1{bottom:86.946667pt;}
.y128{bottom:88.226667pt;}
.yb6{bottom:90.693333pt;}
.yec{bottom:91.386667pt;}
.y93{bottom:91.872000pt;}
.y14{bottom:93.480000pt;}
.y163{bottom:93.826667pt;}
.yb1{bottom:94.432000pt;}
.y3f{bottom:94.880000pt;}
.y174{bottom:95.106667pt;}
.y1c8{bottom:96.672000pt;}
.y157{bottom:97.146667pt;}
.yff{bottom:98.946667pt;}
.y7{bottom:99.066667pt;}
.y153{bottom:99.712000pt;}
.yde{bottom:100.192000pt;}
.y1ab{bottom:100.933333pt;}
.yf2{bottom:101.666667pt;}
.y11e{bottom:101.853333pt;}
.y11a{bottom:102.112000pt;}
.y1a1{bottom:103.040000pt;}
.yc1{bottom:103.133333pt;}
.y169{bottom:103.546667pt;}
.ye3{bottom:105.626667pt;}
.y55{bottom:106.112000pt;}
.yb7{bottom:106.626667pt;}
.y92{bottom:107.232000pt;}
.yb0{bottom:109.792000pt;}
.y13{bottom:109.800000pt;}
.y12e{bottom:110.013333pt;}
.y3e{bottom:110.240000pt;}
.y19d{bottom:111.552000pt;}
.y1c7{bottom:112.032000pt;}
.yfe{bottom:113.626667pt;}
.ydd{bottom:115.552000pt;}
.y152{bottom:115.712000pt;}
.y160{bottom:116.026667pt;}
.yf3{bottom:116.386667pt;}
.y136{bottom:117.506667pt;}
.y158{bottom:118.906667pt;}
.ybe{bottom:119.106667pt;}
.y16a{bottom:120.253333pt;}
.y54{bottom:121.472000pt;}
.yb8{bottom:122.586667pt;}
.y91{bottom:122.592000pt;}
.y119{bottom:123.072000pt;}
.y11f{bottom:124.026667pt;}
.y19c{bottom:124.672000pt;}
.yaf{bottom:124.992000pt;}
.y3d{bottom:125.440000pt;}
.y12{bottom:126.600000pt;}
.ye4{bottom:126.813333pt;}
.y1c6{bottom:127.392000pt;}
.y134{bottom:128.000000pt;}
.y1a2{bottom:128.026667pt;}
.yfd{bottom:129.573333pt;}
.ydc{bottom:130.912000pt;}
.yf4{bottom:131.066667pt;}
.y127{bottom:131.293333pt;}
.y12f{bottom:133.440000pt;}
.y151{bottom:134.586667pt;}
.y53{bottom:136.826667pt;}
.y16b{bottom:136.960000pt;}
.y161{bottom:137.826667pt;}
.y90{bottom:137.946667pt;}
.y118{bottom:138.266667pt;}
.yb9{bottom:138.533333pt;}
.yae{bottom:140.346667pt;}
.y159{bottom:140.706667pt;}
.y3c{bottom:140.800000pt;}
.y1c5{bottom:142.746667pt;}
.y19b{bottom:143.386667pt;}
.yeb{bottom:144.386667pt;}
.yf5{bottom:145.786667pt;}
.y120{bottom:146.240000pt;}
.ydb{bottom:146.266667pt;}
.y1aa{bottom:147.933333pt;}
.ye5{bottom:148.000000pt;}
.y11{bottom:149.480000pt;}
.y150{bottom:149.946667pt;}
.y52{bottom:152.186667pt;}
.y1a3{bottom:152.986667pt;}
.y8f{bottom:153.306667pt;}
.y117{bottom:153.626667pt;}
.y16c{bottom:153.666667pt;}
.yba{bottom:154.493333pt;}
.yad{bottom:155.706667pt;}
.y3b{bottom:156.160000pt;}
.y130{bottom:156.893333pt;}
.y125{bottom:156.986667pt;}
.y1c4{bottom:158.106667pt;}
.yf6{bottom:160.506667pt;}
.y199{bottom:161.146667pt;}
.yda{bottom:161.626667pt;}
.y15a{bottom:162.493333pt;}
.y14f{bottom:165.306667pt;}
.y51{bottom:167.546667pt;}
.y121{bottom:168.413333pt;}
.y8e{bottom:168.666667pt;}
.y116{bottom:168.986667pt;}
.ye6{bottom:169.186667pt;}
.y16d{bottom:170.373333pt;}
.ybb{bottom:170.426667pt;}
.yac{bottom:171.066667pt;}
.y10{bottom:171.240000pt;}
.y3a{bottom:171.520000pt;}
.y173{bottom:171.613333pt;}
.yfc{bottom:172.480000pt;}
.y1c3{bottom:173.306667pt;}
.yf7{bottom:175.226667pt;}
.yd9{bottom:176.986667pt;}
.y1a4{bottom:177.986667pt;}
.y1a9{bottom:178.080000pt;}
.y198{bottom:178.266667pt;}
.y2b{bottom:180.000000pt;}
.y131{bottom:180.346667pt;}
.y14e{bottom:180.666667pt;}
.ybf{bottom:181.760000pt;}
.y50{bottom:182.746667pt;}
.yab{bottom:183.546667pt;}
.yb2{bottom:183.680000pt;}
.y8d{bottom:183.866667pt;}
.y15b{bottom:184.293333pt;}
.y115{bottom:184.346667pt;}
.y39{bottom:186.880000pt;}
.y16e{bottom:187.066667pt;}
.y1c2{bottom:188.666667pt;}
.yf8{bottom:189.920000pt;}
.ye7{bottom:190.373333pt;}
.yd8{bottom:192.186667pt;}
.y2a{bottom:195.360000pt;}
.y14d{bottom:196.026667pt;}
.yc0{bottom:196.573333pt;}
.y135{bottom:197.120000pt;}
.y4f{bottom:198.106667pt;}
.y8c{bottom:199.226667pt;}
.y114{bottom:199.706667pt;}
.y126{bottom:200.186667pt;}
.y38{bottom:202.240000pt;}
.y172{bottom:202.533333pt;}
.y1a5{bottom:202.946667pt;}
.y1c1{bottom:204.026667pt;}
.yd7{bottom:204.666667pt;}
.yee{bottom:204.960000pt;}
.y29{bottom:210.720000pt;}
.y14c{bottom:211.386667pt;}
.y4e{bottom:213.466667pt;}
.y162{bottom:214.053333pt;}
.y8b{bottom:214.586667pt;}
.y113{bottom:215.066667pt;}
.yfb{bottom:216.613333pt;}
.y196{bottom:216.666667pt;}
.y37{bottom:217.440000pt;}
.y1c0{bottom:219.386667pt;}
.y171{bottom:221.733333pt;}
.yc3{bottom:222.173333pt;}
.y28{bottom:225.920000pt;}
.y14b{bottom:226.586667pt;}
.y129{bottom:226.746667pt;}
.y112{bottom:227.546667pt;}
.y12a{bottom:227.680000pt;}
.y4d{bottom:228.826667pt;}
.yea{bottom:229.120000pt;}
.y8a{bottom:229.946667pt;}
.y1a8{bottom:231.200000pt;}
.y195{bottom:232.026667pt;}
.y36{bottom:232.826667pt;}
.y1bf{bottom:234.746667pt;}
.y14a{bottom:239.066667pt;}
.y165{bottom:239.360000pt;}
.y138{bottom:240.253333pt;}
.y27{bottom:241.786667pt;}
.y100{bottom:242.053333pt;}
.y164{bottom:244.000000pt;}
.y4c{bottom:244.186667pt;}
.y89{bottom:245.306667pt;}
.y175{bottom:245.893333pt;}
.y194{bottom:247.386667pt;}
.y35{bottom:248.186667pt;}
.y1be{bottom:250.106667pt;}
.y26{bottom:256.666667pt;}
.y4b{bottom:259.546667pt;}
.y88{bottom:260.666667pt;}
.y193{bottom:262.746667pt;}
.yed{bottom:263.013333pt;}
.y1ac{bottom:263.040000pt;}
.y34{bottom:263.546667pt;}
.y1bd{bottom:265.306667pt;}
.y25{bottom:271.226667pt;}
.y46{bottom:271.866667pt;}
.y87{bottom:275.866667pt;}
.y192{bottom:277.946667pt;}
.y33{bottom:278.906667pt;}
.y1bc{bottom:280.666667pt;}
.y24{bottom:286.426667pt;}
.y86{bottom:291.226667pt;}
.y191{bottom:293.306667pt;}
.y32{bottom:294.106667pt;}
.y1bb{bottom:296.026667pt;}
.y23{bottom:301.946667pt;}
.y1d{bottom:304.546667pt;}
.y85{bottom:307.586667pt;}
.y190{bottom:308.706667pt;}
.y31{bottom:309.466667pt;}
.y1ba{bottom:311.426667pt;}
.y22{bottom:317.306667pt;}
.y84{bottom:322.946667pt;}
.y18f{bottom:324.066667pt;}
.y30{bottom:324.826667pt;}
.y1b9{bottom:326.786667pt;}
.y21{bottom:332.826667pt;}
.y83{bottom:338.306667pt;}
.y18e{bottom:339.426667pt;}
.y2f{bottom:340.186667pt;}
.y1b8{bottom:342.146667pt;}
.y20{bottom:348.506667pt;}
.y82{bottom:353.506667pt;}
.y18d{bottom:354.786667pt;}
.y2e{bottom:355.546667pt;}
.y1b7{bottom:357.346667pt;}
.y81{bottom:368.866667pt;}
.y18c{bottom:369.986667pt;}
.y2d{bottom:370.906667pt;}
.y1b6{bottom:372.706667pt;}
.y1f{bottom:372.826667pt;}
.y80{bottom:384.226667pt;}
.y18b{bottom:385.346667pt;}
.y2c{bottom:386.106667pt;}
.y1b5{bottom:388.066667pt;}
.y1e{bottom:388.506667pt;}
.y7f{bottom:400.546667pt;}
.y18a{bottom:400.706667pt;}
.y1b4{bottom:403.426667pt;}
.y7e{bottom:415.906667pt;}
.y189{bottom:416.066667pt;}
.y1b3{bottom:418.786667pt;}
.y7d{bottom:431.266667pt;}
.y188{bottom:431.426667pt;}
.yaa{bottom:433.666667pt;}
.y1b2{bottom:433.986667pt;}
.y187{bottom:444.546667pt;}
.y7c{bottom:446.466667pt;}
.ya9{bottom:446.786667pt;}
.y1b1{bottom:449.346667pt;}
.y186{bottom:460.546667pt;}
.y7b{bottom:462.786667pt;}
.y1b0{bottom:464.706667pt;}
.ya8{bottom:465.186667pt;}
.yd6{bottom:474.786667pt;}
.y185{bottom:476.546667pt;}
.y7a{bottom:478.146667pt;}
.y1af{bottom:480.066667pt;}
.ya7{bottom:483.106667pt;}
.yd5{bottom:487.906667pt;}
.y184{bottom:492.546667pt;}
.y79{bottom:494.466667pt;}
.y1ae{bottom:495.426667pt;}
.y111{bottom:495.746667pt;}
.ya5{bottom:501.186667pt;}
.yd4{bottom:506.146667pt;}
.y183{bottom:508.546667pt;}
.y110{bottom:508.866667pt;}
.y78{bottom:510.786667pt;}
.y149{bottom:511.906667pt;}
.ya3{bottom:519.586667pt;}
.yd3{bottom:524.226667pt;}
.y181{bottom:524.546667pt;}
.y148{bottom:525.026667pt;}
.y77{bottom:525.986667pt;}
.y10f{bottom:526.946667pt;}
.ya2{bottom:540.413333pt;}
.y76{bottom:541.373333pt;}
.yd2{bottom:542.173333pt;}
.y147{bottom:543.133333pt;}
.y10e{bottom:544.893333pt;}
.ya1{bottom:555.773333pt;}
.y75{bottom:556.733333pt;}
.yd1{bottom:560.573333pt;}
.y146{bottom:561.213333pt;}
.y10d{bottom:563.453333pt;}
.ya0{bottom:571.133333pt;}
.y74{bottom:572.093333pt;}
.y145{bottom:579.613333pt;}
.yd0{bottom:581.373333pt;}
.y10c{bottom:584.413333pt;}
.y9f{bottom:586.493333pt;}
.y17f{bottom:587.133333pt;}
.y73{bottom:587.453333pt;}
.ycf{bottom:596.733333pt;}
.y10b{bottom:599.773333pt;}
.y144{bottom:600.573333pt;}
.y9e{bottom:601.853333pt;}
.y72{bottom:602.813333pt;}
.yce{bottom:612.093333pt;}
.y10a{bottom:614.973333pt;}
.y143{bottom:615.933333pt;}
.y9d{bottom:617.053333pt;}
.y71{bottom:618.013333pt;}
.y17e{bottom:621.373333pt;}
.ycd{bottom:627.453333pt;}
.y109{bottom:630.333333pt;}
.y142{bottom:631.293333pt;}
.y9c{bottom:632.413333pt;}
.y70{bottom:633.373333pt;}
.y17d{bottom:636.733333pt;}
.ycc{bottom:642.813333pt;}
.y108{bottom:645.693333pt;}
.y141{bottom:646.653333pt;}
.y9b{bottom:647.773333pt;}
.y6f{bottom:648.733333pt;}
.y17c{bottom:652.093333pt;}
.ycb{bottom:658.173333pt;}
.y107{bottom:661.053333pt;}
.y140{bottom:661.853333pt;}
.y9a{bottom:663.133333pt;}
.y6e{bottom:664.093333pt;}
.y17b{bottom:667.453333pt;}
.yca{bottom:670.493333pt;}
.ydf{bottom:670.720000pt;}
.y106{bottom:676.413333pt;}
.y13f{bottom:677.213333pt;}
.y99{bottom:678.493333pt;}
.y6d{bottom:679.453333pt;}
.y17a{bottom:682.653333pt;}
.y105{bottom:688.893333pt;}
.y11b{bottom:688.960000pt;}
.y13e{bottom:692.573333pt;}
.y98{bottom:693.853333pt;}
.y6c{bottom:694.813333pt;}
.y179{bottom:698.013333pt;}
.y1b{bottom:703.133333pt;}
.y13d{bottom:705.053333pt;}
.y154{bottom:705.120000pt;}
.y97{bottom:709.053333pt;}
.y6b{bottom:710.013333pt;}
.y178{bottom:713.373333pt;}
.y96{bottom:724.413333pt;}
.y6a{bottom:725.373333pt;}
.y177{bottom:728.733333pt;}
.yf{bottom:729.373333pt;}
.y95{bottom:739.773333pt;}
.y69{bottom:740.733333pt;}
.y176{bottom:741.213333pt;}
.y19e{bottom:741.280000pt;}
.y94{bottom:755.133333pt;}
.y68{bottom:756.093333pt;}
.y67{bottom:771.453333pt;}
.y66{bottom:786.693333pt;}
.y65{bottom:802.053333pt;}
.y1ad{bottom:806.693333pt;}
.y64{bottom:817.413333pt;}
.y63{bottom:832.773333pt;}
.y62{bottom:848.133333pt;}
.y61{bottom:863.493333pt;}
.y60{bottom:878.693333pt;}
.y5f{bottom:894.053333pt;}
.y5e{bottom:909.413333pt;}
.yd{bottom:914.053333pt;}
.y5d{bottom:924.773333pt;}
.y6{bottom:936.453333pt;}
.y5c{bottom:940.133333pt;}
.y104{bottom:943.493333pt;}
.y5b{bottom:955.493333pt;}
.y103{bottom:956.613333pt;}
.yc9{bottom:961.413333pt;}
.y5a{bottom:970.693333pt;}
.yc8{bottom:974.533333pt;}
.y102{bottom:974.693333pt;}
.y13c{bottom:976.933333pt;}
.y59{bottom:986.053333pt;}
.y13b{bottom:990.053333pt;}
.yc6{bottom:992.613333pt;}
.y101{bottom:992.773333pt;}
.y58{bottom:1001.413333pt;}
.y13a{bottom:1008.133333pt;}
.yc4{bottom:1011.173333pt;}
.y57{bottom:1016.800000pt;}
.y139{bottom:1026.080000pt;}
.y56{bottom:1032.160000pt;}
.h3c{height:15.200000pt;}
.h36{height:15.360000pt;}
.h3e{height:16.320000pt;}
.h3d{height:17.120000pt;}
.h28{height:17.280000pt;}
.h25{height:17.312000pt;}
.h27{height:17.440000pt;}
.h2d{height:17.472000pt;}
.h2f{height:17.600000pt;}
.h26{height:17.760000pt;}
.h2e{height:17.920000pt;}
.h3f{height:18.080000pt;}
.hc{height:22.080000pt;}
.h41{height:24.131250pt;}
.h14{height:26.240000pt;}
.h13{height:28.536563pt;}
.h2{height:29.312000pt;}
.h3b{height:30.592000pt;}
.h3a{height:30.720000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.672000pt;}
.h35{height:33.515625pt;}
.h34{height:33.605000pt;}
.h1d{height:37.090625pt;}
.h2a{height:37.180000pt;}
.h1c{height:37.479688pt;}
.h1f{height:37.499062pt;}
.h23{height:38.672812pt;}
.he{height:39.113750pt;}
.h2b{height:39.650625pt;}
.hb{height:39.840000pt;}
.h39{height:41.543750pt;}
.h19{height:41.672500pt;}
.h4{height:41.976562pt;}
.h17{height:42.649687pt;}
.h21{height:42.691250pt;}
.h22{height:42.851250pt;}
.h24{height:42.944375pt;}
.h1b{height:43.782500pt;}
.h1a{height:44.215312pt;}
.h2c{height:45.156250pt;}
.h20{height:46.454062pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h18{height:50.288438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:55.136250pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:184.666667pt;}
.h29{height:247.200000pt;}
.h32{height:251.680000pt;}
.h33{height:265.280000pt;}
.h31{height:267.040000pt;}
.h37{height:268.960000pt;}
.h38{height:269.760000pt;}
.h30{height:287.840000pt;}
.h40{height:288.000000pt;}
.h16{height:398.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:63.200000pt;}
.w3{width:66.560000pt;}
.w30{width:67.360000pt;}
.w35{width:76.000000pt;}
.w33{width:76.032000pt;}
.w2c{width:78.432000pt;}
.w2f{width:94.560000pt;}
.w2e{width:94.912000pt;}
.w2d{width:112.320000pt;}
.w2b{width:117.152000pt;}
.we{width:121.472000pt;}
.w5{width:135.066667pt;}
.w31{width:140.506667pt;}
.w24{width:147.066667pt;}
.w26{width:149.626667pt;}
.w25{width:150.426667pt;}
.w27{width:150.586667pt;}
.w1e{width:164.346667pt;}
.w23{width:167.706667pt;}
.w13{width:172.026667pt;}
.w32{width:180.186667pt;}
.w1b{width:180.666667pt;}
.w18{width:182.746667pt;}
.wc{width:183.386667pt;}
.w34{width:188.346667pt;}
.w8{width:198.466667pt;}
.wa{width:220.066667pt;}
.w16{width:221.826667pt;}
.w10{width:224.186667pt;}
.w19{width:226.946667pt;}
.w1d{width:231.866667pt;}
.w22{width:236.506667pt;}
.w12{width:242.906667pt;}
.w11{width:247.426667pt;}
.w1a{width:254.746667pt;}
.w17{width:257.786667pt;}
.w21{width:258.146667pt;}
.wb{width:258.906667pt;}
.w1c{width:265.986667pt;}
.wf{width:316.546667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.wd{width:584.960000pt;}
.w15{width:589.440000pt;}
.w2a{width:594.880000pt;}
.w2{width:598.693333pt;}
.w14{width:599.040000pt;}
.w20{width:600.960000pt;}
.w1f{width:602.880000pt;}
.w29{width:606.080000pt;}
.w36{width:624.000000pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x27{left:6.720000pt;}
.x2{left:7.680000pt;}
.xd{left:10.560000pt;}
.xf{left:35.552000pt;}
.x22{left:53.440000pt;}
.x34{left:56.346667pt;}
.x76{left:57.346667pt;}
.x6e{left:59.706667pt;}
.x8a{left:60.613333pt;}
.x1d{left:61.986667pt;}
.x54{left:63.266667pt;}
.x1{left:64.320000pt;}
.x6a{left:66.720000pt;}
.x4{left:71.999988pt;}
.x10{left:77.466667pt;}
.x81{left:84.800000pt;}
.x5{left:87.226667pt;}
.x62{left:93.760000pt;}
.x13{left:96.031988pt;}
.x2f{left:97.280000pt;}
.x70{left:99.360000pt;}
.x35{left:102.080000pt;}
.x19{left:104.320000pt;}
.x52{left:118.146667pt;}
.x71{left:119.200000pt;}
.x64{left:121.600000pt;}
.x1b{left:122.586667pt;}
.x51{left:124.133333pt;}
.x31{left:125.146667pt;}
.x63{left:127.586667pt;}
.x1a{left:129.253333pt;}
.x30{left:131.840000pt;}
.x4a{left:133.053333pt;}
.x49{left:139.746667pt;}
.x83{left:141.826667pt;}
.x82{left:147.840000pt;}
.x36{left:156.453333pt;}
.x72{left:159.520000pt;}
.x53{left:166.333333pt;}
.x65{left:174.720000pt;}
.x1c{left:176.093333pt;}
.x23{left:178.426667pt;}
.x6f{left:182.853333pt;}
.x73{left:184.640000pt;}
.x25{left:187.226667pt;}
.x11{left:191.266667pt;}
.x84{left:193.186667pt;}
.x1e{left:198.080000pt;}
.x6{left:199.866667pt;}
.x40{left:202.560000pt;}
.x3c{left:204.826667pt;}
.x7e{left:206.266667pt;}
.x85{left:210.306667pt;}
.x57{left:211.746667pt;}
.x55{left:212.640000pt;}
.x50{left:213.666667pt;}
.x6b{left:217.626667pt;}
.x32{left:222.693333pt;}
.x7d{left:228.666655pt;}
.x4d{left:231.293333pt;}
.x79{left:237.466655pt;}
.x8b{left:240.826667pt;}
.x5d{left:241.946655pt;}
.x59{left:244.986655pt;}
.x47{left:247.586655pt;}
.x37{left:248.640000pt;}
.x18{left:250.306655pt;}
.x29{left:251.426655pt;}
.x14{left:252.866655pt;}
.x24{left:253.986655pt;}
.x9{left:256.386667pt;}
.x78{left:262.146655pt;}
.x12{left:263.266667pt;}
.x5e{left:264.866655pt;}
.x2e{left:268.706655pt;}
.x2a{left:271.266655pt;}
.xe{left:273.026667pt;}
.x44{left:273.986655pt;}
.x41{left:274.946655pt;}
.x74{left:278.266667pt;}
.x66{left:283.546667pt;}
.x15{left:285.826667pt;}
.x42{left:287.586667pt;}
.x1f{left:291.866667pt;}
.x3d{left:298.693333pt;}
.x4b{left:304.253333pt;}
.x7{left:307.906667pt;}
.x67{left:312.026667pt;}
.x2b{left:313.186667pt;}
.x86{left:318.693333pt;}
.x5a{left:323.906667pt;}
.x8{left:326.786667pt;}
.xb{left:328.866667pt;}
.xc{left:332.066667pt;}
.x87{left:335.493333pt;}
.x6c{left:343.360000pt;}
.x38{left:344.320000pt;}
.x4e{left:351.613333pt;}
.x8c{left:362.013333pt;}
.x5f{left:364.066667pt;}
.x39{left:369.506667pt;}
.x7a{left:375.106667pt;}
.x20{left:383.066667pt;}
.x7f{left:387.106667pt;}
.x3e{left:389.920000pt;}
.xa{left:405.066667pt;}
.x4c{left:407.040000pt;}
.x68{left:418.786667pt;}
.x33{left:431.973333pt;}
.x69{left:436.000000pt;}
.x3a{left:437.600000pt;}
.x88{left:443.866667pt;}
.x3b{left:446.106667pt;}
.x89{left:460.666667pt;}
.x75{left:463.933333pt;}
.x56{left:468.480000pt;}
.x6d{left:470.786667pt;}
.x4f{left:471.906667pt;}
.x21{left:472.986667pt;}
.x3f{left:481.120000pt;}
.x8d{left:487.173333pt;}
.x26{left:504.573333pt;}
.x60{left:514.333333pt;}
.x16{left:545.373333pt;}
.x45{left:548.093333pt;}
.x2c{left:556.733333pt;}
.x5b{left:561.053333pt;}
.x48{left:564.413333pt;}
.x7b{left:565.853333pt;}
.x80{left:652.773333pt;}
.x7c{left:661.413333pt;}
.x3{left:663.013333pt;}
.x61{left:665.573333pt;}
.x17{left:689.413322pt;}
.x2d{left:691.653322pt;}
.x5c{left:694.373322pt;}
.x28{left:696.453322pt;}
.x46{left:697.413322pt;}
.x43{left:698.373322pt;}
.x58{left:699.973322pt;}
.x77{left:708.933322pt;}
}




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