
    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_5ae85cf16df51a47142fb581.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a30bd7f22422b8b909c77e4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d0806e273005e290c5f4dfd5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.008789;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_28e88861945acffa20ab62fc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.964844;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_aafb8851eb4b21f83a78726f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c4e354a2f54199cf6ed0c9c6.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_13ebd347ce8a0c900231bbb2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_86927a606fff0cc597589689.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.052734;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_bd03afcd303af048f2aba045.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_aae23da478791463a18f1721.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_53a588ea3d03acbdda6f125b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m2{transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248156,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248156,0.000000,0.000000,0.250000,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);}
.v1{vertical-align:-14.400000px;}
.v5{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v2{vertical-align:14.400000px;}
.v4{vertical-align:21.600000px;}
.v6{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.180000px;}
.ls13{letter-spacing:-0.144000px;}
.ls15{letter-spacing:-0.108000px;}
.ls4{letter-spacing:-0.034560px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.028080px;}
.ls8{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.341280px;}
.ls10{letter-spacing:0.360000px;}
.ls16{letter-spacing:0.845967px;}
.lsb{letter-spacing:2.801520px;}
.ls7{letter-spacing:3.600000px;}
.lsf{letter-spacing:4.147200px;}
.ls9{letter-spacing:20.160000px;}
.lsa{letter-spacing:24.307200px;}
.ls17{letter-spacing:87.984000px;}
.lse{letter-spacing:110.928000px;}
.lsc{letter-spacing:110.952000px;}
.lsd{letter-spacing:111.132000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.wse{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.841886px;}
.ws4{word-spacing:-15.840000px;}
.wsf{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.392000px;}
.ws8{word-spacing:-11.246400px;}
.ws2{word-spacing:0.000000px;}
.ws7{word-spacing:0.216000px;}
.ws6{word-spacing:7.395120px;}
.ws5{word-spacing:7.575120px;}
.wsb{word-spacing:94.491120px;}
.wsa{word-spacing:95.235120px;}
.ws12{word-spacing:153.484930px;}
.ws9{word-spacing:355.875120px;}
._2{margin-left:-88.574400px;}
._1d{margin-left:-7.800000px;}
._28{margin-left:-6.624000px;}
._19{margin-left:-5.256000px;}
._6{margin-left:-4.176000px;}
._7{margin-left:-2.952000px;}
._4{margin-left:-1.108080px;}
._0{width:1.454400px;}
._5{width:2.865600px;}
._8{width:4.406400px;}
._d{width:6.336000px;}
._16{width:7.344000px;}
._11{width:8.352000px;}
._a{width:10.296000px;}
._9{width:11.952000px;}
._b{width:13.032000px;}
._10{width:14.976000px;}
._12{width:16.084080px;}
._1e{width:17.856000px;}
._c{width:19.944000px;}
._e{width:21.864000px;}
._1a{width:23.217600px;}
._1b{width:24.227280px;}
._17{width:25.608000px;}
._18{width:27.600000px;}
._1c{width:32.428080px;}
._f{width:34.416000px;}
._15{width:36.648000px;}
._22{width:37.992000px;}
._32{width:44.640000px;}
._34{width:46.368000px;}
._35{width:47.484000px;}
._1f{width:54.408000px;}
._36{width:65.232000px;}
._37{width:67.404000px;}
._2d{width:72.648000px;}
._2e{width:73.656000px;}
._24{width:75.096000px;}
._25{width:77.184000px;}
._2b{width:81.432000px;}
._3{width:83.380080px;}
._26{width:88.776000px;}
._27{width:97.344000px;}
._31{width:98.460000px;}
._2f{width:102.240000px;}
._30{width:103.392000px;}
._1{width:109.380000px;}
._33{width:120.672000px;}
._38{width:124.200000px;}
._23{width:131.472000px;}
._21{width:142.236000px;}
._20{width:157.392000px;}
._29{width:173.662696px;}
._39{width:184.296000px;}
._13{width:193.248000px;}
._14{width:194.256000px;}
._2a{width:217.658115px;}
._2c{width:218.805885px;}
.fc6{color:rgb(0,0,255);}
.fc5{color:rgb(238,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:48.240000px;}
.fs4{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs9{font-size:68.068778px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs8{font-size:78.946399px;}
.fs1{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.yb{bottom:-16.200000px;}
.y157{bottom:-12.060000px;}
.y155{bottom:-11.520000px;}
.y15a{bottom:-11.340000px;}
.y1b5{bottom:-10.080000px;}
.y1b6{bottom:-9.900000px;}
.y184{bottom:-8.640000px;}
.y197{bottom:-8.460000px;}
.y18a{bottom:-7.920000px;}
.y186{bottom:-7.740000px;}
.y12e{bottom:-5.940000px;}
.y12c{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.y137{bottom:2.874000px;}
.y130{bottom:2.880000px;}
.y132{bottom:3.060000px;}
.y153{bottom:3.960000px;}
.y31{bottom:6.120000px;}
.ya{bottom:6.300000px;}
.y2f{bottom:10.800000px;}
.y1d3{bottom:11.000412px;}
.yeb{bottom:19.620000px;}
.yf1{bottom:19.800000px;}
.ye1{bottom:19.830000px;}
.yfc{bottom:19.845000px;}
.y8{bottom:21.600000px;}
.ye5{bottom:22.680000px;}
.yf5{bottom:22.854000px;}
.yf3{bottom:22.860000px;}
.y15d{bottom:24.660000px;}
.y164{bottom:24.705000px;}
.y30{bottom:31.500000px;}
.y9{bottom:31.680000px;}
.yea{bottom:40.320000px;}
.yf0{bottom:40.500000px;}
.ye0{bottom:40.530000px;}
.y116{bottom:40.545000px;}
.ye4{bottom:43.380000px;}
.y7{bottom:57.780000px;}
.y1d2{bottom:59.694336px;}
.ye9{bottom:61.020000px;}
.yef{bottom:61.200000px;}
.ye3{bottom:64.080000px;}
.y1cb{bottom:78.458705px;}
.y6{bottom:78.516000px;}
.ye8{bottom:81.720000px;}
.yee{bottom:81.900000px;}
.ye7{bottom:102.420000px;}
.yed{bottom:102.645000px;}
.y13a{bottom:116.316000px;}
.y1c9{bottom:116.496000px;}
.y113{bottom:118.836000px;}
.y180{bottom:120.816000px;}
.y139{bottom:126.396000px;}
.y1cc{bottom:129.246713px;}
.y6d{bottom:129.636000px;}
.y8b{bottom:129.816000px;}
.yb9{bottom:130.536000px;}
.y57{bottom:131.256000px;}
.y1b1{bottom:131.616000px;}
.y138{bottom:133.056000px;}
.y112{bottom:139.536000px;}
.y151{bottom:139.896000px;}
.yf6{bottom:140.796000px;}
.yf4{bottom:141.696000px;}
.y1e9{bottom:142.776000px;}
.y2e{bottom:145.656000px;}
.y136{bottom:149.976000px;}
.y6c{bottom:150.330000px;}
.y8a{bottom:150.510000px;}
.yb8{bottom:151.230000px;}
.y9d{bottom:152.130000px;}
.y1b0{bottom:152.310000px;}
.yc9{bottom:156.090000px;}
.y17f{bottom:157.350000px;}
.y1c8{bottom:158.250000px;}
.y221{bottom:159.510000px;}
.y150{bottom:160.590000px;}
.y1e8{bottom:163.470000px;}
.y135{bottom:166.890000px;}
.y6b{bottom:171.030000px;}
.y89{bottom:171.210000px;}
.yc0{bottom:171.570000px;}
.y56{bottom:171.930000px;}
.y9c{bottom:172.830000px;}
.y1af{bottom:173.010000px;}
.y1ff{bottom:177.870000px;}
.y17e{bottom:178.050000px;}
.y1c7{bottom:178.950000px;}
.y1cd{bottom:179.878470px;}
.y220{bottom:180.210000px;}
.yf2{bottom:181.290000px;}
.y2d{bottom:182.190000px;}
.y134{bottom:183.810000px;}
.y1e7{bottom:184.170000px;}
.y88{bottom:191.910000px;}
.ybf{bottom:192.270000px;}
.yc8{bottom:192.630000px;}
.yb7{bottom:192.810000px;}
.y9b{bottom:193.530000px;}
.y133{bottom:193.890000px;}
.y1fe{bottom:198.570000px;}
.y17d{bottom:198.750000px;}
.y1c6{bottom:199.650000px;}
.y131{bottom:200.550000px;}
.y21f{bottom:200.910000px;}
.y111{bottom:201.990000px;}
.y1e6{bottom:204.870000px;}
.y55{bottom:212.610000px;}
.ybe{bottom:212.970000px;}
.yc7{bottom:213.330000px;}
.yb6{bottom:213.510000px;}
.y9a{bottom:214.230000px;}
.y1ae{bottom:214.770000px;}
.y12f{bottom:217.470000px;}
.y14f{bottom:217.830000px;}
.y2c{bottom:218.730000px;}
.y17c{bottom:219.450000px;}
.y1c5{bottom:220.350000px;}
.yec{bottom:220.890000px;}
.y110{bottom:222.690000px;}
.y1e5{bottom:225.570000px;}
.y1fd{bottom:228.270000px;}
.y1ce{bottom:230.510226px;}
.y21e{bottom:230.610000px;}
.y87{bottom:233.310000px;}
.ybd{bottom:233.670000px;}
.yc6{bottom:234.030000px;}
.yb5{bottom:234.210000px;}
.y12d{bottom:234.390000px;}
.y99{bottom:234.930000px;}
.y1ad{bottom:235.470000px;}
.y14e{bottom:238.530000px;}
.y17b{bottom:240.150000px;}
.y233{bottom:242.310000px;}
.y10f{bottom:243.390000px;}
.y12b{bottom:244.470000px;}
.y1fc{bottom:248.970000px;}
.y21d{bottom:251.310000px;}
.y86{bottom:254.010000px;}
.y54{bottom:254.370000px;}
.yc5{bottom:254.730000px;}
.yb4{bottom:254.910000px;}
.y2b{bottom:255.090000px;}
.y98{bottom:255.630000px;}
.y1ac{bottom:256.170000px;}
.y14d{bottom:259.230000px;}
.y17a{bottom:260.850000px;}
.y1c4{bottom:261.930000px;}
.y232{bottom:263.010000px;}
.y10e{bottom:264.090000px;}
.y1e4{bottom:267.150000px;}
.y1fb{bottom:269.670000px;}
.y12a{bottom:270.930000px;}
.y21c{bottom:272.010000px;}
.y85{bottom:274.710000px;}
.y53{bottom:275.070000px;}
.yc4{bottom:275.430000px;}
.yb3{bottom:275.610000px;}
.y97{bottom:276.330000px;}
.y1ab{bottom:276.870000px;}
.y14c{bottom:279.930000px;}
.y1cf{bottom:281.299813px;}
.y1c3{bottom:282.630000px;}
.y231{bottom:283.710000px;}
.y10d{bottom:284.790000px;}
.y1e3{bottom:287.850000px;}
.y84{bottom:295.410000px;}
.y52{bottom:295.770000px;}
.yc3{bottom:296.130000px;}
.yb2{bottom:296.310000px;}
.y2a{bottom:296.850000px;}
.y96{bottom:297.030000px;}
.y179{bottom:297.390000px;}
.y1aa{bottom:297.570000px;}
.y1fa{bottom:299.370000px;}
.y21b{bottom:301.710000px;}
.y1c2{bottom:303.330000px;}
.y10c{bottom:305.490000px;}
.y1e2{bottom:308.550000px;}
.y129{bottom:312.735000px;}
.y230{bottom:313.455000px;}
.y83{bottom:316.155000px;}
.y6a{bottom:316.515000px;}
.yc2{bottom:316.875000px;}
.yb1{bottom:317.055000px;}
.y29{bottom:317.595000px;}
.y95{bottom:317.775000px;}
.y178{bottom:318.135000px;}
.y1a9{bottom:318.315000px;}
.y1f9{bottom:320.115000px;}
.y21a{bottom:322.455000px;}
.y1c1{bottom:324.075000px;}
.y1e1{bottom:329.295000px;}
.y1d0{bottom:331.931570px;}
.y128{bottom:333.435000px;}
.y22f{bottom:334.155000px;}
.y82{bottom:336.855000px;}
.ybc{bottom:337.215000px;}
.y51{bottom:337.575000px;}
.yb0{bottom:337.755000px;}
.y94{bottom:338.475000px;}
.y177{bottom:338.835000px;}
.y1a8{bottom:339.015000px;}
.ye6{bottom:340.275000px;}
.y1f8{bottom:340.815000px;}
.y219{bottom:343.155000px;}
.y1c0{bottom:344.775000px;}
.y10b{bottom:347.115000px;}
.y127{bottom:354.135000px;}
.y81{bottom:357.555000px;}
.y14b{bottom:357.915000px;}
.y50{bottom:358.275000px;}
.yaf{bottom:358.455000px;}
.y93{bottom:359.175000px;}
.y28{bottom:359.355000px;}
.y176{bottom:359.535000px;}
.y22e{bottom:363.855000px;}
.y1f7{bottom:367.275000px;}
.y10a{bottom:367.815000px;}
.y1e0{bottom:371.055000px;}
.y218{bottom:372.855000px;}
.y126{bottom:374.835000px;}
.y80{bottom:378.255000px;}
.y14a{bottom:378.615000px;}
.y4f{bottom:378.975000px;}
.yae{bottom:379.155000px;}
.y92{bottom:379.875000px;}
.y27{bottom:380.055000px;}
.y175{bottom:380.235000px;}
.y1a7{bottom:380.775000px;}
.y1d1{bottom:382.563326px;}
.y1bf{bottom:386.535000px;}
.y109{bottom:388.515000px;}
.y217{bottom:393.555000px;}
.y1f6{bottom:394.095000px;}
.y125{bottom:395.535000px;}
.y7f{bottom:398.955000px;}
.y4e{bottom:399.675000px;}
.y26{bottom:400.755000px;}
.y1a6{bottom:401.475000px;}
.y1be{bottom:407.235000px;}
.y108{bottom:409.215000px;}
.y1df{bottom:412.815000px;}
.y216{bottom:414.255000px;}
.y1f5{bottom:414.795000px;}
.y149{bottom:414.975000px;}
.y174{bottom:416.775000px;}
.y7e{bottom:419.655000px;}
.y4d{bottom:420.375000px;}
.ybb{bottom:420.555000px;}
.yad{bottom:420.915000px;}
.y25{bottom:421.455000px;}
.y1a5{bottom:422.175000px;}
.y22d{bottom:423.255000px;}
.y1bd{bottom:427.935000px;}
.y107{bottom:429.915000px;}
.y1de{bottom:433.515000px;}
.y215{bottom:434.955000px;}
.y1f4{bottom:435.495000px;}
.y148{bottom:435.675000px;}
.y124{bottom:437.295000px;}
.y173{bottom:437.475000px;}
.y7d{bottom:440.355000px;}
.y4c{bottom:441.075000px;}
.yac{bottom:441.615000px;}
.y24{bottom:442.155000px;}
.y1a4{bottom:442.875000px;}
.y1bc{bottom:448.635000px;}
.y106{bottom:450.615000px;}
.y22c{bottom:452.955000px;}
.y1dd{bottom:454.215000px;}
.y1f3{bottom:456.195000px;}
.y147{bottom:456.375000px;}
.y123{bottom:457.995000px;}
.y172{bottom:458.175000px;}
.ye2{bottom:459.435000px;}
.y7c{bottom:461.055000px;}
.y69{bottom:461.775000px;}
.yab{bottom:462.315000px;}
.y23{bottom:462.855000px;}
.y1a3{bottom:463.575000px;}
.y214{bottom:464.655000px;}
.y1bb{bottom:469.335000px;}
.y105{bottom:471.315000px;}
.y22b{bottom:473.655000px;}
.y1dc{bottom:474.915000px;}
.y1f2{bottom:476.895000px;}
.y146{bottom:477.075000px;}
.y122{bottom:478.695000px;}
.y171{bottom:478.875000px;}
.y7b{bottom:481.755000px;}
.y68{bottom:482.475000px;}
.y4b{bottom:482.655000px;}
.yaa{bottom:483.015000px;}
.y22{bottom:483.555000px;}
.y1a2{bottom:484.275000px;}
.y213{bottom:485.355000px;}
.y1db{bottom:495.615000px;}
.y1f1{bottom:497.595000px;}
.y145{bottom:497.775000px;}
.y121{bottom:499.395000px;}
.y170{bottom:499.575000px;}
.y67{bottom:503.175000px;}
.y4a{bottom:503.355000px;}
.ya9{bottom:503.715000px;}
.y21{bottom:504.255000px;}
.y212{bottom:506.055000px;}
.y1ba{bottom:511.095000px;}
.y104{bottom:513.075000px;}
.y1da{bottom:516.315000px;}
.y1f0{bottom:518.295000px;}
.y120{bottom:520.095000px;}
.y16f{bottom:520.275000px;}
.y7a{bottom:523.515000px;}
.y66{bottom:523.875000px;}
.y49{bottom:524.055000px;}
.ya8{bottom:524.415000px;}
.y20{bottom:524.955000px;}
.y1a1{bottom:525.855000px;}
.y1b9{bottom:531.795000px;}
.y144{bottom:534.315000px;}
.y211{bottom:535.755000px;}
.y1d9{bottom:537.015000px;}
.ydf{bottom:540.975000px;}
.y1a0{bottom:542.595000px;}
.y65{bottom:544.575000px;}
.y48{bottom:544.755000px;}
.ya7{bottom:545.115000px;}
.y1f{bottom:545.655000px;}
.y1b8{bottom:548.535000px;}
.y103{bottom:551.595000px;}
.y1ef{bottom:554.835000px;}
.y143{bottom:555.015000px;}
.y210{bottom:556.455000px;}
.y1d8{bottom:557.715000px;}
.y1b7{bottom:558.615000px;}
.y11f{bottom:561.705000px;}
.y19f{bottom:563.145000px;}
.y64{bottom:565.305000px;}
.y47{bottom:565.485000px;}
.ya6{bottom:565.845000px;}
.y1e{bottom:566.385000px;}
.y22a{bottom:574.485000px;}
.y142{bottom:575.745000px;}
.y16e{bottom:577.545000px;}
.y1d7{bottom:578.445000px;}
.y11e{bottom:582.405000px;}
.y19e{bottom:583.845000px;}
.y63{bottom:586.005000px;}
.y46{bottom:586.185000px;}
.ya5{bottom:586.545000px;}
.y1d{bottom:587.085000px;}
.y102{bottom:588.165000px;}
.y1ee{bottom:591.405000px;}
.y229{bottom:595.185000px;}
.y141{bottom:596.445000px;}
.y16d{bottom:598.245000px;}
.y1d6{bottom:599.145000px;}
.y11d{bottom:603.105000px;}
.y19d{bottom:604.545000px;}
.y79{bottom:606.705000px;}
.y45{bottom:606.885000px;}
.ya4{bottom:607.245000px;}
.y1c{bottom:607.785000px;}
.y1ed{bottom:612.105000px;}
.y228{bottom:615.885000px;}
.yde{bottom:618.765000px;}
.y16c{bottom:618.945000px;}
.y11c{bottom:623.805000px;}
.y101{bottom:624.705000px;}
.y19c{bottom:625.245000px;}
.y78{bottom:627.405000px;}
.y44{bottom:627.585000px;}
.yba{bottom:627.945000px;}
.y1b{bottom:628.485000px;}
.y1ec{bottom:632.805000px;}
.y140{bottom:632.985000px;}
.y20f{bottom:636.585000px;}
.y1b4{bottom:637.665000px;}
.y16b{bottom:639.645000px;}
.y1d5{bottom:640.725000px;}
.y1b3{bottom:644.325000px;}
.y11b{bottom:644.505000px;}
.y227{bottom:645.585000px;}
.y19b{bottom:645.945000px;}
.y43{bottom:648.285000px;}
.yc1{bottom:648.645000px;}
.ya3{bottom:649.005000px;}
.y1a{bottom:649.185000px;}
.y13f{bottom:652.065000px;}
.y1eb{bottom:653.505000px;}
.y20e{bottom:657.285000px;}
.ydd{bottom:660.345000px;}
.y100{bottom:661.065000px;}
.y1b2{bottom:665.025000px;}
.y11a{bottom:665.205000px;}
.y226{bottom:666.285000px;}
.y19a{bottom:666.645000px;}
.y42{bottom:668.985000px;}
.y62{bottom:669.345000px;}
.ya2{bottom:669.705000px;}
.y19{bottom:669.885000px;}
.y1ea{bottom:674.205000px;}
.y20d{bottom:677.985000px;}
.y1ca{bottom:678.510000px;}
.y1d4{bottom:678.525000px;}
.ydc{bottom:681.045000px;}
.y119{bottom:685.905000px;}
.y225{bottom:686.985000px;}
.y199{bottom:687.345000px;}
.y13e{bottom:688.605000px;}
.y41{bottom:689.685000px;}
.y61{bottom:690.045000px;}
.ya1{bottom:690.405000px;}
.y18{bottom:690.585000px;}
.y16a{bottom:696.885000px;}
.yff{bottom:697.605000px;}
.ydb{bottom:701.745000px;}
.y20c{bottom:707.685000px;}
.y198{bottom:708.045000px;}
.y77{bottom:710.385000px;}
.y60{bottom:710.745000px;}
.ya0{bottom:710.925000px;}
.y17{bottom:711.285000px;}
.y169{bottom:713.625000px;}
.y196{bottom:720.285000px;}
.y168{bottom:721.545000px;}
.y13d{bottom:724.965000px;}
.y167{bottom:726.945000px;}
.y118{bottom:727.665000px;}
.y20b{bottom:728.385000px;}
.y195{bottom:728.565000px;}
.y76{bottom:731.085000px;}
.y40{bottom:731.445000px;}
.y9f{bottom:731.625000px;}
.y16{bottom:731.985000px;}
.yfe{bottom:734.145000px;}
.yda{bottom:743.505000px;}
.y166{bottom:747.645000px;}
.y224{bottom:749.085000px;}
.y194{bottom:749.265000px;}
.y75{bottom:751.785000px;}
.y3f{bottom:752.145000px;}
.y9e{bottom:752.325000px;}
.y15{bottom:752.685000px;}
.y20a{bottom:758.085000px;}
.y13c{bottom:762.405000px;}
.y117{bottom:766.185000px;}
.y165{bottom:768.345000px;}
.y193{bottom:769.965000px;}
.yfd{bottom:770.685000px;}
.y74{bottom:772.485000px;}
.y3e{bottom:772.845000px;}
.y5f{bottom:773.025000px;}
.y14{bottom:773.385000px;}
.y209{bottom:778.785000px;}
.yd9{bottom:785.265000px;}
.y163{bottom:789.045000px;}
.y192{bottom:790.665000px;}
.y73{bottom:793.185000px;}
.y3d{bottom:793.545000px;}
.y5e{bottom:793.725000px;}
.y13{bottom:794.085000px;}
.y208{bottom:799.485000px;}
.y115{bottom:802.725000px;}
.yd8{bottom:805.965000px;}
.yfb{bottom:807.225000px;}
.y191{bottom:811.410000px;}
.y72{bottom:813.930000px;}
.y3c{bottom:814.290000px;}
.y5d{bottom:814.470000px;}
.y12{bottom:814.830000px;}
.y13b{bottom:819.510000px;}
.y207{bottom:829.230000px;}
.y162{bottom:830.490000px;}
.y190{bottom:832.110000px;}
.y3b{bottom:834.990000px;}
.y5c{bottom:835.170000px;}
.y11{bottom:835.530000px;}
.yfa{bottom:843.810000px;}
.yd7{bottom:847.590000px;}
.y206{bottom:849.930000px;}
.y161{bottom:851.190000px;}
.y18f{bottom:852.810000px;}
.y3a{bottom:855.690000px;}
.y5b{bottom:855.870000px;}
.y91{bottom:856.230000px;}
.y10{bottom:856.410000px;}
.y114{bottom:860.010000px;}
.yd6{bottom:868.290000px;}
.y223{bottom:870.630000px;}
.y160{bottom:871.890000px;}
.y18e{bottom:873.510000px;}
.y39{bottom:876.390000px;}
.y5a{bottom:876.570000px;}
.y90{bottom:876.930000px;}
.yf{bottom:878.550000px;}
.y205{bottom:879.630000px;}
.yf9{bottom:880.350000px;}
.yd5{bottom:890.430000px;}
.y15f{bottom:892.590000px;}
.y18d{bottom:894.210000px;}
.y59{bottom:897.270000px;}
.y8f{bottom:897.630000px;}
.ye{bottom:899.430000px;}
.y204{bottom:900.330000px;}
.yd4{bottom:912.390000px;}
.y15e{bottom:913.290000px;}
.y18c{bottom:914.910000px;}
.yf8{bottom:917.610000px;}
.y38{bottom:917.970000px;}
.y8e{bottom:918.330000px;}
.y203{bottom:921.030000px;}
.yd{bottom:922.290000px;}
.y15c{bottom:933.990000px;}
.yd3{bottom:934.530000px;}
.y18b{bottom:935.610000px;}
.y37{bottom:938.670000px;}
.y8d{bottom:939.030000px;}
.y222{bottom:941.730000px;}
.yc{bottom:946.410000px;}
.y202{bottom:950.730000px;}
.yd2{bottom:955.230000px;}
.y189{bottom:956.310000px;}
.y36{bottom:959.370000px;}
.y8c{bottom:959.730000px;}
.y188{bottom:968.550000px;}
.y5{bottom:969.990000px;}
.y201{bottom:971.430000px;}
.y15b{bottom:975.390000px;}
.yd1{bottom:975.930000px;}
.y187{bottom:976.650000px;}
.yf7{bottom:979.890000px;}
.y35{bottom:980.070000px;}
.y71{bottom:980.430000px;}
.y159{bottom:983.310000px;}
.y158{bottom:988.710000px;}
.y200{bottom:992.130000px;}
.yd0{bottom:996.630000px;}
.y185{bottom:997.350000px;}
.y34{bottom:1000.770000px;}
.y70{bottom:1001.130000px;}
.y156{bottom:1009.410000px;}
.y183{bottom:1009.770000px;}
.y4{bottom:1011.570000px;}
.y154{bottom:1017.510000px;}
.y182{bottom:1017.870000px;}
.y33{bottom:1021.470000px;}
.y58{bottom:1021.650000px;}
.y6f{bottom:1021.830000px;}
.y152{bottom:1022.730000px;}
.ycf{bottom:1029.390000px;}
.ycd{bottom:1034.790000px;}
.y181{bottom:1038.570000px;}
.y6e{bottom:1042.530000px;}
.yce{bottom:1043.790000px;}
.y3{bottom:1053.870000px;}
.ycc{bottom:1054.770000px;}
.yca{bottom:1060.170000px;}
.y32{bottom:1063.260000px;}
.ycb{bottom:1069.200000px;}
.y2{bottom:1091.160000px;}
.y1{bottom:1114.380000px;}
.h14{height:2.082656px;}
.h1e{height:4.680000px;}
.h1d{height:5.220000px;}
.h1f{height:5.400000px;}
.h1a{height:6.660000px;}
.h28{height:6.696000px;}
.h18{height:6.840000px;}
.h22{height:8.100000px;}
.h27{height:8.136000px;}
.h26{height:8.280000px;}
.h24{height:8.820000px;}
.h23{height:9.000000px;}
.h1b{height:16.920000px;}
.h1c{height:20.700000px;}
.h25{height:20.736000px;}
.h17{height:36.360000px;}
.h15{height:36.540000px;}
.h16{height:36.576000px;}
.h19{height:39.049805px;}
.h12{height:39.600000px;}
.h20{height:41.400000px;}
.h21{height:41.436000px;}
.hb{height:43.082578px;}
.h5{height:49.500000px;}
.h2{height:50.800781px;}
.h4{height:52.066406px;}
.h2c{height:52.417969px;}
.h7{height:54.316406px;}
.h8{height:54.864844px;}
.he{height:57.276000px;}
.h6{height:58.320000px;}
.h9{height:59.343750px;}
.h1{height:59.436914px;}
.h2d{height:62.244492px;}
.ha{height:63.559687px;}
.h3{height:67.565039px;}
.h2b{height:67.703174px;}
.h2a{height:78.522370px;}
.hf{height:80.820000px;}
.hd{height:82.279688px;}
.hc{height:85.159687px;}
.h10{height:119.160000px;}
.h11{height:119.376000px;}
.h29{height:401.408188px;}
.h13{height:458.175000px;}
.h0{height:1188.000000px;}
.w2{width:52.200000px;}
.w26{width:74.700000px;}
.w27{width:82.836000px;}
.w28{width:90.360000px;}
.w1e{width:90.396000px;}
.wf{width:90.540000px;}
.we{width:90.576000px;}
.w10{width:90.756000px;}
.w1b{width:92.016000px;}
.w22{width:100.080000px;}
.w18{width:101.700000px;}
.wa{width:108.720000px;}
.w1d{width:109.440000px;}
.w20{width:109.656000px;}
.w1a{width:111.240000px;}
.w19{width:111.276000px;}
.w4{width:121.500000px;}
.w9{width:142.776000px;}
.wd{width:151.200000px;}
.w11{width:152.100000px;}
.w13{width:160.050000px;}
.w6{width:161.670000px;}
.w8{width:162.180000px;}
.w3{width:163.470000px;}
.wb{width:165.450000px;}
.wc{width:165.630000px;}
.w29{width:181.110000px;}
.w12{width:181.470000px;}
.w21{width:182.730000px;}
.w14{width:187.230000px;}
.w17{width:205.230000px;}
.w5{width:209.190000px;}
.w23{width:219.090000px;}
.w1f{width:282.810000px;}
.w15{width:306.930000px;}
.w16{width:314.535000px;}
.w1c{width:392.475000px;}
.w25{width:415.155000px;}
.w24{width:489.855000px;}
.w2a{width:640.794536px;}
.w7{width:724.245000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x3d{left:-1.080000px;}
.x0{left:0.000000px;}
.x4f{left:2.160000px;}
.x16{left:7.020000px;}
.x7{left:9.719986px;}
.x1f{left:10.800000px;}
.x2d{left:12.240000px;}
.x34{left:14.400000px;}
.x38{left:16.560000px;}
.x36{left:17.640000px;}
.x55{left:18.720000px;}
.x35{left:20.340000px;}
.x29{left:22.140000px;}
.x5b{left:24.480000px;}
.x21{left:26.820000px;}
.x48{left:27.900000px;}
.x45{left:29.700000px;}
.x22{left:32.625000px;}
.x23{left:34.740000px;}
.x50{left:36.900000px;}
.x8{left:38.339986px;}
.x56{left:39.780000px;}
.x4e{left:41.220000px;}
.x31{left:44.685000px;}
.x4b{left:45.720000px;}
.x2c{left:48.420000px;}
.x41{left:50.220000px;}
.x1d{left:51.885000px;}
.x25{left:53.814000px;}
.x42{left:55.080000px;}
.x24{left:59.625000px;}
.x3c{left:61.785000px;}
.x27{left:63.180000px;}
.x47{left:64.305000px;}
.x49{left:68.610000px;}
.x37{left:70.554000px;}
.x5c{left:73.811534px;}
.x2f{left:75.054000px;}
.x2b{left:77.805000px;}
.x4a{left:79.020000px;}
.x1b{left:80.454000px;}
.x4d{left:82.305000px;}
.x46{left:83.520000px;}
.x57{left:84.774000px;}
.x4c{left:88.020000px;}
.x53{left:90.894000px;}
.x3f{left:102.054000px;}
.x5{left:106.955986px;}
.x10{left:108.035986px;}
.x2e{left:110.376000px;}
.x15{left:116.496000px;}
.x14{left:124.415986px;}
.x61{left:162.029986px;}
.x17{left:168.690000px;}
.x60{left:174.449986px;}
.x1{left:176.249986px;}
.x5f{left:179.489986px;}
.xa{left:204.329986px;}
.x3{left:206.309986px;}
.x11{left:209.369986px;}
.x26{left:216.750000px;}
.x4{left:236.549986px;}
.x5d{left:250.931644px;}
.x39{left:259.770000px;}
.x30{left:261.570000px;}
.x1c{left:270.210000px;}
.x2{left:284.249986px;}
.x54{left:293.115000px;}
.xc{left:304.634986px;}
.x40{left:315.615000px;}
.xd{left:323.534986px;}
.x18{left:332.175000px;}
.x59{left:344.415000px;}
.x32{left:352.155000px;}
.xe{left:368.894986px;}
.x28{left:382.215000px;}
.xf{left:392.834986px;}
.x1e{left:412.995000px;}
.x3e{left:417.315000px;}
.x9{left:423.074986px;}
.x5a{left:434.775000px;}
.x3a{left:441.255000px;}
.x33{left:442.695000px;}
.x19{left:453.675000px;}
.xb{left:488.444986px;}
.x51{left:502.845000px;}
.x58{left:525.525000px;}
.x43{left:528.585000px;}
.x12{left:539.024986px;}
.x2a{left:547.665000px;}
.x20{left:555.765000px;}
.x3b{left:601.305000px;}
.x52{left:612.285000px;}
.x44{left:639.825000px;}
.x1a{left:662.865000px;}
.x13{left:686.669986px;}
.x5e{left:747.869986px;}
.x6{left:851.909986px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v5{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v2{vertical-align:12.800000pt;}
.v4{vertical-align:19.200000pt;}
.v6{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls13{letter-spacing:-0.128000pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls4{letter-spacing:-0.030720pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.024960pt;}
.ls8{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.303360pt;}
.ls10{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.751971pt;}
.lsb{letter-spacing:2.490240pt;}
.ls7{letter-spacing:3.200000pt;}
.lsf{letter-spacing:3.686400pt;}
.ls9{letter-spacing:17.920000pt;}
.lsa{letter-spacing:21.606400pt;}
.ls17{letter-spacing:78.208000pt;}
.lse{letter-spacing:98.602667pt;}
.lsc{letter-spacing:98.624000pt;}
.lsd{letter-spacing:98.784000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.wse{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.859454pt;}
.ws4{word-spacing:-14.080000pt;}
.wsf{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.904000pt;}
.ws8{word-spacing:-9.996800pt;}
.ws2{word-spacing:0.000000pt;}
.ws7{word-spacing:0.192000pt;}
.ws6{word-spacing:6.573440pt;}
.ws5{word-spacing:6.733440pt;}
.wsb{word-spacing:83.992107pt;}
.wsa{word-spacing:84.653440pt;}
.ws12{word-spacing:136.431049pt;}
.ws9{word-spacing:316.333440pt;}
._2{margin-left:-78.732800pt;}
._1d{margin-left:-6.933333pt;}
._28{margin-left:-5.888000pt;}
._19{margin-left:-4.672000pt;}
._6{margin-left:-3.712000pt;}
._7{margin-left:-2.624000pt;}
._4{margin-left:-0.984960pt;}
._0{width:1.292800pt;}
._5{width:2.547200pt;}
._8{width:3.916800pt;}
._d{width:5.632000pt;}
._16{width:6.528000pt;}
._11{width:7.424000pt;}
._a{width:9.152000pt;}
._9{width:10.624000pt;}
._b{width:11.584000pt;}
._10{width:13.312000pt;}
._12{width:14.296960pt;}
._1e{width:15.872000pt;}
._c{width:17.728000pt;}
._e{width:19.434667pt;}
._1a{width:20.637867pt;}
._1b{width:21.535360pt;}
._17{width:22.762667pt;}
._18{width:24.533333pt;}
._1c{width:28.824960pt;}
._f{width:30.592000pt;}
._15{width:32.576000pt;}
._22{width:33.770667pt;}
._32{width:39.680000pt;}
._34{width:41.216000pt;}
._35{width:42.208000pt;}
._1f{width:48.362667pt;}
._36{width:57.984000pt;}
._37{width:59.914667pt;}
._2d{width:64.576000pt;}
._2e{width:65.472000pt;}
._24{width:66.752000pt;}
._25{width:68.608000pt;}
._2b{width:72.384000pt;}
._3{width:74.115627pt;}
._26{width:78.912000pt;}
._27{width:86.528000pt;}
._31{width:87.520000pt;}
._2f{width:90.880000pt;}
._30{width:91.904000pt;}
._1{width:97.226667pt;}
._33{width:107.264000pt;}
._38{width:110.400000pt;}
._23{width:116.864000pt;}
._21{width:126.432000pt;}
._20{width:139.904000pt;}
._29{width:154.366841pt;}
._39{width:163.818667pt;}
._13{width:171.776000pt;}
._14{width:172.672000pt;}
._2a{width:193.473880pt;}
._2c{width:194.494120pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:42.880000pt;}
.fs4{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs9{font-size:60.505581pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs8{font-size:70.174577pt;}
.fs1{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.yb{bottom:-14.400000pt;}
.y157{bottom:-10.720000pt;}
.y155{bottom:-10.240000pt;}
.y15a{bottom:-10.080000pt;}
.y1b5{bottom:-8.960000pt;}
.y1b6{bottom:-8.800000pt;}
.y184{bottom:-7.680000pt;}
.y197{bottom:-7.520000pt;}
.y18a{bottom:-7.040000pt;}
.y186{bottom:-6.880000pt;}
.y12e{bottom:-5.280000pt;}
.y12c{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.y137{bottom:2.554667pt;}
.y130{bottom:2.560000pt;}
.y132{bottom:2.720000pt;}
.y153{bottom:3.520000pt;}
.y31{bottom:5.440000pt;}
.ya{bottom:5.600000pt;}
.y2f{bottom:9.600000pt;}
.y1d3{bottom:9.778144pt;}
.yeb{bottom:17.440000pt;}
.yf1{bottom:17.600000pt;}
.ye1{bottom:17.626667pt;}
.yfc{bottom:17.640000pt;}
.y8{bottom:19.200000pt;}
.ye5{bottom:20.160000pt;}
.yf5{bottom:20.314667pt;}
.yf3{bottom:20.320000pt;}
.y15d{bottom:21.920000pt;}
.y164{bottom:21.960000pt;}
.y30{bottom:28.000000pt;}
.y9{bottom:28.160000pt;}
.yea{bottom:35.840000pt;}
.yf0{bottom:36.000000pt;}
.ye0{bottom:36.026667pt;}
.y116{bottom:36.040000pt;}
.ye4{bottom:38.560000pt;}
.y7{bottom:51.360000pt;}
.y1d2{bottom:53.061632pt;}
.ye9{bottom:54.240000pt;}
.yef{bottom:54.400000pt;}
.ye3{bottom:56.960000pt;}
.y1cb{bottom:69.741071pt;}
.y6{bottom:69.792000pt;}
.ye8{bottom:72.640000pt;}
.yee{bottom:72.800000pt;}
.ye7{bottom:91.040000pt;}
.yed{bottom:91.240000pt;}
.y13a{bottom:103.392000pt;}
.y1c9{bottom:103.552000pt;}
.y113{bottom:105.632000pt;}
.y180{bottom:107.392000pt;}
.y139{bottom:112.352000pt;}
.y1cc{bottom:114.885967pt;}
.y6d{bottom:115.232000pt;}
.y8b{bottom:115.392000pt;}
.yb9{bottom:116.032000pt;}
.y57{bottom:116.672000pt;}
.y1b1{bottom:116.992000pt;}
.y138{bottom:118.272000pt;}
.y112{bottom:124.032000pt;}
.y151{bottom:124.352000pt;}
.yf6{bottom:125.152000pt;}
.yf4{bottom:125.952000pt;}
.y1e9{bottom:126.912000pt;}
.y2e{bottom:129.472000pt;}
.y136{bottom:133.312000pt;}
.y6c{bottom:133.626667pt;}
.y8a{bottom:133.786667pt;}
.yb8{bottom:134.426667pt;}
.y9d{bottom:135.226667pt;}
.y1b0{bottom:135.386667pt;}
.yc9{bottom:138.746667pt;}
.y17f{bottom:139.866667pt;}
.y1c8{bottom:140.666667pt;}
.y221{bottom:141.786667pt;}
.y150{bottom:142.746667pt;}
.y1e8{bottom:145.306667pt;}
.y135{bottom:148.346667pt;}
.y6b{bottom:152.026667pt;}
.y89{bottom:152.186667pt;}
.yc0{bottom:152.506667pt;}
.y56{bottom:152.826667pt;}
.y9c{bottom:153.626667pt;}
.y1af{bottom:153.786667pt;}
.y1ff{bottom:158.106667pt;}
.y17e{bottom:158.266667pt;}
.y1c7{bottom:159.066667pt;}
.y1cd{bottom:159.891973pt;}
.y220{bottom:160.186667pt;}
.yf2{bottom:161.146667pt;}
.y2d{bottom:161.946667pt;}
.y134{bottom:163.386667pt;}
.y1e7{bottom:163.706667pt;}
.y88{bottom:170.586667pt;}
.ybf{bottom:170.906667pt;}
.yc8{bottom:171.226667pt;}
.yb7{bottom:171.386667pt;}
.y9b{bottom:172.026667pt;}
.y133{bottom:172.346667pt;}
.y1fe{bottom:176.506667pt;}
.y17d{bottom:176.666667pt;}
.y1c6{bottom:177.466667pt;}
.y131{bottom:178.266667pt;}
.y21f{bottom:178.586667pt;}
.y111{bottom:179.546667pt;}
.y1e6{bottom:182.106667pt;}
.y55{bottom:188.986667pt;}
.ybe{bottom:189.306667pt;}
.yc7{bottom:189.626667pt;}
.yb6{bottom:189.786667pt;}
.y9a{bottom:190.426667pt;}
.y1ae{bottom:190.906667pt;}
.y12f{bottom:193.306667pt;}
.y14f{bottom:193.626667pt;}
.y2c{bottom:194.426667pt;}
.y17c{bottom:195.066667pt;}
.y1c5{bottom:195.866667pt;}
.yec{bottom:196.346667pt;}
.y110{bottom:197.946667pt;}
.y1e5{bottom:200.506667pt;}
.y1fd{bottom:202.906667pt;}
.y1ce{bottom:204.897979pt;}
.y21e{bottom:204.986667pt;}
.y87{bottom:207.386667pt;}
.ybd{bottom:207.706667pt;}
.yc6{bottom:208.026667pt;}
.yb5{bottom:208.186667pt;}
.y12d{bottom:208.346667pt;}
.y99{bottom:208.826667pt;}
.y1ad{bottom:209.306667pt;}
.y14e{bottom:212.026667pt;}
.y17b{bottom:213.466667pt;}
.y233{bottom:215.386667pt;}
.y10f{bottom:216.346667pt;}
.y12b{bottom:217.306667pt;}
.y1fc{bottom:221.306667pt;}
.y21d{bottom:223.386667pt;}
.y86{bottom:225.786667pt;}
.y54{bottom:226.106667pt;}
.yc5{bottom:226.426667pt;}
.yb4{bottom:226.586667pt;}
.y2b{bottom:226.746667pt;}
.y98{bottom:227.226667pt;}
.y1ac{bottom:227.706667pt;}
.y14d{bottom:230.426667pt;}
.y17a{bottom:231.866667pt;}
.y1c4{bottom:232.826667pt;}
.y232{bottom:233.786667pt;}
.y10e{bottom:234.746667pt;}
.y1e4{bottom:237.466667pt;}
.y1fb{bottom:239.706667pt;}
.y12a{bottom:240.826667pt;}
.y21c{bottom:241.786667pt;}
.y85{bottom:244.186667pt;}
.y53{bottom:244.506667pt;}
.yc4{bottom:244.826667pt;}
.yb3{bottom:244.986667pt;}
.y97{bottom:245.626667pt;}
.y1ab{bottom:246.106667pt;}
.y14c{bottom:248.826667pt;}
.y1cf{bottom:250.044278pt;}
.y1c3{bottom:251.226667pt;}
.y231{bottom:252.186667pt;}
.y10d{bottom:253.146667pt;}
.y1e3{bottom:255.866667pt;}
.y84{bottom:262.586667pt;}
.y52{bottom:262.906667pt;}
.yc3{bottom:263.226667pt;}
.yb2{bottom:263.386667pt;}
.y2a{bottom:263.866667pt;}
.y96{bottom:264.026667pt;}
.y179{bottom:264.346667pt;}
.y1aa{bottom:264.506667pt;}
.y1fa{bottom:266.106667pt;}
.y21b{bottom:268.186667pt;}
.y1c2{bottom:269.626667pt;}
.y10c{bottom:271.546667pt;}
.y1e2{bottom:274.266667pt;}
.y129{bottom:277.986667pt;}
.y230{bottom:278.626667pt;}
.y83{bottom:281.026667pt;}
.y6a{bottom:281.346667pt;}
.yc2{bottom:281.666667pt;}
.yb1{bottom:281.826667pt;}
.y29{bottom:282.306667pt;}
.y95{bottom:282.466667pt;}
.y178{bottom:282.786667pt;}
.y1a9{bottom:282.946667pt;}
.y1f9{bottom:284.546667pt;}
.y21a{bottom:286.626667pt;}
.y1c1{bottom:288.066667pt;}
.y1e1{bottom:292.706667pt;}
.y1d0{bottom:295.050284pt;}
.y128{bottom:296.386667pt;}
.y22f{bottom:297.026667pt;}
.y82{bottom:299.426667pt;}
.ybc{bottom:299.746667pt;}
.y51{bottom:300.066667pt;}
.yb0{bottom:300.226667pt;}
.y94{bottom:300.866667pt;}
.y177{bottom:301.186667pt;}
.y1a8{bottom:301.346667pt;}
.ye6{bottom:302.466667pt;}
.y1f8{bottom:302.946667pt;}
.y219{bottom:305.026667pt;}
.y1c0{bottom:306.466667pt;}
.y10b{bottom:308.546667pt;}
.y127{bottom:314.786667pt;}
.y81{bottom:317.826667pt;}
.y14b{bottom:318.146667pt;}
.y50{bottom:318.466667pt;}
.yaf{bottom:318.626667pt;}
.y93{bottom:319.266667pt;}
.y28{bottom:319.426667pt;}
.y176{bottom:319.586667pt;}
.y22e{bottom:323.426667pt;}
.y1f7{bottom:326.466667pt;}
.y10a{bottom:326.946667pt;}
.y1e0{bottom:329.826667pt;}
.y218{bottom:331.426667pt;}
.y126{bottom:333.186667pt;}
.y80{bottom:336.226667pt;}
.y14a{bottom:336.546667pt;}
.y4f{bottom:336.866667pt;}
.yae{bottom:337.026667pt;}
.y92{bottom:337.666667pt;}
.y27{bottom:337.826667pt;}
.y175{bottom:337.986667pt;}
.y1a7{bottom:338.466667pt;}
.y1d1{bottom:340.056290pt;}
.y1bf{bottom:343.586667pt;}
.y109{bottom:345.346667pt;}
.y217{bottom:349.826667pt;}
.y1f6{bottom:350.306667pt;}
.y125{bottom:351.586667pt;}
.y7f{bottom:354.626667pt;}
.y4e{bottom:355.266667pt;}
.y26{bottom:356.226667pt;}
.y1a6{bottom:356.866667pt;}
.y1be{bottom:361.986667pt;}
.y108{bottom:363.746667pt;}
.y1df{bottom:366.946667pt;}
.y216{bottom:368.226667pt;}
.y1f5{bottom:368.706667pt;}
.y149{bottom:368.866667pt;}
.y174{bottom:370.466667pt;}
.y7e{bottom:373.026667pt;}
.y4d{bottom:373.666667pt;}
.ybb{bottom:373.826667pt;}
.yad{bottom:374.146667pt;}
.y25{bottom:374.626667pt;}
.y1a5{bottom:375.266667pt;}
.y22d{bottom:376.226667pt;}
.y1bd{bottom:380.386667pt;}
.y107{bottom:382.146667pt;}
.y1de{bottom:385.346667pt;}
.y215{bottom:386.626667pt;}
.y1f4{bottom:387.106667pt;}
.y148{bottom:387.266667pt;}
.y124{bottom:388.706667pt;}
.y173{bottom:388.866667pt;}
.y7d{bottom:391.426667pt;}
.y4c{bottom:392.066667pt;}
.yac{bottom:392.546667pt;}
.y24{bottom:393.026667pt;}
.y1a4{bottom:393.666667pt;}
.y1bc{bottom:398.786667pt;}
.y106{bottom:400.546667pt;}
.y22c{bottom:402.626667pt;}
.y1dd{bottom:403.746667pt;}
.y1f3{bottom:405.506667pt;}
.y147{bottom:405.666667pt;}
.y123{bottom:407.106667pt;}
.y172{bottom:407.266667pt;}
.ye2{bottom:408.386667pt;}
.y7c{bottom:409.826667pt;}
.y69{bottom:410.466667pt;}
.yab{bottom:410.946667pt;}
.y23{bottom:411.426667pt;}
.y1a3{bottom:412.066667pt;}
.y214{bottom:413.026667pt;}
.y1bb{bottom:417.186667pt;}
.y105{bottom:418.946667pt;}
.y22b{bottom:421.026667pt;}
.y1dc{bottom:422.146667pt;}
.y1f2{bottom:423.906667pt;}
.y146{bottom:424.066667pt;}
.y122{bottom:425.506667pt;}
.y171{bottom:425.666667pt;}
.y7b{bottom:428.226667pt;}
.y68{bottom:428.866667pt;}
.y4b{bottom:429.026667pt;}
.yaa{bottom:429.346667pt;}
.y22{bottom:429.826667pt;}
.y1a2{bottom:430.466667pt;}
.y213{bottom:431.426667pt;}
.y1db{bottom:440.546667pt;}
.y1f1{bottom:442.306667pt;}
.y145{bottom:442.466667pt;}
.y121{bottom:443.906667pt;}
.y170{bottom:444.066667pt;}
.y67{bottom:447.266667pt;}
.y4a{bottom:447.426667pt;}
.ya9{bottom:447.746667pt;}
.y21{bottom:448.226667pt;}
.y212{bottom:449.826667pt;}
.y1ba{bottom:454.306667pt;}
.y104{bottom:456.066667pt;}
.y1da{bottom:458.946667pt;}
.y1f0{bottom:460.706667pt;}
.y120{bottom:462.306667pt;}
.y16f{bottom:462.466667pt;}
.y7a{bottom:465.346667pt;}
.y66{bottom:465.666667pt;}
.y49{bottom:465.826667pt;}
.ya8{bottom:466.146667pt;}
.y20{bottom:466.626667pt;}
.y1a1{bottom:467.426667pt;}
.y1b9{bottom:472.706667pt;}
.y144{bottom:474.946667pt;}
.y211{bottom:476.226667pt;}
.y1d9{bottom:477.346667pt;}
.ydf{bottom:480.866667pt;}
.y1a0{bottom:482.306667pt;}
.y65{bottom:484.066667pt;}
.y48{bottom:484.226667pt;}
.ya7{bottom:484.546667pt;}
.y1f{bottom:485.026667pt;}
.y1b8{bottom:487.586667pt;}
.y103{bottom:490.306667pt;}
.y1ef{bottom:493.186667pt;}
.y143{bottom:493.346667pt;}
.y210{bottom:494.626667pt;}
.y1d8{bottom:495.746667pt;}
.y1b7{bottom:496.546667pt;}
.y11f{bottom:499.293333pt;}
.y19f{bottom:500.573333pt;}
.y64{bottom:502.493333pt;}
.y47{bottom:502.653333pt;}
.ya6{bottom:502.973333pt;}
.y1e{bottom:503.453333pt;}
.y22a{bottom:510.653333pt;}
.y142{bottom:511.773333pt;}
.y16e{bottom:513.373333pt;}
.y1d7{bottom:514.173333pt;}
.y11e{bottom:517.693333pt;}
.y19e{bottom:518.973333pt;}
.y63{bottom:520.893333pt;}
.y46{bottom:521.053333pt;}
.ya5{bottom:521.373333pt;}
.y1d{bottom:521.853333pt;}
.y102{bottom:522.813333pt;}
.y1ee{bottom:525.693333pt;}
.y229{bottom:529.053333pt;}
.y141{bottom:530.173333pt;}
.y16d{bottom:531.773333pt;}
.y1d6{bottom:532.573333pt;}
.y11d{bottom:536.093333pt;}
.y19d{bottom:537.373333pt;}
.y79{bottom:539.293333pt;}
.y45{bottom:539.453333pt;}
.ya4{bottom:539.773333pt;}
.y1c{bottom:540.253333pt;}
.y1ed{bottom:544.093333pt;}
.y228{bottom:547.453333pt;}
.yde{bottom:550.013333pt;}
.y16c{bottom:550.173333pt;}
.y11c{bottom:554.493333pt;}
.y101{bottom:555.293333pt;}
.y19c{bottom:555.773333pt;}
.y78{bottom:557.693333pt;}
.y44{bottom:557.853333pt;}
.yba{bottom:558.173333pt;}
.y1b{bottom:558.653333pt;}
.y1ec{bottom:562.493333pt;}
.y140{bottom:562.653333pt;}
.y20f{bottom:565.853333pt;}
.y1b4{bottom:566.813333pt;}
.y16b{bottom:568.573333pt;}
.y1d5{bottom:569.533333pt;}
.y1b3{bottom:572.733333pt;}
.y11b{bottom:572.893333pt;}
.y227{bottom:573.853333pt;}
.y19b{bottom:574.173333pt;}
.y43{bottom:576.253333pt;}
.yc1{bottom:576.573333pt;}
.ya3{bottom:576.893333pt;}
.y1a{bottom:577.053333pt;}
.y13f{bottom:579.613333pt;}
.y1eb{bottom:580.893333pt;}
.y20e{bottom:584.253333pt;}
.ydd{bottom:586.973333pt;}
.y100{bottom:587.613333pt;}
.y1b2{bottom:591.133333pt;}
.y11a{bottom:591.293333pt;}
.y226{bottom:592.253333pt;}
.y19a{bottom:592.573333pt;}
.y42{bottom:594.653333pt;}
.y62{bottom:594.973333pt;}
.ya2{bottom:595.293333pt;}
.y19{bottom:595.453333pt;}
.y1ea{bottom:599.293333pt;}
.y20d{bottom:602.653333pt;}
.y1ca{bottom:603.120000pt;}
.y1d4{bottom:603.133333pt;}
.ydc{bottom:605.373333pt;}
.y119{bottom:609.693333pt;}
.y225{bottom:610.653333pt;}
.y199{bottom:610.973333pt;}
.y13e{bottom:612.093333pt;}
.y41{bottom:613.053333pt;}
.y61{bottom:613.373333pt;}
.ya1{bottom:613.693333pt;}
.y18{bottom:613.853333pt;}
.y16a{bottom:619.453333pt;}
.yff{bottom:620.093333pt;}
.ydb{bottom:623.773333pt;}
.y20c{bottom:629.053333pt;}
.y198{bottom:629.373333pt;}
.y77{bottom:631.453333pt;}
.y60{bottom:631.773333pt;}
.ya0{bottom:631.933333pt;}
.y17{bottom:632.253333pt;}
.y169{bottom:634.333333pt;}
.y196{bottom:640.253333pt;}
.y168{bottom:641.373333pt;}
.y13d{bottom:644.413333pt;}
.y167{bottom:646.173333pt;}
.y118{bottom:646.813333pt;}
.y20b{bottom:647.453333pt;}
.y195{bottom:647.613333pt;}
.y76{bottom:649.853333pt;}
.y40{bottom:650.173333pt;}
.y9f{bottom:650.333333pt;}
.y16{bottom:650.653333pt;}
.yfe{bottom:652.573333pt;}
.yda{bottom:660.893333pt;}
.y166{bottom:664.573333pt;}
.y224{bottom:665.853333pt;}
.y194{bottom:666.013333pt;}
.y75{bottom:668.253333pt;}
.y3f{bottom:668.573333pt;}
.y9e{bottom:668.733333pt;}
.y15{bottom:669.053333pt;}
.y20a{bottom:673.853333pt;}
.y13c{bottom:677.693333pt;}
.y117{bottom:681.053333pt;}
.y165{bottom:682.973333pt;}
.y193{bottom:684.413333pt;}
.yfd{bottom:685.053333pt;}
.y74{bottom:686.653333pt;}
.y3e{bottom:686.973333pt;}
.y5f{bottom:687.133333pt;}
.y14{bottom:687.453333pt;}
.y209{bottom:692.253333pt;}
.yd9{bottom:698.013333pt;}
.y163{bottom:701.373333pt;}
.y192{bottom:702.813333pt;}
.y73{bottom:705.053333pt;}
.y3d{bottom:705.373333pt;}
.y5e{bottom:705.533333pt;}
.y13{bottom:705.853333pt;}
.y208{bottom:710.653333pt;}
.y115{bottom:713.533333pt;}
.yd8{bottom:716.413333pt;}
.yfb{bottom:717.533333pt;}
.y191{bottom:721.253333pt;}
.y72{bottom:723.493333pt;}
.y3c{bottom:723.813333pt;}
.y5d{bottom:723.973333pt;}
.y12{bottom:724.293333pt;}
.y13b{bottom:728.453333pt;}
.y207{bottom:737.093333pt;}
.y162{bottom:738.213333pt;}
.y190{bottom:739.653333pt;}
.y3b{bottom:742.213333pt;}
.y5c{bottom:742.373333pt;}
.y11{bottom:742.693333pt;}
.yfa{bottom:750.053333pt;}
.yd7{bottom:753.413333pt;}
.y206{bottom:755.493333pt;}
.y161{bottom:756.613333pt;}
.y18f{bottom:758.053333pt;}
.y3a{bottom:760.613333pt;}
.y5b{bottom:760.773333pt;}
.y91{bottom:761.093333pt;}
.y10{bottom:761.253333pt;}
.y114{bottom:764.453333pt;}
.yd6{bottom:771.813333pt;}
.y223{bottom:773.893333pt;}
.y160{bottom:775.013333pt;}
.y18e{bottom:776.453333pt;}
.y39{bottom:779.013333pt;}
.y5a{bottom:779.173333pt;}
.y90{bottom:779.493333pt;}
.yf{bottom:780.933333pt;}
.y205{bottom:781.893333pt;}
.yf9{bottom:782.533333pt;}
.yd5{bottom:791.493333pt;}
.y15f{bottom:793.413333pt;}
.y18d{bottom:794.853333pt;}
.y59{bottom:797.573333pt;}
.y8f{bottom:797.893333pt;}
.ye{bottom:799.493333pt;}
.y204{bottom:800.293333pt;}
.yd4{bottom:811.013333pt;}
.y15e{bottom:811.813333pt;}
.y18c{bottom:813.253333pt;}
.yf8{bottom:815.653333pt;}
.y38{bottom:815.973333pt;}
.y8e{bottom:816.293333pt;}
.y203{bottom:818.693333pt;}
.yd{bottom:819.813333pt;}
.y15c{bottom:830.213333pt;}
.yd3{bottom:830.693333pt;}
.y18b{bottom:831.653333pt;}
.y37{bottom:834.373333pt;}
.y8d{bottom:834.693333pt;}
.y222{bottom:837.093333pt;}
.yc{bottom:841.253333pt;}
.y202{bottom:845.093333pt;}
.yd2{bottom:849.093333pt;}
.y189{bottom:850.053333pt;}
.y36{bottom:852.773333pt;}
.y8c{bottom:853.093333pt;}
.y188{bottom:860.933333pt;}
.y5{bottom:862.213333pt;}
.y201{bottom:863.493333pt;}
.y15b{bottom:867.013333pt;}
.yd1{bottom:867.493333pt;}
.y187{bottom:868.133333pt;}
.yf7{bottom:871.013333pt;}
.y35{bottom:871.173333pt;}
.y71{bottom:871.493333pt;}
.y159{bottom:874.053333pt;}
.y158{bottom:878.853333pt;}
.y200{bottom:881.893333pt;}
.yd0{bottom:885.893333pt;}
.y185{bottom:886.533333pt;}
.y34{bottom:889.573333pt;}
.y70{bottom:889.893333pt;}
.y156{bottom:897.253333pt;}
.y183{bottom:897.573333pt;}
.y4{bottom:899.173333pt;}
.y154{bottom:904.453333pt;}
.y182{bottom:904.773333pt;}
.y33{bottom:907.973333pt;}
.y58{bottom:908.133333pt;}
.y6f{bottom:908.293333pt;}
.y152{bottom:909.093333pt;}
.ycf{bottom:915.013333pt;}
.ycd{bottom:919.813333pt;}
.y181{bottom:923.173333pt;}
.y6e{bottom:926.693333pt;}
.yce{bottom:927.813333pt;}
.y3{bottom:936.773333pt;}
.ycc{bottom:937.573333pt;}
.yca{bottom:942.373333pt;}
.y32{bottom:945.120000pt;}
.ycb{bottom:950.400000pt;}
.y2{bottom:969.920000pt;}
.y1{bottom:990.560000pt;}
.h14{height:1.851250pt;}
.h1e{height:4.160000pt;}
.h1d{height:4.640000pt;}
.h1f{height:4.800000pt;}
.h1a{height:5.920000pt;}
.h28{height:5.952000pt;}
.h18{height:6.080000pt;}
.h22{height:7.200000pt;}
.h27{height:7.232000pt;}
.h26{height:7.360000pt;}
.h24{height:7.840000pt;}
.h23{height:8.000000pt;}
.h1b{height:15.040000pt;}
.h1c{height:18.400000pt;}
.h25{height:18.432000pt;}
.h17{height:32.320000pt;}
.h15{height:32.480000pt;}
.h16{height:32.512000pt;}
.h19{height:34.710938pt;}
.h12{height:35.200000pt;}
.h20{height:36.800000pt;}
.h21{height:36.832000pt;}
.hb{height:38.295625pt;}
.h5{height:44.000000pt;}
.h2{height:45.156250pt;}
.h4{height:46.281250pt;}
.h2c{height:46.593750pt;}
.h7{height:48.281250pt;}
.h8{height:48.768750pt;}
.he{height:50.912000pt;}
.h6{height:51.840000pt;}
.h9{height:52.750000pt;}
.h1{height:52.832812pt;}
.h2d{height:55.328437pt;}
.ha{height:56.497500pt;}
.h3{height:60.057813pt;}
.h2b{height:60.180599pt;}
.h2a{height:69.797662pt;}
.hf{height:71.840000pt;}
.hd{height:73.137500pt;}
.hc{height:75.697500pt;}
.h10{height:105.920000pt;}
.h11{height:106.112000pt;}
.h29{height:356.807278pt;}
.h13{height:407.266667pt;}
.h0{height:1056.000000pt;}
.w2{width:46.400000pt;}
.w26{width:66.400000pt;}
.w27{width:73.632000pt;}
.w28{width:80.320000pt;}
.w1e{width:80.352000pt;}
.wf{width:80.480000pt;}
.we{width:80.512000pt;}
.w10{width:80.672000pt;}
.w1b{width:81.792000pt;}
.w22{width:88.960000pt;}
.w18{width:90.400000pt;}
.wa{width:96.640000pt;}
.w1d{width:97.280000pt;}
.w20{width:97.472000pt;}
.w1a{width:98.880000pt;}
.w19{width:98.912000pt;}
.w4{width:108.000000pt;}
.w9{width:126.912000pt;}
.wd{width:134.400000pt;}
.w11{width:135.200000pt;}
.w13{width:142.266667pt;}
.w6{width:143.706667pt;}
.w8{width:144.160000pt;}
.w3{width:145.306667pt;}
.wb{width:147.066667pt;}
.wc{width:147.226667pt;}
.w29{width:160.986667pt;}
.w12{width:161.306667pt;}
.w21{width:162.426667pt;}
.w14{width:166.426667pt;}
.w17{width:182.426667pt;}
.w5{width:185.946667pt;}
.w23{width:194.746667pt;}
.w1f{width:251.386667pt;}
.w15{width:272.826667pt;}
.w16{width:279.586667pt;}
.w1c{width:348.866667pt;}
.w25{width:369.026667pt;}
.w24{width:435.426667pt;}
.w2a{width:569.595143pt;}
.w7{width:643.773333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x3d{left:-0.960000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.920000pt;}
.x16{left:6.240000pt;}
.x7{left:8.639988pt;}
.x1f{left:9.600000pt;}
.x2d{left:10.880000pt;}
.x34{left:12.800000pt;}
.x38{left:14.720000pt;}
.x36{left:15.680000pt;}
.x55{left:16.640000pt;}
.x35{left:18.080000pt;}
.x29{left:19.680000pt;}
.x5b{left:21.760000pt;}
.x21{left:23.840000pt;}
.x48{left:24.800000pt;}
.x45{left:26.400000pt;}
.x22{left:29.000000pt;}
.x23{left:30.880000pt;}
.x50{left:32.800000pt;}
.x8{left:34.079988pt;}
.x56{left:35.360000pt;}
.x4e{left:36.640000pt;}
.x31{left:39.720000pt;}
.x4b{left:40.640000pt;}
.x2c{left:43.040000pt;}
.x41{left:44.640000pt;}
.x1d{left:46.120000pt;}
.x25{left:47.834667pt;}
.x42{left:48.960000pt;}
.x24{left:53.000000pt;}
.x3c{left:54.920000pt;}
.x27{left:56.160000pt;}
.x47{left:57.160000pt;}
.x49{left:60.986667pt;}
.x37{left:62.714667pt;}
.x5c{left:65.610253pt;}
.x2f{left:66.714667pt;}
.x2b{left:69.160000pt;}
.x4a{left:70.240000pt;}
.x1b{left:71.514667pt;}
.x4d{left:73.160000pt;}
.x46{left:74.240000pt;}
.x57{left:75.354667pt;}
.x4c{left:78.240000pt;}
.x53{left:80.794667pt;}
.x3f{left:90.714667pt;}
.x5{left:95.071988pt;}
.x10{left:96.031988pt;}
.x2e{left:98.112000pt;}
.x15{left:103.552000pt;}
.x14{left:110.591988pt;}
.x61{left:144.026655pt;}
.x17{left:149.946667pt;}
.x60{left:155.066655pt;}
.x1{left:156.666655pt;}
.x5f{left:159.546655pt;}
.xa{left:181.626655pt;}
.x3{left:183.386655pt;}
.x11{left:186.106655pt;}
.x26{left:192.666667pt;}
.x4{left:210.266655pt;}
.x5d{left:223.050350pt;}
.x39{left:230.906667pt;}
.x30{left:232.506667pt;}
.x1c{left:240.186667pt;}
.x2{left:252.666655pt;}
.x54{left:260.546667pt;}
.xc{left:270.786655pt;}
.x40{left:280.546667pt;}
.xd{left:287.586655pt;}
.x18{left:295.266667pt;}
.x59{left:306.146667pt;}
.x32{left:313.026667pt;}
.xe{left:327.906655pt;}
.x28{left:339.746667pt;}
.xf{left:349.186655pt;}
.x1e{left:367.106667pt;}
.x3e{left:370.946667pt;}
.x9{left:376.066655pt;}
.x5a{left:386.466667pt;}
.x3a{left:392.226667pt;}
.x33{left:393.506667pt;}
.x19{left:403.266667pt;}
.xb{left:434.173321pt;}
.x51{left:446.973333pt;}
.x58{left:467.133333pt;}
.x43{left:469.853333pt;}
.x12{left:479.133321pt;}
.x2a{left:486.813333pt;}
.x20{left:494.013333pt;}
.x3b{left:534.493333pt;}
.x52{left:544.253333pt;}
.x44{left:568.733333pt;}
.x1a{left:589.213333pt;}
.x13{left:610.373321pt;}
.x5e{left:664.773321pt;}
.x6{left:757.253321pt;}
}




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