
    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_2fe77aa65f2108ec9bb0904c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_b07a3c64c551f980363baa85.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_4a2b1f87aad24617d91ca45c.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_df4c4cde4024a0eff7e55f52.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_8c9142440160a2f59ec17dd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_69d67e836f221ef76a672397.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.141602;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_12812e7565f289f541723a81.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.141602;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_1ebc688067f4fa3b40e213d9.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m4{transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242425,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242857,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243243,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243750,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);}
.m3{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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-18.000000px;}
.v10{vertical-align:-14.400000px;}
.v8{vertical-align:-12.240000px;}
.vd{vertical-align:-9.360000px;}
.v5{vertical-align:-5.760000px;}
.v12{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:2.880000px;}
.v9{vertical-align:12.240000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.v7{vertical-align:30.240000px;}
.v6{vertical-align:35.280000px;}
.ve{vertical-align:39.600000px;}
.vf{vertical-align:42.480000px;}
.va{vertical-align:47.520000px;}
.vc{vertical-align:56.160000px;}
.vb{vertical-align:65.520000px;}
.ls22{letter-spacing:-1.800000px;}
.ls7{letter-spacing:-1.080000px;}
.ls24{letter-spacing:-0.924000px;}
.ls2c{letter-spacing:-0.540000px;}
.ls2a{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.ls1d{letter-spacing:-0.258000px;}
.ls29{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.109200px;}
.ls1e{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls1c{letter-spacing:-0.044640px;}
.ls27{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.008640px;}
.ls1f{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.053280px;}
.ls25{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.108000px;}
.ls9{letter-spacing:0.109200px;}
.lsd{letter-spacing:0.172800px;}
.ls15{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.186000px;}
.ls17{letter-spacing:0.208800px;}
.ls26{letter-spacing:0.216000px;}
.ls21{letter-spacing:0.259800px;}
.ls28{letter-spacing:0.259920px;}
.ls19{letter-spacing:0.264000px;}
.ls20{letter-spacing:0.298800px;}
.ls23{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.332400px;}
.ls1{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.480000px;}
.ls5{letter-spacing:0.508200px;}
.lse{letter-spacing:0.892800px;}
.ls10{letter-spacing:17.279280px;}
.ls13{letter-spacing:19.439280px;}
.lsf{letter-spacing:90.719280px;}
.ls14{letter-spacing:146.109600px;}
.ls12{letter-spacing:158.349600px;}
.ls18{letter-spacing:174.936000px;}
.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;}
}
.ws8{word-spacing:-16.669200px;}
.ws9{word-spacing:-16.450800px;}
.wsa{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.297800px;}
.ws7{word-spacing:-16.254600px;}
.ws1f{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.238800px;}
.ws25{word-spacing:-15.120000px;}
.ws21{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws1a{word-spacing:-14.833200px;}
.ws24{word-spacing:-14.733600px;}
.ws3{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.ws23{word-spacing:-13.824000px;}
.ws22{word-spacing:-13.716000px;}
.ws1c{word-spacing:-13.518000px;}
.ws2{word-spacing:-13.500000px;}
.ws10{word-spacing:-13.411200px;}
.ws20{word-spacing:-13.140000px;}
.ws1d{word-spacing:-11.700000px;}
.ws0{word-spacing:-9.720000px;}
.ws13{word-spacing:-9.519600px;}
.ws12{word-spacing:-9.373200px;}
.wse{word-spacing:-9.187200px;}
.ws17{word-spacing:-9.142560px;}
.ws15{word-spacing:-9.133920px;}
.ws14{word-spacing:-9.007200px;}
.ws1{word-spacing:-9.000000px;}
.ws19{word-spacing:-8.100000px;}
.ws16{word-spacing:-7.920000px;}
.ws5{word-spacing:0.000000px;}
.wsd{word-spacing:4.276080px;}
.ws1b{word-spacing:6.120000px;}
.ws11{word-spacing:11.439360px;}
.ws18{word-spacing:11.746800px;}
.wsf{word-spacing:19.562400px;}
._1a{margin-left:-5.076000px;}
._1{margin-left:-3.780000px;}
._c{margin-left:-2.614320px;}
._2{margin-left:-1.324320px;}
._0{width:1.031040px;}
._4{width:2.798880px;}
._3{width:3.852960px;}
._7{width:5.378400px;}
._8{width:6.438960px;}
._6{width:7.470000px;}
._5{width:8.526720px;}
._b{width:9.648000px;}
._d{width:10.943760px;}
._a{width:12.056400px;}
._9{width:13.505760px;}
._19{width:16.323840px;}
._12{width:17.390160px;}
._13{width:18.926640px;}
._1c{width:19.948800px;}
._f{width:21.006000px;}
._e{width:22.036320px;}
._11{width:24.562080px;}
._10{width:25.562160px;}
._18{width:38.520000px;}
._16{width:55.289760px;}
._1b{width:92.664000px;}
._17{width:152.097600px;}
._14{width:200.740800px;}
._15{width:201.818400px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(0,31,95);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs1{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y11{bottom:2.880000px;}
.yf7{bottom:3.060000px;}
.yf9{bottom:3.240000px;}
.y152{bottom:3.270000px;}
.y16f{bottom:3.276000px;}
.y142{bottom:3.285000px;}
.y76{bottom:3.600000px;}
.y78{bottom:3.780000px;}
.y108{bottom:3.960000px;}
.y181{bottom:4.320000px;}
.yfb{bottom:4.500000px;}
.y187{bottom:4.530000px;}
.y100{bottom:4.680000px;}
.y43{bottom:4.860000px;}
.yfe{bottom:5.040000px;}
.y15{bottom:6.300000px;}
.y13{bottom:8.640000px;}
.y1c3{bottom:10.620000px;}
.y1c5{bottom:10.800000px;}
.y1bf{bottom:10.980000px;}
.yef{bottom:11.160000px;}
.y8{bottom:12.240000px;}
.y5{bottom:17.280000px;}
.y1c1{bottom:18.360000px;}
.y1d6{bottom:18.534000px;}
.y10{bottom:18.540000px;}
.y1bd{bottom:18.720000px;}
.yf1{bottom:18.900000px;}
.y9{bottom:20.880000px;}
.y12b{bottom:21.234000px;}
.y117{bottom:21.240000px;}
.y150{bottom:21.270000px;}
.y16d{bottom:21.276000px;}
.y140{bottom:21.285000px;}
.y42{bottom:23.760000px;}
.y1bb{bottom:26.460000px;}
.yed{bottom:26.640000px;}
.y45{bottom:26.820000px;}
.y1dd{bottom:27.000000px;}
.y7{bottom:29.520000px;}
.yf{bottom:34.020000px;}
.y1bc{bottom:34.200000px;}
.yf0{bottom:34.380000px;}
.y1b8{bottom:34.560000px;}
.y1db{bottom:34.740000px;}
.y1be{bottom:41.940000px;}
.y1de{bottom:42.120000px;}
.yee{bottom:42.300000px;}
.y1ba{bottom:42.480000px;}
.y215{bottom:44.100000px;}
.y4{bottom:45.720000px;}
.y173{bottom:48.240000px;}
.y131{bottom:50.760000px;}
.y1a6{bottom:54.360000px;}
.yb0{bottom:54.540000px;}
.y24a{bottom:55.440000px;}
.y1d9{bottom:59.040000px;}
.y41{bottom:59.400000px;}
.ye{bottom:60.120000px;}
.y214{bottom:61.200000px;}
.y27b{bottom:61.740000px;}
.y172{bottom:65.520000px;}
.y130{bottom:68.040000px;}
.y1a5{bottom:69.120000px;}
.yaf{bottom:71.820000px;}
.y249{bottom:72.720000px;}
.y1d8{bottom:73.800000px;}
.y40{bottom:76.680000px;}
.yd{bottom:77.940000px;}
.y27a{bottom:79.020000px;}
.y170{bottom:80.280000px;}
.y12f{bottom:85.320000px;}
.y1a4{bottom:86.940000px;}
.yea{bottom:87.120000px;}
.y213{bottom:87.480000px;}
.yae{bottom:88.920000px;}
.y248{bottom:90.000000px;}
.y3f{bottom:93.780000px;}
.yc{bottom:95.760000px;}
.y171{bottom:98.280000px;}
.y12d{bottom:100.080000px;}
.y279{bottom:100.620000px;}
.ye9{bottom:104.220000px;}
.y1a3{bottom:104.760000px;}
.y1d7{bottom:105.660000px;}
.yad{bottom:106.200000px;}
.y247{bottom:107.280000px;}
.y3e{bottom:111.060000px;}
.yb{bottom:111.600000px;}
.y212{bottom:113.760000px;}
.y16c{bottom:116.280000px;}
.y278{bottom:117.900000px;}
.y12e{bottom:118.080000px;}
.ye8{bottom:121.500000px;}
.y1a2{bottom:122.400000px;}
.yac{bottom:123.480000px;}
.y3d{bottom:128.340000px;}
.y211{bottom:131.040000px;}
.y246{bottom:133.380000px;}
.y16e{bottom:134.280000px;}
.y12a{bottom:136.116000px;}
.y1d5{bottom:137.376000px;}
.ye7{bottom:138.816000px;}
.y277{bottom:139.716000px;}
.y1a1{bottom:140.256000px;}
.yab{bottom:140.796000px;}
.y3c{bottom:145.656000px;}
.y210{bottom:148.356000px;}
.y16a{bottom:152.310000px;}
.y12c{bottom:154.110000px;}
.ye6{bottom:156.090000px;}
.y276{bottom:156.990000px;}
.yaa{bottom:158.070000px;}
.y245{bottom:159.690000px;}
.y3b{bottom:162.930000px;}
.y20f{bottom:165.630000px;}
.y1d4{bottom:169.230000px;}
.y16b{bottom:170.310000px;}
.y128{bottom:172.110000px;}
.ye5{bottom:173.370000px;}
.ya9{bottom:175.350000px;}
.y1a0{bottom:175.890000px;}
.y244{bottom:176.970000px;}
.y275{bottom:178.770000px;}
.y3a{bottom:180.030000px;}
.y168{bottom:188.310000px;}
.y129{bottom:190.110000px;}
.ye4{bottom:190.650000px;}
.y20e{bottom:191.730000px;}
.ya8{bottom:192.450000px;}
.y19f{bottom:193.530000px;}
.y274{bottom:196.050000px;}
.y39{bottom:197.310000px;}
.y1d3{bottom:201.090000px;}
.y243{bottom:203.250000px;}
.y169{bottom:206.310000px;}
.ye3{bottom:207.750000px;}
.y126{bottom:208.110000px;}
.ya7{bottom:209.730000px;}
.y19e{bottom:211.350000px;}
.y38{bottom:214.590000px;}
.y273{bottom:217.650000px;}
.y20d{bottom:218.010000px;}
.y167{bottom:224.310000px;}
.ye2{bottom:225.030000px;}
.y127{bottom:226.110000px;}
.ya6{bottom:227.010000px;}
.y19d{bottom:229.170000px;}
.y242{bottom:229.530000px;}
.y37{bottom:232.050000px;}
.y1d2{bottom:232.770000px;}
.y272{bottom:234.930000px;}
.y20c{bottom:235.290000px;}
.ye1{bottom:242.310000px;}
.y124{bottom:244.110000px;}
.ya5{bottom:244.290000px;}
.y241{bottom:246.810000px;}
.y19c{bottom:246.990000px;}
.y36{bottom:249.330000px;}
.y20b{bottom:252.570000px;}
.y271{bottom:256.710000px;}
.ye0{bottom:259.590000px;}
.y165{bottom:260.310000px;}
.ya4{bottom:261.570000px;}
.y125{bottom:262.110000px;}
.y19b{bottom:264.630000px;}
.y35{bottom:266.430000px;}
.y20a{bottom:269.850000px;}
.y240{bottom:272.910000px;}
.y270{bottom:273.990000px;}
.ydf{bottom:276.870000px;}
.y166{bottom:278.310000px;}
.ya3{bottom:278.850000px;}
.y122{bottom:280.110000px;}
.y19a{bottom:282.450000px;}
.y34{bottom:283.710000px;}
.y209{bottom:287.130000px;}
.y26f{bottom:295.770000px;}
.ya2{bottom:295.950000px;}
.y163{bottom:296.310000px;}
.y1d1{bottom:296.490000px;}
.y123{bottom:298.110000px;}
.y1f6{bottom:299.010000px;}
.y23f{bottom:299.190000px;}
.y199{bottom:300.270000px;}
.y33{bottom:300.990000px;}
.yde{bottom:302.970000px;}
.y74{bottom:310.890000px;}
.y26e{bottom:313.050000px;}
.ya1{bottom:313.230000px;}
.y164{bottom:314.310000px;}
.y120{bottom:316.110000px;}
.y23e{bottom:316.470000px;}
.y198{bottom:318.090000px;}
.y32{bottom:318.270000px;}
.y73{bottom:328.170000px;}
.ydd{bottom:329.250000px;}
.ya0{bottom:330.510000px;}
.y1f5{bottom:330.870000px;}
.y161{bottom:332.310000px;}
.y23d{bottom:333.750000px;}
.y121{bottom:334.110000px;}
.y1fa{bottom:334.650000px;}
.y31{bottom:335.550000px;}
.y197{bottom:335.730000px;}
.y208{bottom:339.510000px;}
.y72{bottom:345.450000px;}
.y9f{bottom:347.790000px;}
.y162{bottom:350.310000px;}
.y23c{bottom:351.030000px;}
.y26d{bottom:351.930000px;}
.y11f{bottom:352.110000px;}
.y30{bottom:352.830000px;}
.y196{bottom:353.550000px;}
.ydc{bottom:355.530000px;}
.y207{bottom:356.790000px;}
.y1d0{bottom:360.030000px;}
.y1f4{bottom:362.730000px;}
.y9e{bottom:365.070000px;}
.y15f{bottom:368.310000px;}
.y2f{bottom:370.110000px;}
.y195{bottom:371.370000px;}
.y71{bottom:371.550000px;}
.ydb{bottom:372.810000px;}
.y26c{bottom:373.710000px;}
.y206{bottom:374.070000px;}
.y9d{bottom:382.350000px;}
.y160{bottom:386.310000px;}
.y2e{bottom:387.435000px;}
.y11d{bottom:388.155000px;}
.y194{bottom:389.235000px;}
.yda{bottom:390.135000px;}
.y26b{bottom:391.035000px;}
.y205{bottom:391.395000px;}
.y1cf{bottom:391.935000px;}
.y23b{bottom:394.455000px;}
.y1f3{bottom:394.635000px;}
.y70{bottom:397.875000px;}
.y9c{bottom:399.495000px;}
.y15d{bottom:404.355000px;}
.y2d{bottom:404.535000px;}
.y11e{bottom:406.155000px;}
.y193{bottom:406.875000px;}
.yd9{bottom:407.415000px;}
.y204{bottom:408.495000px;}
.y26a{bottom:412.635000px;}
.y6f{bottom:415.155000px;}
.y9b{bottom:416.775000px;}
.y23a{bottom:421.275000px;}
.y2c{bottom:421.815000px;}
.y15e{bottom:422.355000px;}
.y1ce{bottom:423.615000px;}
.y11b{bottom:424.155000px;}
.y192{bottom:424.695000px;}
.y203{bottom:425.775000px;}
.y1f2{bottom:426.315000px;}
.y269{bottom:429.915000px;}
.y6e{bottom:432.435000px;}
.yd8{bottom:433.515000px;}
.y9a{bottom:434.055000px;}
.y2b{bottom:439.095000px;}
.y239{bottom:439.815000px;}
.y15b{bottom:440.175000px;}
.y11c{bottom:442.155000px;}
.y191{bottom:442.515000px;}
.y6d{bottom:449.715000px;}
.y99{bottom:451.335000px;}
.y268{bottom:451.695000px;}
.y202{bottom:452.055000px;}
.y1cd{bottom:455.475000px;}
.y2a{bottom:456.375000px;}
.y238{bottom:456.915000px;}
.y15c{bottom:458.175000px;}
.yd7{bottom:459.795000px;}
.y119{bottom:460.155000px;}
.y190{bottom:460.335000px;}
.y6c{bottom:466.815000px;}
.y267{bottom:468.975000px;}
.y29{bottom:473.655000px;}
.y237{bottom:474.195000px;}
.y159{bottom:476.175000px;}
.yd6{bottom:477.075000px;}
.y98{bottom:477.435000px;}
.y18f{bottom:477.975000px;}
.y11a{bottom:478.155000px;}
.y201{bottom:478.335000px;}
.y1cc{bottom:487.335000px;}
.y1f1{bottom:490.035000px;}
.y266{bottom:490.755000px;}
.y28{bottom:490.935000px;}
.y236{bottom:491.475000px;}
.y6b{bottom:493.095000px;}
.y15a{bottom:494.175000px;}
.yd5{bottom:494.355000px;}
.y200{bottom:495.615000px;}
.y18e{bottom:495.795000px;}
.y116{bottom:496.155000px;}
.y97{bottom:503.715000px;}
.y27{bottom:508.035000px;}
.y235{bottom:508.755000px;}
.yd4{bottom:511.635000px;}
.y157{bottom:512.175000px;}
.y1ff{bottom:512.895000px;}
.y18d{bottom:513.615000px;}
.y118{bottom:514.155000px;}
.y1cb{bottom:519.015000px;}
.y6a{bottom:519.375000px;}
.y96{bottom:520.995000px;}
.y1f0{bottom:521.715000px;}
.y26{bottom:525.315000px;}
.y234{bottom:526.035000px;}
.yd3{bottom:528.915000px;}
.y265{bottom:529.635000px;}
.y158{bottom:530.175000px;}
.y18c{bottom:531.435000px;}
.y115{bottom:532.155000px;}
.y95{bottom:538.275000px;}
.y1fe{bottom:538.995000px;}
.y233{bottom:543.315000px;}
.y69{bottom:545.655000px;}
.y264{bottom:546.915000px;}
.y155{bottom:548.175000px;}
.y18b{bottom:549.075000px;}
.y1ca{bottom:550.875000px;}
.y25{bottom:551.595000px;}
.y1ef{bottom:553.575000px;}
.yd2{bottom:555.015000px;}
.y94{bottom:555.555000px;}
.y114{bottom:557.895000px;}
.y232{bottom:560.415000px;}
.y68{bottom:562.935000px;}
.y263{bottom:564.195000px;}
.y1fd{bottom:565.275000px;}
.y156{bottom:566.175000px;}
.y18a{bottom:566.895000px;}
.y93{bottom:572.835000px;}
.y231{bottom:577.695000px;}
.y24{bottom:577.875000px;}
.y113{bottom:579.675000px;}
.y67{bottom:580.215000px;}
.yd1{bottom:581.295000px;}
.y1c9{bottom:582.735000px;}
.y153{bottom:584.175000px;}
.y189{bottom:584.715000px;}
.y1ee{bottom:585.435000px;}
.y262{bottom:585.975000px;}
.y1fc{bottom:587.055000px;}
.y92{bottom:590.115000px;}
.y230{bottom:594.975000px;}
.y112{bottom:596.775000px;}
.y66{bottom:597.315000px;}
.yd0{bottom:598.575000px;}
.y154{bottom:602.175000px;}
.y188{bottom:602.535000px;}
.y261{bottom:603.255000px;}
.y23{bottom:604.155000px;}
.y1fb{bottom:605.595000px;}
.y91{bottom:607.215000px;}
.y22f{bottom:612.255000px;}
.y111{bottom:614.055000px;}
.y1c8{bottom:614.415000px;}
.y65{bottom:614.595000px;}
.ycf{bottom:615.855000px;}
.y1ed{bottom:617.115000px;}
.y14f{bottom:620.175000px;}
.y22{bottom:621.435000px;}
.y90{bottom:624.495000px;}
.y260{bottom:625.035000px;}
.y22e{bottom:629.535000px;}
.y110{bottom:631.335000px;}
.y64{bottom:631.875000px;}
.yce{bottom:633.135000px;}
.y186{bottom:637.995000px;}
.y151{bottom:638.175000px;}
.y21{bottom:638.535000px;}
.y8f{bottom:641.805000px;}
.y25f{bottom:642.345000px;}
.y1c7{bottom:646.305000px;}
.y22d{bottom:646.845000px;}
.ycd{bottom:647.745000px;}
.y10f{bottom:648.645000px;}
.y1ec{bottom:649.005000px;}
.y63{bottom:649.365000px;}
.y20{bottom:655.845000px;}
.y14d{bottom:656.205000px;}
.y8e{bottom:659.085000px;}
.y25e{bottom:663.945000px;}
.ycc{bottom:664.305000px;}
.y10e{bottom:665.925000px;}
.ycb{bottom:666.105000px;}
.y62{bottom:666.645000px;}
.y22c{bottom:672.945000px;}
.y1f{bottom:673.125000px;}
.y185{bottom:673.665000px;}
.y14e{bottom:674.205000px;}
.y8d{bottom:676.365000px;}
.y1c6{bottom:678.165000px;}
.y1eb{bottom:680.865000px;}
.y25d{bottom:681.225000px;}
.y10d{bottom:683.205000px;}
.y61{bottom:683.745000px;}
.y1e{bottom:690.405000px;}
.yca{bottom:690.945000px;}
.y184{bottom:691.305000px;}
.y14b{bottom:692.205000px;}
.y8c{bottom:693.645000px;}
.y22b{bottom:699.225000px;}
.y10c{bottom:700.305000px;}
.y60{bottom:701.025000px;}
.y25c{bottom:703.005000px;}
.y1d{bottom:707.685000px;}
.yc9{bottom:708.225000px;}
.y183{bottom:709.125000px;}
.y1c4{bottom:709.845000px;}
.y14c{bottom:710.205000px;}
.y1ea{bottom:712.545000px;}
.y10b{bottom:715.065000px;}
.y1f9{bottom:715.965000px;}
.y22a{bottom:716.505000px;}
.y5f{bottom:718.305000px;}
.y8b{bottom:719.745000px;}
.y25b{bottom:720.285000px;}
.y1c{bottom:724.785000px;}
.yc8{bottom:725.325000px;}
.y182{bottom:726.945000px;}
.y149{bottom:728.205000px;}
.y229{bottom:733.785000px;}
.y10a{bottom:735.405000px;}
.y5e{bottom:735.585000px;}
.y1f8{bottom:737.745000px;}
.y1c2{bottom:741.705000px;}
.y25a{bottom:741.885000px;}
.y1b{bottom:742.065000px;}
.yc7{bottom:742.605000px;}
.y1e9{bottom:744.405000px;}
.y180{bottom:744.765000px;}
.y8a{bottom:746.025000px;}
.y14a{bottom:746.205000px;}
.y228{bottom:751.065000px;}
.y5d{bottom:752.865000px;}
.y109{bottom:755.745000px;}
.y1f7{bottom:756.285000px;}
.y259{bottom:759.165000px;}
.y1a{bottom:759.345000px;}
.yc6{bottom:759.885000px;}
.y17f{bottom:762.405000px;}
.y89{bottom:763.305000px;}
.y147{bottom:764.205000px;}
.y227{bottom:768.165000px;}
.y5c{bottom:770.145000px;}
.y1b7{bottom:773.565000px;}
.y107{bottom:776.085000px;}
.y1e8{bottom:776.265000px;}
.y19{bottom:776.625000px;}
.yc5{bottom:777.165000px;}
.y17e{bottom:780.225000px;}
.y88{bottom:780.585000px;}
.y258{bottom:780.945000px;}
.y148{bottom:782.205000px;}
.y226{bottom:785.445000px;}
.y5b{bottom:787.425000px;}
.y1c0{bottom:789.765000px;}
.yc4{bottom:793.725000px;}
.y18{bottom:793.905000px;}
.y106{bottom:794.265000px;}
.y87{bottom:797.865000px;}
.y257{bottom:798.225000px;}
.y145{bottom:800.205000px;}
.yc3{bottom:801.285000px;}
.y225{bottom:802.725000px;}
.y5a{bottom:804.705000px;}
.y17d{bottom:805.785000px;}
.y1e7{bottom:807.945000px;}
.y105{bottom:810.645000px;}
.y17{bottom:811.185000px;}
.y86{bottom:814.965000px;}
.y256{bottom:815.505000px;}
.y146{bottom:818.205000px;}
.y224{bottom:820.005000px;}
.y59{bottom:821.985000px;}
.yc2{bottom:822.345000px;}
.y104{bottom:826.845000px;}
.y17c{bottom:827.565000px;}
.y16{bottom:828.285000px;}
.yc1{bottom:829.905000px;}
.y85{bottom:832.245000px;}
.y143{bottom:836.205000px;}
.y1b9{bottom:837.105000px;}
.y223{bottom:837.285000px;}
.y58{bottom:839.265000px;}
.y1e6{bottom:839.805000px;}
.y103{bottom:843.225000px;}
.y17b{bottom:844.665000px;}
.y84{bottom:849.525000px;}
.yc0{bottom:851.685000px;}
.y14{bottom:852.045000px;}
.y144{bottom:854.205000px;}
.y222{bottom:854.565000px;}
.y57{bottom:856.545000px;}
.y102{bottom:859.425000px;}
.y1b6{bottom:861.045000px;}
.y17a{bottom:861.945000px;}
.ybf{bottom:868.785000px;}
.y1e5{bottom:871.665000px;}
.y13f{bottom:872.205000px;}
.y56{bottom:873.825000px;}
.y101{bottom:875.625000px;}
.y83{bottom:875.805000px;}
.y12{bottom:875.985000px;}
.y255{bottom:876.165000px;}
.ybe{bottom:876.345000px;}
.y179{bottom:879.225000px;}
.y221{bottom:880.665000px;}
.y1b5{bottom:882.825000px;}
.y141{bottom:890.205000px;}
.y55{bottom:891.105000px;}
.y254{bottom:893.490000px;}
.yff{bottom:896.010000px;}
.y178{bottom:896.550000px;}
.ya{bottom:897.270000px;}
.ybd{bottom:898.710000px;}
.y1b4{bottom:900.150000px;}
.y82{bottom:902.130000px;}
.y1e4{bottom:903.390000px;}
.y220{bottom:906.990000px;}
.y13d{bottom:908.250000px;}
.y54{bottom:908.430000px;}
.y177{bottom:913.830000px;}
.y253{bottom:915.270000px;}
.yfd{bottom:915.630000px;}
.ybc{bottom:915.990000px;}
.y1b3{bottom:917.430000px;}
.y81{bottom:919.410000px;}
.y21f{bottom:924.270000px;}
.y53{bottom:925.710000px;}
.y13e{bottom:926.250000px;}
.y176{bottom:931.110000px;}
.y252{bottom:932.550000px;}
.ybb{bottom:933.270000px;}
.y1b2{bottom:934.710000px;}
.y1e3{bottom:935.250000px;}
.yfc{bottom:935.970000px;}
.y80{bottom:936.510000px;}
.y21e{bottom:941.550000px;}
.y52{bottom:942.810000px;}
.y13b{bottom:944.250000px;}
.y175{bottom:948.210000px;}
.yba{bottom:950.550000px;}
.y1b1{bottom:951.810000px;}
.y7f{bottom:953.790000px;}
.y251{bottom:954.330000px;}
.y282{bottom:955.050000px;}
.yfa{bottom:956.310000px;}
.y21d{bottom:958.830000px;}
.y51{bottom:960.090000px;}
.y13c{bottom:962.250000px;}
.y174{bottom:965.490000px;}
.y1e2{bottom:967.110000px;}
.yb9{bottom:967.830000px;}
.y1b0{bottom:969.090000px;}
.y7e{bottom:971.070000px;}
.y250{bottom:971.610000px;}
.yf8{bottom:975.930000px;}
.y21c{bottom:976.110000px;}
.y281{bottom:976.830000px;}
.y50{bottom:977.370000px;}
.y139{bottom:980.250000px;}
.y1af{bottom:986.370000px;}
.y7d{bottom:988.350000px;}
.y24f{bottom:988.710000px;}
.yf6{bottom:992.670000px;}
.yb8{bottom:993.930000px;}
.y280{bottom:994.110000px;}
.y4f{bottom:994.830000px;}
.y13a{bottom:998.250000px;}
.y1e1{bottom:998.790000px;}
.y21b{bottom:1002.210000px;}
.y1ae{bottom:1003.650000px;}
.y7c{bottom:1005.630000px;}
.yf5{bottom:1009.050000px;}
.y24e{bottom:1010.490000px;}
.y4e{bottom:1012.110000px;}
.y27f{bottom:1015.710000px;}
.y137{bottom:1016.250000px;}
.yb7{bottom:1020.210000px;}
.y1ad{bottom:1020.930000px;}
.y7b{bottom:1022.910000px;}
.yf4{bottom:1025.250000px;}
.y24d{bottom:1027.770000px;}
.y6{bottom:1028.130000px;}
.y21a{bottom:1028.490000px;}
.y4d{bottom:1029.210000px;}
.y1e0{bottom:1030.650000px;}
.y27e{bottom:1032.990000px;}
.y138{bottom:1034.250000px;}
.y1ac{bottom:1035.690000px;}
.yb6{bottom:1037.490000px;}
.y7a{bottom:1040.010000px;}
.yf3{bottom:1041.630000px;}
.y219{bottom:1045.770000px;}
.y4c{bottom:1046.490000px;}
.y135{bottom:1052.250000px;}
.y1ab{bottom:1053.330000px;}
.y24c{bottom:1054.050000px;}
.yb5{bottom:1054.770000px;}
.yf2{bottom:1057.830000px;}
.y1da{bottom:1062.330000px;}
.y218{bottom:1063.050000px;}
.y4b{bottom:1063.770000px;}
.y79{bottom:1066.290000px;}
.y136{bottom:1070.250000px;}
.y1aa{bottom:1071.150000px;}
.yb4{bottom:1072.050000px;}
.yec{bottom:1074.030000px;}
.y1df{bottom:1078.710000px;}
.y217{bottom:1080.330000px;}
.y4a{bottom:1081.050000px;}
.y3{bottom:1081.410000px;}
.y133{bottom:1088.250000px;}
.y1a9{bottom:1088.970000px;}
.yb3{bottom:1089.330000px;}
.y77{bottom:1090.050000px;}
.y27d{bottom:1093.830000px;}
.y24b{bottom:1097.610000px;}
.y49{bottom:1098.330000px;}
.y134{bottom:1106.250000px;}
.y216{bottom:1106.430000px;}
.yb2{bottom:1106.610000px;}
.y1a8{bottom:1106.790000px;}
.y75{bottom:1109.850000px;}
.y27c{bottom:1111.110000px;}
.y48{bottom:1115.610000px;}
.yb1{bottom:1123.710000px;}
.y132{bottom:1124.250000px;}
.y1a7{bottom:1124.430000px;}
.y1dc{bottom:1126.050000px;}
.y47{bottom:1132.710000px;}
.yeb{bottom:1145.520000px;}
.y46{bottom:1150.020000px;}
.y2{bottom:1152.180000px;}
.y1{bottom:1250.640000px;}
.y44{bottom:1262.160000px;}
.h22{height:15.480000px;}
.h23{height:15.660000px;}
.h24{height:16.020000px;}
.h30{height:16.920000px;}
.h31{height:16.956000px;}
.h2d{height:17.100000px;}
.h2f{height:17.136000px;}
.h28{height:17.280000px;}
.h2b{height:17.316000px;}
.h27{height:17.460000px;}
.h25{height:18.720000px;}
.h16{height:18.900000px;}
.h17{height:19.080000px;}
.h14{height:19.620000px;}
.h26{height:19.656000px;}
.he{height:21.276000px;}
.h11{height:23.220000px;}
.h35{height:30.960000px;}
.h38{height:30.996000px;}
.h36{height:31.140000px;}
.h37{height:31.176000px;}
.hb{height:32.273438px;}
.hc{height:34.855313px;}
.h2c{height:35.100000px;}
.h2e{height:35.136000px;}
.h29{height:35.280000px;}
.h2a{height:35.316000px;}
.h21{height:38.100586px;}
.h1d{height:38.456719px;}
.h2{height:39.760312px;}
.h1e{height:41.336719px;}
.h6{height:42.164648px;}
.h13{height:43.506914px;}
.h3{height:45.828281px;}
.h34{height:46.620000px;}
.h8{height:46.736719px;}
.ha{height:48.312422px;}
.h10{height:48.410156px;}
.h15{height:48.496641px;}
.h3a{height:49.255313px;}
.hd{height:50.273438px;}
.h7{height:52.380000px;}
.h12{height:53.573906px;}
.hf{height:59.383125px;}
.h33{height:62.820000px;}
.h20{height:63.000000px;}
.h1f{height:64.546875px;}
.h5{height:67.565039px;}
.h4{height:68.076000px;}
.h18{height:73.736719px;}
.h32{height:79.020000px;}
.h39{height:79.200000px;}
.h1b{height:83.813906px;}
.h19{height:85.272891px;}
.h1c{height:89.556328px;}
.h1a{height:103.976719px;}
.h9{height:130.140000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wd{width:25.740000px;}
.w12{width:36.756000px;}
.w2b{width:39.276000px;}
.w1a{width:40.140000px;}
.w19{width:40.500000px;}
.w31{width:41.796000px;}
.w1e{width:46.620000px;}
.w2a{width:59.040000px;}
.w2c{width:63.000000px;}
.w10{width:65.520000px;}
.w2e{width:66.240000px;}
.w14{width:70.200000px;}
.w13{width:70.740000px;}
.w17{width:70.920000px;}
.w21{width:73.620000px;}
.w24{width:73.656000px;}
.w11{width:73.800000px;}
.wf{width:73.836000px;}
.w2d{width:75.096000px;}
.w30{width:76.500000px;}
.w18{width:79.776000px;}
.w4{width:82.836000px;}
.w1b{width:83.556000px;}
.w16{width:90.576000px;}
.w15{width:92.520000px;}
.w26{width:100.476000px;}
.w25{width:106.020000px;}
.wb{width:107.856000px;}
.w20{width:112.896000px;}
.w1d{width:114.336000px;}
.wa{width:118.440000px;}
.w1f{width:127.656000px;}
.we{width:133.920000px;}
.w7{width:137.376000px;}
.w9{width:147.996000px;}
.w2f{width:152.490000px;}
.wc{width:174.450000px;}
.w32{width:189.030000px;}
.w22{width:215.490000px;}
.w28{width:231.555000px;}
.w8{width:282.315000px;}
.w1c{width:289.830000px;}
.w6{width:349.275000px;}
.w29{width:369.615000px;}
.w27{width:386.175000px;}
.w23{width:487.545000px;}
.w5{width:686.130000px;}
.w3{width:768.960000px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.xf{left:4.500000px;}
.x5{left:8.460000px;}
.x2a{left:10.260000px;}
.x52{left:11.340000px;}
.x36{left:12.420000px;}
.x2f{left:13.500000px;}
.x29{left:15.300000px;}
.x2b{left:16.920000px;}
.x53{left:18.180000px;}
.x30{left:19.260000px;}
.x16{left:20.880000px;}
.x20{left:22.500000px;}
.x18{left:24.480000px;}
.x1c{left:26.325000px;}
.x14{left:28.620000px;}
.x19{left:29.880000px;}
.x34{left:32.085000px;}
.x38{left:33.165000px;}
.x1f{left:34.380000px;}
.x42{left:36.570000px;}
.x12{left:37.620000px;}
.x3d{left:38.730000px;}
.x43{left:43.245000px;}
.x50{left:46.260000px;}
.x5a{left:49.134000px;}
.x1{left:53.099987px;}
.x54{left:56.874000px;}
.x2{left:62.100000px;}
.xb{left:63.719987px;}
.x27{left:68.220000px;}
.x58{left:69.474000px;}
.x59{left:71.994000px;}
.x56{left:73.434000px;}
.xc{left:74.879987px;}
.x57{left:75.954000px;}
.xd{left:78.659987px;}
.x60{left:81.035987px;}
.x11{left:85.176000px;}
.x62{left:88.415987px;}
.x3b{left:95.214000px;}
.x21{left:96.335987px;}
.x24{left:97.415987px;}
.x3a{left:99.576000px;}
.x28{left:105.696000px;}
.x25{left:112.895987px;}
.x61{left:114.875987px;}
.x55{left:131.430000px;}
.x6{left:144.936000px;}
.x5e{left:153.029987px;}
.x22{left:170.489987px;}
.x41{left:173.910000px;}
.x2c{left:177.150000px;}
.x3{left:183.630000px;}
.x13{left:219.810000px;}
.x2d{left:251.715000px;}
.x4{left:273.675000px;}
.x9{left:292.935000px;}
.x15{left:294.555000px;}
.x4a{left:296.355000px;}
.x5c{left:297.434987px;}
.x39{left:316.334987px;}
.x2e{left:322.635000px;}
.x26{left:327.314987px;}
.x45{left:333.074987px;}
.x23{left:344.774987px;}
.x49{left:357.374987px;}
.x17{left:360.795000px;}
.x4e{left:370.695000px;}
.x44{left:382.214987px;}
.x3c{left:390.135000px;}
.x7{left:411.375000px;}
.x31{left:416.055000px;}
.xe{left:434.625000px;}
.x10{left:446.864987px;}
.x3e{left:505.185000px;}
.x32{left:507.345000px;}
.x1a{left:510.225000px;}
.x4f{left:513.465000px;}
.x8{left:548.745000px;}
.x3f{left:552.525000px;}
.x46{left:563.505000px;}
.x33{left:578.985000px;}
.x1b{left:584.925000px;}
.x51{left:589.470000px;}
.x47{left:637.890000px;}
.xa{left:656.610000px;}
.x1d{left:659.670000px;}
.x4b{left:666.690000px;}
.x40{left:680.910000px;}
.x35{left:700.710000px;}
.x4c{left:726.450000px;}
.x1e{left:734.370000px;}
.x37{left:741.570000px;}
.x48{left:744.630000px;}
.x5d{left:760.139987px;}
.x4d{left:766.440000px;}
.x5b{left:800.639987px;}
.x5f{left:804.779987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-16.000000pt;}
.v10{vertical-align:-12.800000pt;}
.v8{vertical-align:-10.880000pt;}
.vd{vertical-align:-8.320000pt;}
.v5{vertical-align:-5.120000pt;}
.v12{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:2.560000pt;}
.v9{vertical-align:10.880000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.v7{vertical-align:26.880000pt;}
.v6{vertical-align:31.360000pt;}
.ve{vertical-align:35.200000pt;}
.vf{vertical-align:37.760000pt;}
.va{vertical-align:42.240000pt;}
.vc{vertical-align:49.920000pt;}
.vb{vertical-align:58.240000pt;}
.ls22{letter-spacing:-1.600000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls24{letter-spacing:-0.821333pt;}
.ls2c{letter-spacing:-0.480000pt;}
.ls2a{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.ls1d{letter-spacing:-0.229333pt;}
.ls29{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls1c{letter-spacing:-0.039680pt;}
.ls27{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.007680pt;}
.ls1f{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls25{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.096000pt;}
.ls9{letter-spacing:0.097067pt;}
.lsd{letter-spacing:0.153600pt;}
.ls15{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.165333pt;}
.ls17{letter-spacing:0.185600pt;}
.ls26{letter-spacing:0.192000pt;}
.ls21{letter-spacing:0.230933pt;}
.ls28{letter-spacing:0.231040pt;}
.ls19{letter-spacing:0.234667pt;}
.ls20{letter-spacing:0.265600pt;}
.ls23{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.295467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.426667pt;}
.ls5{letter-spacing:0.451733pt;}
.lse{letter-spacing:0.793600pt;}
.ls10{letter-spacing:15.359360pt;}
.ls13{letter-spacing:17.279360pt;}
.lsf{letter-spacing:80.639360pt;}
.ls14{letter-spacing:129.875200pt;}
.ls12{letter-spacing:140.755200pt;}
.ls18{letter-spacing:155.498667pt;}
.ws8{word-spacing:-14.817067pt;}
.ws9{word-spacing:-14.622933pt;}
.wsa{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.486933pt;}
.ws7{word-spacing:-14.448533pt;}
.ws1f{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.545600pt;}
.ws25{word-spacing:-13.440000pt;}
.ws21{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1a{word-spacing:-13.185067pt;}
.ws24{word-spacing:-13.096533pt;}
.ws3{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws23{word-spacing:-12.288000pt;}
.ws22{word-spacing:-12.192000pt;}
.ws1c{word-spacing:-12.016000pt;}
.ws2{word-spacing:-12.000000pt;}
.ws10{word-spacing:-11.921067pt;}
.ws20{word-spacing:-11.680000pt;}
.ws1d{word-spacing:-10.400000pt;}
.ws0{word-spacing:-8.640000pt;}
.ws13{word-spacing:-8.461867pt;}
.ws12{word-spacing:-8.331733pt;}
.wse{word-spacing:-8.166400pt;}
.ws17{word-spacing:-8.126720pt;}
.ws15{word-spacing:-8.119040pt;}
.ws14{word-spacing:-8.006400pt;}
.ws1{word-spacing:-8.000000pt;}
.ws19{word-spacing:-7.200000pt;}
.ws16{word-spacing:-7.040000pt;}
.ws5{word-spacing:0.000000pt;}
.wsd{word-spacing:3.800960pt;}
.ws1b{word-spacing:5.440000pt;}
.ws11{word-spacing:10.168320pt;}
.ws18{word-spacing:10.441600pt;}
.wsf{word-spacing:17.388800pt;}
._1a{margin-left:-4.512000pt;}
._1{margin-left:-3.360000pt;}
._c{margin-left:-2.323840pt;}
._2{margin-left:-1.177173pt;}
._0{width:0.916480pt;}
._4{width:2.487893pt;}
._3{width:3.424853pt;}
._7{width:4.780800pt;}
._8{width:5.723520pt;}
._6{width:6.640000pt;}
._5{width:7.579307pt;}
._b{width:8.576000pt;}
._d{width:9.727787pt;}
._a{width:10.716800pt;}
._9{width:12.005120pt;}
._19{width:14.510080pt;}
._12{width:15.457920pt;}
._13{width:16.823680pt;}
._1c{width:17.732267pt;}
._f{width:18.672000pt;}
._e{width:19.587840pt;}
._11{width:21.832960pt;}
._10{width:22.721920pt;}
._18{width:34.240000pt;}
._16{width:49.146453pt;}
._1b{width:82.368000pt;}
._17{width:135.197867pt;}
._14{width:178.436267pt;}
._15{width:179.394133pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs1{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:2.560000pt;}
.yf7{bottom:2.720000pt;}
.yf9{bottom:2.880000pt;}
.y152{bottom:2.906667pt;}
.y16f{bottom:2.912000pt;}
.y142{bottom:2.920000pt;}
.y76{bottom:3.200000pt;}
.y78{bottom:3.360000pt;}
.y108{bottom:3.520000pt;}
.y181{bottom:3.840000pt;}
.yfb{bottom:4.000000pt;}
.y187{bottom:4.026667pt;}
.y100{bottom:4.160000pt;}
.y43{bottom:4.320000pt;}
.yfe{bottom:4.480000pt;}
.y15{bottom:5.600000pt;}
.y13{bottom:7.680000pt;}
.y1c3{bottom:9.440000pt;}
.y1c5{bottom:9.600000pt;}
.y1bf{bottom:9.760000pt;}
.yef{bottom:9.920000pt;}
.y8{bottom:10.880000pt;}
.y5{bottom:15.360000pt;}
.y1c1{bottom:16.320000pt;}
.y1d6{bottom:16.474667pt;}
.y10{bottom:16.480000pt;}
.y1bd{bottom:16.640000pt;}
.yf1{bottom:16.800000pt;}
.y9{bottom:18.560000pt;}
.y12b{bottom:18.874667pt;}
.y117{bottom:18.880000pt;}
.y150{bottom:18.906667pt;}
.y16d{bottom:18.912000pt;}
.y140{bottom:18.920000pt;}
.y42{bottom:21.120000pt;}
.y1bb{bottom:23.520000pt;}
.yed{bottom:23.680000pt;}
.y45{bottom:23.840000pt;}
.y1dd{bottom:24.000000pt;}
.y7{bottom:26.240000pt;}
.yf{bottom:30.240000pt;}
.y1bc{bottom:30.400000pt;}
.yf0{bottom:30.560000pt;}
.y1b8{bottom:30.720000pt;}
.y1db{bottom:30.880000pt;}
.y1be{bottom:37.280000pt;}
.y1de{bottom:37.440000pt;}
.yee{bottom:37.600000pt;}
.y1ba{bottom:37.760000pt;}
.y215{bottom:39.200000pt;}
.y4{bottom:40.640000pt;}
.y173{bottom:42.880000pt;}
.y131{bottom:45.120000pt;}
.y1a6{bottom:48.320000pt;}
.yb0{bottom:48.480000pt;}
.y24a{bottom:49.280000pt;}
.y1d9{bottom:52.480000pt;}
.y41{bottom:52.800000pt;}
.ye{bottom:53.440000pt;}
.y214{bottom:54.400000pt;}
.y27b{bottom:54.880000pt;}
.y172{bottom:58.240000pt;}
.y130{bottom:60.480000pt;}
.y1a5{bottom:61.440000pt;}
.yaf{bottom:63.840000pt;}
.y249{bottom:64.640000pt;}
.y1d8{bottom:65.600000pt;}
.y40{bottom:68.160000pt;}
.yd{bottom:69.280000pt;}
.y27a{bottom:70.240000pt;}
.y170{bottom:71.360000pt;}
.y12f{bottom:75.840000pt;}
.y1a4{bottom:77.280000pt;}
.yea{bottom:77.440000pt;}
.y213{bottom:77.760000pt;}
.yae{bottom:79.040000pt;}
.y248{bottom:80.000000pt;}
.y3f{bottom:83.360000pt;}
.yc{bottom:85.120000pt;}
.y171{bottom:87.360000pt;}
.y12d{bottom:88.960000pt;}
.y279{bottom:89.440000pt;}
.ye9{bottom:92.640000pt;}
.y1a3{bottom:93.120000pt;}
.y1d7{bottom:93.920000pt;}
.yad{bottom:94.400000pt;}
.y247{bottom:95.360000pt;}
.y3e{bottom:98.720000pt;}
.yb{bottom:99.200000pt;}
.y212{bottom:101.120000pt;}
.y16c{bottom:103.360000pt;}
.y278{bottom:104.800000pt;}
.y12e{bottom:104.960000pt;}
.ye8{bottom:108.000000pt;}
.y1a2{bottom:108.800000pt;}
.yac{bottom:109.760000pt;}
.y3d{bottom:114.080000pt;}
.y211{bottom:116.480000pt;}
.y246{bottom:118.560000pt;}
.y16e{bottom:119.360000pt;}
.y12a{bottom:120.992000pt;}
.y1d5{bottom:122.112000pt;}
.ye7{bottom:123.392000pt;}
.y277{bottom:124.192000pt;}
.y1a1{bottom:124.672000pt;}
.yab{bottom:125.152000pt;}
.y3c{bottom:129.472000pt;}
.y210{bottom:131.872000pt;}
.y16a{bottom:135.386667pt;}
.y12c{bottom:136.986667pt;}
.ye6{bottom:138.746667pt;}
.y276{bottom:139.546667pt;}
.yaa{bottom:140.506667pt;}
.y245{bottom:141.946667pt;}
.y3b{bottom:144.826667pt;}
.y20f{bottom:147.226667pt;}
.y1d4{bottom:150.426667pt;}
.y16b{bottom:151.386667pt;}
.y128{bottom:152.986667pt;}
.ye5{bottom:154.106667pt;}
.ya9{bottom:155.866667pt;}
.y1a0{bottom:156.346667pt;}
.y244{bottom:157.306667pt;}
.y275{bottom:158.906667pt;}
.y3a{bottom:160.026667pt;}
.y168{bottom:167.386667pt;}
.y129{bottom:168.986667pt;}
.ye4{bottom:169.466667pt;}
.y20e{bottom:170.426667pt;}
.ya8{bottom:171.066667pt;}
.y19f{bottom:172.026667pt;}
.y274{bottom:174.266667pt;}
.y39{bottom:175.386667pt;}
.y1d3{bottom:178.746667pt;}
.y243{bottom:180.666667pt;}
.y169{bottom:183.386667pt;}
.ye3{bottom:184.666667pt;}
.y126{bottom:184.986667pt;}
.ya7{bottom:186.426667pt;}
.y19e{bottom:187.866667pt;}
.y38{bottom:190.746667pt;}
.y273{bottom:193.466667pt;}
.y20d{bottom:193.786667pt;}
.y167{bottom:199.386667pt;}
.ye2{bottom:200.026667pt;}
.y127{bottom:200.986667pt;}
.ya6{bottom:201.786667pt;}
.y19d{bottom:203.706667pt;}
.y242{bottom:204.026667pt;}
.y37{bottom:206.266667pt;}
.y1d2{bottom:206.906667pt;}
.y272{bottom:208.826667pt;}
.y20c{bottom:209.146667pt;}
.ye1{bottom:215.386667pt;}
.y124{bottom:216.986667pt;}
.ya5{bottom:217.146667pt;}
.y241{bottom:219.386667pt;}
.y19c{bottom:219.546667pt;}
.y36{bottom:221.626667pt;}
.y20b{bottom:224.506667pt;}
.y271{bottom:228.186667pt;}
.ye0{bottom:230.746667pt;}
.y165{bottom:231.386667pt;}
.ya4{bottom:232.506667pt;}
.y125{bottom:232.986667pt;}
.y19b{bottom:235.226667pt;}
.y35{bottom:236.826667pt;}
.y20a{bottom:239.866667pt;}
.y240{bottom:242.586667pt;}
.y270{bottom:243.546667pt;}
.ydf{bottom:246.106667pt;}
.y166{bottom:247.386667pt;}
.ya3{bottom:247.866667pt;}
.y122{bottom:248.986667pt;}
.y19a{bottom:251.066667pt;}
.y34{bottom:252.186667pt;}
.y209{bottom:255.226667pt;}
.y26f{bottom:262.906667pt;}
.ya2{bottom:263.066667pt;}
.y163{bottom:263.386667pt;}
.y1d1{bottom:263.546667pt;}
.y123{bottom:264.986667pt;}
.y1f6{bottom:265.786667pt;}
.y23f{bottom:265.946667pt;}
.y199{bottom:266.906667pt;}
.y33{bottom:267.546667pt;}
.yde{bottom:269.306667pt;}
.y74{bottom:276.346667pt;}
.y26e{bottom:278.266667pt;}
.ya1{bottom:278.426667pt;}
.y164{bottom:279.386667pt;}
.y120{bottom:280.986667pt;}
.y23e{bottom:281.306667pt;}
.y198{bottom:282.746667pt;}
.y32{bottom:282.906667pt;}
.y73{bottom:291.706667pt;}
.ydd{bottom:292.666667pt;}
.ya0{bottom:293.786667pt;}
.y1f5{bottom:294.106667pt;}
.y161{bottom:295.386667pt;}
.y23d{bottom:296.666667pt;}
.y121{bottom:296.986667pt;}
.y1fa{bottom:297.466667pt;}
.y31{bottom:298.266667pt;}
.y197{bottom:298.426667pt;}
.y208{bottom:301.786667pt;}
.y72{bottom:307.066667pt;}
.y9f{bottom:309.146667pt;}
.y162{bottom:311.386667pt;}
.y23c{bottom:312.026667pt;}
.y26d{bottom:312.826667pt;}
.y11f{bottom:312.986667pt;}
.y30{bottom:313.626667pt;}
.y196{bottom:314.266667pt;}
.ydc{bottom:316.026667pt;}
.y207{bottom:317.146667pt;}
.y1d0{bottom:320.026667pt;}
.y1f4{bottom:322.426667pt;}
.y9e{bottom:324.506667pt;}
.y15f{bottom:327.386667pt;}
.y2f{bottom:328.986667pt;}
.y195{bottom:330.106667pt;}
.y71{bottom:330.266667pt;}
.ydb{bottom:331.386667pt;}
.y26c{bottom:332.186667pt;}
.y206{bottom:332.506667pt;}
.y9d{bottom:339.866667pt;}
.y160{bottom:343.386667pt;}
.y2e{bottom:344.386667pt;}
.y11d{bottom:345.026667pt;}
.y194{bottom:345.986667pt;}
.yda{bottom:346.786667pt;}
.y26b{bottom:347.586667pt;}
.y205{bottom:347.906667pt;}
.y1cf{bottom:348.386667pt;}
.y23b{bottom:350.626667pt;}
.y1f3{bottom:350.786667pt;}
.y70{bottom:353.666667pt;}
.y9c{bottom:355.106667pt;}
.y15d{bottom:359.426667pt;}
.y2d{bottom:359.586667pt;}
.y11e{bottom:361.026667pt;}
.y193{bottom:361.666667pt;}
.yd9{bottom:362.146667pt;}
.y204{bottom:363.106667pt;}
.y26a{bottom:366.786667pt;}
.y6f{bottom:369.026667pt;}
.y9b{bottom:370.466667pt;}
.y23a{bottom:374.466667pt;}
.y2c{bottom:374.946667pt;}
.y15e{bottom:375.426667pt;}
.y1ce{bottom:376.546667pt;}
.y11b{bottom:377.026667pt;}
.y192{bottom:377.506667pt;}
.y203{bottom:378.466667pt;}
.y1f2{bottom:378.946667pt;}
.y269{bottom:382.146667pt;}
.y6e{bottom:384.386667pt;}
.yd8{bottom:385.346667pt;}
.y9a{bottom:385.826667pt;}
.y2b{bottom:390.306667pt;}
.y239{bottom:390.946667pt;}
.y15b{bottom:391.266667pt;}
.y11c{bottom:393.026667pt;}
.y191{bottom:393.346667pt;}
.y6d{bottom:399.746667pt;}
.y99{bottom:401.186667pt;}
.y268{bottom:401.506667pt;}
.y202{bottom:401.826667pt;}
.y1cd{bottom:404.866667pt;}
.y2a{bottom:405.666667pt;}
.y238{bottom:406.146667pt;}
.y15c{bottom:407.266667pt;}
.yd7{bottom:408.706667pt;}
.y119{bottom:409.026667pt;}
.y190{bottom:409.186667pt;}
.y6c{bottom:414.946667pt;}
.y267{bottom:416.866667pt;}
.y29{bottom:421.026667pt;}
.y237{bottom:421.506667pt;}
.y159{bottom:423.266667pt;}
.yd6{bottom:424.066667pt;}
.y98{bottom:424.386667pt;}
.y18f{bottom:424.866667pt;}
.y11a{bottom:425.026667pt;}
.y201{bottom:425.186667pt;}
.y1cc{bottom:433.186667pt;}
.y1f1{bottom:435.586667pt;}
.y266{bottom:436.226667pt;}
.y28{bottom:436.386667pt;}
.y236{bottom:436.866667pt;}
.y6b{bottom:438.306667pt;}
.y15a{bottom:439.266667pt;}
.yd5{bottom:439.426667pt;}
.y200{bottom:440.546667pt;}
.y18e{bottom:440.706667pt;}
.y116{bottom:441.026667pt;}
.y97{bottom:447.746667pt;}
.y27{bottom:451.586667pt;}
.y235{bottom:452.226667pt;}
.yd4{bottom:454.786667pt;}
.y157{bottom:455.266667pt;}
.y1ff{bottom:455.906667pt;}
.y18d{bottom:456.546667pt;}
.y118{bottom:457.026667pt;}
.y1cb{bottom:461.346667pt;}
.y6a{bottom:461.666667pt;}
.y96{bottom:463.106667pt;}
.y1f0{bottom:463.746667pt;}
.y26{bottom:466.946667pt;}
.y234{bottom:467.586667pt;}
.yd3{bottom:470.146667pt;}
.y265{bottom:470.786667pt;}
.y158{bottom:471.266667pt;}
.y18c{bottom:472.386667pt;}
.y115{bottom:473.026667pt;}
.y95{bottom:478.466667pt;}
.y1fe{bottom:479.106667pt;}
.y233{bottom:482.946667pt;}
.y69{bottom:485.026667pt;}
.y264{bottom:486.146667pt;}
.y155{bottom:487.266667pt;}
.y18b{bottom:488.066667pt;}
.y1ca{bottom:489.666667pt;}
.y25{bottom:490.306667pt;}
.y1ef{bottom:492.066667pt;}
.yd2{bottom:493.346667pt;}
.y94{bottom:493.826667pt;}
.y114{bottom:495.906667pt;}
.y232{bottom:498.146667pt;}
.y68{bottom:500.386667pt;}
.y263{bottom:501.506667pt;}
.y1fd{bottom:502.466667pt;}
.y156{bottom:503.266667pt;}
.y18a{bottom:503.906667pt;}
.y93{bottom:509.186667pt;}
.y231{bottom:513.506667pt;}
.y24{bottom:513.666667pt;}
.y113{bottom:515.266667pt;}
.y67{bottom:515.746667pt;}
.yd1{bottom:516.706667pt;}
.y1c9{bottom:517.986667pt;}
.y153{bottom:519.266667pt;}
.y189{bottom:519.746667pt;}
.y1ee{bottom:520.386667pt;}
.y262{bottom:520.866667pt;}
.y1fc{bottom:521.826667pt;}
.y92{bottom:524.546667pt;}
.y230{bottom:528.866667pt;}
.y112{bottom:530.466667pt;}
.y66{bottom:530.946667pt;}
.yd0{bottom:532.066667pt;}
.y154{bottom:535.266667pt;}
.y188{bottom:535.586667pt;}
.y261{bottom:536.226667pt;}
.y23{bottom:537.026667pt;}
.y1fb{bottom:538.306667pt;}
.y91{bottom:539.746667pt;}
.y22f{bottom:544.226667pt;}
.y111{bottom:545.826667pt;}
.y1c8{bottom:546.146667pt;}
.y65{bottom:546.306667pt;}
.ycf{bottom:547.426667pt;}
.y1ed{bottom:548.546667pt;}
.y14f{bottom:551.266667pt;}
.y22{bottom:552.386667pt;}
.y90{bottom:555.106667pt;}
.y260{bottom:555.586667pt;}
.y22e{bottom:559.586667pt;}
.y110{bottom:561.186667pt;}
.y64{bottom:561.666667pt;}
.yce{bottom:562.786667pt;}
.y186{bottom:567.106667pt;}
.y151{bottom:567.266667pt;}
.y21{bottom:567.586667pt;}
.y8f{bottom:570.493333pt;}
.y25f{bottom:570.973333pt;}
.y1c7{bottom:574.493333pt;}
.y22d{bottom:574.973333pt;}
.ycd{bottom:575.773333pt;}
.y10f{bottom:576.573333pt;}
.y1ec{bottom:576.893333pt;}
.y63{bottom:577.213333pt;}
.y20{bottom:582.973333pt;}
.y14d{bottom:583.293333pt;}
.y8e{bottom:585.853333pt;}
.y25e{bottom:590.173333pt;}
.ycc{bottom:590.493333pt;}
.y10e{bottom:591.933333pt;}
.ycb{bottom:592.093333pt;}
.y62{bottom:592.573333pt;}
.y22c{bottom:598.173333pt;}
.y1f{bottom:598.333333pt;}
.y185{bottom:598.813333pt;}
.y14e{bottom:599.293333pt;}
.y8d{bottom:601.213333pt;}
.y1c6{bottom:602.813333pt;}
.y1eb{bottom:605.213333pt;}
.y25d{bottom:605.533333pt;}
.y10d{bottom:607.293333pt;}
.y61{bottom:607.773333pt;}
.y1e{bottom:613.693333pt;}
.yca{bottom:614.173333pt;}
.y184{bottom:614.493333pt;}
.y14b{bottom:615.293333pt;}
.y8c{bottom:616.573333pt;}
.y22b{bottom:621.533333pt;}
.y10c{bottom:622.493333pt;}
.y60{bottom:623.133333pt;}
.y25c{bottom:624.893333pt;}
.y1d{bottom:629.053333pt;}
.yc9{bottom:629.533333pt;}
.y183{bottom:630.333333pt;}
.y1c4{bottom:630.973333pt;}
.y14c{bottom:631.293333pt;}
.y1ea{bottom:633.373333pt;}
.y10b{bottom:635.613333pt;}
.y1f9{bottom:636.413333pt;}
.y22a{bottom:636.893333pt;}
.y5f{bottom:638.493333pt;}
.y8b{bottom:639.773333pt;}
.y25b{bottom:640.253333pt;}
.y1c{bottom:644.253333pt;}
.yc8{bottom:644.733333pt;}
.y182{bottom:646.173333pt;}
.y149{bottom:647.293333pt;}
.y229{bottom:652.253333pt;}
.y10a{bottom:653.693333pt;}
.y5e{bottom:653.853333pt;}
.y1f8{bottom:655.773333pt;}
.y1c2{bottom:659.293333pt;}
.y25a{bottom:659.453333pt;}
.y1b{bottom:659.613333pt;}
.yc7{bottom:660.093333pt;}
.y1e9{bottom:661.693333pt;}
.y180{bottom:662.013333pt;}
.y8a{bottom:663.133333pt;}
.y14a{bottom:663.293333pt;}
.y228{bottom:667.613333pt;}
.y5d{bottom:669.213333pt;}
.y109{bottom:671.773333pt;}
.y1f7{bottom:672.253333pt;}
.y259{bottom:674.813333pt;}
.y1a{bottom:674.973333pt;}
.yc6{bottom:675.453333pt;}
.y17f{bottom:677.693333pt;}
.y89{bottom:678.493333pt;}
.y147{bottom:679.293333pt;}
.y227{bottom:682.813333pt;}
.y5c{bottom:684.573333pt;}
.y1b7{bottom:687.613333pt;}
.y107{bottom:689.853333pt;}
.y1e8{bottom:690.013333pt;}
.y19{bottom:690.333333pt;}
.yc5{bottom:690.813333pt;}
.y17e{bottom:693.533333pt;}
.y88{bottom:693.853333pt;}
.y258{bottom:694.173333pt;}
.y148{bottom:695.293333pt;}
.y226{bottom:698.173333pt;}
.y5b{bottom:699.933333pt;}
.y1c0{bottom:702.013333pt;}
.yc4{bottom:705.533333pt;}
.y18{bottom:705.693333pt;}
.y106{bottom:706.013333pt;}
.y87{bottom:709.213333pt;}
.y257{bottom:709.533333pt;}
.y145{bottom:711.293333pt;}
.yc3{bottom:712.253333pt;}
.y225{bottom:713.533333pt;}
.y5a{bottom:715.293333pt;}
.y17d{bottom:716.253333pt;}
.y1e7{bottom:718.173333pt;}
.y105{bottom:720.573333pt;}
.y17{bottom:721.053333pt;}
.y86{bottom:724.413333pt;}
.y256{bottom:724.893333pt;}
.y146{bottom:727.293333pt;}
.y224{bottom:728.893333pt;}
.y59{bottom:730.653333pt;}
.yc2{bottom:730.973333pt;}
.y104{bottom:734.973333pt;}
.y17c{bottom:735.613333pt;}
.y16{bottom:736.253333pt;}
.yc1{bottom:737.693333pt;}
.y85{bottom:739.773333pt;}
.y143{bottom:743.293333pt;}
.y1b9{bottom:744.093333pt;}
.y223{bottom:744.253333pt;}
.y58{bottom:746.013333pt;}
.y1e6{bottom:746.493333pt;}
.y103{bottom:749.533333pt;}
.y17b{bottom:750.813333pt;}
.y84{bottom:755.133333pt;}
.yc0{bottom:757.053333pt;}
.y14{bottom:757.373333pt;}
.y144{bottom:759.293333pt;}
.y222{bottom:759.613333pt;}
.y57{bottom:761.373333pt;}
.y102{bottom:763.933333pt;}
.y1b6{bottom:765.373333pt;}
.y17a{bottom:766.173333pt;}
.ybf{bottom:772.253333pt;}
.y1e5{bottom:774.813333pt;}
.y13f{bottom:775.293333pt;}
.y56{bottom:776.733333pt;}
.y101{bottom:778.333333pt;}
.y83{bottom:778.493333pt;}
.y12{bottom:778.653333pt;}
.y255{bottom:778.813333pt;}
.ybe{bottom:778.973333pt;}
.y179{bottom:781.533333pt;}
.y221{bottom:782.813333pt;}
.y1b5{bottom:784.733333pt;}
.y141{bottom:791.293333pt;}
.y55{bottom:792.093333pt;}
.y254{bottom:794.213333pt;}
.yff{bottom:796.453333pt;}
.y178{bottom:796.933333pt;}
.ya{bottom:797.573333pt;}
.ybd{bottom:798.853333pt;}
.y1b4{bottom:800.133333pt;}
.y82{bottom:801.893333pt;}
.y1e4{bottom:803.013333pt;}
.y220{bottom:806.213333pt;}
.y13d{bottom:807.333333pt;}
.y54{bottom:807.493333pt;}
.y177{bottom:812.293333pt;}
.y253{bottom:813.573333pt;}
.yfd{bottom:813.893333pt;}
.ybc{bottom:814.213333pt;}
.y1b3{bottom:815.493333pt;}
.y81{bottom:817.253333pt;}
.y21f{bottom:821.573333pt;}
.y53{bottom:822.853333pt;}
.y13e{bottom:823.333333pt;}
.y176{bottom:827.653333pt;}
.y252{bottom:828.933333pt;}
.ybb{bottom:829.573333pt;}
.y1b2{bottom:830.853333pt;}
.y1e3{bottom:831.333333pt;}
.yfc{bottom:831.973333pt;}
.y80{bottom:832.453333pt;}
.y21e{bottom:836.933333pt;}
.y52{bottom:838.053333pt;}
.y13b{bottom:839.333333pt;}
.y175{bottom:842.853333pt;}
.yba{bottom:844.933333pt;}
.y1b1{bottom:846.053333pt;}
.y7f{bottom:847.813333pt;}
.y251{bottom:848.293333pt;}
.y282{bottom:848.933333pt;}
.yfa{bottom:850.053333pt;}
.y21d{bottom:852.293333pt;}
.y51{bottom:853.413333pt;}
.y13c{bottom:855.333333pt;}
.y174{bottom:858.213333pt;}
.y1e2{bottom:859.653333pt;}
.yb9{bottom:860.293333pt;}
.y1b0{bottom:861.413333pt;}
.y7e{bottom:863.173333pt;}
.y250{bottom:863.653333pt;}
.yf8{bottom:867.493333pt;}
.y21c{bottom:867.653333pt;}
.y281{bottom:868.293333pt;}
.y50{bottom:868.773333pt;}
.y139{bottom:871.333333pt;}
.y1af{bottom:876.773333pt;}
.y7d{bottom:878.533333pt;}
.y24f{bottom:878.853333pt;}
.yf6{bottom:882.373333pt;}
.yb8{bottom:883.493333pt;}
.y280{bottom:883.653333pt;}
.y4f{bottom:884.293333pt;}
.y13a{bottom:887.333333pt;}
.y1e1{bottom:887.813333pt;}
.y21b{bottom:890.853333pt;}
.y1ae{bottom:892.133333pt;}
.y7c{bottom:893.893333pt;}
.yf5{bottom:896.933333pt;}
.y24e{bottom:898.213333pt;}
.y4e{bottom:899.653333pt;}
.y27f{bottom:902.853333pt;}
.y137{bottom:903.333333pt;}
.yb7{bottom:906.853333pt;}
.y1ad{bottom:907.493333pt;}
.y7b{bottom:909.253333pt;}
.yf4{bottom:911.333333pt;}
.y24d{bottom:913.573333pt;}
.y6{bottom:913.893333pt;}
.y21a{bottom:914.213333pt;}
.y4d{bottom:914.853333pt;}
.y1e0{bottom:916.133333pt;}
.y27e{bottom:918.213333pt;}
.y138{bottom:919.333333pt;}
.y1ac{bottom:920.613333pt;}
.yb6{bottom:922.213333pt;}
.y7a{bottom:924.453333pt;}
.yf3{bottom:925.893333pt;}
.y219{bottom:929.573333pt;}
.y4c{bottom:930.213333pt;}
.y135{bottom:935.333333pt;}
.y1ab{bottom:936.293333pt;}
.y24c{bottom:936.933333pt;}
.yb5{bottom:937.573333pt;}
.yf2{bottom:940.293333pt;}
.y1da{bottom:944.293333pt;}
.y218{bottom:944.933333pt;}
.y4b{bottom:945.573333pt;}
.y79{bottom:947.813333pt;}
.y136{bottom:951.333333pt;}
.y1aa{bottom:952.133333pt;}
.yb4{bottom:952.933333pt;}
.yec{bottom:954.693333pt;}
.y1df{bottom:958.853333pt;}
.y217{bottom:960.293333pt;}
.y4a{bottom:960.933333pt;}
.y3{bottom:961.253333pt;}
.y133{bottom:967.333333pt;}
.y1a9{bottom:967.973333pt;}
.yb3{bottom:968.293333pt;}
.y77{bottom:968.933333pt;}
.y27d{bottom:972.293333pt;}
.y24b{bottom:975.653333pt;}
.y49{bottom:976.293333pt;}
.y134{bottom:983.333333pt;}
.y216{bottom:983.493333pt;}
.yb2{bottom:983.653333pt;}
.y1a8{bottom:983.813333pt;}
.y75{bottom:986.533333pt;}
.y27c{bottom:987.653333pt;}
.y48{bottom:991.653333pt;}
.yb1{bottom:998.853333pt;}
.y132{bottom:999.333333pt;}
.y1a7{bottom:999.493333pt;}
.y1dc{bottom:1000.933333pt;}
.y47{bottom:1006.853333pt;}
.yeb{bottom:1018.240000pt;}
.y46{bottom:1022.240000pt;}
.y2{bottom:1024.160000pt;}
.y1{bottom:1111.680000pt;}
.y44{bottom:1121.920000pt;}
.h22{height:13.760000pt;}
.h23{height:13.920000pt;}
.h24{height:14.240000pt;}
.h30{height:15.040000pt;}
.h31{height:15.072000pt;}
.h2d{height:15.200000pt;}
.h2f{height:15.232000pt;}
.h28{height:15.360000pt;}
.h2b{height:15.392000pt;}
.h27{height:15.520000pt;}
.h25{height:16.640000pt;}
.h16{height:16.800000pt;}
.h17{height:16.960000pt;}
.h14{height:17.440000pt;}
.h26{height:17.472000pt;}
.he{height:18.912000pt;}
.h11{height:20.640000pt;}
.h35{height:27.520000pt;}
.h38{height:27.552000pt;}
.h36{height:27.680000pt;}
.h37{height:27.712000pt;}
.hb{height:28.687500pt;}
.hc{height:30.982500pt;}
.h2c{height:31.200000pt;}
.h2e{height:31.232000pt;}
.h29{height:31.360000pt;}
.h2a{height:31.392000pt;}
.h21{height:33.867188pt;}
.h1d{height:34.183750pt;}
.h2{height:35.342500pt;}
.h1e{height:36.743750pt;}
.h6{height:37.479688pt;}
.h13{height:38.672812pt;}
.h3{height:40.736250pt;}
.h34{height:41.440000pt;}
.h8{height:41.543750pt;}
.ha{height:42.944375pt;}
.h10{height:43.031250pt;}
.h15{height:43.108125pt;}
.h3a{height:43.782500pt;}
.hd{height:44.687500pt;}
.h7{height:46.560000pt;}
.h12{height:47.621250pt;}
.hf{height:52.785000pt;}
.h33{height:55.840000pt;}
.h20{height:56.000000pt;}
.h1f{height:57.375000pt;}
.h5{height:60.057813pt;}
.h4{height:60.512000pt;}
.h18{height:65.543750pt;}
.h32{height:70.240000pt;}
.h39{height:70.400000pt;}
.h1b{height:74.501250pt;}
.h19{height:75.798125pt;}
.h1c{height:79.605625pt;}
.h1a{height:92.423750pt;}
.h9{height:115.680000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wd{width:22.880000pt;}
.w12{width:32.672000pt;}
.w2b{width:34.912000pt;}
.w1a{width:35.680000pt;}
.w19{width:36.000000pt;}
.w31{width:37.152000pt;}
.w1e{width:41.440000pt;}
.w2a{width:52.480000pt;}
.w2c{width:56.000000pt;}
.w10{width:58.240000pt;}
.w2e{width:58.880000pt;}
.w14{width:62.400000pt;}
.w13{width:62.880000pt;}
.w17{width:63.040000pt;}
.w21{width:65.440000pt;}
.w24{width:65.472000pt;}
.w11{width:65.600000pt;}
.wf{width:65.632000pt;}
.w2d{width:66.752000pt;}
.w30{width:68.000000pt;}
.w18{width:70.912000pt;}
.w4{width:73.632000pt;}
.w1b{width:74.272000pt;}
.w16{width:80.512000pt;}
.w15{width:82.240000pt;}
.w26{width:89.312000pt;}
.w25{width:94.240000pt;}
.wb{width:95.872000pt;}
.w20{width:100.352000pt;}
.w1d{width:101.632000pt;}
.wa{width:105.280000pt;}
.w1f{width:113.472000pt;}
.we{width:119.040000pt;}
.w7{width:122.112000pt;}
.w9{width:131.552000pt;}
.w2f{width:135.546667pt;}
.wc{width:155.066667pt;}
.w32{width:168.026667pt;}
.w22{width:191.546667pt;}
.w28{width:205.826667pt;}
.w8{width:250.946667pt;}
.w1c{width:257.626667pt;}
.w6{width:310.466667pt;}
.w29{width:328.546667pt;}
.w27{width:343.266667pt;}
.w23{width:433.373333pt;}
.w5{width:609.893333pt;}
.w3{width:683.520000pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.xf{left:4.000000pt;}
.x5{left:7.520000pt;}
.x2a{left:9.120000pt;}
.x52{left:10.080000pt;}
.x36{left:11.040000pt;}
.x2f{left:12.000000pt;}
.x29{left:13.600000pt;}
.x2b{left:15.040000pt;}
.x53{left:16.160000pt;}
.x30{left:17.120000pt;}
.x16{left:18.560000pt;}
.x20{left:20.000000pt;}
.x18{left:21.760000pt;}
.x1c{left:23.400000pt;}
.x14{left:25.440000pt;}
.x19{left:26.560000pt;}
.x34{left:28.520000pt;}
.x38{left:29.480000pt;}
.x1f{left:30.560000pt;}
.x42{left:32.506667pt;}
.x12{left:33.440000pt;}
.x3d{left:34.426667pt;}
.x43{left:38.440000pt;}
.x50{left:41.120000pt;}
.x5a{left:43.674667pt;}
.x1{left:47.199988pt;}
.x54{left:50.554667pt;}
.x2{left:55.200000pt;}
.xb{left:56.639988pt;}
.x27{left:60.640000pt;}
.x58{left:61.754667pt;}
.x59{left:63.994667pt;}
.x56{left:65.274667pt;}
.xc{left:66.559988pt;}
.x57{left:67.514667pt;}
.xd{left:69.919988pt;}
.x60{left:72.031988pt;}
.x11{left:75.712000pt;}
.x62{left:78.591988pt;}
.x3b{left:84.634667pt;}
.x21{left:85.631988pt;}
.x24{left:86.591988pt;}
.x3a{left:88.512000pt;}
.x28{left:93.952000pt;}
.x25{left:100.351988pt;}
.x61{left:102.111988pt;}
.x55{left:116.826667pt;}
.x6{left:128.832000pt;}
.x5e{left:136.026655pt;}
.x22{left:151.546655pt;}
.x41{left:154.586667pt;}
.x2c{left:157.466667pt;}
.x3{left:163.226667pt;}
.x13{left:195.386667pt;}
.x2d{left:223.746667pt;}
.x4{left:243.266667pt;}
.x9{left:260.386667pt;}
.x15{left:261.826667pt;}
.x4a{left:263.426667pt;}
.x5c{left:264.386655pt;}
.x39{left:281.186655pt;}
.x2e{left:286.786667pt;}
.x26{left:290.946655pt;}
.x45{left:296.066655pt;}
.x23{left:306.466655pt;}
.x49{left:317.666655pt;}
.x17{left:320.706667pt;}
.x4e{left:329.506667pt;}
.x44{left:339.746655pt;}
.x3c{left:346.786667pt;}
.x7{left:365.666667pt;}
.x31{left:369.826667pt;}
.xe{left:386.333333pt;}
.x10{left:397.213321pt;}
.x3e{left:449.053333pt;}
.x32{left:450.973333pt;}
.x1a{left:453.533333pt;}
.x4f{left:456.413333pt;}
.x8{left:487.773333pt;}
.x3f{left:491.133333pt;}
.x46{left:500.893333pt;}
.x33{left:514.653333pt;}
.x1b{left:519.933333pt;}
.x51{left:523.973333pt;}
.x47{left:567.013333pt;}
.xa{left:583.653333pt;}
.x1d{left:586.373333pt;}
.x4b{left:592.613333pt;}
.x40{left:605.253333pt;}
.x35{left:622.853333pt;}
.x4c{left:645.733333pt;}
.x1e{left:652.773333pt;}
.x37{left:659.173333pt;}
.x48{left:661.893333pt;}
.x5d{left:675.679988pt;}
.x4d{left:681.280000pt;}
.x5b{left:711.679988pt;}
.x5f{left:715.359988pt;}
}




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