
    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_75ba811cb40de441b3c17c8b.woff')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_65d4ad4b766c2b6103b88d40.woff')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_98bcea9afbf0eb225b8b4aff.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_9e5501f57c0081122632a835.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8a2c87e061768bab518e5da4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.973145;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_81aa9aaf114b7ea0c426306f.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f039661180bc31085041b3a.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_82cc2e8cea6fe3e238a138e1.woff')format("woff");}.ffa{font-family:ffa;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fc8cc147901037a9333593b8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.944336;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_7df5a217c7d541d3eec4db56.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_93c97bf7b5fe2d33fa1f1b90.woff')format("woff");}.ffd{font-family:ffd;line-height:0.932617;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_18b9dd59760487f10c5808da.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_d4d0473178f16e2c6e1be6df.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4d01f588dab7f75b6d764eef.woff')format("woff");}.ff10{font-family:ff10;line-height:0.920410;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff12{font-family:ff12;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;}
.m3{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(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls2b{letter-spacing:-1.572000px;}
.ls1f{letter-spacing:-1.500000px;}
.ls1e{letter-spacing:-1.494000px;}
.ls33{letter-spacing:-1.332000px;}
.ls14{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.360000px;}
.ls34{letter-spacing:-0.259800px;}
.ls26{letter-spacing:-0.240600px;}
.ls27{letter-spacing:-0.214800px;}
.ls35{letter-spacing:-0.206400px;}
.ls2a{letter-spacing:-0.106800px;}
.ls20{letter-spacing:-0.058320px;}
.lsc{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.018000px;}
.ls15{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.012960px;}
.ls0{letter-spacing:0.036000px;}
.ls16{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.085800px;}
.ls29{letter-spacing:0.100800px;}
.ls1b{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.132600px;}
.ls28{letter-spacing:0.135600px;}
.ls31{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.206400px;}
.ls1{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.235920px;}
.lsd{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls30{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.306600px;}
.ls1d{letter-spacing:0.312000px;}
.ls6{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.660000px;}
.ls4{letter-spacing:0.786240px;}
.ls10{letter-spacing:0.864000px;}
.ls12{letter-spacing:0.978000px;}
.ls2d{letter-spacing:3.060000px;}
.ls19{letter-spacing:3.780000px;}
.ls17{letter-spacing:4.500000px;}
.lsf{letter-spacing:7.344000px;}
.ls2e{letter-spacing:8.100000px;}
.ls21{letter-spacing:8.820000px;}
.ls24{letter-spacing:9.540000px;}
.ls23{letter-spacing:9.660000px;}
.ls7{letter-spacing:16.020000px;}
.ls32{letter-spacing:16.506720px;}
.ls2c{letter-spacing:23.400000px;}
.ls2f{letter-spacing:23.940000px;}
.lse{letter-spacing:46.026720px;}
.ls1c{letter-spacing:79.374240px;}
.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;}
}
.ws6{word-spacing:-84.240000px;}
.ws2{word-spacing:-54.036000px;}
.ws13{word-spacing:-18.000000px;}
.ws22{word-spacing:-16.632000px;}
.ws4{word-spacing:-16.626360px;}
.ws5{word-spacing:-16.493760px;}
.ws3{word-spacing:-16.488000px;}
.ws9{word-spacing:-15.300000px;}
.ws17{word-spacing:-15.246600px;}
.wsf{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws25{word-spacing:-15.093600px;}
.ws18{word-spacing:-15.046800px;}
.ws15{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws1f{word-spacing:-14.833200px;}
.ws26{word-spacing:-14.733600px;}
.ws24{word-spacing:-14.680200px;}
.wsa{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.166000px;}
.ws1c{word-spacing:-14.165760px;}
.ws12{word-spacing:-13.860000px;}
.ws23{word-spacing:-13.608000px;}
.ws20{word-spacing:-13.606560px;}
.ws1d{word-spacing:-13.591560px;}
.ws1a{word-spacing:-13.505760px;}
.ws1b{word-spacing:-13.447440px;}
.ws16{word-spacing:-13.446000px;}
.ws1e{word-spacing:-13.290960px;}
.ws0{word-spacing:-12.204000px;}
.ws1{word-spacing:-12.186000px;}
.ws19{word-spacing:-12.005760px;}
.ws21{word-spacing:-11.966304px;}
.wsc{word-spacing:-9.732960px;}
.ws7{word-spacing:-9.720000px;}
.ws14{word-spacing:-9.711360px;}
.ws8{word-spacing:-9.000000px;}
.wse{word-spacing:0.000000px;}
._5{margin-left:-5.617440px;}
._4{margin-left:-3.417600px;}
._2{margin-left:-2.160000px;}
._0{margin-left:-1.080000px;}
._1{width:1.020000px;}
._3{width:2.592000px;}
._15{width:3.618240px;}
._8{width:4.619760px;}
._a{width:5.994720px;}
._9{width:7.793280px;}
._e{width:9.640080px;}
._f{width:10.793760px;}
._d{width:12.621360px;}
._7{width:13.749120px;}
._6{width:16.026960px;}
._1f{width:17.090400px;}
._18{width:18.126720px;}
._b{width:20.139120px;}
._c{width:22.100640px;}
._12{width:23.164320px;}
._14{width:24.312720px;}
._13{width:25.312800px;}
._10{width:31.553280px;}
._11{width:37.167120px;}
._19{width:59.726640px;}
._1a{width:73.147440px;}
._16{width:98.622240px;}
._20{width:141.120000px;}
._17{width:276.769200px;}
._1e{width:640.805760px;}
._1b{width:852.622320px;}
._1d{width:915.255840px;}
._1c{width:1247.340000px;}
.fc7{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(12,12,12);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fsa{font-size:2.880000px;}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs9{font-size:59.904000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd5{bottom:1.440000px;}
.y146{bottom:2.670000px;}
.yc3{bottom:2.805000px;}
.y141{bottom:2.850000px;}
.ybf{bottom:2.985000px;}
.y144{bottom:3.030000px;}
.y19{bottom:3.060000px;}
.y40{bottom:3.240000px;}
.ybd{bottom:3.345000px;}
.yc8{bottom:3.525000px;}
.y3{bottom:3.600000px;}
.yb5{bottom:3.705000px;}
.y154{bottom:3.750000px;}
.y94{bottom:3.780000px;}
.y96{bottom:3.960000px;}
.yfb{bottom:4.140000px;}
.ye6{bottom:4.320000px;}
.yde{bottom:4.500000px;}
.y101{bottom:5.220000px;}
.ya8{bottom:5.760000px;}
.yaa{bottom:5.940000px;}
.y104{bottom:7.020000px;}
.y11a{bottom:8.460000px;}
.yda{bottom:8.820000px;}
.ye{bottom:9.540000px;}
.yd0{bottom:9.975000px;}
.yd9{bottom:10.080000px;}
.yf6{bottom:11.160000px;}
.y159{bottom:11.520000px;}
.ycb{bottom:12.450000px;}
.yce{bottom:12.630000px;}
.y1b{bottom:12.780000px;}
.yc{bottom:13.860000px;}
.yf9{bottom:14.580000px;}
.y4{bottom:15.840000px;}
.yf8{bottom:16.020000px;}
.y115{bottom:16.914000px;}
.y10f{bottom:16.920000px;}
.y138{bottom:16.956000px;}
.yac{bottom:17.100000px;}
.y127{bottom:18.900000px;}
.y12d{bottom:18.945000px;}
.y16d{bottom:19.980000px;}
.y2{bottom:20.160000px;}
.ybc{bottom:20.265000px;}
.ye4{bottom:20.340000px;}
.yfd{bottom:20.370000px;}
.y3f{bottom:20.520000px;}
.ye5{bottom:21.600000px;}
.ydd{bottom:21.780000px;}
.y13b{bottom:21.885000px;}
.yc7{bottom:22.065000px;}
.y18{bottom:23.085000px;}
.y42{bottom:23.220000px;}
.y119{bottom:25.740000px;}
.yd8{bottom:27.180000px;}
.y5{bottom:28.260000px;}
.yf5{bottom:28.440000px;}
.y158{bottom:28.830000px;}
.yca{bottom:29.910000px;}
.ycd{bottom:30.090000px;}
.yb{bottom:30.240000px;}
.y112{bottom:30.780000px;}
.yd2{bottom:35.175000px;}
.ybb{bottom:36.825000px;}
.y3e{bottom:37.800000px;}
.y92{bottom:37.830000px;}
.y17{bottom:38.565000px;}
.ye2{bottom:38.880000px;}
.y13a{bottom:41.685000px;}
.yd7{bottom:44.460000px;}
.yf4{bottom:45.720000px;}
.yb4{bottom:46.005000px;}
.y157{bottom:46.110000px;}
.ya{bottom:46.440000px;}
.y111{bottom:48.060000px;}
.y1{bottom:48.960000px;}
.y152{bottom:52.350000px;}
.yba{bottom:53.385000px;}
.y16{bottom:54.045000px;}
.y3d{bottom:55.080000px;}
.ye1{bottom:55.980000px;}
.y16e{bottom:57.600000px;}
.y15{bottom:65.025000px;}
.yb9{bottom:69.765000px;}
.y3c{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y16c{bottom:78.300000px;}
.y14{bottom:84.465000px;}
.yb8{bottom:86.325000px;}
.y3b{bottom:89.460000px;}
.y13{bottom:92.565000px;}
.y8{bottom:93.090000px;}
.yb7{bottom:102.525000px;}
.y3a{bottom:106.740000px;}
.y12{bottom:107.145000px;}
.yb2{bottom:109.080000px;}
.y7{bottom:111.270000px;}
.y90{bottom:113.400000px;}
.y16b{bottom:115.560000px;}
.y116{bottom:116.460000px;}
.y53{bottom:118.980000px;}
.y1a8{bottom:123.120000px;}
.y39{bottom:124.020000px;}
.y137{bottom:125.280000px;}
.y11{bottom:125.865000px;}
.yb1{bottom:126.360000px;}
.y8f{bottom:130.680000px;}
.y52{bottom:136.296000px;}
.y1a7{bottom:140.436000px;}
.y38{bottom:141.300000px;}
.yb0{bottom:143.676000px;}
.y8e{bottom:147.816000px;}
.y114{bottom:148.176000px;}
.y10{bottom:150.165000px;}
.y51{bottom:153.570000px;}
.y136{bottom:156.990000px;}
.y1a6{bottom:157.710000px;}
.y37{bottom:158.580000px;}
.yaf{bottom:160.950000px;}
.y8d{bottom:165.090000px;}
.y50{bottom:170.850000px;}
.y29{bottom:174.960000px;}
.yae{bottom:174.990000px;}
.y36{bottom:175.680000px;}
.y113{bottom:179.850000px;}
.yc9{bottom:181.260000px;}
.y8c{bottom:182.370000px;}
.y4f{bottom:188.130000px;}
.y135{bottom:188.850000px;}
.y28{bottom:189.540000px;}
.y1a5{bottom:192.270000px;}
.y35{bottom:192.960000px;}
.y8b{bottom:199.650000px;}
.y4e{bottom:205.410000px;}
.y27{bottom:206.850000px;}
.y1a4{bottom:209.550000px;}
.y34{bottom:210.270000px;}
.y110{bottom:211.530000px;}
.y8a{bottom:216.930000px;}
.y4d{bottom:222.510000px;}
.y134{bottom:223.770000px;}
.y26{bottom:224.130000px;}
.y1a3{bottom:226.650000px;}
.y33{bottom:227.550000px;}
.y89{bottom:234.210000px;}
.y4c{bottom:239.790000px;}
.y133{bottom:241.050000px;}
.y25{bottom:241.410000px;}
.y1a2{bottom:243.930000px;}
.y32{bottom:244.830000px;}
.y88{bottom:251.310000px;}
.y4b{bottom:257.070000px;}
.y24{bottom:258.330000px;}
.y1a1{bottom:261.210000px;}
.y31{bottom:261.930000px;}
.y87{bottom:268.590000px;}
.y4a{bottom:274.350000px;}
.y23{bottom:274.710000px;}
.y132{bottom:275.430000px;}
.y1a0{bottom:278.490000px;}
.y30{bottom:279.210000px;}
.y86{bottom:285.870000px;}
.y22{bottom:291.090000px;}
.y49{bottom:291.630000px;}
.y131{bottom:292.710000px;}
.ycc{bottom:293.220000px;}
.y19f{bottom:295.770000px;}
.y2f{bottom:296.490000px;}
.y85{bottom:303.150000px;}
.y10e{bottom:306.030000px;}
.y21{bottom:307.470000px;}
.y48{bottom:308.910000px;}
.y130{bottom:309.990000px;}
.y19e{bottom:313.050000px;}
.y2e{bottom:313.770000px;}
.y84{bottom:320.430000px;}
.y20{bottom:323.850000px;}
.y47{bottom:326.010000px;}
.y12f{bottom:327.270000px;}
.y19d{bottom:330.150000px;}
.y2d{bottom:331.050000px;}
.y83{bottom:337.530000px;}
.y10d{bottom:341.130000px;}
.y12e{bottom:342.030000px;}
.y1f{bottom:343.110000px;}
.y46{bottom:343.290000px;}
.y19c{bottom:347.430000px;}
.y2c{bottom:348.330000px;}
.y82{bottom:354.810000px;}
.yd1{bottom:358.020000px;}
.y10c{bottom:358.230000px;}
.y45{bottom:360.570000px;}
.y19b{bottom:364.710000px;}
.y2b{bottom:365.430000px;}
.y16a{bottom:367.950000px;}
.y1e{bottom:368.850000px;}
.y81{bottom:372.090000px;}
.yd3{bottom:374.970000px;}
.y10b{bottom:375.510000px;}
.y12c{bottom:375.690000px;}
.y44{bottom:377.850000px;}
.y19a{bottom:381.990000px;}
.y2a{bottom:382.710000px;}
.y169{bottom:385.050000px;}
.y1d{bottom:385.410000px;}
.y80{bottom:389.415000px;}
.y10a{bottom:392.835000px;}
.y43{bottom:395.175000px;}
.y199{bottom:399.315000px;}
.y7f{bottom:406.695000px;}
.y168{bottom:408.135000px;}
.y41{bottom:409.035000px;}
.ycf{bottom:409.320000px;}
.y12b{bottom:409.395000px;}
.y109{bottom:410.115000px;}
.y198{bottom:416.595000px;}
.y7e{bottom:423.975000px;}
.y108{bottom:427.395000px;}
.y197{bottom:433.695000px;}
.y7d{bottom:441.075000px;}
.y12a{bottom:443.055000px;}
.y1c{bottom:443.595000px;}
.y107{bottom:444.675000px;}
.y196{bottom:450.975000px;}
.y7c{bottom:458.355000px;}
.yad{bottom:459.435000px;}
.y106{bottom:459.795000px;}
.y1a9{bottom:468.255000px;}
.y195{bottom:473.475000px;}
.yab{bottom:474.195000px;}
.y7b{bottom:475.635000px;}
.y129{bottom:476.715000px;}
.y194{bottom:485.535000px;}
.y105{bottom:490.935000px;}
.y7a{bottom:492.915000px;}
.y193{bottom:502.815000px;}
.ya9{bottom:506.055000px;}
.y79{bottom:510.195000px;}
.y128{bottom:510.375000px;}
.y192{bottom:519.915000px;}
.y103{bottom:522.075000px;}
.ya7{bottom:526.755000px;}
.y78{bottom:527.475000px;}
.y191{bottom:537.195000px;}
.y126{bottom:544.035000px;}
.y102{bottom:544.215000px;}
.y77{bottom:544.755000px;}
.ya6{bottom:550.515000px;}
.y190{bottom:554.475000px;}
.y100{bottom:563.475000px;}
.y76{bottom:564.735000px;}
.ya5{bottom:567.795000px;}
.y18f{bottom:571.755000px;}
.y125{bottom:580.935000px;}
.yff{bottom:583.815000px;}
.y75{bottom:584.895000px;}
.ya4{bottom:585.075000px;}
.y18e{bottom:589.035000px;}
.y124{bottom:598.215000px;}
.ya3{bottom:602.355000px;}
.yfe{bottom:603.075000px;}
.y167{bottom:603.795000px;}
.y74{bottom:604.875000px;}
.y18d{bottom:606.315000px;}
.y123{bottom:615.495000px;}
.ya2{bottom:619.635000px;}
.yfc{bottom:621.435000px;}
.y18c{bottom:623.415000px;}
.y73{bottom:624.855000px;}
.y122{bottom:632.775000px;}
.ya1{bottom:636.735000px;}
.y18b{bottom:640.725000px;}
.y72{bottom:642.165000px;}
.y121{bottom:650.085000px;}
.ya0{bottom:654.045000px;}
.yfa{bottom:656.925000px;}
.y18a{bottom:658.005000px;}
.y71{bottom:659.445000px;}
.y120{bottom:667.365000px;}
.y9f{bottom:668.085000px;}
.y189{bottom:675.285000px;}
.yf3{bottom:676.185000px;}
.y70{bottom:676.725000px;}
.y11f{bottom:681.225000px;}
.yc6{bottom:691.200000px;}
.y188{bottom:692.565000px;}
.y139{bottom:694.260000px;}
.y6f{bottom:696.705000px;}
.yf7{bottom:705.885000px;}
.y187{bottom:709.845000px;}
.y6e{bottom:716.865000px;}
.y186{bottom:726.945000px;}
.yb6{bottom:731.340000px;}
.y6d{bottom:736.845000px;}
.yf2{bottom:740.265000px;}
.y185{bottom:744.225000px;}
.y6c{bottom:753.945000px;}
.yc5{bottom:754.560000px;}
.yf1{bottom:757.545000px;}
.y184{bottom:761.505000px;}
.yd4{bottom:762.405000px;}
.yc4{bottom:764.460000px;}
.y6b{bottom:771.225000px;}
.yf0{bottom:774.825000px;}
.y183{bottom:778.785000px;}
.yc0{bottom:784.080000px;}
.yc1{bottom:787.500000px;}
.y6a{bottom:788.505000px;}
.yc2{bottom:790.920000px;}
.yef{bottom:792.105000px;}
.y182{bottom:796.065000px;}
.y69{bottom:805.785000px;}
.yee{bottom:809.205000px;}
.y166{bottom:812.625000px;}
.y181{bottom:813.165000px;}
.y68{bottom:823.065000px;}
.yed{bottom:826.485000px;}
.y165{bottom:829.905000px;}
.y180{bottom:830.445000px;}
.ybe{bottom:833.580000px;}
.y67{bottom:840.165000px;}
.y1a{bottom:840.345000px;}
.yb3{bottom:843.480000px;}
.yec{bottom:843.765000px;}
.y164{bottom:847.185000px;}
.y17f{bottom:847.725000px;}
.y66{bottom:857.445000px;}
.yeb{bottom:858.885000px;}
.y13c{bottom:860.040000px;}
.y163{bottom:864.465000px;}
.y17e{bottom:865.005000px;}
.y13d{bottom:869.040000px;}
.yf{bottom:869.865000px;}
.y65{bottom:874.725000px;}
.yea{bottom:877.245000px;}
.y13e{bottom:877.500000px;}
.y162{bottom:881.565000px;}
.y17d{bottom:882.285000px;}
.y13f{bottom:886.320000px;}
.y64{bottom:892.005000px;}
.y155{bottom:894.210000px;}
.y142{bottom:894.780000px;}
.ye9{bottom:898.350000px;}
.y161{bottom:898.890000px;}
.y140{bottom:898.920000px;}
.y17c{bottom:899.610000px;}
.y147{bottom:903.420000px;}
.y143{bottom:907.380000px;}
.y63{bottom:909.330000px;}
.y145{bottom:912.060000px;}
.y160{bottom:916.170000px;}
.y148{bottom:916.380000px;}
.y17b{bottom:916.710000px;}
.ye8{bottom:919.410000px;}
.y14a{bottom:920.880000px;}
.y149{bottom:924.840000px;}
.y9e{bottom:925.710000px;}
.y62{bottom:926.610000px;}
.y14c{bottom:929.340000px;}
.y15f{bottom:930.930000px;}
.y14b{bottom:933.660000px;}
.y17a{bottom:933.990000px;}
.y14e{bottom:938.160000px;}
.ye7{bottom:940.470000px;}
.y9d{bottom:940.830000px;}
.y14d{bottom:941.940000px;}
.y61{bottom:943.710000px;}
.y150{bottom:946.620000px;}
.y14f{bottom:950.760000px;}
.y179{bottom:951.270000px;}
.y151{bottom:959.220000px;}
.y9c{bottom:959.730000px;}
.y60{bottom:960.990000px;}
.ye0{bottom:961.530000px;}
.y15e{bottom:962.610000px;}
.y178{bottom:968.550000px;}
.y5f{bottom:978.270000px;}
.y9b{bottom:978.810000px;}
.y177{bottom:985.830000px;}
.y153{bottom:990.870000px;}
.y15d{bottom:994.470000px;}
.y5e{bottom:995.550000px;}
.ye3{bottom:997.170000px;}
.y9a{bottom:997.890000px;}
.y176{bottom:1003.110000px;}
.y5d{bottom:1012.830000px;}
.y99{bottom:1016.790000px;}
.y175{bottom:1020.210000px;}
.y15c{bottom:1026.150000px;}
.y5c{bottom:1030.110000px;}
.ydc{bottom:1032.630000px;}
.yd{bottom:1035.150000px;}
.y98{bottom:1035.870000px;}
.y174{bottom:1037.490000px;}
.y11e{bottom:1044.510000px;}
.y5b{bottom:1047.210000px;}
.ydf{bottom:1051.170000px;}
.y97{bottom:1054.770000px;}
.y15b{bottom:1057.830000px;}
.y6{bottom:1060.530000px;}
.y11d{bottom:1061.790000px;}
.y5a{bottom:1064.490000px;}
.ydb{bottom:1069.530000px;}
.y173{bottom:1072.050000px;}
.y95{bottom:1073.850000px;}
.y11c{bottom:1076.550000px;}
.y11b{bottom:1077.270000px;}
.y59{bottom:1081.770000px;}
.yd6{bottom:1087.890000px;}
.y172{bottom:1089.330000px;}
.y15a{bottom:1089.510000px;}
.y93{bottom:1092.930000px;}
.y58{bottom:1099.050000px;}
.y171{bottom:1106.610000px;}
.y118{bottom:1109.130000px;}
.y91{bottom:1111.830000px;}
.y57{bottom:1116.330000px;}
.y156{bottom:1121.190000px;}
.y170{bottom:1123.710000px;}
.y56{bottom:1133.610000px;}
.y16f{bottom:1140.990000px;}
.y117{bottom:1150.380000px;}
.y55{bottom:1150.740000px;}
.y54{bottom:1168.020000px;}
.h4b{height:2.010938px;}
.h4e{height:14.940000px;}
.h2c{height:15.120000px;}
.h38{height:17.100000px;}
.h3a{height:17.280000px;}
.h23{height:17.820000px;}
.h24{height:18.000000px;}
.h41{height:18.180000px;}
.h43{height:19.260000px;}
.h25{height:19.800000px;}
.h26{height:19.980000px;}
.h3d{height:20.016000px;}
.h44{height:21.060000px;}
.h37{height:22.860000px;}
.hc{height:25.020000px;}
.h12{height:25.136719px;}
.h13{height:25.804688px;}
.h30{height:26.820000px;}
.h51{height:27.147656px;}
.h40{height:28.620000px;}
.h15{height:29.520000px;}
.h45{height:29.880000px;}
.h3f{height:30.060000px;}
.h46{height:30.960000px;}
.h48{height:30.996000px;}
.h28{height:31.140000px;}
.h2{height:32.940000px;}
.h4c{height:32.976000px;}
.h18{height:33.683203px;}
.h3c{height:34.380000px;}
.h42{height:34.416000px;}
.h1e{height:34.560000px;}
.h1d{height:34.578281px;}
.h36{height:34.596000px;}
.h39{height:35.640000px;}
.h9{height:36.180000px;}
.h14{height:38.707031px;}
.h49{height:39.636000px;}
.h1a{height:39.716016px;}
.h1b{height:40.771406px;}
.h10{height:41.726953px;}
.h19{height:42.164648px;}
.h2e{height:42.480000px;}
.h2f{height:42.660000px;}
.h1c{height:42.835781px;}
.h4{height:43.453125px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h6{height:46.251562px;}
.h1f{height:48.027656px;}
.h52{height:48.147656px;}
.h11{height:48.312422px;}
.h8{height:50.273438px;}
.h16{height:50.800781px;}
.h32{height:50.940000px;}
.h27{height:51.840000px;}
.h22{height:51.876000px;}
.h21{height:52.417969px;}
.ha{height:54.000000px;}
.h4d{height:54.180000px;}
.h3{height:55.291992px;}
.h35{height:58.536000px;}
.h2a{height:59.439023px;}
.h33{height:59.582250px;}
.h3e{height:59.760000px;}
.h50{height:60.156000px;}
.h2d{height:61.189805px;}
.h47{height:62.100000px;}
.hf{height:63.180000px;}
.h4f{height:66.960000px;}
.h3b{height:70.020000px;}
.h5{height:71.613281px;}
.h34{height:72.900000px;}
.h4a{height:73.116000px;}
.h31{height:83.787539px;}
.h29{height:86.255508px;}
.h2b{height:114.300000px;}
.h7{height:121.536000px;}
.hd{height:165.270000px;}
.h17{height:396.750000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w13{width:9.180000px;}
.w14{width:9.360000px;}
.w12{width:16.740000px;}
.w11{width:16.920000px;}
.w3c{width:17.820000px;}
.w1a{width:18.000000px;}
.w16{width:37.440000px;}
.w17{width:53.280000px;}
.w19{width:61.020000px;}
.w3{width:74.736000px;}
.w2e{width:85.860000px;}
.w29{width:86.220000px;}
.w1d{width:92.376000px;}
.w1e{width:92.520000px;}
.w1f{width:92.556000px;}
.w25{width:92.700000px;}
.w24{width:92.736000px;}
.w2f{width:98.136000px;}
.w2a{width:98.496000px;}
.w3a{width:104.220000px;}
.w2d{width:110.736000px;}
.w28{width:110.916000px;}
.w38{width:114.876000px;}
.w2c{width:122.940000px;}
.w27{width:123.120000px;}
.w36{width:125.316000px;}
.w34{width:128.196000px;}
.w20{width:131.040000px;}
.w21{width:131.256000px;}
.w39{width:132.876000px;}
.w37{width:137.340000px;}
.w32{width:138.060000px;}
.w33{width:142.416000px;}
.w10{width:143.640000px;}
.w5{width:155.370000px;}
.w31{width:177.510000px;}
.w1c{width:186.150000px;}
.w23{width:186.330000px;}
.w18{width:195.660000px;}
.wb{width:197.130000px;}
.w2b{width:197.670000px;}
.w26{width:198.030000px;}
.wd{width:210.630000px;}
.w35{width:218.190000px;}
.w8{width:221.115000px;}
.wc{width:251.355000px;}
.wf{width:258.915000px;}
.we{width:259.050000px;}
.w1b{width:263.370000px;}
.w22{width:263.730000px;}
.wa{width:280.470000px;}
.w3b{width:404.640000px;}
.w15{width:419.580000px;}
.w9{width:526.605000px;}
.w6{width:592.170000px;}
.w2{width:673.890000px;}
.w30{width:731.490000px;}
.w7{width:747.720000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x63{left:-34.020000px;}
.x56{left:-14.040000px;}
.x0{left:0.000000px;}
.x7f{left:1.290000px;}
.x4e{left:2.625000px;}
.x52{left:5.835000px;}
.x2{left:8.676000px;}
.x13{left:12.600000px;}
.x64{left:17.100000px;}
.x5a{left:19.980000px;}
.x74{left:23.685000px;}
.x57{left:29.880000px;}
.x59{left:34.380000px;}
.x60{left:35.460000px;}
.x5e{left:39.060000px;}
.x5b{left:41.220000px;}
.x5d{left:42.840000px;}
.xc{left:45.936000px;}
.x30{left:66.990000px;}
.x1{left:72.360000px;}
.x2a{left:75.779987px;}
.x32{left:77.625000px;}
.x4{left:81.035987px;}
.x28{left:83.375987px;}
.xd{left:86.790000px;}
.x39{left:87.870000px;}
.xe{left:89.670000px;}
.x36{left:91.470000px;}
.x34{left:95.250000px;}
.x5{left:98.130000px;}
.x29{left:101.375987px;}
.x3d{left:108.035987px;}
.x62{left:109.254000px;}
.x33{left:114.885000px;}
.x38{left:116.094000px;}
.x35{left:118.074000px;}
.x2e{left:119.514000px;}
.xf{left:123.150000px;}
.x10{left:124.950000px;}
.x37{left:127.074000px;}
.x21{left:133.415987px;}
.x83{left:135.035987px;}
.x84{left:139.715987px;}
.x86{left:141.155987px;}
.x22{left:143.315987px;}
.x23{left:153.929987px;}
.x87{left:158.249987px;}
.x61{left:165.989987px;}
.x4c{left:179.565000px;}
.x24{left:189.749987px;}
.x25{left:200.369987px;}
.x82{left:201.990000px;}
.x88{left:205.229987px;}
.x81{left:207.465000px;}
.x6b{left:210.989987px;}
.x26{left:212.069987px;}
.x5f{left:213.150000px;}
.x11{left:215.175000px;}
.x89{left:216.749987px;}
.x44{left:219.060000px;}
.x27{left:222.689987px;}
.x6{left:228.270000px;}
.x78{left:230.940000px;}
.x75{left:238.500000px;}
.x7e{left:246.600000px;}
.x3e{left:256.754987px;}
.x4b{left:259.020000px;}
.x42{left:264.674987px;}
.x2d{left:266.294987px;}
.x3b{left:271.694987px;}
.x48{left:278.460000px;}
.x66{left:279.795000px;}
.x9{left:285.375000px;}
.x7a{left:288.540000px;}
.x51{left:289.980000px;}
.x3f{left:292.395000px;}
.x12{left:293.835000px;}
.x6f{left:299.955000px;}
.x53{left:305.174987px;}
.x65{left:312.554987px;}
.x77{left:315.900000px;}
.x2b{left:320.474987px;}
.x46{left:330.300000px;}
.x2c{left:331.994987px;}
.x7{left:345.135000px;}
.x50{left:350.820000px;}
.x2f{left:362.775000px;}
.x8{left:364.440000px;}
.xb{left:373.785000px;}
.x43{left:376.740000px;}
.x6c{left:398.055000px;}
.x67{left:403.815000px;}
.x73{left:405.360000px;}
.x80{left:423.464987px;}
.x70{left:425.985000px;}
.x85{left:437.864987px;}
.x58{left:439.125000px;}
.x45{left:441.360000px;}
.x3c{left:446.684987px;}
.xa{left:452.640000px;}
.x4d{left:465.840000px;}
.x14{left:469.364987px;}
.x7c{left:477.000000px;}
.x15{left:480.704987px;}
.x47{left:496.800000px;}
.x68{left:515.445000px;}
.x16{left:516.524987px;}
.x17{left:528.044987px;}
.x54{left:532.725000px;}
.x7b{left:536.040000px;}
.x6d{left:541.185000px;}
.x40{left:552.165000px;}
.x7d{left:559.440000px;}
.x31{left:561.165000px;}
.x71{left:564.045000px;}
.x18{left:589.649987px;}
.x19{left:601.169987px;}
.x49{left:611.820000px;}
.x79{left:622.260000px;}
.x55{left:626.370000px;}
.x4f{left:627.480000px;}
.x76{left:645.660000px;}
.x1a{left:654.449987px;}
.x1b{left:665.969987px;}
.x4a{left:667.260000px;}
.x72{left:679.650000px;}
.x6e{left:684.330000px;}
.x41{left:699.809987px;}
.x1c{left:703.409987px;}
.x69{left:713.490000px;}
.x1d{left:714.929987px;}
.x5c{left:719.970000px;}
.x6a{left:737.069987px;}
.x3{left:746.250000px;}
.x3a{left:753.809987px;}
.x1e{left:760.319987px;}
.x1f{left:771.839987px;}
.x20{left:812.519987px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls2b{letter-spacing:-1.397333pt;}
.ls1f{letter-spacing:-1.333333pt;}
.ls1e{letter-spacing:-1.328000pt;}
.ls33{letter-spacing:-1.184000pt;}
.ls14{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls34{letter-spacing:-0.230933pt;}
.ls26{letter-spacing:-0.213867pt;}
.ls27{letter-spacing:-0.190933pt;}
.ls35{letter-spacing:-0.183467pt;}
.ls2a{letter-spacing:-0.094933pt;}
.ls20{letter-spacing:-0.051840pt;}
.lsc{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls15{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.011520pt;}
.ls0{letter-spacing:0.032000pt;}
.ls16{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.076267pt;}
.ls29{letter-spacing:0.089600pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.117867pt;}
.ls28{letter-spacing:0.120533pt;}
.ls31{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.183467pt;}
.ls1{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.209707pt;}
.lsd{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls30{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.272533pt;}
.ls1d{letter-spacing:0.277333pt;}
.ls6{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.586667pt;}
.ls4{letter-spacing:0.698880pt;}
.ls10{letter-spacing:0.768000pt;}
.ls12{letter-spacing:0.869333pt;}
.ls2d{letter-spacing:2.720000pt;}
.ls19{letter-spacing:3.360000pt;}
.ls17{letter-spacing:4.000000pt;}
.lsf{letter-spacing:6.528000pt;}
.ls2e{letter-spacing:7.200000pt;}
.ls21{letter-spacing:7.840000pt;}
.ls24{letter-spacing:8.480000pt;}
.ls23{letter-spacing:8.586667pt;}
.ls7{letter-spacing:14.240000pt;}
.ls32{letter-spacing:14.672640pt;}
.ls2c{letter-spacing:20.800000pt;}
.ls2f{letter-spacing:21.280000pt;}
.lse{letter-spacing:40.912640pt;}
.ls1c{letter-spacing:70.554880pt;}
.ws6{word-spacing:-74.880000pt;}
.ws2{word-spacing:-48.032000pt;}
.ws13{word-spacing:-16.000000pt;}
.ws22{word-spacing:-14.784000pt;}
.ws4{word-spacing:-14.778987pt;}
.ws5{word-spacing:-14.661120pt;}
.ws3{word-spacing:-14.656000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws17{word-spacing:-13.552533pt;}
.wsf{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws25{word-spacing:-13.416533pt;}
.ws18{word-spacing:-13.374933pt;}
.ws15{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws1f{word-spacing:-13.185067pt;}
.ws26{word-spacing:-13.096533pt;}
.ws24{word-spacing:-13.049067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.592000pt;}
.ws1c{word-spacing:-12.591787pt;}
.ws12{word-spacing:-12.320000pt;}
.ws23{word-spacing:-12.096000pt;}
.ws20{word-spacing:-12.094720pt;}
.ws1d{word-spacing:-12.081387pt;}
.ws1a{word-spacing:-12.005120pt;}
.ws1b{word-spacing:-11.953280pt;}
.ws16{word-spacing:-11.952000pt;}
.ws1e{word-spacing:-11.814187pt;}
.ws0{word-spacing:-10.848000pt;}
.ws1{word-spacing:-10.832000pt;}
.ws19{word-spacing:-10.671787pt;}
.ws21{word-spacing:-10.636715pt;}
.wsc{word-spacing:-8.651520pt;}
.ws7{word-spacing:-8.640000pt;}
.ws14{word-spacing:-8.632320pt;}
.ws8{word-spacing:-8.000000pt;}
.wse{word-spacing:0.000000pt;}
._5{margin-left:-4.993280pt;}
._4{margin-left:-3.037867pt;}
._2{margin-left:-1.920000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.906667pt;}
._3{width:2.304000pt;}
._15{width:3.216213pt;}
._8{width:4.106453pt;}
._a{width:5.328640pt;}
._9{width:6.927360pt;}
._e{width:8.568960pt;}
._f{width:9.594453pt;}
._d{width:11.218987pt;}
._7{width:12.221440pt;}
._6{width:14.246187pt;}
._1f{width:15.191467pt;}
._18{width:16.112640pt;}
._b{width:17.901440pt;}
._c{width:19.645013pt;}
._12{width:20.590507pt;}
._14{width:21.611307pt;}
._13{width:22.500267pt;}
._10{width:28.047360pt;}
._11{width:33.037440pt;}
._19{width:53.090347pt;}
._1a{width:65.019947pt;}
._16{width:87.664213pt;}
._20{width:125.440000pt;}
._17{width:246.017067pt;}
._1e{width:569.605120pt;}
._1b{width:757.886507pt;}
._1d{width:813.560747pt;}
._1c{width:1108.746667pt;}
.fsa{font-size:2.560000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs9{font-size:53.248000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd5{bottom:1.280000pt;}
.y146{bottom:2.373333pt;}
.yc3{bottom:2.493333pt;}
.y141{bottom:2.533333pt;}
.ybf{bottom:2.653333pt;}
.y144{bottom:2.693333pt;}
.y19{bottom:2.720000pt;}
.y40{bottom:2.880000pt;}
.ybd{bottom:2.973333pt;}
.yc8{bottom:3.133333pt;}
.y3{bottom:3.200000pt;}
.yb5{bottom:3.293333pt;}
.y154{bottom:3.333333pt;}
.y94{bottom:3.360000pt;}
.y96{bottom:3.520000pt;}
.yfb{bottom:3.680000pt;}
.ye6{bottom:3.840000pt;}
.yde{bottom:4.000000pt;}
.y101{bottom:4.640000pt;}
.ya8{bottom:5.120000pt;}
.yaa{bottom:5.280000pt;}
.y104{bottom:6.240000pt;}
.y11a{bottom:7.520000pt;}
.yda{bottom:7.840000pt;}
.ye{bottom:8.480000pt;}
.yd0{bottom:8.866667pt;}
.yd9{bottom:8.960000pt;}
.yf6{bottom:9.920000pt;}
.y159{bottom:10.240000pt;}
.ycb{bottom:11.066667pt;}
.yce{bottom:11.226667pt;}
.y1b{bottom:11.360000pt;}
.yc{bottom:12.320000pt;}
.yf9{bottom:12.960000pt;}
.y4{bottom:14.080000pt;}
.yf8{bottom:14.240000pt;}
.y115{bottom:15.034667pt;}
.y10f{bottom:15.040000pt;}
.y138{bottom:15.072000pt;}
.yac{bottom:15.200000pt;}
.y127{bottom:16.800000pt;}
.y12d{bottom:16.840000pt;}
.y16d{bottom:17.760000pt;}
.y2{bottom:17.920000pt;}
.ybc{bottom:18.013333pt;}
.ye4{bottom:18.080000pt;}
.yfd{bottom:18.106667pt;}
.y3f{bottom:18.240000pt;}
.ye5{bottom:19.200000pt;}
.ydd{bottom:19.360000pt;}
.y13b{bottom:19.453333pt;}
.yc7{bottom:19.613333pt;}
.y18{bottom:20.520000pt;}
.y42{bottom:20.640000pt;}
.y119{bottom:22.880000pt;}
.yd8{bottom:24.160000pt;}
.y5{bottom:25.120000pt;}
.yf5{bottom:25.280000pt;}
.y158{bottom:25.626667pt;}
.yca{bottom:26.586667pt;}
.ycd{bottom:26.746667pt;}
.yb{bottom:26.880000pt;}
.y112{bottom:27.360000pt;}
.yd2{bottom:31.266667pt;}
.ybb{bottom:32.733333pt;}
.y3e{bottom:33.600000pt;}
.y92{bottom:33.626667pt;}
.y17{bottom:34.280000pt;}
.ye2{bottom:34.560000pt;}
.y13a{bottom:37.053333pt;}
.yd7{bottom:39.520000pt;}
.yf4{bottom:40.640000pt;}
.yb4{bottom:40.893333pt;}
.y157{bottom:40.986667pt;}
.ya{bottom:41.280000pt;}
.y111{bottom:42.720000pt;}
.y1{bottom:43.520000pt;}
.y152{bottom:46.533333pt;}
.yba{bottom:47.453333pt;}
.y16{bottom:48.040000pt;}
.y3d{bottom:48.960000pt;}
.ye1{bottom:49.760000pt;}
.y16e{bottom:51.200000pt;}
.y15{bottom:57.800000pt;}
.yb9{bottom:62.013333pt;}
.y3c{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y16c{bottom:69.600000pt;}
.y14{bottom:75.080000pt;}
.yb8{bottom:76.733333pt;}
.y3b{bottom:79.520000pt;}
.y13{bottom:82.280000pt;}
.y8{bottom:82.746667pt;}
.yb7{bottom:91.133333pt;}
.y3a{bottom:94.880000pt;}
.y12{bottom:95.240000pt;}
.yb2{bottom:96.960000pt;}
.y7{bottom:98.906667pt;}
.y90{bottom:100.800000pt;}
.y16b{bottom:102.720000pt;}
.y116{bottom:103.520000pt;}
.y53{bottom:105.760000pt;}
.y1a8{bottom:109.440000pt;}
.y39{bottom:110.240000pt;}
.y137{bottom:111.360000pt;}
.y11{bottom:111.880000pt;}
.yb1{bottom:112.320000pt;}
.y8f{bottom:116.160000pt;}
.y52{bottom:121.152000pt;}
.y1a7{bottom:124.832000pt;}
.y38{bottom:125.600000pt;}
.yb0{bottom:127.712000pt;}
.y8e{bottom:131.392000pt;}
.y114{bottom:131.712000pt;}
.y10{bottom:133.480000pt;}
.y51{bottom:136.506667pt;}
.y136{bottom:139.546667pt;}
.y1a6{bottom:140.186667pt;}
.y37{bottom:140.960000pt;}
.yaf{bottom:143.066667pt;}
.y8d{bottom:146.746667pt;}
.y50{bottom:151.866667pt;}
.y29{bottom:155.520000pt;}
.yae{bottom:155.546667pt;}
.y36{bottom:156.160000pt;}
.y113{bottom:159.866667pt;}
.yc9{bottom:161.120000pt;}
.y8c{bottom:162.106667pt;}
.y4f{bottom:167.226667pt;}
.y135{bottom:167.866667pt;}
.y28{bottom:168.480000pt;}
.y1a5{bottom:170.906667pt;}
.y35{bottom:171.520000pt;}
.y8b{bottom:177.466667pt;}
.y4e{bottom:182.586667pt;}
.y27{bottom:183.866667pt;}
.y1a4{bottom:186.266667pt;}
.y34{bottom:186.906667pt;}
.y110{bottom:188.026667pt;}
.y8a{bottom:192.826667pt;}
.y4d{bottom:197.786667pt;}
.y134{bottom:198.906667pt;}
.y26{bottom:199.226667pt;}
.y1a3{bottom:201.466667pt;}
.y33{bottom:202.266667pt;}
.y89{bottom:208.186667pt;}
.y4c{bottom:213.146667pt;}
.y133{bottom:214.266667pt;}
.y25{bottom:214.586667pt;}
.y1a2{bottom:216.826667pt;}
.y32{bottom:217.626667pt;}
.y88{bottom:223.386667pt;}
.y4b{bottom:228.506667pt;}
.y24{bottom:229.626667pt;}
.y1a1{bottom:232.186667pt;}
.y31{bottom:232.826667pt;}
.y87{bottom:238.746667pt;}
.y4a{bottom:243.866667pt;}
.y23{bottom:244.186667pt;}
.y132{bottom:244.826667pt;}
.y1a0{bottom:247.546667pt;}
.y30{bottom:248.186667pt;}
.y86{bottom:254.106667pt;}
.y22{bottom:258.746667pt;}
.y49{bottom:259.226667pt;}
.y131{bottom:260.186667pt;}
.ycc{bottom:260.640000pt;}
.y19f{bottom:262.906667pt;}
.y2f{bottom:263.546667pt;}
.y85{bottom:269.466667pt;}
.y10e{bottom:272.026667pt;}
.y21{bottom:273.306667pt;}
.y48{bottom:274.586667pt;}
.y130{bottom:275.546667pt;}
.y19e{bottom:278.266667pt;}
.y2e{bottom:278.906667pt;}
.y84{bottom:284.826667pt;}
.y20{bottom:287.866667pt;}
.y47{bottom:289.786667pt;}
.y12f{bottom:290.906667pt;}
.y19d{bottom:293.466667pt;}
.y2d{bottom:294.266667pt;}
.y83{bottom:300.026667pt;}
.y10d{bottom:303.226667pt;}
.y12e{bottom:304.026667pt;}
.y1f{bottom:304.986667pt;}
.y46{bottom:305.146667pt;}
.y19c{bottom:308.826667pt;}
.y2c{bottom:309.626667pt;}
.y82{bottom:315.386667pt;}
.yd1{bottom:318.240000pt;}
.y10c{bottom:318.426667pt;}
.y45{bottom:320.506667pt;}
.y19b{bottom:324.186667pt;}
.y2b{bottom:324.826667pt;}
.y16a{bottom:327.066667pt;}
.y1e{bottom:327.866667pt;}
.y81{bottom:330.746667pt;}
.yd3{bottom:333.306667pt;}
.y10b{bottom:333.786667pt;}
.y12c{bottom:333.946667pt;}
.y44{bottom:335.866667pt;}
.y19a{bottom:339.546667pt;}
.y2a{bottom:340.186667pt;}
.y169{bottom:342.266667pt;}
.y1d{bottom:342.586667pt;}
.y80{bottom:346.146667pt;}
.y10a{bottom:349.186667pt;}
.y43{bottom:351.266667pt;}
.y199{bottom:354.946667pt;}
.y7f{bottom:361.506667pt;}
.y168{bottom:362.786667pt;}
.y41{bottom:363.586667pt;}
.ycf{bottom:363.840000pt;}
.y12b{bottom:363.906667pt;}
.y109{bottom:364.546667pt;}
.y198{bottom:370.306667pt;}
.y7e{bottom:376.866667pt;}
.y108{bottom:379.906667pt;}
.y197{bottom:385.506667pt;}
.y7d{bottom:392.066667pt;}
.y12a{bottom:393.826667pt;}
.y1c{bottom:394.306667pt;}
.y107{bottom:395.266667pt;}
.y196{bottom:400.866667pt;}
.y7c{bottom:407.426667pt;}
.yad{bottom:408.386667pt;}
.y106{bottom:408.706667pt;}
.y1a9{bottom:416.226667pt;}
.y195{bottom:420.866667pt;}
.yab{bottom:421.506667pt;}
.y7b{bottom:422.786667pt;}
.y129{bottom:423.746667pt;}
.y194{bottom:431.586667pt;}
.y105{bottom:436.386667pt;}
.y7a{bottom:438.146667pt;}
.y193{bottom:446.946667pt;}
.ya9{bottom:449.826667pt;}
.y79{bottom:453.506667pt;}
.y128{bottom:453.666667pt;}
.y192{bottom:462.146667pt;}
.y103{bottom:464.066667pt;}
.ya7{bottom:468.226667pt;}
.y78{bottom:468.866667pt;}
.y191{bottom:477.506667pt;}
.y126{bottom:483.586667pt;}
.y102{bottom:483.746667pt;}
.y77{bottom:484.226667pt;}
.ya6{bottom:489.346667pt;}
.y190{bottom:492.866667pt;}
.y100{bottom:500.866667pt;}
.y76{bottom:501.986667pt;}
.ya5{bottom:504.706667pt;}
.y18f{bottom:508.226667pt;}
.y125{bottom:516.386667pt;}
.yff{bottom:518.946667pt;}
.y75{bottom:519.906667pt;}
.ya4{bottom:520.066667pt;}
.y18e{bottom:523.586667pt;}
.y124{bottom:531.746667pt;}
.ya3{bottom:535.426667pt;}
.yfe{bottom:536.066667pt;}
.y167{bottom:536.706667pt;}
.y74{bottom:537.666667pt;}
.y18d{bottom:538.946667pt;}
.y123{bottom:547.106667pt;}
.ya2{bottom:550.786667pt;}
.yfc{bottom:552.386667pt;}
.y18c{bottom:554.146667pt;}
.y73{bottom:555.426667pt;}
.y122{bottom:562.466667pt;}
.ya1{bottom:565.986667pt;}
.y18b{bottom:569.533333pt;}
.y72{bottom:570.813333pt;}
.y121{bottom:577.853333pt;}
.ya0{bottom:581.373333pt;}
.yfa{bottom:583.933333pt;}
.y18a{bottom:584.893333pt;}
.y71{bottom:586.173333pt;}
.y120{bottom:593.213333pt;}
.y9f{bottom:593.853333pt;}
.y189{bottom:600.253333pt;}
.yf3{bottom:601.053333pt;}
.y70{bottom:601.533333pt;}
.y11f{bottom:605.533333pt;}
.yc6{bottom:614.400000pt;}
.y188{bottom:615.613333pt;}
.y139{bottom:617.120000pt;}
.y6f{bottom:619.293333pt;}
.yf7{bottom:627.453333pt;}
.y187{bottom:630.973333pt;}
.y6e{bottom:637.213333pt;}
.y186{bottom:646.173333pt;}
.yb6{bottom:650.080000pt;}
.y6d{bottom:654.973333pt;}
.yf2{bottom:658.013333pt;}
.y185{bottom:661.533333pt;}
.y6c{bottom:670.173333pt;}
.yc5{bottom:670.720000pt;}
.yf1{bottom:673.373333pt;}
.y184{bottom:676.893333pt;}
.yd4{bottom:677.693333pt;}
.yc4{bottom:679.520000pt;}
.y6b{bottom:685.533333pt;}
.yf0{bottom:688.733333pt;}
.y183{bottom:692.253333pt;}
.yc0{bottom:696.960000pt;}
.yc1{bottom:700.000000pt;}
.y6a{bottom:700.893333pt;}
.yc2{bottom:703.040000pt;}
.yef{bottom:704.093333pt;}
.y182{bottom:707.613333pt;}
.y69{bottom:716.253333pt;}
.yee{bottom:719.293333pt;}
.y166{bottom:722.333333pt;}
.y181{bottom:722.813333pt;}
.y68{bottom:731.613333pt;}
.yed{bottom:734.653333pt;}
.y165{bottom:737.693333pt;}
.y180{bottom:738.173333pt;}
.ybe{bottom:740.960000pt;}
.y67{bottom:746.813333pt;}
.y1a{bottom:746.973333pt;}
.yb3{bottom:749.760000pt;}
.yec{bottom:750.013333pt;}
.y164{bottom:753.053333pt;}
.y17f{bottom:753.533333pt;}
.y66{bottom:762.173333pt;}
.yeb{bottom:763.453333pt;}
.y13c{bottom:764.480000pt;}
.y163{bottom:768.413333pt;}
.y17e{bottom:768.893333pt;}
.y13d{bottom:772.480000pt;}
.yf{bottom:773.213333pt;}
.y65{bottom:777.533333pt;}
.yea{bottom:779.773333pt;}
.y13e{bottom:780.000000pt;}
.y162{bottom:783.613333pt;}
.y17d{bottom:784.253333pt;}
.y13f{bottom:787.840000pt;}
.y64{bottom:792.893333pt;}
.y155{bottom:794.853333pt;}
.y142{bottom:795.360000pt;}
.ye9{bottom:798.533333pt;}
.y161{bottom:799.013333pt;}
.y140{bottom:799.040000pt;}
.y17c{bottom:799.653333pt;}
.y147{bottom:803.040000pt;}
.y143{bottom:806.560000pt;}
.y63{bottom:808.293333pt;}
.y145{bottom:810.720000pt;}
.y160{bottom:814.373333pt;}
.y148{bottom:814.560000pt;}
.y17b{bottom:814.853333pt;}
.ye8{bottom:817.253333pt;}
.y14a{bottom:818.560000pt;}
.y149{bottom:822.080000pt;}
.y9e{bottom:822.853333pt;}
.y62{bottom:823.653333pt;}
.y14c{bottom:826.080000pt;}
.y15f{bottom:827.493333pt;}
.y14b{bottom:829.920000pt;}
.y17a{bottom:830.213333pt;}
.y14e{bottom:833.920000pt;}
.ye7{bottom:835.973333pt;}
.y9d{bottom:836.293333pt;}
.y14d{bottom:837.280000pt;}
.y61{bottom:838.853333pt;}
.y150{bottom:841.440000pt;}
.y14f{bottom:845.120000pt;}
.y179{bottom:845.573333pt;}
.y151{bottom:852.640000pt;}
.y9c{bottom:853.093333pt;}
.y60{bottom:854.213333pt;}
.ye0{bottom:854.693333pt;}
.y15e{bottom:855.653333pt;}
.y178{bottom:860.933333pt;}
.y5f{bottom:869.573333pt;}
.y9b{bottom:870.053333pt;}
.y177{bottom:876.293333pt;}
.y153{bottom:880.773333pt;}
.y15d{bottom:883.973333pt;}
.y5e{bottom:884.933333pt;}
.ye3{bottom:886.373333pt;}
.y9a{bottom:887.013333pt;}
.y176{bottom:891.653333pt;}
.y5d{bottom:900.293333pt;}
.y99{bottom:903.813333pt;}
.y175{bottom:906.853333pt;}
.y15c{bottom:912.133333pt;}
.y5c{bottom:915.653333pt;}
.ydc{bottom:917.893333pt;}
.yd{bottom:920.133333pt;}
.y98{bottom:920.773333pt;}
.y174{bottom:922.213333pt;}
.y11e{bottom:928.453333pt;}
.y5b{bottom:930.853333pt;}
.ydf{bottom:934.373333pt;}
.y97{bottom:937.573333pt;}
.y15b{bottom:940.293333pt;}
.y6{bottom:942.693333pt;}
.y11d{bottom:943.813333pt;}
.y5a{bottom:946.213333pt;}
.ydb{bottom:950.693333pt;}
.y173{bottom:952.933333pt;}
.y95{bottom:954.533333pt;}
.y11c{bottom:956.933333pt;}
.y11b{bottom:957.573333pt;}
.y59{bottom:961.573333pt;}
.yd6{bottom:967.013333pt;}
.y172{bottom:968.293333pt;}
.y15a{bottom:968.453333pt;}
.y93{bottom:971.493333pt;}
.y58{bottom:976.933333pt;}
.y171{bottom:983.653333pt;}
.y118{bottom:985.893333pt;}
.y91{bottom:988.293333pt;}
.y57{bottom:992.293333pt;}
.y156{bottom:996.613333pt;}
.y170{bottom:998.853333pt;}
.y56{bottom:1007.653333pt;}
.y16f{bottom:1014.213333pt;}
.y117{bottom:1022.560000pt;}
.y55{bottom:1022.880000pt;}
.y54{bottom:1038.240000pt;}
.h4b{height:1.787500pt;}
.h4e{height:13.280000pt;}
.h2c{height:13.440000pt;}
.h38{height:15.200000pt;}
.h3a{height:15.360000pt;}
.h23{height:15.840000pt;}
.h24{height:16.000000pt;}
.h41{height:16.160000pt;}
.h43{height:17.120000pt;}
.h25{height:17.600000pt;}
.h26{height:17.760000pt;}
.h3d{height:17.792000pt;}
.h44{height:18.720000pt;}
.h37{height:20.320000pt;}
.hc{height:22.240000pt;}
.h12{height:22.343750pt;}
.h13{height:22.937500pt;}
.h30{height:23.840000pt;}
.h51{height:24.131250pt;}
.h40{height:25.440000pt;}
.h15{height:26.240000pt;}
.h45{height:26.560000pt;}
.h3f{height:26.720000pt;}
.h46{height:27.520000pt;}
.h48{height:27.552000pt;}
.h28{height:27.680000pt;}
.h2{height:29.280000pt;}
.h4c{height:29.312000pt;}
.h18{height:29.940625pt;}
.h3c{height:30.560000pt;}
.h42{height:30.592000pt;}
.h1e{height:30.720000pt;}
.h1d{height:30.736250pt;}
.h36{height:30.752000pt;}
.h39{height:31.680000pt;}
.h9{height:32.160000pt;}
.h14{height:34.406250pt;}
.h49{height:35.232000pt;}
.h1a{height:35.303125pt;}
.h1b{height:36.241250pt;}
.h10{height:37.090625pt;}
.h19{height:37.479688pt;}
.h2e{height:37.760000pt;}
.h2f{height:37.920000pt;}
.h1c{height:38.076250pt;}
.h4{height:38.625000pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h6{height:41.112500pt;}
.h1f{height:42.691250pt;}
.h52{height:42.797917pt;}
.h11{height:42.944375pt;}
.h8{height:44.687500pt;}
.h16{height:45.156250pt;}
.h32{height:45.280000pt;}
.h27{height:46.080000pt;}
.h22{height:46.112000pt;}
.h21{height:46.593750pt;}
.ha{height:48.000000pt;}
.h4d{height:48.160000pt;}
.h3{height:49.148438pt;}
.h35{height:52.032000pt;}
.h2a{height:52.834688pt;}
.h33{height:52.962000pt;}
.h3e{height:53.120000pt;}
.h50{height:53.472000pt;}
.h2d{height:54.390938pt;}
.h47{height:55.200000pt;}
.hf{height:56.160000pt;}
.h4f{height:59.520000pt;}
.h3b{height:62.240000pt;}
.h5{height:63.656250pt;}
.h34{height:64.800000pt;}
.h4a{height:64.992000pt;}
.h31{height:74.477812pt;}
.h29{height:76.671562pt;}
.h2b{height:101.600000pt;}
.h7{height:108.032000pt;}
.hd{height:146.906667pt;}
.h17{height:352.666667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w13{width:8.160000pt;}
.w14{width:8.320000pt;}
.w12{width:14.880000pt;}
.w11{width:15.040000pt;}
.w3c{width:15.840000pt;}
.w1a{width:16.000000pt;}
.w16{width:33.280000pt;}
.w17{width:47.360000pt;}
.w19{width:54.240000pt;}
.w3{width:66.432000pt;}
.w2e{width:76.320000pt;}
.w29{width:76.640000pt;}
.w1d{width:82.112000pt;}
.w1e{width:82.240000pt;}
.w1f{width:82.272000pt;}
.w25{width:82.400000pt;}
.w24{width:82.432000pt;}
.w2f{width:87.232000pt;}
.w2a{width:87.552000pt;}
.w3a{width:92.640000pt;}
.w2d{width:98.432000pt;}
.w28{width:98.592000pt;}
.w38{width:102.112000pt;}
.w2c{width:109.280000pt;}
.w27{width:109.440000pt;}
.w36{width:111.392000pt;}
.w34{width:113.952000pt;}
.w20{width:116.480000pt;}
.w21{width:116.672000pt;}
.w39{width:118.112000pt;}
.w37{width:122.080000pt;}
.w32{width:122.720000pt;}
.w33{width:126.592000pt;}
.w10{width:127.680000pt;}
.w5{width:138.106667pt;}
.w31{width:157.786667pt;}
.w1c{width:165.466667pt;}
.w23{width:165.626667pt;}
.w18{width:173.920000pt;}
.wb{width:175.226667pt;}
.w2b{width:175.706667pt;}
.w26{width:176.026667pt;}
.wd{width:187.226667pt;}
.w35{width:193.946667pt;}
.w8{width:196.546667pt;}
.wc{width:223.426667pt;}
.wf{width:230.146667pt;}
.we{width:230.266667pt;}
.w1b{width:234.106667pt;}
.w22{width:234.426667pt;}
.wa{width:249.306667pt;}
.w3b{width:359.680000pt;}
.w15{width:372.960000pt;}
.w9{width:468.093333pt;}
.w6{width:526.373333pt;}
.w2{width:599.013333pt;}
.w30{width:650.213333pt;}
.w7{width:664.640000pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x63{left:-30.240000pt;}
.x56{left:-12.480000pt;}
.x0{left:0.000000pt;}
.x7f{left:1.146667pt;}
.x4e{left:2.333333pt;}
.x52{left:5.186667pt;}
.x2{left:7.712000pt;}
.x13{left:11.200000pt;}
.x64{left:15.200000pt;}
.x5a{left:17.760000pt;}
.x74{left:21.053333pt;}
.x57{left:26.560000pt;}
.x59{left:30.560000pt;}
.x60{left:31.520000pt;}
.x5e{left:34.720000pt;}
.x5b{left:36.640000pt;}
.x5d{left:38.080000pt;}
.xc{left:40.832000pt;}
.x30{left:59.546667pt;}
.x1{left:64.320000pt;}
.x2a{left:67.359988pt;}
.x32{left:69.000000pt;}
.x4{left:72.031988pt;}
.x28{left:74.111988pt;}
.xd{left:77.146667pt;}
.x39{left:78.106667pt;}
.xe{left:79.706667pt;}
.x36{left:81.306667pt;}
.x34{left:84.666667pt;}
.x5{left:87.226667pt;}
.x29{left:90.111988pt;}
.x3d{left:96.031988pt;}
.x62{left:97.114667pt;}
.x33{left:102.120000pt;}
.x38{left:103.194667pt;}
.x35{left:104.954667pt;}
.x2e{left:106.234667pt;}
.xf{left:109.466667pt;}
.x10{left:111.066667pt;}
.x37{left:112.954667pt;}
.x21{left:118.591988pt;}
.x83{left:120.031988pt;}
.x84{left:124.191988pt;}
.x86{left:125.471988pt;}
.x22{left:127.391988pt;}
.x23{left:136.826655pt;}
.x87{left:140.666655pt;}
.x61{left:147.546655pt;}
.x4c{left:159.613333pt;}
.x24{left:168.666655pt;}
.x25{left:178.106655pt;}
.x82{left:179.546667pt;}
.x88{left:182.426655pt;}
.x81{left:184.413333pt;}
.x6b{left:187.546655pt;}
.x26{left:188.506655pt;}
.x5f{left:189.466667pt;}
.x11{left:191.266667pt;}
.x89{left:192.666655pt;}
.x44{left:194.720000pt;}
.x27{left:197.946655pt;}
.x6{left:202.906667pt;}
.x78{left:205.280000pt;}
.x75{left:212.000000pt;}
.x7e{left:219.200000pt;}
.x3e{left:228.226655pt;}
.x4b{left:230.240000pt;}
.x42{left:235.266655pt;}
.x2d{left:236.706655pt;}
.x3b{left:241.506655pt;}
.x48{left:247.520000pt;}
.x66{left:248.706667pt;}
.x9{left:253.666667pt;}
.x7a{left:256.480000pt;}
.x51{left:257.760000pt;}
.x3f{left:259.906667pt;}
.x12{left:261.186667pt;}
.x6f{left:266.626667pt;}
.x53{left:271.266655pt;}
.x65{left:277.826655pt;}
.x77{left:280.800000pt;}
.x2b{left:284.866655pt;}
.x46{left:293.600000pt;}
.x2c{left:295.106655pt;}
.x7{left:306.786667pt;}
.x50{left:311.840000pt;}
.x2f{left:322.466667pt;}
.x8{left:323.946667pt;}
.xb{left:332.253333pt;}
.x43{left:334.880000pt;}
.x6c{left:353.826667pt;}
.x67{left:358.946667pt;}
.x73{left:360.320000pt;}
.x80{left:376.413321pt;}
.x70{left:378.653333pt;}
.x85{left:389.213321pt;}
.x58{left:390.333333pt;}
.x45{left:392.320000pt;}
.x3c{left:397.053321pt;}
.xa{left:402.346667pt;}
.x4d{left:414.080000pt;}
.x14{left:417.213321pt;}
.x7c{left:424.000000pt;}
.x15{left:427.293321pt;}
.x47{left:441.600000pt;}
.x68{left:458.173333pt;}
.x16{left:459.133322pt;}
.x17{left:469.373321pt;}
.x54{left:473.533333pt;}
.x7b{left:476.480000pt;}
.x6d{left:481.053333pt;}
.x40{left:490.813333pt;}
.x7d{left:497.280000pt;}
.x31{left:498.813333pt;}
.x71{left:501.373333pt;}
.x18{left:524.133322pt;}
.x19{left:534.373321pt;}
.x49{left:543.840000pt;}
.x79{left:553.120000pt;}
.x55{left:556.773333pt;}
.x4f{left:557.760000pt;}
.x76{left:573.920000pt;}
.x1a{left:581.733321pt;}
.x1b{left:591.973321pt;}
.x4a{left:593.120000pt;}
.x72{left:604.133333pt;}
.x6e{left:608.293333pt;}
.x41{left:622.053322pt;}
.x1c{left:625.253321pt;}
.x69{left:634.213333pt;}
.x1d{left:635.493322pt;}
.x5c{left:639.973333pt;}
.x6a{left:655.173321pt;}
.x3{left:663.333333pt;}
.x3a{left:670.053322pt;}
.x1e{left:675.839988pt;}
.x1f{left:686.079988pt;}
.x20{left:722.239988pt;}
}




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