
    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_57c946345f78359ecbf642d0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_65a584881fde8bcc15799e6e.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_bea8d8472fb945f5231041ac.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8ff5a80457ff35b7d3654417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2188afa01a024ffec0c0f0de.woff2')format("woff");}.ff5{font-family:ff5;line-height:3.716797;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_ced31384fd8b1da66a72f3d7.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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854004;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_37c9e1b7dd85b4f0466245eb.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-14.400000px;}
.vd{vertical-align:-12.960000px;}
.v9{vertical-align:-10.800000px;}
.v10{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:10.080000px;}
.v12{vertical-align:12.960000px;}
.v13{vertical-align:18.000000px;}
.va{vertical-align:21.600000px;}
.v7{vertical-align:25.920000px;}
.v1{vertical-align:27.360000px;}
.vc{vertical-align:38.160000px;}
.vf{vertical-align:45.360000px;}
.v8{vertical-align:48.960000px;}
.vb{vertical-align:51.840000px;}
.v4{vertical-align:54.720000px;}
.v6{vertical-align:75.600000px;}
.v5{vertical-align:86.400000px;}
.ve{vertical-align:95.040000px;}
.lsf{letter-spacing:-0.288000px;}
.ls18{letter-spacing:-0.259800px;}
.ls1a{letter-spacing:-0.226200px;}
.ls16{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.108000px;}
.ls14{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.099600px;}
.ls1c{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.089400px;}
.ls5{letter-spacing:0.100800px;}
.ls11{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.151200px;}
.lse{letter-spacing:0.193200px;}
.ls1d{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.226200px;}
.ls8{letter-spacing:0.250560px;}
.ls17{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.288000px;}
.ls13{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.385200px;}
.ls7{letter-spacing:0.416160px;}
.lsb{letter-spacing:1.792800px;}
.ls6{letter-spacing:42.112800px;}
.ls9{letter-spacing:52.912800px;}
.lsc{letter-spacing:71.632800px;}
.ls3{letter-spacing:135.576000px;}
.ls1{letter-spacing:197.976000px;}
.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;}
}
.ws9{word-spacing:-18.288000px;}
.ws10{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.wsf{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws3{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws12{word-spacing:-15.199800px;}
.wsd{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws11{word-spacing:-14.680200px;}
.ws1c{word-spacing:-13.860000px;}
.ws18{word-spacing:-13.716000px;}
.ws1b{word-spacing:-13.644000px;}
.ws19{word-spacing:-13.482000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1a{word-spacing:-13.284000px;}
.ws0{word-spacing:-12.060000px;}
.ws4{word-spacing:-11.246400px;}
.ws7{word-spacing:-11.146800px;}
.ws16{word-spacing:-10.800000px;}
.ws14{word-spacing:-10.529400px;}
.ws15{word-spacing:-10.440000px;}
.ws13{word-spacing:-10.213800px;}
.ws5{word-spacing:-9.187200px;}
.ws17{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
.ws6{word-spacing:113.897520px;}
._4{margin-left:-2.947200px;}
._0{margin-left:-1.179360px;}
._1{width:1.095360px;}
._2{width:4.125360px;}
._5{width:5.349120px;}
._3{width:24.681360px;}
._6{width:197.976000px;}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1ac{bottom:2.340000px;}
.y1c6{bottom:2.520000px;}
.y200{bottom:2.880000px;}
.y1fe{bottom:3.060000px;}
.y20b{bottom:3.090000px;}
.y143{bottom:3.240000px;}
.yee{bottom:3.960000px;}
.y1fc{bottom:5.220000px;}
.ye8{bottom:5.580000px;}
.ybf{bottom:5.940000px;}
.y8e{bottom:6.300000px;}
.y8b{bottom:6.345000px;}
.y89{bottom:6.480000px;}
.y98{bottom:6.510000px;}
.ye4{bottom:6.840000px;}
.y111{bottom:7.020000px;}
.y10d{bottom:8.100000px;}
.y1ad{bottom:8.280000px;}
.y1b0{bottom:8.460000px;}
.y1b7{bottom:8.490000px;}
.ye1{bottom:8.820000px;}
.y201{bottom:10.620000px;}
.y215{bottom:10.665000px;}
.y1fd{bottom:10.800000px;}
.y20c{bottom:10.830000px;}
.y150{bottom:11.700000px;}
.y145{bottom:11.880000px;}
.y175{bottom:11.910000px;}
.y167{bottom:11.925000px;}
.y85{bottom:12.780000px;}
.y1fa{bottom:13.500000px;}
.yf2{bottom:14.220000px;}
.yef{bottom:14.400000px;}
.y1b6{bottom:14.430000px;}
.y1d8{bottom:14.445000px;}
.y1be{bottom:14.580000px;}
.y1c2{bottom:14.625000px;}
.ye5{bottom:17.280000px;}
.y5d{bottom:17.640000px;}
.yc4{bottom:18.180000px;}
.y10b{bottom:18.360000px;}
.y214{bottom:18.405000px;}
.y92{bottom:18.540000px;}
.y20a{bottom:18.570000px;}
.ye7{bottom:19.080000px;}
.y142{bottom:20.340000px;}
.y146{bottom:20.520000px;}
.y176{bottom:20.550000px;}
.y15e{bottom:20.565000px;}
.y1f9{bottom:21.240000px;}
.y83{bottom:21.420000px;}
.y13a{bottom:24.300000px;}
.yf1{bottom:24.660000px;}
.yed{bottom:24.705000px;}
.y1a9{bottom:25.560000px;}
.ye3{bottom:27.540000px;}
.y110{bottom:27.765000px;}
.y10c{bottom:28.800000px;}
.y13f{bottom:28.980000px;}
.y148{bottom:29.160000px;}
.y15c{bottom:29.205000px;}
.ydf{bottom:29.520000px;}
.y81{bottom:30.060000px;}
.y9a{bottom:30.780000px;}
.yab{bottom:30.810000px;}
.y9f{bottom:30.960000px;}
.y95{bottom:30.990000px;}
.y1aa{bottom:31.680000px;}
.y138{bottom:32.760000px;}
.y13d{bottom:37.620000px;}
.y154{bottom:37.650000px;}
.y15d{bottom:37.665000px;}
.y149{bottom:37.800000px;}
.y1a7{bottom:37.980000px;}
.y82{bottom:38.700000px;}
.ye6{bottom:39.780000px;}
.y5c{bottom:39.960000px;}
.y139{bottom:41.400000px;}
.ya3{bottom:43.020000px;}
.y1a5{bottom:43.920000px;}
.yeb{bottom:46.080000px;}
.y13e{bottom:46.260000px;}
.y84{bottom:47.340000px;}
.y1a6{bottom:50.040000px;}
.ye0{bottom:50.220000px;}
.ybd{bottom:54.540000px;}
.y141{bottom:54.900000px;}
.y155{bottom:54.930000px;}
.y15f{bottom:54.945000px;}
.y163{bottom:55.080000px;}
.y13b{bottom:58.680000px;}
.y5b{bottom:62.280000px;}
.yea{bottom:66.780000px;}
.yb6{bottom:67.545000px;}
.y140{bottom:72.180000px;}
.y5a{bottom:84.600000px;}
.y87{bottom:91.800000px;}
.y59{bottom:106.920000px;}
.y56{bottom:108.360000px;}
.y21e{bottom:110.880000px;}
.yaf{bottom:112.500000px;}
.y157{bottom:113.220000px;}
.ydd{bottom:116.460000px;}
.y74{bottom:118.080000px;}
.y109{bottom:118.620000px;}
.y50{bottom:118.800000px;}
.y16d{bottom:119.160000px;}
.y7f{bottom:119.700000px;}
.y240{bottom:120.420000px;}
.y26{bottom:122.940000px;}
.y55{bottom:124.560000px;}
.y1ce{bottom:125.280000px;}
.y1a3{bottom:128.160000px;}
.y58{bottom:129.240000px;}
.y17f{bottom:134.820000px;}
.yb1{bottom:136.800000px;}
.ydc{bottom:138.780000px;}
.y131{bottom:139.860000px;}
.y73{bottom:140.400000px;}
.y4f{bottom:141.120000px;}
.y7e{bottom:142.020000px;}
.y21d{bottom:142.740000px;}
.y25{bottom:145.260000px;}
.y54{bottom:146.880000px;}
.y156{bottom:148.500000px;}
.y1cd{bottom:150.120000px;}
.y1a2{bottom:150.480000px;}
.y108{bottom:152.820000px;}
.y16c{bottom:154.440000px;}
.y1f7{bottom:158.580000px;}
.yb0{bottom:161.100000px;}
.ydb{bottom:161.280000px;}
.y130{bottom:162.180000px;}
.y72{bottom:162.900000px;}
.y4e{bottom:163.440000px;}
.y7d{bottom:164.340000px;}
.y23f{bottom:165.060000px;}
.y24{bottom:167.760000px;}
.y53{bottom:169.380000px;}
.y17e{bottom:170.100000px;}
.y1a1{bottom:172.800000px;}
.y21c{bottom:174.600000px;}
.y1cc{bottom:174.960000px;}
.y1f6{bottom:180.900000px;}
.yda{bottom:183.600000px;}
.y153{bottom:183.780000px;}
.y12f{bottom:184.500000px;}
.y71{bottom:185.220000px;}
.yae{bottom:185.580000px;}
.y4d{bottom:185.760000px;}
.y7c{bottom:186.840000px;}
.y107{bottom:187.200000px;}
.y23e{bottom:187.380000px;}
.y23{bottom:190.080000px;}
.y1a0{bottom:195.120000px;}
.y1cb{bottom:199.980000px;}
.y1f5{bottom:203.400000px;}
.y52{bottom:204.300000px;}
.yd9{bottom:205.920000px;}
.y21b{bottom:206.280000px;}
.y12e{bottom:207.000000px;}
.y70{bottom:207.540000px;}
.y4c{bottom:208.080000px;}
.y7b{bottom:209.160000px;}
.yaa{bottom:209.880000px;}
.y22{bottom:212.400000px;}
.y19f{bottom:217.440000px;}
.y51{bottom:221.430000px;}
.y106{bottom:221.610000px;}
.y17d{bottom:222.690000px;}
.y16b{bottom:224.130000px;}
.y1ca{bottom:224.850000px;}
.y1f4{bottom:225.750000px;}
.yd8{bottom:228.270000px;}
.y12d{bottom:229.350000px;}
.y6f{bottom:229.890000px;}
.y4b{bottom:230.430000px;}
.y7a{bottom:231.510000px;}
.y23d{bottom:232.230000px;}
.yad{bottom:234.390000px;}
.y21{bottom:234.750000px;}
.y21a{bottom:238.170000px;}
.y19e{bottom:239.790000px;}
.y1f3{bottom:248.070000px;}
.y1c9{bottom:249.690000px;}
.yd7{bottom:250.590000px;}
.y12c{bottom:251.670000px;}
.y6e{bottom:252.210000px;}
.y4a{bottom:252.750000px;}
.y152{bottom:253.470000px;}
.y79{bottom:253.830000px;}
.y23c{bottom:254.550000px;}
.y105{bottom:255.990000px;}
.y20{bottom:257.070000px;}
.yac{bottom:258.690000px;}
.y19d{bottom:262.110000px;}
.y219{bottom:270.030000px;}
.y1f2{bottom:270.390000px;}
.y49{bottom:271.110000px;}
.yd6{bottom:272.910000px;}
.y12b{bottom:273.990000px;}
.y6d{bottom:274.530000px;}
.y17c{bottom:275.250000px;}
.y78{bottom:276.150000px;}
.y16a{bottom:276.690000px;}
.y23b{bottom:276.870000px;}
.y1f{bottom:279.390000px;}
.ya7{bottom:283.170000px;}
.y19c{bottom:284.610000px;}
.y104{bottom:290.370000px;}
.y1f1{bottom:292.710000px;}
.yd5{bottom:295.230000px;}
.y12a{bottom:296.310000px;}
.y6c{bottom:296.850000px;}
.y77{bottom:298.470000px;}
.y23a{bottom:299.190000px;}
.y1c8{bottom:299.550000px;}
.y1e{bottom:301.710000px;}
.y151{bottom:306.030000px;}
.y19b{bottom:306.930000px;}
.ya9{bottom:307.470000px;}
.y1f0{bottom:315.030000px;}
.yd4{bottom:317.550000px;}
.y129{bottom:318.630000px;}
.y6b{bottom:319.170000px;}
.y239{bottom:321.510000px;}
.y1d{bottom:324.030000px;}
.y1c7{bottom:324.390000px;}
.y103{bottom:324.570000px;}
.y169{bottom:329.250000px;}
.ya8{bottom:331.770000px;}
.y76{bottom:333.390000px;}
.y218{bottom:333.570000px;}
.y1ef{bottom:337.350000px;}
.yd3{bottom:339.870000px;}
.y128{bottom:340.950000px;}
.y6a{bottom:341.490000px;}
.y238{bottom:343.830000px;}
.y1c{bottom:346.350000px;}
.y1c5{bottom:349.230000px;}
.y75{bottom:350.490000px;}
.y19a{bottom:351.570000px;}
.ya2{bottom:356.250000px;}
.y14f{bottom:358.590000px;}
.y102{bottom:358.950000px;}
.y1ee{bottom:359.670000px;}
.yd2{bottom:362.190000px;}
.y127{bottom:363.270000px;}
.y69{bottom:363.810000px;}
.y217{bottom:365.430000px;}
.y237{bottom:366.150000px;}
.y1b{bottom:368.670000px;}
.y199{bottom:373.890000px;}
.y1c4{bottom:374.250000px;}
.ya6{bottom:380.550000px;}
.y48{bottom:381.450000px;}
.y168{bottom:381.630000px;}
.y1ed{bottom:381.990000px;}
.yd1{bottom:384.690000px;}
.y126{bottom:385.590000px;}
.y68{bottom:386.310000px;}
.y252{bottom:387.930000px;}
.y236{bottom:388.470000px;}
.y1a{bottom:390.990000px;}
.y101{bottom:393.330000px;}
.y198{bottom:396.210000px;}
.y216{bottom:397.110000px;}
.y1c3{bottom:399.090000px;}
.y47{bottom:403.770000px;}
.y1ec{bottom:404.310000px;}
.ya5{bottom:405.030000px;}
.yd0{bottom:407.010000px;}
.y125{bottom:407.910000px;}
.y67{bottom:408.630000px;}
.y235{bottom:410.790000px;}
.y14e{bottom:410.970000px;}
.y19{bottom:413.490000px;}
.y17b{bottom:414.570000px;}
.y197{bottom:418.530000px;}
.y251{bottom:422.310000px;}
.y1c1{bottom:423.930000px;}
.y46{bottom:426.270000px;}
.y1eb{bottom:426.630000px;}
.y100{bottom:427.710000px;}
.y213{bottom:428.970000px;}
.ya4{bottom:429.330000px;}
.y124{bottom:430.410000px;}
.y66{bottom:430.950000px;}
.y234{bottom:433.290000px;}
.y166{bottom:434.190000px;}
.y18{bottom:435.810000px;}
.y196{bottom:440.895000px;}
.y250{bottom:444.675000px;}
.y14d{bottom:446.295000px;}
.y45{bottom:448.635000px;}
.y1c0{bottom:448.995000px;}
.y1ea{bottom:449.175000px;}
.y17a{bottom:449.895000px;}
.ycf{bottom:451.695000px;}
.y123{bottom:452.775000px;}
.y65{bottom:453.315000px;}
.y9e{bottom:453.675000px;}
.y233{bottom:455.655000px;}
.y17{bottom:458.175000px;}
.y212{bottom:460.875000px;}
.yff{bottom:461.955000px;}
.y195{bottom:463.215000px;}
.y44{bottom:470.955000px;}
.y1e9{bottom:471.495000px;}
.y1bf{bottom:473.835000px;}
.yce{bottom:474.015000px;}
.y122{bottom:475.095000px;}
.y64{bottom:475.635000px;}
.y232{bottom:477.975000px;}
.ya1{bottom:478.155000px;}
.y24f{bottom:479.055000px;}
.y16{bottom:480.495000px;}
.y14c{bottom:481.575000px;}
.yfe{bottom:484.275000px;}
.y179{bottom:485.175000px;}
.y194{bottom:485.535000px;}
.y165{bottom:486.615000px;}
.y211{bottom:492.555000px;}
.y43{bottom:493.275000px;}
.y1e8{bottom:493.815000px;}
.ycd{bottom:496.335000px;}
.y121{bottom:497.415000px;}
.y63{bottom:497.955000px;}
.y1bd{bottom:498.675000px;}
.y231{bottom:500.295000px;}
.y24e{bottom:501.375000px;}
.ya0{bottom:502.455000px;}
.y15{bottom:502.815000px;}
.yfd{bottom:506.775000px;}
.y193{bottom:507.855000px;}
.y42{bottom:515.595000px;}
.y1e7{bottom:516.135000px;}
.y14b{bottom:516.855000px;}
.ycc{bottom:518.655000px;}
.y120{bottom:519.735000px;}
.y62{bottom:520.275000px;}
.y230{bottom:522.615000px;}
.y1bc{bottom:523.695000px;}
.y210{bottom:524.415000px;}
.y14{bottom:525.135000px;}
.y9d{bottom:526.935000px;}
.yfc{bottom:529.095000px;}
.y192{bottom:530.355000px;}
.y24d{bottom:535.755000px;}
.y178{bottom:537.735000px;}
.y41{bottom:537.915000px;}
.y1e6{bottom:538.455000px;}
.y164{bottom:539.175000px;}
.y22f{bottom:540.075000px;}
.ycb{bottom:540.975000px;}
.y11f{bottom:542.055000px;}
.y61{bottom:542.595000px;}
.y13{bottom:547.455000px;}
.y1bb{bottom:548.535000px;}
.y99{bottom:551.235000px;}
.yfb{bottom:551.415000px;}
.y191{bottom:552.675000px;}
.y20f{bottom:556.095000px;}
.y24c{bottom:558.075000px;}
.y40{bottom:560.235000px;}
.y1e5{bottom:560.775000px;}
.yca{bottom:563.295000px;}
.y11e{bottom:564.375000px;}
.y60{bottom:564.915000px;}
.y14a{bottom:569.235000px;}
.y12{bottom:569.775000px;}
.y22e{bottom:571.935000px;}
.y1ba{bottom:573.375000px;}
.yfa{bottom:573.735000px;}
.y190{bottom:574.995000px;}
.y9c{bottom:575.715000px;}
.y24b{bottom:580.395000px;}
.y3f{bottom:582.555000px;}
.y1e4{bottom:583.095000px;}
.yc9{bottom:585.615000px;}
.y11d{bottom:586.695000px;}
.y5f{bottom:587.235000px;}
.y20e{bottom:587.955000px;}
.y11{bottom:592.095000px;}
.yf9{bottom:596.055000px;}
.y18f{bottom:597.315000px;}
.y1b9{bottom:598.395000px;}
.y9b{bottom:600.015000px;}
.y22d{bottom:603.615000px;}
.y147{bottom:604.515000px;}
.y3e{bottom:604.875000px;}
.y1e3{bottom:605.415000px;}
.y5e{bottom:605.595000px;}
.y177{bottom:607.395000px;}
.yc8{bottom:607.935000px;}
.y11c{bottom:609.015000px;}
.y10{bottom:614.415000px;}
.y24a{bottom:614.775000px;}
.yf8{bottom:618.375000px;}
.y18e{bottom:619.635000px;}
.y20d{bottom:619.815000px;}
.y1b8{bottom:623.235000px;}
.y94{bottom:624.315000px;}
.y3d{bottom:627.195000px;}
.y1e2{bottom:627.735000px;}
.yc7{bottom:630.435000px;}
.y11b{bottom:631.335000px;}
.y22c{bottom:635.475000px;}
.yf{bottom:636.915000px;}
.y249{bottom:637.095000px;}
.yf7{bottom:640.695000px;}
.y18d{bottom:641.955000px;}
.y174{bottom:642.675000px;}
.y1b5{bottom:648.075000px;}
.y97{bottom:648.795000px;}
.y3c{bottom:649.695000px;}
.y1e1{bottom:650.055000px;}
.y209{bottom:651.495000px;}
.yc6{bottom:652.755000px;}
.y11a{bottom:653.655000px;}
.y144{bottom:657.105000px;}
.ye{bottom:659.265000px;}
.y248{bottom:659.445000px;}
.y162{bottom:661.425000px;}
.yf6{bottom:663.045000px;}
.y18c{bottom:664.305000px;}
.y22b{bottom:667.365000px;}
.y3b{bottom:672.045000px;}
.y1e0{bottom:672.585000px;}
.y96{bottom:673.125000px;}
.yc5{bottom:675.105000px;}
.y119{bottom:676.185000px;}
.y173{bottom:677.985000px;}
.y208{bottom:683.385000px;}
.yf5{bottom:685.365000px;}
.y18b{bottom:686.625000px;}
.yd{bottom:690.225000px;}
.y13c{bottom:692.385000px;}
.yc3{bottom:692.565000px;}
.y247{bottom:693.825000px;}
.y3a{bottom:694.365000px;}
.y1df{bottom:694.905000px;}
.y91{bottom:697.605000px;}
.y1b4{bottom:697.965000px;}
.y118{bottom:698.505000px;}
.y22a{bottom:699.045000px;}
.yf4{bottom:702.825000px;}
.y18a{bottom:708.945000px;}
.y172{bottom:713.265000px;}
.y207{bottom:715.245000px;}
.y246{bottom:716.145000px;}
.y39{bottom:716.685000px;}
.y1de{bottom:717.225000px;}
.y117{bottom:720.825000px;}
.yc{bottom:721.365000px;}
.y93{bottom:721.905000px;}
.y1b3{bottom:722.805000px;}
.yf3{bottom:727.305000px;}
.y229{bottom:730.905000px;}
.y161{bottom:731.265000px;}
.y38{bottom:739.005000px;}
.y1dd{bottom:739.545000px;}
.ybc{bottom:740.625000px;}
.y116{bottom:743.145000px;}
.y86{bottom:746.205000px;}
.y206{bottom:746.925000px;}
.y1b2{bottom:747.825000px;}
.y171{bottom:748.365000px;}
.y245{bottom:750.525000px;}
.y189{bottom:753.765000px;}
.y1dc{bottom:757.005000px;}
.yb{bottom:759.165000px;}
.y37{bottom:761.325000px;}
.y228{bottom:762.765000px;}
.yc2{bottom:764.925000px;}
.y115{bottom:765.465000px;}
.ye9{bottom:769.425000px;}
.y90{bottom:770.685000px;}
.y1b1{bottom:772.665000px;}
.y244{bottom:772.845000px;}
.y188{bottom:776.085000px;}
.y205{bottom:778.785000px;}
.y137{bottom:779.325000px;}
.y1db{bottom:781.845000px;}
.y36{bottom:783.645000px;}
.y114{bottom:787.785000px;}
.yc1{bottom:789.225000px;}
.ya{bottom:790.305000px;}
.y227{bottom:794.445000px;}
.y8f{bottom:794.985000px;}
.y243{bottom:795.165000px;}
.y1af{bottom:797.505000px;}
.y187{bottom:798.405000px;}
.y160{bottom:800.925000px;}
.y35{bottom:805.965000px;}
.y1da{bottom:806.865000px;}
.y113{bottom:810.105000px;}
.y204{bottom:810.645000px;}
.yf0{bottom:811.545000px;}
.yc0{bottom:813.705000px;}
.y9{bottom:814.425000px;}
.y242{bottom:817.485000px;}
.y8d{bottom:819.465000px;}
.y186{bottom:820.725000px;}
.y1ae{bottom:822.525000px;}
.y226{bottom:826.305000px;}
.y34{bottom:828.645000px;}
.y1d9{bottom:831.705000px;}
.y112{bottom:832.425000px;}
.ybe{bottom:838.005000px;}
.y241{bottom:839.805000px;}
.y203{bottom:842.325000px;}
.y185{bottom:843.045000px;}
.y8c{bottom:843.765000px;}
.y1ab{bottom:847.365000px;}
.y10f{bottom:849.885000px;}
.y33{bottom:851.505000px;}
.y8{bottom:852.405000px;}
.y15b{bottom:853.485000px;}
.yec{bottom:853.665000px;}
.y1d7{bottom:856.545000px;}
.y225{bottom:858.165000px;}
.yb5{bottom:861.225000px;}
.y136{bottom:862.125000px;}
.y184{bottom:865.365000px;}
.y8a{bottom:868.245000px;}
.y1a4{bottom:872.250000px;}
.y202{bottom:874.230000px;}
.y7{bottom:876.570000px;}
.y1d6{bottom:881.610000px;}
.y31{bottom:883.410000px;}
.y135{bottom:884.490000px;}
.ybb{bottom:885.750000px;}
.y183{bottom:887.730000px;}
.y170{bottom:888.810000px;}
.y224{bottom:889.890000px;}
.y2f{bottom:890.070000px;}
.y57{bottom:892.590000px;}
.yde{bottom:895.830000px;}
.y1a8{bottom:896.730000px;}
.y30{bottom:896.910000px;}
.y10e{bottom:897.990000px;}
.y32{bottom:904.830000px;}
.y182{bottom:905.190000px;}
.y1ff{bottom:906.090000px;}
.y1d5{bottom:906.450000px;}
.y134{bottom:906.810000px;}
.y6{bottom:907.530000px;}
.yba{bottom:910.050000px;}
.y2d{bottom:913.830000px;}
.y88{bottom:916.890000px;}
.ye2{bottom:920.310000px;}
.y2e{bottom:921.030000px;}
.y223{bottom:921.750000px;}
.y15a{bottom:923.190000px;}
.y133{bottom:929.130000px;}
.y1d4{bottom:931.290000px;}
.yb9{bottom:934.530000px;}
.y1f8{bottom:937.770000px;}
.y5{bottom:938.670000px;}
.y10a{bottom:940.290000px;}
.y80{bottom:941.370000px;}
.y2c{bottom:951.090000px;}
.y132{bottom:951.630000px;}
.y222{bottom:953.610000px;}
.y1d3{bottom:956.310000px;}
.y181{bottom:957.750000px;}
.y16f{bottom:958.470000px;}
.yb8{bottom:958.830000px;}
.y1fb{bottom:969.630000px;}
.y4{bottom:971.970000px;}
.y2b{bottom:973.950000px;}
.y159{bottom:975.750000px;}
.y1d2{bottom:981.150000px;}
.yb7{bottom:983.130000px;}
.y221{bottom:985.290000px;}
.y2a{bottom:996.270000px;}
.y1d1{bottom:1005.990000px;}
.yb4{bottom:1007.610000px;}
.y3{bottom:1008.150000px;}
.y180{bottom:1010.310000px;}
.y220{bottom:1017.150000px;}
.y29{bottom:1018.590000px;}
.y16e{bottom:1028.310000px;}
.y1d0{bottom:1031.010000px;}
.yb3{bottom:1031.910000px;}
.y2{bottom:1034.250000px;}
.y28{bottom:1040.910000px;}
.y158{bottom:1045.410000px;}
.y21f{bottom:1049.010000px;}
.y1cf{bottom:1055.850000px;}
.yb2{bottom:1056.390000px;}
.y1{bottom:1060.350000px;}
.y27{bottom:1063.230000px;}
.h3e{height:20.160000px;}
.h1f{height:22.500000px;}
.h15{height:23.580000px;}
.h16{height:23.616000px;}
.h14{height:23.760000px;}
.h1c{height:23.796000px;}
.h39{height:24.120000px;}
.h38{height:24.156000px;}
.h3a{height:24.300000px;}
.h3b{height:24.336000px;}
.h36{height:30.198516px;}
.h41{height:30.960000px;}
.h43{height:30.996000px;}
.h40{height:31.140000px;}
.h42{height:31.176000px;}
.h2b{height:34.380000px;}
.h34{height:34.416000px;}
.h2d{height:34.560000px;}
.h2f{height:34.596000px;}
.h4{height:34.884492px;}
.h3d{height:39.049805px;}
.h24{height:41.400000px;}
.h23{height:41.436000px;}
.h26{height:41.580000px;}
.h12{height:43.215117px;}
.h3f{height:44.033203px;}
.h20{height:47.160000px;}
.h27{height:47.376000px;}
.h17{height:47.880000px;}
.h2a{height:49.255313px;}
.h25{height:49.500000px;}
.h5{height:50.800781px;}
.h2e{height:51.660000px;}
.h33{height:51.696000px;}
.h30{height:51.840000px;}
.h2c{height:51.876000px;}
.h3c{height:52.020000px;}
.h2{height:52.066406px;}
.hf{height:55.987031px;}
.he{height:59.343750px;}
.h1{height:60.917695px;}
.h3{height:62.244492px;}
.h32{height:68.940000px;}
.h31{height:68.976000px;}
.h37{height:70.740000px;}
.h11{height:70.920000px;}
.h21{height:71.640000px;}
.h19{height:72.360000px;}
.h18{height:72.396000px;}
.h1a{height:72.540000px;}
.h28{height:76.500000px;}
.h29{height:86.220000px;}
.h35{height:95.220000px;}
.h1b{height:96.696000px;}
.hd{height:109.628437px;}
.hb{height:111.155625px;}
.h1e{height:119.880000px;}
.h22{height:125.676000px;}
.h8{height:135.548437px;}
.ha{height:141.395625px;}
.h1d{height:145.656000px;}
.h10{height:145.980000px;}
.h6{height:154.406250px;}
.h9{height:165.875625px;}
.h7{height:175.955625px;}
.h13{height:194.430000px;}
.hc{height:276.668438px;}
.h0{height:1188.000000px;}
.w14{width:40.140000px;}
.w29{width:44.280000px;}
.w27{width:44.640000px;}
.w40{width:46.080000px;}
.w42{width:46.116000px;}
.w3f{width:46.260000px;}
.w28{width:46.476000px;}
.w37{width:47.016000px;}
.w34{width:49.860000px;}
.w39{width:50.760000px;}
.w2f{width:51.840000px;}
.w3b{width:52.560000px;}
.w35{width:52.920000px;}
.w30{width:52.956000px;}
.w31{width:53.100000px;}
.w33{width:53.136000px;}
.w22{width:53.280000px;}
.w41{width:53.856000px;}
.w3a{width:54.036000px;}
.w43{width:54.396000px;}
.w32{width:59.580000px;}
.w36{width:59.760000px;}
.we{width:63.396000px;}
.wb{width:63.756000px;}
.w18{width:63.936000px;}
.w4{width:64.116000px;}
.w13{width:64.260000px;}
.w16{width:65.160000px;}
.w15{width:65.340000px;}
.wa{width:65.520000px;}
.w21{width:66.636000px;}
.w9{width:71.856000px;}
.w24{width:73.476000px;}
.w25{width:74.880000px;}
.w23{width:75.060000px;}
.w26{width:75.780000px;}
.w5{width:75.960000px;}
.w10{width:77.796000px;}
.w8{width:79.020000px;}
.w6{width:79.056000px;}
.w7{width:82.080000px;}
.w2a{width:82.260000px;}
.wd{width:82.440000px;}
.w38{width:82.620000px;}
.w17{width:82.800000px;}
.w1f{width:86.796000px;}
.w3c{width:89.460000px;}
.w44{width:89.820000px;}
.w20{width:101.520000px;}
.w1c{width:101.736000px;}
.w2d{width:103.356000px;}
.wc{width:104.616000px;}
.wf{width:104.760000px;}
.w2b{width:105.156000px;}
.w1b{width:107.640000px;}
.w2c{width:113.040000px;}
.w2e{width:113.076000px;}
.w1a{width:115.236000px;}
.w1d{width:119.736000px;}
.w12{width:122.436000px;}
.w1e{width:129.060000px;}
.w19{width:162.720000px;}
.w3{width:186.660000px;}
.w11{width:196.740000px;}
.w2{width:280.650000px;}
.w3d{width:300.135000px;}
.w3e{width:312.870000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x25{left:8.100000px;}
.x18{left:9.225000px;}
.x12{left:10.620000px;}
.x22{left:11.880000px;}
.x1e{left:13.320000px;}
.x31{left:14.580000px;}
.x2b{left:16.020000px;}
.x24{left:17.280000px;}
.x2e{left:19.080000px;}
.x1b{left:20.520000px;}
.x4f{left:21.780000px;}
.x29{left:22.860000px;}
.x21{left:24.300000px;}
.x17{left:25.965000px;}
.x1c{left:27.180000px;}
.x1f{left:28.620000px;}
.x3d{left:30.060000px;}
.x2d{left:31.140000px;}
.x34{left:32.580000px;}
.x28{left:34.380000px;}
.x27{left:36.360000px;}
.x2a{left:37.800000px;}
.x2c{left:39.240000px;}
.x40{left:40.500000px;}
.x44{left:42.300000px;}
.x3b{left:43.425000px;}
.x4e{left:45.540000px;}
.x37{left:47.205000px;}
.x43{left:49.314000px;}
.x42{left:50.754000px;}
.x3c{left:52.425000px;}
.x50{left:54.720000px;}
.x15{left:63.714000px;}
.x51{left:66.240000px;}
.x35{left:79.020000px;}
.x2f{left:81.360000px;}
.x5f{left:87.300000px;}
.x5{left:108.035986px;}
.x14{left:110.196000px;}
.x52{left:113.436000px;}
.x3{left:116.675986px;}
.x63{left:127.080000px;}
.x60{left:142.236000px;}
.x6d{left:144.035986px;}
.x45{left:155.910000px;}
.x53{left:158.430000px;}
.x7{left:162.029986px;}
.x30{left:186.690000px;}
.x61{left:195.510000px;}
.x54{left:241.050000px;}
.x6{left:261.209986px;}
.x32{left:270.030000px;}
.x3e{left:280.290000px;}
.x46{left:285.330000px;}
.x59{left:293.250000px;}
.x16{left:297.210000px;}
.x4{left:302.249986px;}
.x33{left:333.795000px;}
.x1{left:336.494986px;}
.x64{left:338.655000px;}
.x55{left:346.575000px;}
.x19{left:361.875000px;}
.x47{left:372.495000px;}
.x65{left:385.275000px;}
.x3f{left:395.895000px;}
.x38{left:398.415000px;}
.x5a{left:400.035000px;}
.x9{left:402.914986px;}
.xa{left:427.214986px;}
.x66{left:431.715000px;}
.x1a{left:438.375000px;}
.xc{left:442.154986px;}
.x8{left:448.454986px;}
.x2{left:459.074986px;}
.xb{left:467.174986px;}
.x48{left:474.375000px;}
.x67{left:478.335000px;}
.x41{left:503.895000px;}
.x10{left:506.594986px;}
.x5b{left:513.465000px;}
.x1d{left:517.785000px;}
.x11{left:533.445000px;}
.x49{left:541.365000px;}
.xd{left:554.864986px;}
.x56{left:563.685000px;}
.x39{left:582.945000px;}
.x62{left:585.825000px;}
.x4a{left:595.005000px;}
.x20{left:600.405000px;}
.x5c{left:617.145000px;}
.x68{left:639.105000px;}
.x3a{left:648.645000px;}
.x4b{left:670.425000px;}
.x57{left:677.085000px;}
.x23{left:679.785000px;}
.x69{left:692.565000px;}
.x36{left:714.345000px;}
.x5d{left:730.410000px;}
.x6a{left:739.050000px;}
.x4c{left:744.270000px;}
.xe{left:749.129986px;}
.x26{left:752.010000px;}
.x58{left:790.530000px;}
.x6b{left:792.510000px;}
.x13{left:799.889986px;}
.xf{left:810.149986px;}
.x4d{left:819.690000px;}
.x5e{left:843.990000px;}
.x6c{left:845.790000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-12.800000pt;}
.vd{vertical-align:-11.520000pt;}
.v9{vertical-align:-9.600000pt;}
.v10{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:8.960000pt;}
.v12{vertical-align:11.520000pt;}
.v13{vertical-align:16.000000pt;}
.va{vertical-align:19.200000pt;}
.v7{vertical-align:23.040000pt;}
.v1{vertical-align:24.320000pt;}
.vc{vertical-align:33.920000pt;}
.vf{vertical-align:40.320000pt;}
.v8{vertical-align:43.520000pt;}
.vb{vertical-align:46.080000pt;}
.v4{vertical-align:48.640000pt;}
.v6{vertical-align:67.200000pt;}
.v5{vertical-align:76.800000pt;}
.ve{vertical-align:84.480000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls18{letter-spacing:-0.230933pt;}
.ls1a{letter-spacing:-0.201067pt;}
.ls16{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls14{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.088533pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.079467pt;}
.ls5{letter-spacing:0.089600pt;}
.ls11{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.134400pt;}
.lse{letter-spacing:0.171733pt;}
.ls1d{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.201067pt;}
.ls8{letter-spacing:0.222720pt;}
.ls17{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.256000pt;}
.ls13{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.342400pt;}
.ls7{letter-spacing:0.369920pt;}
.lsb{letter-spacing:1.593600pt;}
.ls6{letter-spacing:37.433600pt;}
.ls9{letter-spacing:47.033600pt;}
.lsc{letter-spacing:63.673600pt;}
.ls3{letter-spacing:120.512000pt;}
.ls1{letter-spacing:175.978667pt;}
.ws9{word-spacing:-16.256000pt;}
.ws10{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.wsf{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws12{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws11{word-spacing:-13.049067pt;}
.ws1c{word-spacing:-12.320000pt;}
.ws18{word-spacing:-12.192000pt;}
.ws1b{word-spacing:-12.128000pt;}
.ws19{word-spacing:-11.984000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1a{word-spacing:-11.808000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws4{word-spacing:-9.996800pt;}
.ws7{word-spacing:-9.908267pt;}
.ws16{word-spacing:-9.600000pt;}
.ws14{word-spacing:-9.359467pt;}
.ws15{word-spacing:-9.280000pt;}
.ws13{word-spacing:-9.078933pt;}
.ws5{word-spacing:-8.166400pt;}
.ws17{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws6{word-spacing:101.242240pt;}
._4{margin-left:-2.619733pt;}
._0{margin-left:-1.048320pt;}
._1{width:0.973653pt;}
._2{width:3.666987pt;}
._5{width:4.754773pt;}
._3{width:21.938987pt;}
._6{width:175.978667pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1ac{bottom:2.080000pt;}
.y1c6{bottom:2.240000pt;}
.y200{bottom:2.560000pt;}
.y1fe{bottom:2.720000pt;}
.y20b{bottom:2.746667pt;}
.y143{bottom:2.880000pt;}
.yee{bottom:3.520000pt;}
.y1fc{bottom:4.640000pt;}
.ye8{bottom:4.960000pt;}
.ybf{bottom:5.280000pt;}
.y8e{bottom:5.600000pt;}
.y8b{bottom:5.640000pt;}
.y89{bottom:5.760000pt;}
.y98{bottom:5.786667pt;}
.ye4{bottom:6.080000pt;}
.y111{bottom:6.240000pt;}
.y10d{bottom:7.200000pt;}
.y1ad{bottom:7.360000pt;}
.y1b0{bottom:7.520000pt;}
.y1b7{bottom:7.546667pt;}
.ye1{bottom:7.840000pt;}
.y201{bottom:9.440000pt;}
.y215{bottom:9.480000pt;}
.y1fd{bottom:9.600000pt;}
.y20c{bottom:9.626667pt;}
.y150{bottom:10.400000pt;}
.y145{bottom:10.560000pt;}
.y175{bottom:10.586667pt;}
.y167{bottom:10.600000pt;}
.y85{bottom:11.360000pt;}
.y1fa{bottom:12.000000pt;}
.yf2{bottom:12.640000pt;}
.yef{bottom:12.800000pt;}
.y1b6{bottom:12.826667pt;}
.y1d8{bottom:12.840000pt;}
.y1be{bottom:12.960000pt;}
.y1c2{bottom:13.000000pt;}
.ye5{bottom:15.360000pt;}
.y5d{bottom:15.680000pt;}
.yc4{bottom:16.160000pt;}
.y10b{bottom:16.320000pt;}
.y214{bottom:16.360000pt;}
.y92{bottom:16.480000pt;}
.y20a{bottom:16.506667pt;}
.ye7{bottom:16.960000pt;}
.y142{bottom:18.080000pt;}
.y146{bottom:18.240000pt;}
.y176{bottom:18.266667pt;}
.y15e{bottom:18.280000pt;}
.y1f9{bottom:18.880000pt;}
.y83{bottom:19.040000pt;}
.y13a{bottom:21.600000pt;}
.yf1{bottom:21.920000pt;}
.yed{bottom:21.960000pt;}
.y1a9{bottom:22.720000pt;}
.ye3{bottom:24.480000pt;}
.y110{bottom:24.680000pt;}
.y10c{bottom:25.600000pt;}
.y13f{bottom:25.760000pt;}
.y148{bottom:25.920000pt;}
.y15c{bottom:25.960000pt;}
.ydf{bottom:26.240000pt;}
.y81{bottom:26.720000pt;}
.y9a{bottom:27.360000pt;}
.yab{bottom:27.386667pt;}
.y9f{bottom:27.520000pt;}
.y95{bottom:27.546667pt;}
.y1aa{bottom:28.160000pt;}
.y138{bottom:29.120000pt;}
.y13d{bottom:33.440000pt;}
.y154{bottom:33.466667pt;}
.y15d{bottom:33.480000pt;}
.y149{bottom:33.600000pt;}
.y1a7{bottom:33.760000pt;}
.y82{bottom:34.400000pt;}
.ye6{bottom:35.360000pt;}
.y5c{bottom:35.520000pt;}
.y139{bottom:36.800000pt;}
.ya3{bottom:38.240000pt;}
.y1a5{bottom:39.040000pt;}
.yeb{bottom:40.960000pt;}
.y13e{bottom:41.120000pt;}
.y84{bottom:42.080000pt;}
.y1a6{bottom:44.480000pt;}
.ye0{bottom:44.640000pt;}
.ybd{bottom:48.480000pt;}
.y141{bottom:48.800000pt;}
.y155{bottom:48.826667pt;}
.y15f{bottom:48.840000pt;}
.y163{bottom:48.960000pt;}
.y13b{bottom:52.160000pt;}
.y5b{bottom:55.360000pt;}
.yea{bottom:59.360000pt;}
.yb6{bottom:60.040000pt;}
.y140{bottom:64.160000pt;}
.y5a{bottom:75.200000pt;}
.y87{bottom:81.600000pt;}
.y59{bottom:95.040000pt;}
.y56{bottom:96.320000pt;}
.y21e{bottom:98.560000pt;}
.yaf{bottom:100.000000pt;}
.y157{bottom:100.640000pt;}
.ydd{bottom:103.520000pt;}
.y74{bottom:104.960000pt;}
.y109{bottom:105.440000pt;}
.y50{bottom:105.600000pt;}
.y16d{bottom:105.920000pt;}
.y7f{bottom:106.400000pt;}
.y240{bottom:107.040000pt;}
.y26{bottom:109.280000pt;}
.y55{bottom:110.720000pt;}
.y1ce{bottom:111.360000pt;}
.y1a3{bottom:113.920000pt;}
.y58{bottom:114.880000pt;}
.y17f{bottom:119.840000pt;}
.yb1{bottom:121.600000pt;}
.ydc{bottom:123.360000pt;}
.y131{bottom:124.320000pt;}
.y73{bottom:124.800000pt;}
.y4f{bottom:125.440000pt;}
.y7e{bottom:126.240000pt;}
.y21d{bottom:126.880000pt;}
.y25{bottom:129.120000pt;}
.y54{bottom:130.560000pt;}
.y156{bottom:132.000000pt;}
.y1cd{bottom:133.440000pt;}
.y1a2{bottom:133.760000pt;}
.y108{bottom:135.840000pt;}
.y16c{bottom:137.280000pt;}
.y1f7{bottom:140.960000pt;}
.yb0{bottom:143.200000pt;}
.ydb{bottom:143.360000pt;}
.y130{bottom:144.160000pt;}
.y72{bottom:144.800000pt;}
.y4e{bottom:145.280000pt;}
.y7d{bottom:146.080000pt;}
.y23f{bottom:146.720000pt;}
.y24{bottom:149.120000pt;}
.y53{bottom:150.560000pt;}
.y17e{bottom:151.200000pt;}
.y1a1{bottom:153.600000pt;}
.y21c{bottom:155.200000pt;}
.y1cc{bottom:155.520000pt;}
.y1f6{bottom:160.800000pt;}
.yda{bottom:163.200000pt;}
.y153{bottom:163.360000pt;}
.y12f{bottom:164.000000pt;}
.y71{bottom:164.640000pt;}
.yae{bottom:164.960000pt;}
.y4d{bottom:165.120000pt;}
.y7c{bottom:166.080000pt;}
.y107{bottom:166.400000pt;}
.y23e{bottom:166.560000pt;}
.y23{bottom:168.960000pt;}
.y1a0{bottom:173.440000pt;}
.y1cb{bottom:177.760000pt;}
.y1f5{bottom:180.800000pt;}
.y52{bottom:181.600000pt;}
.yd9{bottom:183.040000pt;}
.y21b{bottom:183.360000pt;}
.y12e{bottom:184.000000pt;}
.y70{bottom:184.480000pt;}
.y4c{bottom:184.960000pt;}
.y7b{bottom:185.920000pt;}
.yaa{bottom:186.560000pt;}
.y22{bottom:188.800000pt;}
.y19f{bottom:193.280000pt;}
.y51{bottom:196.826667pt;}
.y106{bottom:196.986667pt;}
.y17d{bottom:197.946667pt;}
.y16b{bottom:199.226667pt;}
.y1ca{bottom:199.866667pt;}
.y1f4{bottom:200.666667pt;}
.yd8{bottom:202.906667pt;}
.y12d{bottom:203.866667pt;}
.y6f{bottom:204.346667pt;}
.y4b{bottom:204.826667pt;}
.y7a{bottom:205.786667pt;}
.y23d{bottom:206.426667pt;}
.yad{bottom:208.346667pt;}
.y21{bottom:208.666667pt;}
.y21a{bottom:211.706667pt;}
.y19e{bottom:213.146667pt;}
.y1f3{bottom:220.506667pt;}
.y1c9{bottom:221.946667pt;}
.yd7{bottom:222.746667pt;}
.y12c{bottom:223.706667pt;}
.y6e{bottom:224.186667pt;}
.y4a{bottom:224.666667pt;}
.y152{bottom:225.306667pt;}
.y79{bottom:225.626667pt;}
.y23c{bottom:226.266667pt;}
.y105{bottom:227.546667pt;}
.y20{bottom:228.506667pt;}
.yac{bottom:229.946667pt;}
.y19d{bottom:232.986667pt;}
.y219{bottom:240.026667pt;}
.y1f2{bottom:240.346667pt;}
.y49{bottom:240.986667pt;}
.yd6{bottom:242.586667pt;}
.y12b{bottom:243.546667pt;}
.y6d{bottom:244.026667pt;}
.y17c{bottom:244.666667pt;}
.y78{bottom:245.466667pt;}
.y16a{bottom:245.946667pt;}
.y23b{bottom:246.106667pt;}
.y1f{bottom:248.346667pt;}
.ya7{bottom:251.706667pt;}
.y19c{bottom:252.986667pt;}
.y104{bottom:258.106667pt;}
.y1f1{bottom:260.186667pt;}
.yd5{bottom:262.426667pt;}
.y12a{bottom:263.386667pt;}
.y6c{bottom:263.866667pt;}
.y77{bottom:265.306667pt;}
.y23a{bottom:265.946667pt;}
.y1c8{bottom:266.266667pt;}
.y1e{bottom:268.186667pt;}
.y151{bottom:272.026667pt;}
.y19b{bottom:272.826667pt;}
.ya9{bottom:273.306667pt;}
.y1f0{bottom:280.026667pt;}
.yd4{bottom:282.266667pt;}
.y129{bottom:283.226667pt;}
.y6b{bottom:283.706667pt;}
.y239{bottom:285.786667pt;}
.y1d{bottom:288.026667pt;}
.y1c7{bottom:288.346667pt;}
.y103{bottom:288.506667pt;}
.y169{bottom:292.666667pt;}
.ya8{bottom:294.906667pt;}
.y76{bottom:296.346667pt;}
.y218{bottom:296.506667pt;}
.y1ef{bottom:299.866667pt;}
.yd3{bottom:302.106667pt;}
.y128{bottom:303.066667pt;}
.y6a{bottom:303.546667pt;}
.y238{bottom:305.626667pt;}
.y1c{bottom:307.866667pt;}
.y1c5{bottom:310.426667pt;}
.y75{bottom:311.546667pt;}
.y19a{bottom:312.506667pt;}
.ya2{bottom:316.666667pt;}
.y14f{bottom:318.746667pt;}
.y102{bottom:319.066667pt;}
.y1ee{bottom:319.706667pt;}
.yd2{bottom:321.946667pt;}
.y127{bottom:322.906667pt;}
.y69{bottom:323.386667pt;}
.y217{bottom:324.826667pt;}
.y237{bottom:325.466667pt;}
.y1b{bottom:327.706667pt;}
.y199{bottom:332.346667pt;}
.y1c4{bottom:332.666667pt;}
.ya6{bottom:338.266667pt;}
.y48{bottom:339.066667pt;}
.y168{bottom:339.226667pt;}
.y1ed{bottom:339.546667pt;}
.yd1{bottom:341.946667pt;}
.y126{bottom:342.746667pt;}
.y68{bottom:343.386667pt;}
.y252{bottom:344.826667pt;}
.y236{bottom:345.306667pt;}
.y1a{bottom:347.546667pt;}
.y101{bottom:349.626667pt;}
.y198{bottom:352.186667pt;}
.y216{bottom:352.986667pt;}
.y1c3{bottom:354.746667pt;}
.y47{bottom:358.906667pt;}
.y1ec{bottom:359.386667pt;}
.ya5{bottom:360.026667pt;}
.yd0{bottom:361.786667pt;}
.y125{bottom:362.586667pt;}
.y67{bottom:363.226667pt;}
.y235{bottom:365.146667pt;}
.y14e{bottom:365.306667pt;}
.y19{bottom:367.546667pt;}
.y17b{bottom:368.506667pt;}
.y197{bottom:372.026667pt;}
.y251{bottom:375.386667pt;}
.y1c1{bottom:376.826667pt;}
.y46{bottom:378.906667pt;}
.y1eb{bottom:379.226667pt;}
.y100{bottom:380.186667pt;}
.y213{bottom:381.306667pt;}
.ya4{bottom:381.626667pt;}
.y124{bottom:382.586667pt;}
.y66{bottom:383.066667pt;}
.y234{bottom:385.146667pt;}
.y166{bottom:385.946667pt;}
.y18{bottom:387.386667pt;}
.y196{bottom:391.906667pt;}
.y250{bottom:395.266667pt;}
.y14d{bottom:396.706667pt;}
.y45{bottom:398.786667pt;}
.y1c0{bottom:399.106667pt;}
.y1ea{bottom:399.266667pt;}
.y17a{bottom:399.906667pt;}
.ycf{bottom:401.506667pt;}
.y123{bottom:402.466667pt;}
.y65{bottom:402.946667pt;}
.y9e{bottom:403.266667pt;}
.y233{bottom:405.026667pt;}
.y17{bottom:407.266667pt;}
.y212{bottom:409.666667pt;}
.yff{bottom:410.626667pt;}
.y195{bottom:411.746667pt;}
.y44{bottom:418.626667pt;}
.y1e9{bottom:419.106667pt;}
.y1bf{bottom:421.186667pt;}
.yce{bottom:421.346667pt;}
.y122{bottom:422.306667pt;}
.y64{bottom:422.786667pt;}
.y232{bottom:424.866667pt;}
.ya1{bottom:425.026667pt;}
.y24f{bottom:425.826667pt;}
.y16{bottom:427.106667pt;}
.y14c{bottom:428.066667pt;}
.yfe{bottom:430.466667pt;}
.y179{bottom:431.266667pt;}
.y194{bottom:431.586667pt;}
.y165{bottom:432.546667pt;}
.y211{bottom:437.826667pt;}
.y43{bottom:438.466667pt;}
.y1e8{bottom:438.946667pt;}
.ycd{bottom:441.186667pt;}
.y121{bottom:442.146667pt;}
.y63{bottom:442.626667pt;}
.y1bd{bottom:443.266667pt;}
.y231{bottom:444.706667pt;}
.y24e{bottom:445.666667pt;}
.ya0{bottom:446.626667pt;}
.y15{bottom:446.946667pt;}
.yfd{bottom:450.466667pt;}
.y193{bottom:451.426667pt;}
.y42{bottom:458.306667pt;}
.y1e7{bottom:458.786667pt;}
.y14b{bottom:459.426667pt;}
.ycc{bottom:461.026667pt;}
.y120{bottom:461.986667pt;}
.y62{bottom:462.466667pt;}
.y230{bottom:464.546667pt;}
.y1bc{bottom:465.506667pt;}
.y210{bottom:466.146667pt;}
.y14{bottom:466.786667pt;}
.y9d{bottom:468.386667pt;}
.yfc{bottom:470.306667pt;}
.y192{bottom:471.426667pt;}
.y24d{bottom:476.226667pt;}
.y178{bottom:477.986667pt;}
.y41{bottom:478.146667pt;}
.y1e6{bottom:478.626667pt;}
.y164{bottom:479.266667pt;}
.y22f{bottom:480.066667pt;}
.ycb{bottom:480.866667pt;}
.y11f{bottom:481.826667pt;}
.y61{bottom:482.306667pt;}
.y13{bottom:486.626667pt;}
.y1bb{bottom:487.586667pt;}
.y99{bottom:489.986667pt;}
.yfb{bottom:490.146667pt;}
.y191{bottom:491.266667pt;}
.y20f{bottom:494.306667pt;}
.y24c{bottom:496.066667pt;}
.y40{bottom:497.986667pt;}
.y1e5{bottom:498.466667pt;}
.yca{bottom:500.706667pt;}
.y11e{bottom:501.666667pt;}
.y60{bottom:502.146667pt;}
.y14a{bottom:505.986667pt;}
.y12{bottom:506.466667pt;}
.y22e{bottom:508.386667pt;}
.y1ba{bottom:509.666667pt;}
.yfa{bottom:509.986667pt;}
.y190{bottom:511.106667pt;}
.y9c{bottom:511.746667pt;}
.y24b{bottom:515.906667pt;}
.y3f{bottom:517.826667pt;}
.y1e4{bottom:518.306667pt;}
.yc9{bottom:520.546667pt;}
.y11d{bottom:521.506667pt;}
.y5f{bottom:521.986667pt;}
.y20e{bottom:522.626667pt;}
.y11{bottom:526.306667pt;}
.yf9{bottom:529.826667pt;}
.y18f{bottom:530.946667pt;}
.y1b9{bottom:531.906667pt;}
.y9b{bottom:533.346667pt;}
.y22d{bottom:536.546667pt;}
.y147{bottom:537.346667pt;}
.y3e{bottom:537.666667pt;}
.y1e3{bottom:538.146667pt;}
.y5e{bottom:538.306667pt;}
.y177{bottom:539.906667pt;}
.yc8{bottom:540.386667pt;}
.y11c{bottom:541.346667pt;}
.y10{bottom:546.146667pt;}
.y24a{bottom:546.466667pt;}
.yf8{bottom:549.666667pt;}
.y18e{bottom:550.786667pt;}
.y20d{bottom:550.946667pt;}
.y1b8{bottom:553.986667pt;}
.y94{bottom:554.946667pt;}
.y3d{bottom:557.506667pt;}
.y1e2{bottom:557.986667pt;}
.yc7{bottom:560.386667pt;}
.y11b{bottom:561.186667pt;}
.y22c{bottom:564.866667pt;}
.yf{bottom:566.146667pt;}
.y249{bottom:566.306667pt;}
.yf7{bottom:569.506667pt;}
.y18d{bottom:570.626667pt;}
.y174{bottom:571.266667pt;}
.y1b5{bottom:576.066667pt;}
.y97{bottom:576.706667pt;}
.y3c{bottom:577.506667pt;}
.y1e1{bottom:577.826667pt;}
.y209{bottom:579.106667pt;}
.yc6{bottom:580.226667pt;}
.y11a{bottom:581.026667pt;}
.y144{bottom:584.093333pt;}
.ye{bottom:586.013333pt;}
.y248{bottom:586.173333pt;}
.y162{bottom:587.933333pt;}
.yf6{bottom:589.373333pt;}
.y18c{bottom:590.493333pt;}
.y22b{bottom:593.213333pt;}
.y3b{bottom:597.373333pt;}
.y1e0{bottom:597.853333pt;}
.y96{bottom:598.333333pt;}
.yc5{bottom:600.093333pt;}
.y119{bottom:601.053333pt;}
.y173{bottom:602.653333pt;}
.y208{bottom:607.453333pt;}
.yf5{bottom:609.213333pt;}
.y18b{bottom:610.333333pt;}
.yd{bottom:613.533333pt;}
.y13c{bottom:615.453333pt;}
.yc3{bottom:615.613333pt;}
.y247{bottom:616.733333pt;}
.y3a{bottom:617.213333pt;}
.y1df{bottom:617.693333pt;}
.y91{bottom:620.093333pt;}
.y1b4{bottom:620.413333pt;}
.y118{bottom:620.893333pt;}
.y22a{bottom:621.373333pt;}
.yf4{bottom:624.733333pt;}
.y18a{bottom:630.173333pt;}
.y172{bottom:634.013333pt;}
.y207{bottom:635.773333pt;}
.y246{bottom:636.573333pt;}
.y39{bottom:637.053333pt;}
.y1de{bottom:637.533333pt;}
.y117{bottom:640.733333pt;}
.yc{bottom:641.213333pt;}
.y93{bottom:641.693333pt;}
.y1b3{bottom:642.493333pt;}
.yf3{bottom:646.493333pt;}
.y229{bottom:649.693333pt;}
.y161{bottom:650.013333pt;}
.y38{bottom:656.893333pt;}
.y1dd{bottom:657.373333pt;}
.ybc{bottom:658.333333pt;}
.y116{bottom:660.573333pt;}
.y86{bottom:663.293333pt;}
.y206{bottom:663.933333pt;}
.y1b2{bottom:664.733333pt;}
.y171{bottom:665.213333pt;}
.y245{bottom:667.133333pt;}
.y189{bottom:670.013333pt;}
.y1dc{bottom:672.893333pt;}
.yb{bottom:674.813333pt;}
.y37{bottom:676.733333pt;}
.y228{bottom:678.013333pt;}
.yc2{bottom:679.933333pt;}
.y115{bottom:680.413333pt;}
.ye9{bottom:683.933333pt;}
.y90{bottom:685.053333pt;}
.y1b1{bottom:686.813333pt;}
.y244{bottom:686.973333pt;}
.y188{bottom:689.853333pt;}
.y205{bottom:692.253333pt;}
.y137{bottom:692.733333pt;}
.y1db{bottom:694.973333pt;}
.y36{bottom:696.573333pt;}
.y114{bottom:700.253333pt;}
.yc1{bottom:701.533333pt;}
.ya{bottom:702.493333pt;}
.y227{bottom:706.173333pt;}
.y8f{bottom:706.653333pt;}
.y243{bottom:706.813333pt;}
.y1af{bottom:708.893333pt;}
.y187{bottom:709.693333pt;}
.y160{bottom:711.933333pt;}
.y35{bottom:716.413333pt;}
.y1da{bottom:717.213333pt;}
.y113{bottom:720.093333pt;}
.y204{bottom:720.573333pt;}
.yf0{bottom:721.373333pt;}
.yc0{bottom:723.293333pt;}
.y9{bottom:723.933333pt;}
.y242{bottom:726.653333pt;}
.y8d{bottom:728.413333pt;}
.y186{bottom:729.533333pt;}
.y1ae{bottom:731.133333pt;}
.y226{bottom:734.493333pt;}
.y34{bottom:736.573333pt;}
.y1d9{bottom:739.293333pt;}
.y112{bottom:739.933333pt;}
.ybe{bottom:744.893333pt;}
.y241{bottom:746.493333pt;}
.y203{bottom:748.733333pt;}
.y185{bottom:749.373333pt;}
.y8c{bottom:750.013333pt;}
.y1ab{bottom:753.213333pt;}
.y10f{bottom:755.453333pt;}
.y33{bottom:756.893333pt;}
.y8{bottom:757.693333pt;}
.y15b{bottom:758.653333pt;}
.yec{bottom:758.813333pt;}
.y1d7{bottom:761.373333pt;}
.y225{bottom:762.813333pt;}
.yb5{bottom:765.533333pt;}
.y136{bottom:766.333333pt;}
.y184{bottom:769.213333pt;}
.y8a{bottom:771.773333pt;}
.y1a4{bottom:775.333333pt;}
.y202{bottom:777.093333pt;}
.y7{bottom:779.173333pt;}
.y1d6{bottom:783.653333pt;}
.y31{bottom:785.253333pt;}
.y135{bottom:786.213333pt;}
.ybb{bottom:787.333333pt;}
.y183{bottom:789.093333pt;}
.y170{bottom:790.053333pt;}
.y224{bottom:791.013333pt;}
.y2f{bottom:791.173333pt;}
.y57{bottom:793.413333pt;}
.yde{bottom:796.293333pt;}
.y1a8{bottom:797.093333pt;}
.y30{bottom:797.253333pt;}
.y10e{bottom:798.213333pt;}
.y32{bottom:804.293333pt;}
.y182{bottom:804.613333pt;}
.y1ff{bottom:805.413333pt;}
.y1d5{bottom:805.733333pt;}
.y134{bottom:806.053333pt;}
.y6{bottom:806.693333pt;}
.yba{bottom:808.933333pt;}
.y2d{bottom:812.293333pt;}
.y88{bottom:815.013333pt;}
.ye2{bottom:818.053333pt;}
.y2e{bottom:818.693333pt;}
.y223{bottom:819.333333pt;}
.y15a{bottom:820.613333pt;}
.y133{bottom:825.893333pt;}
.y1d4{bottom:827.813333pt;}
.yb9{bottom:830.693333pt;}
.y1f8{bottom:833.573333pt;}
.y5{bottom:834.373333pt;}
.y10a{bottom:835.813333pt;}
.y80{bottom:836.773333pt;}
.y2c{bottom:845.413333pt;}
.y132{bottom:845.893333pt;}
.y222{bottom:847.653333pt;}
.y1d3{bottom:850.053333pt;}
.y181{bottom:851.333333pt;}
.y16f{bottom:851.973333pt;}
.yb8{bottom:852.293333pt;}
.y1fb{bottom:861.893333pt;}
.y4{bottom:863.973333pt;}
.y2b{bottom:865.733333pt;}
.y159{bottom:867.333333pt;}
.y1d2{bottom:872.133333pt;}
.yb7{bottom:873.893333pt;}
.y221{bottom:875.813333pt;}
.y2a{bottom:885.573333pt;}
.y1d1{bottom:894.213333pt;}
.yb4{bottom:895.653333pt;}
.y3{bottom:896.133333pt;}
.y180{bottom:898.053333pt;}
.y220{bottom:904.133333pt;}
.y29{bottom:905.413333pt;}
.y16e{bottom:914.053333pt;}
.y1d0{bottom:916.453333pt;}
.yb3{bottom:917.253333pt;}
.y2{bottom:919.333333pt;}
.y28{bottom:925.253333pt;}
.y158{bottom:929.253333pt;}
.y21f{bottom:932.453333pt;}
.y1cf{bottom:938.533333pt;}
.yb2{bottom:939.013333pt;}
.y1{bottom:942.533333pt;}
.y27{bottom:945.093333pt;}
.h3e{height:17.920000pt;}
.h1f{height:20.000000pt;}
.h15{height:20.960000pt;}
.h16{height:20.992000pt;}
.h14{height:21.120000pt;}
.h1c{height:21.152000pt;}
.h39{height:21.440000pt;}
.h38{height:21.472000pt;}
.h3a{height:21.600000pt;}
.h3b{height:21.632000pt;}
.h36{height:26.843125pt;}
.h41{height:27.520000pt;}
.h43{height:27.552000pt;}
.h40{height:27.680000pt;}
.h42{height:27.712000pt;}
.h2b{height:30.560000pt;}
.h34{height:30.592000pt;}
.h2d{height:30.720000pt;}
.h2f{height:30.752000pt;}
.h4{height:31.008437pt;}
.h3d{height:34.710938pt;}
.h24{height:36.800000pt;}
.h23{height:36.832000pt;}
.h26{height:36.960000pt;}
.h12{height:38.413438pt;}
.h3f{height:39.140625pt;}
.h20{height:41.920000pt;}
.h27{height:42.112000pt;}
.h17{height:42.560000pt;}
.h2a{height:43.782500pt;}
.h25{height:44.000000pt;}
.h5{height:45.156250pt;}
.h2e{height:45.920000pt;}
.h33{height:45.952000pt;}
.h30{height:46.080000pt;}
.h2c{height:46.112000pt;}
.h3c{height:46.240000pt;}
.h2{height:46.281250pt;}
.hf{height:49.766250pt;}
.he{height:52.750000pt;}
.h1{height:54.149062pt;}
.h3{height:55.328438pt;}
.h32{height:61.280000pt;}
.h31{height:61.312000pt;}
.h37{height:62.880000pt;}
.h11{height:63.040000pt;}
.h21{height:63.680000pt;}
.h19{height:64.320000pt;}
.h18{height:64.352000pt;}
.h1a{height:64.480000pt;}
.h28{height:68.000000pt;}
.h29{height:76.640000pt;}
.h35{height:84.640000pt;}
.h1b{height:85.952000pt;}
.hd{height:97.447500pt;}
.hb{height:98.805000pt;}
.h1e{height:106.560000pt;}
.h22{height:111.712000pt;}
.h8{height:120.487500pt;}
.ha{height:125.685000pt;}
.h1d{height:129.472000pt;}
.h10{height:129.760000pt;}
.h6{height:137.250000pt;}
.h9{height:147.445000pt;}
.h7{height:156.405000pt;}
.h13{height:172.826667pt;}
.hc{height:245.927500pt;}
.h0{height:1056.000000pt;}
.w14{width:35.680000pt;}
.w29{width:39.360000pt;}
.w27{width:39.680000pt;}
.w40{width:40.960000pt;}
.w42{width:40.992000pt;}
.w3f{width:41.120000pt;}
.w28{width:41.312000pt;}
.w37{width:41.792000pt;}
.w34{width:44.320000pt;}
.w39{width:45.120000pt;}
.w2f{width:46.080000pt;}
.w3b{width:46.720000pt;}
.w35{width:47.040000pt;}
.w30{width:47.072000pt;}
.w31{width:47.200000pt;}
.w33{width:47.232000pt;}
.w22{width:47.360000pt;}
.w41{width:47.872000pt;}
.w3a{width:48.032000pt;}
.w43{width:48.352000pt;}
.w32{width:52.960000pt;}
.w36{width:53.120000pt;}
.we{width:56.352000pt;}
.wb{width:56.672000pt;}
.w18{width:56.832000pt;}
.w4{width:56.992000pt;}
.w13{width:57.120000pt;}
.w16{width:57.920000pt;}
.w15{width:58.080000pt;}
.wa{width:58.240000pt;}
.w21{width:59.232000pt;}
.w9{width:63.872000pt;}
.w24{width:65.312000pt;}
.w25{width:66.560000pt;}
.w23{width:66.720000pt;}
.w26{width:67.360000pt;}
.w5{width:67.520000pt;}
.w10{width:69.152000pt;}
.w8{width:70.240000pt;}
.w6{width:70.272000pt;}
.w7{width:72.960000pt;}
.w2a{width:73.120000pt;}
.wd{width:73.280000pt;}
.w38{width:73.440000pt;}
.w17{width:73.600000pt;}
.w1f{width:77.152000pt;}
.w3c{width:79.520000pt;}
.w44{width:79.840000pt;}
.w20{width:90.240000pt;}
.w1c{width:90.432000pt;}
.w2d{width:91.872000pt;}
.wc{width:92.992000pt;}
.wf{width:93.120000pt;}
.w2b{width:93.472000pt;}
.w1b{width:95.680000pt;}
.w2c{width:100.480000pt;}
.w2e{width:100.512000pt;}
.w1a{width:102.432000pt;}
.w1d{width:106.432000pt;}
.w12{width:108.832000pt;}
.w1e{width:114.720000pt;}
.w19{width:144.640000pt;}
.w3{width:165.920000pt;}
.w11{width:174.880000pt;}
.w2{width:249.466667pt;}
.w3d{width:266.786667pt;}
.w3e{width:278.106667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x25{left:7.200000pt;}
.x18{left:8.200000pt;}
.x12{left:9.440000pt;}
.x22{left:10.560000pt;}
.x1e{left:11.840000pt;}
.x31{left:12.960000pt;}
.x2b{left:14.240000pt;}
.x24{left:15.360000pt;}
.x2e{left:16.960000pt;}
.x1b{left:18.240000pt;}
.x4f{left:19.360000pt;}
.x29{left:20.320000pt;}
.x21{left:21.600000pt;}
.x17{left:23.080000pt;}
.x1c{left:24.160000pt;}
.x1f{left:25.440000pt;}
.x3d{left:26.720000pt;}
.x2d{left:27.680000pt;}
.x34{left:28.960000pt;}
.x28{left:30.560000pt;}
.x27{left:32.320000pt;}
.x2a{left:33.600000pt;}
.x2c{left:34.880000pt;}
.x40{left:36.000000pt;}
.x44{left:37.600000pt;}
.x3b{left:38.600000pt;}
.x4e{left:40.480000pt;}
.x37{left:41.960000pt;}
.x43{left:43.834667pt;}
.x42{left:45.114667pt;}
.x3c{left:46.600000pt;}
.x50{left:48.640000pt;}
.x15{left:56.634667pt;}
.x51{left:58.880000pt;}
.x35{left:70.240000pt;}
.x2f{left:72.320000pt;}
.x5f{left:77.600000pt;}
.x5{left:96.031988pt;}
.x14{left:97.952000pt;}
.x52{left:100.832000pt;}
.x3{left:103.711988pt;}
.x63{left:112.960000pt;}
.x60{left:126.432000pt;}
.x6d{left:128.031988pt;}
.x45{left:138.586667pt;}
.x53{left:140.826667pt;}
.x7{left:144.026655pt;}
.x30{left:165.946667pt;}
.x61{left:173.786667pt;}
.x54{left:214.266667pt;}
.x6{left:232.186655pt;}
.x32{left:240.026667pt;}
.x3e{left:249.146667pt;}
.x46{left:253.626667pt;}
.x59{left:260.666667pt;}
.x16{left:264.186667pt;}
.x4{left:268.666655pt;}
.x33{left:296.706667pt;}
.x1{left:299.106655pt;}
.x64{left:301.026667pt;}
.x55{left:308.066667pt;}
.x19{left:321.666667pt;}
.x47{left:331.106667pt;}
.x65{left:342.466667pt;}
.x3f{left:351.906667pt;}
.x38{left:354.146667pt;}
.x5a{left:355.586667pt;}
.x9{left:358.146655pt;}
.xa{left:379.746655pt;}
.x66{left:383.746667pt;}
.x1a{left:389.666667pt;}
.xc{left:393.026655pt;}
.x8{left:398.626655pt;}
.x2{left:408.066655pt;}
.xb{left:415.266655pt;}
.x48{left:421.666667pt;}
.x67{left:425.186667pt;}
.x41{left:447.906667pt;}
.x10{left:450.306655pt;}
.x5b{left:456.413333pt;}
.x1d{left:460.253333pt;}
.x11{left:474.173333pt;}
.x49{left:481.213333pt;}
.xd{left:493.213321pt;}
.x56{left:501.053333pt;}
.x39{left:518.173333pt;}
.x62{left:520.733333pt;}
.x4a{left:528.893333pt;}
.x20{left:533.693333pt;}
.x5c{left:548.573333pt;}
.x68{left:568.093333pt;}
.x3a{left:576.573333pt;}
.x4b{left:595.933333pt;}
.x57{left:601.853333pt;}
.x23{left:604.253333pt;}
.x69{left:615.613333pt;}
.x36{left:634.973333pt;}
.x5d{left:649.253333pt;}
.x6a{left:656.933333pt;}
.x4c{left:661.573333pt;}
.xe{left:665.893321pt;}
.x26{left:668.453333pt;}
.x58{left:702.693333pt;}
.x6b{left:704.453333pt;}
.x13{left:711.013321pt;}
.xf{left:720.133321pt;}
.x4d{left:728.613333pt;}
.x5e{left:750.213333pt;}
.x6c{left:751.813333pt;}
}




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