
    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_df0da1062925d6e0e5bf7e6b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_32a217edbcee0cf9e28b9bd1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_b485eb054d586f1f148cb41a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_f20ab5af279d4269ea9da4d9.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_1058e871757b026df639377f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_48544db94ad3051e2f68a3ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_d50ace447b9f953a4f40a1f6.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_0ab1843da3b6072864b2932c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_97cef48006e4f910183cf4c1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.850586;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_bd2deeb3308d087087c89460.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.985610;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e5ef17a356e55daad9a1f781.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v7{vertical-align:-18.000000px;}
.v3{vertical-align:-15.120000px;}
.v5{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.880000px;}
.v2{vertical-align:15.120000px;}
.v4{vertical-align:18.000000px;}
.ls25{letter-spacing:-0.624000px;}
.ls2a{letter-spacing:-0.444600px;}
.ls22{letter-spacing:-0.423600px;}
.ls32{letter-spacing:-0.409200px;}
.ls35{letter-spacing:-0.373200px;}
.ls27{letter-spacing:-0.367800px;}
.ls40{letter-spacing:-0.310800px;}
.ls2b{letter-spacing:-0.299400px;}
.ls1d{letter-spacing:-0.285600px;}
.ls12{letter-spacing:-0.186600px;}
.ls39{letter-spacing:-0.178800px;}
.ls11{letter-spacing:-0.162000px;}
.ls3e{letter-spacing:-0.160800px;}
.ls38{letter-spacing:-0.153600px;}
.lsa{letter-spacing:-0.135000px;}
.lse{letter-spacing:-0.121200px;}
.ls9{letter-spacing:-0.090000px;}
.lsd{letter-spacing:-0.084600px;}
.lsb{letter-spacing:-0.084000px;}
.ls37{letter-spacing:-0.067200px;}
.ls17{letter-spacing:-0.063600px;}
.ls29{letter-spacing:-0.018360px;}
.ls33{letter-spacing:-0.011160px;}
.ls24{letter-spacing:-0.007560px;}
.ls31{letter-spacing:-0.003240px;}
.ls7{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.015240px;}
.ls30{letter-spacing:0.023040px;}
.ls3{letter-spacing:0.044280px;}
.ls14{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.ls3b{letter-spacing:0.056880px;}
.ls18{letter-spacing:0.060480px;}
.ls16{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.065520px;}
.ls21{letter-spacing:0.074160px;}
.ls1e{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1a{letter-spacing:0.097560px;}
.ls1b{letter-spacing:0.098280px;}
.ls28{letter-spacing:0.098400px;}
.ls23{letter-spacing:0.099600px;}
.ls6{letter-spacing:0.099720px;}
.ls20{letter-spacing:0.113400px;}
.ls2e{letter-spacing:0.114120px;}
.ls1f{letter-spacing:0.127200px;}
.ls8{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.ls2d{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.180720px;}
.ls13{letter-spacing:0.181200px;}
.lsc{letter-spacing:0.192000px;}
.lsf{letter-spacing:0.198000px;}
.ls3f{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.425520px;}
.ls2c{letter-spacing:0.434400px;}
.ls26{letter-spacing:0.457800px;}
.ls2f{letter-spacing:0.474120px;}
.ls1c{letter-spacing:0.540720px;}
.ls3c{letter-spacing:4.413600px;}
.ls3d{letter-spacing:47.726640px;}
.ls3a{letter-spacing:48.446640px;}
.ls36{letter-spacing:81.566640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.453600px;}
.ws11{word-spacing:-15.030000px;}
.ws5{word-spacing:-14.493600px;}
.wsc{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.424400px;}
.wsa{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws13{word-spacing:-13.326000px;}
.ws17{word-spacing:-13.324800px;}
.ws15{word-spacing:-13.300800px;}
.wsd{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.218840px;}
.ws1b{word-spacing:-13.215240px;}
.ws18{word-spacing:-13.208040px;}
.ws10{word-spacing:-13.162800px;}
.ws1d{word-spacing:-13.159200px;}
.ws1f{word-spacing:-13.072800px;}
.ws21{word-spacing:-13.065600px;}
.ws8{word-spacing:-13.064400px;}
.ws20{word-spacing:-13.047600px;}
.ws9{word-spacing:-13.039800px;}
.ws1e{word-spacing:-12.940800px;}
.ws22{word-spacing:-12.915600px;}
.ws16{word-spacing:-12.858600px;}
.ws1c{word-spacing:-12.853200px;}
.ws1a{word-spacing:-12.817200px;}
.ws12{word-spacing:-12.802800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.614200px;}
.wse{word-spacing:-8.553600px;}
.ws19{word-spacing:-8.254200px;}
.wsb{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._17{margin-left:-82.544760px;}
._e{margin-left:-3.660152px;}
._5{margin-left:-2.546586px;}
._2{margin-left:-1.185576px;}
._1{width:1.175410px;}
._3{width:2.926549px;}
._4{width:4.473885px;}
._12{width:5.489869px;}
._8{width:6.493200px;}
._9{width:7.737574px;}
._f{width:8.777520px;}
._d{width:10.220400px;}
._6{width:11.904000px;}
._11{width:14.418313px;}
._10{width:15.991920px;}
._c{width:17.374800px;}
._a{width:18.817800px;}
._b{width:20.058717px;}
._20{width:21.102574px;}
._1e{width:22.265763px;}
._7{width:23.446800px;}
._22{width:25.070040px;}
._21{width:26.209056px;}
._23{width:27.625367px;}
._1d{width:30.228840px;}
._13{width:38.099256px;}
._19{width:39.948840px;}
._1c{width:42.805440px;}
._1b{width:43.908840px;}
._1a{width:46.068840px;}
._1f{width:49.756176px;}
._0{width:54.773388px;}
._18{width:74.868840px;}
._14{width:87.174000px;}
._15{width:140.079600px;}
._16{width:172.484280px;}
.fcf{color:rgb(248,49,47);}
.fc0{color:rgb(0,0,0);}
.fcb{color:rgb(190,190,190);}
.fc6{color:rgb(0,116,186);}
.fc1{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fcc{color:rgb(230,230,230);}
.fc7{color:rgb(0,166,237);}
.fc3{color:rgb(0,210,106);}
.fc5{color:rgb(255,103,35);}
.fc8{color:rgb(255,176,46);}
.fce{color:rgb(249,47,96);}
.fc9{color:rgb(109,69,52);}
.fcd{color:rgb(99,99,99);}
.fc4{color:rgb(244,244,244);}
.fca{color:rgb(252,213,63);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs7{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:6.210000px;}
.y136{bottom:6.300000px;}
.y13e{bottom:7.020000px;}
.y135{bottom:7.110000px;}
.y156{bottom:7.740000px;}
.y14c{bottom:7.830000px;}
.y1c1{bottom:7.860000px;}
.y152{bottom:7.920000px;}
.y155{bottom:8.640000px;}
.y14b{bottom:8.730000px;}
.y190{bottom:25.470000px;}
.y1e8{bottom:25.830000px;}
.y1ea{bottom:25.920000px;}
.y14a{bottom:26.280000px;}
.y174{bottom:26.550000px;}
.y1b1{bottom:26.580000px;}
.y17a{bottom:26.640000px;}
.y1e7{bottom:27.810000px;}
.y1ed{bottom:27.900000px;}
.y139{bottom:28.350000px;}
.y138{bottom:29.160000px;}
.y150{bottom:29.880000px;}
.y168{bottom:29.910000px;}
.y19e{bottom:29.970000px;}
.y14f{bottom:30.780000px;}
.y167{bottom:30.810000px;}
.y19d{bottom:47.610000px;}
.y2{bottom:73.380000px;}
.y2a{bottom:74.190000px;}
.y1e4{bottom:74.460000px;}
.y1{bottom:101.640000px;}
.y1bc{bottom:111.720000px;}
.y143{bottom:113.520000px;}
.y192{bottom:117.660000px;}
.y24d{bottom:118.470000px;}
.ya7{bottom:123.330000px;}
.y1bb{bottom:126.660000px;}
.y164{bottom:128.370000px;}
.y28{bottom:133.680000px;}
.ycb{bottom:135.570000px;}
.y24c{bottom:136.020000px;}
.y142{bottom:139.350000px;}
.ya6{bottom:140.880000px;}
.y191{bottom:144.930000px;}
.y163{bottom:146.010000px;}
.y27{bottom:151.320000px;}
.y24b{bottom:153.660000px;}
.y1df{bottom:153.930000px;}
.y1ba{bottom:154.020000px;}
.y21b{bottom:156.990000px;}
.ya5{bottom:163.110000px;}
.y7d{bottom:163.200000px;}
.y162{bottom:163.560000px;}
.y141{bottom:165.180000px;}
.y26{bottom:168.870000px;}
.yca{bottom:171.120000px;}
.y18f{bottom:172.290000px;}
.y21a{bottom:174.630000px;}
.y55{bottom:175.620000px;}
.ya4{bottom:177.780000px;}
.y24a{bottom:178.590000px;}
.y7c{bottom:180.750000px;}
.y1b9{bottom:181.380000px;}
.y25{bottom:186.420000px;}
.y161{bottom:190.110000px;}
.y140{bottom:191.010000px;}
.y1a6{bottom:191.460000px;}
.y54{bottom:193.260000px;}
.y1de{bottom:196.230000px;}
.y249{bottom:196.320000px;}
.y219{bottom:199.560000px;}
.y24{bottom:204.060000px;}
.y1a5{bottom:206.400000px;}
.yc9{bottom:206.760000px;}
.y1b8{bottom:208.650000px;}
.ya3{bottom:213.330000px;}
.y248{bottom:213.870000px;}
.yf1{bottom:215.580000px;}
.y7b{bottom:216.390000px;}
.y13d{bottom:216.930000px;}
.y218{bottom:217.290000px;}
.y53{bottom:219.810000px;}
.y16e{bottom:220.080000px;}
.y23{bottom:221.610000px;}
.y1dd{bottom:223.590000px;}
.yc8{bottom:224.310000px;}
.y120{bottom:225.660000px;}
.ya2{bottom:230.970000px;}
.yf0{bottom:233.130000px;}
.y1a4{bottom:233.760000px;}
.y7a{bottom:233.940000px;}
.y217{bottom:234.840000px;}
.y1b7{bottom:236.010000px;}
.y18e{bottom:238.620000px;}
.y247{bottom:238.890000px;}
.yc7{bottom:242.670000px;}
.y11f{bottom:243.210000px;}
.y13c{bottom:243.480000px;}
.y16d{bottom:247.440000px;}
.ya1{bottom:248.520000px;}
.yef{bottom:250.770000px;}
.y1dc{bottom:250.860000px;}
.y79{bottom:252.390000px;}
.y52{bottom:255.360000px;}
.y246{bottom:256.530000px;}
.y22{bottom:257.160000px;}
.y216{bottom:259.860000px;}
.y11e{bottom:260.760000px;}
.y1a3{bottom:261.120000px;}
.y1b6{bottom:263.370000px;}
.ya0{bottom:266.970000px;}
.yee{bottom:268.320000px;}
.y13b{bottom:269.310000px;}
.y51{bottom:273.000000px;}
.y18d{bottom:274.170000px;}
.y21{bottom:274.800000px;}
.y215{bottom:277.500000px;}
.y1db{bottom:278.220000px;}
.y11d{bottom:278.400000px;}
.yc6{bottom:279.120000px;}
.y245{bottom:281.550000px;}
.y9f{bottom:284.520000px;}
.y78{bottom:287.940000px;}
.y1a2{bottom:288.390000px;}
.y50{bottom:290.550000px;}
.y1b5{bottom:290.640000px;}
.y18c{bottom:291.720000px;}
.y20{bottom:292.350000px;}
.y13a{bottom:295.140000px;}
.y11c{bottom:295.950000px;}
.y10a{bottom:297.030000px;}
.y244{bottom:299.280000px;}
.y16c{bottom:302.160000px;}
.y214{bottom:302.520000px;}
.yed{bottom:303.870000px;}
.y1da{bottom:305.580000px;}
.y4f{bottom:308.190000px;}
.y18b{bottom:309.360000px;}
.y1f{bottom:309.990000px;}
.y109{bottom:314.580000px;}
.yc5{bottom:314.760000px;}
.y1a1{bottom:315.750000px;}
.y1b4{bottom:318.000000px;}
.y9e{bottom:320.160000px;}
.y213{bottom:320.250000px;}
.yec{bottom:321.510000px;}
.y137{bottom:321.870000px;}
.y77{bottom:323.580000px;}
.y243{bottom:324.210000px;}
.y4e{bottom:325.740000px;}
.y18a{bottom:326.910000px;}
.y1e{bottom:327.540000px;}
.y16b{bottom:329.430000px;}
.y11b{bottom:331.500000px;}
.y108{bottom:332.220000px;}
.y1d9{bottom:332.940000px;}
.yeb{bottom:339.060000px;}
.y76{bottom:341.130000px;}
.y242{bottom:341.940000px;}
.y1a0{bottom:343.110000px;}
.y189{bottom:344.550000px;}
.y1d{bottom:345.090000px;}
.y212{bottom:345.180000px;}
.y11a{bottom:349.140000px;}
.y107{bottom:349.770000px;}
.yc4{bottom:350.310000px;}
.y4d{bottom:352.290000px;}
.y9d{bottom:355.710000px;}
.y16a{bottom:357.600000px;}
.y75{bottom:359.580000px;}
.y1d8{bottom:360.210000px;}
.y188{bottom:362.100000px;}
.y211{bottom:362.910000px;}
.y119{bottom:366.690000px;}
.y241{bottom:366.870000px;}
.y106{bottom:367.410000px;}
.yc3{bottom:367.860000px;}
.y19f{bottom:370.470000px;}
.y134{bottom:370.560000px;}
.y1c{bottom:372.000000px;}
.y9c{bottom:373.260000px;}
.yea{bottom:374.700000px;}
.y118{bottom:384.330000px;}
.y240{bottom:384.600000px;}
.y105{bottom:384.960000px;}
.yc2{bottom:386.310000px;}
.y210{bottom:387.840000px;}
.y4c{bottom:387.930000px;}
.y187{bottom:388.650000px;}
.ye9{bottom:392.250000px;}
.y74{bottom:395.130000px;}
.y9b{bottom:395.490000px;}
.y19c{bottom:397.740000px;}
.y1f0{bottom:401.010000px;}
.y23f{bottom:402.150000px;}
.y1b3{bottom:402.330000px;}
.y104{bottom:402.510000px;}
.yc1{bottom:404.760000px;}
.y4b{bottom:405.480000px;}
.y20f{bottom:405.570000px;}
.y1d7{bottom:408.900000px;}
.y9a{bottom:409.260000px;}
.ye8{bottom:409.800000px;}
.y169{bottom:412.230000px;}
.y73{bottom:412.680000px;}
.y1b2{bottom:417.270000px;}
.y133{bottom:418.620000px;}
.y117{bottom:419.880000px;}
.y103{bottom:420.150000px;}
.y1b{bottom:420.600000px;}
.y186{bottom:421.230000px;}
.y20e{bottom:423.120000px;}
.y23e{bottom:427.170000px;}
.ye7{bottom:427.440000px;}
.y72{bottom:430.320000px;}
.y4a{bottom:432.120000px;}
.y116{bottom:437.430000px;}
.y102{bottom:437.700000px;}
.yc0{bottom:440.310000px;}
.y166{bottom:440.400000px;}
.y1d6{bottom:444.540000px;}
.y1b0{bottom:444.630000px;}
.y23d{bottom:444.810000px;}
.y99{bottom:444.900000px;}
.y71{bottom:447.870000px;}
.y20d{bottom:448.140000px;}
.y1ef{bottom:448.350000px;}
.ye6{bottom:453.990000px;}
.y132{bottom:454.170000px;}
.y185{bottom:454.260000px;}
.y101{bottom:455.250000px;}
.y1a{bottom:457.680000px;}
.y1d5{bottom:459.480000px;}
.y70{bottom:465.510000px;}
.y20c{bottom:465.780000px;}
.y49{bottom:467.670000px;}
.y23c{bottom:469.860000px;}
.y131{bottom:471.840000px;}
.y1af{bottom:471.930000px;}
.y100{bottom:472.920000px;}
.y115{bottom:473.100000px;}
.y19{bottom:475.260000px;}
.ybf{bottom:475.980000px;}
.y98{bottom:480.390000px;}
.y184{bottom:481.560000px;}
.y6f{bottom:483.090000px;}
.y20b{bottom:483.450000px;}
.y48{bottom:485.250000px;}
.y19b{bottom:486.150000px;}
.y1d4{bottom:486.870000px;}
.y23b{bottom:487.500000px;}
.y130{bottom:489.390000px;}
.ye5{bottom:489.930000px;}
.yff{bottom:490.470000px;}
.y165{bottom:490.650000px;}
.y18{bottom:492.900000px;}
.ybe{bottom:493.530000px;}
.y1ee{bottom:495.600000px;}
.y97{bottom:498.930000px;}
.y1ae{bottom:499.290000px;}
.y47{bottom:502.890000px;}
.y23a{bottom:505.140000px;}
.y114{bottom:505.320000px;}
.y12f{bottom:507.030000px;}
.yfe{bottom:508.110000px;}
.y183{bottom:508.920000px;}
.y20a{bottom:510.360000px;}
.y17{bottom:510.450000px;}
.ybd{bottom:511.890000px;}
.y1d3{bottom:514.230000px;}
.y96{bottom:516.480000px;}
.y6e{bottom:518.640000px;}
.y19a{bottom:521.790000px;}
.y12e{bottom:524.580000px;}
.y1ad{bottom:526.650000px;}
.y16{bottom:528.000000px;}
.y46{bottom:529.440000px;}
.y239{bottom:530.160000px;}
.ybc{bottom:530.340000px;}
.y182{bottom:536.280000px;}
.ye4{bottom:538.260000px;}
.y160{bottom:540.330000px;}
.y1d2{bottom:541.500000px;}
.y1ec{bottom:542.850000px;}
.yfd{bottom:543.660000px;}
.y15{bottom:545.640000px;}
.y238{bottom:547.800000px;}
.y12d{bottom:552.030000px;}
.y95{bottom:552.120000px;}
.y199{bottom:554.010000px;}
.y6d{bottom:554.280000px;}
.ye3{bottom:555.810000px;}
.y209{bottom:558.600000px;}
.yfc{bottom:561.210000px;}
.y14{bottom:563.190000px;}
.y181{bottom:563.640000px;}
.y45{bottom:565.080000px;}
.y237{bottom:565.350000px;}
.ybb{bottom:565.980000px;}
.y1d1{bottom:568.860000px;}
.ye2{bottom:573.360000px;}
.y15f{bottom:575.880000px;}
.yfb{bottom:578.850000px;}
.y13{bottom:580.740000px;}
.y1ac{bottom:581.280000px;}
.y44{bottom:582.630000px;}
.y208{bottom:585.510000px;}
.y94{bottom:587.580000px;}
.y6c{bottom:589.830000px;}
.y1eb{bottom:590.190000px;}
.y236{bottom:590.370000px;}
.y180{bottom:590.910000px;}
.ye1{bottom:591.000000px;}
.y15e{bottom:593.430000px;}
.y1d0{bottom:596.220000px;}
.yfa{bottom:596.400000px;}
.y12{bottom:598.380000px;}
.y43{bottom:600.180000px;}
.yba{bottom:601.530000px;}
.y93{bottom:606.120000px;}
.y6b{bottom:607.380000px;}
.y235{bottom:608.010000px;}
.ye0{bottom:608.550000px;}
.y1ab{bottom:608.640000px;}
.y15d{bottom:610.980000px;}
.yf9{bottom:614.040000px;}
.y17f{bottom:618.270000px;}
.yb9{bottom:619.080000px;}
.y12c{bottom:620.160000px;}
.y207{bottom:622.500000px;}
.y1cf{bottom:623.490000px;}
.y92{bottom:623.670000px;}
.y11{bottom:625.290000px;}
.y234{bottom:625.650000px;}
.y6a{bottom:625.830000px;}
.ydf{bottom:626.100000px;}
.y42{bottom:626.730000px;}
.y15c{bottom:629.430000px;}
.y1e9{bottom:637.440000px;}
.yb8{bottom:637.530000px;}
.y206{bottom:640.140000px;}
.y17e{bottom:645.630000px;}
.y113{bottom:645.900000px;}
.yf8{bottom:649.590000px;}
.y233{bottom:650.670000px;}
.y1ce{bottom:650.850000px;}
.yde{bottom:653.550000px;}
.y12b{bottom:655.710000px;}
.y15b{bottom:656.880000px;}
.y1aa{bottom:657.330000px;}
.y205{bottom:657.690000px;}
.y91{bottom:659.220000px;}
.y41{bottom:659.400000px;}
.y69{bottom:662.280000px;}
.y112{bottom:663.540000px;}
.yf7{bottom:667.140000px;}
.y232{bottom:668.310000px;}
.y17d{bottom:672.990000px;}
.y12a{bottom:673.350000px;}
.y10{bottom:673.530000px;}
.yb7{bottom:673.980000px;}
.y111{bottom:681.090000px;}
.y1a9{bottom:683.970000px;}
.y204{bottom:684.600000px;}
.yf6{bottom:684.780000px;}
.y231{bottom:685.860000px;}
.y15a{bottom:686.850000px;}
.ydd{bottom:689.190000px;}
.y129{bottom:690.900000px;}
.y90{bottom:694.770000px;}
.y40{bottom:694.950000px;}
.y68{bottom:697.830000px;}
.y1cd{bottom:699.540000px;}
.yf5{bottom:702.330000px;}
.y128{bottom:708.540000px;}
.yf{bottom:709.350000px;}
.yb6{bottom:709.530000px;}
.y230{bottom:710.880000px;}
.y3f{bottom:712.590000px;}
.y8f{bottom:713.220000px;}
.y159{bottom:714.210000px;}
.y67{bottom:715.380000px;}
.y110{bottom:716.640000px;}
.y1a8{bottom:719.520000px;}
.yf4{bottom:719.970000px;}
.y203{bottom:721.950000px;}
.ydc{bottom:724.740000px;}
.y22f{bottom:728.520000px;}
.y3e{bottom:730.140000px;}
.y8e{bottom:730.860000px;}
.y1e6{bottom:732.060000px;}
.y66{bottom:733.830000px;}
.y10f{bottom:734.280000px;}
.y1cc{bottom:735.180000px;}
.y158{bottom:741.480000px;}
.y17c{bottom:743.730000px;}
.y127{bottom:744.090000px;}
.yb5{bottom:745.080000px;}
.ye{bottom:745.350000px;}
.y3d{bottom:747.690000px;}
.y1a7{bottom:751.740000px;}
.y10e{bottom:751.830000px;}
.y1cb{bottom:752.730000px;}
.y22e{bottom:753.540000px;}
.yf3{bottom:755.520000px;}
.y17b{bottom:758.670000px;}
.ydb{bottom:760.290000px;}
.y126{bottom:761.640000px;}
.yb4{bottom:762.630000px;}
.y3c{bottom:765.330000px;}
.y8d{bottom:766.410000px;}
.y157{bottom:768.840000px;}
.y10d{bottom:769.470000px;}
.y202{bottom:770.190000px;}
.y65{bottom:770.280000px;}
.y22d{bottom:771.270000px;}
.yda{bottom:777.930000px;}
.y125{bottom:779.280000px;}
.yb3{bottom:781.080000px;}
.yd{bottom:781.350000px;}
.y3b{bottom:782.880000px;}
.y179{bottom:786.030000px;}
.yf2{bottom:787.740000px;}
.y201{bottom:787.830000px;}
.y1ca{bottom:787.920000px;}
.y22c{bottom:788.820000px;}
.yd9{bottom:795.480000px;}
.y154{bottom:796.200000px;}
.y124{bottom:796.830000px;}
.y1e5{bottom:798.390000px;}
.y3a{bottom:800.520000px;}
.y8c{bottom:802.050000px;}
.yc{bottom:803.130000px;}
.y10c{bottom:805.020000px;}
.y200{bottom:805.380000px;}
.y1c9{bottom:805.470000px;}
.y64{bottom:805.830000px;}
.yd8{bottom:813.030000px;}
.y178{bottom:813.390000px;}
.y22b{bottom:813.840000px;}
.y123{bottom:814.470000px;}
.yb{bottom:817.350000px;}
.yb2{bottom:817.530000px;}
.y39{bottom:818.070000px;}
.y8b{bottom:819.600000px;}
.y1ff{bottom:823.020000px;}
.y1c8{bottom:823.110000px;}
.y63{bottom:823.380000px;}
.y153{bottom:824.280000px;}
.y1e3{bottom:824.940000px;}
.yd7{bottom:830.670000px;}
.y22a{bottom:831.480000px;}
.y38{bottom:835.620000px;}
.y10b{bottom:837.240000px;}
.y8a{bottom:837.960000px;}
.ya{bottom:839.130000px;}
.y1fe{bottom:840.570000px;}
.y177{bottom:840.750000px;}
.y62{bottom:841.830000px;}
.y229{bottom:849.030000px;}
.y1c7{bottom:849.660000px;}
.y122{bottom:850.020000px;}
.y151{bottom:851.640000px;}
.yb1{bottom:853.080000px;}
.y9{bottom:853.350000px;}
.yd6{bottom:857.220000px;}
.y1fd{bottom:858.120000px;}
.y37{bottom:862.260000px;}
.y176{bottom:868.020000px;}
.y89{bottom:873.600000px;}
.y228{bottom:874.050000px;}
.y8{bottom:875.130000px;}
.y1fc{bottom:875.760000px;}
.y61{bottom:878.280000px;}
.y14e{bottom:879.000000px;}
.y121{bottom:882.240000px;}
.y1c6{bottom:885.210000px;}
.yb0{bottom:888.720000px;}
.y88{bottom:891.150000px;}
.y227{bottom:891.780000px;}
.yd5{bottom:892.860000px;}
.y1fb{bottom:893.310000px;}
.y175{bottom:895.380000px;}
.y60{bottom:895.830000px;}
.y36{bottom:898.170000px;}
.y1c5{bottom:900.240000px;}
.yaf{bottom:906.270000px;}
.y7{bottom:907.440000px;}
.y87{bottom:908.790000px;}
.yd4{bottom:910.410000px;}
.y1fa{bottom:910.950000px;}
.y5f{bottom:913.380000px;}
.y226{bottom:916.710000px;}
.y173{bottom:922.740000px;}
.yae{bottom:924.630000px;}
.y86{bottom:926.340000px;}
.y6{bottom:926.790000px;}
.y1c4{bottom:927.600000px;}
.y1f9{bottom:928.500000px;}
.y14d{bottom:929.220000px;}
.y5e{bottom:931.020000px;}
.y225{bottom:934.440000px;}
.y85{bottom:943.890000px;}
.yd3{bottom:945.960000px;}
.y1f8{bottom:946.050000px;}
.y35{bottom:946.410000px;}
.y5d{bottom:948.570000px;}
.y172{bottom:950.100000px;}
.y1c3{bottom:954.870000px;}
.y149{bottom:957.390000px;}
.y224{bottom:959.370000px;}
.yad{bottom:961.080000px;}
.y84{bottom:961.530000px;}
.yd2{bottom:963.600000px;}
.y34{bottom:963.960000px;}
.y5{bottom:965.130000px;}
.y5c{bottom:966.210000px;}
.y223{bottom:977.100000px;}
.yd1{bottom:981.150000px;}
.y33{bottom:981.600000px;}
.y1f7{bottom:981.690000px;}
.y1c2{bottom:982.230000px;}
.y4{bottom:989.790000px;}
.y5b{bottom:992.760000px;}
.yac{bottom:996.720000px;}
.y83{bottom:997.080000px;}
.yd0{bottom:998.790000px;}
.y32{bottom:999.150000px;}
.y1f6{bottom:999.240000px;}
.y222{bottom:1002.120000px;}
.y198{bottom:1002.840000px;}
.y1c0{bottom:1009.590000px;}
.y3{bottom:1014.390000px;}
.y82{bottom:1014.750000px;}
.ycf{bottom:1016.370000px;}
.y31{bottom:1016.820000px;}
.y1e2{bottom:1017.180000px;}
.y197{bottom:1017.810000px;}
.y221{bottom:1019.790000px;}
.y148{bottom:1024.560000px;}
.y5a{bottom:1025.370000px;}
.yab{bottom:1032.300000px;}
.yce{bottom:1033.920000px;}
.y30{bottom:1034.370000px;}
.y1f5{bottom:1034.460000px;}
.y1e1{bottom:1034.820000px;}
.y1bf{bottom:1036.890000px;}
.y220{bottom:1037.340000px;}
.y196{bottom:1045.170000px;}
.yaa{bottom:1049.850000px;}
.y81{bottom:1050.300000px;}
.ycd{bottom:1051.560000px;}
.y171{bottom:1051.920000px;}
.y1f4{bottom:1052.010000px;}
.y1e0{bottom:1052.370000px;}
.y147{bottom:1060.110000px;}
.y59{bottom:1060.920000px;}
.y21f{bottom:1062.360000px;}
.y1be{bottom:1064.250000px;}
.ya9{bottom:1068.300000px;}
.y170{bottom:1069.560000px;}
.y1f3{bottom:1069.650000px;}
.y2f{bottom:1069.920000px;}
.y195{bottom:1072.530000px;}
.y146{bottom:1077.750000px;}
.ycc{bottom:1078.110000px;}
.y58{bottom:1078.560000px;}
.y21e{bottom:1080.000000px;}
.y80{bottom:1085.850000px;}
.y16f{bottom:1087.110000px;}
.y1f2{bottom:1087.200000px;}
.y2e{bottom:1087.560000px;}
.y1bd{bottom:1091.610000px;}
.y145{bottom:1095.300000px;}
.y57{bottom:1096.110000px;}
.y21d{bottom:1097.640000px;}
.y194{bottom:1099.890000px;}
.y7f{bottom:1104.300000px;}
.ya8{bottom:1104.750000px;}
.y2d{bottom:1105.110000px;}
.y144{bottom:1112.850000px;}
.y56{bottom:1113.750000px;}
.y1f1{bottom:1114.110000px;}
.y7e{bottom:1121.850000px;}
.y21c{bottom:1122.660000px;}
.y2c{bottom:1122.750000px;}
.y193{bottom:1127.160000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.h11{height:25.110000px;}
.h12{height:25.830000px;}
.hd{height:25.920000px;}
.h18{height:26.550000px;}
.h1b{height:26.580000px;}
.h16{height:26.640000px;}
.h17{height:27.360000px;}
.h14{height:27.450000px;}
.h2{height:30.022383px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h1c{height:44.190000px;}
.h13{height:45.000000px;}
.h21{height:46.530000px;}
.h20{height:46.560000px;}
.h22{height:46.620000px;}
.hf{height:47.970000px;}
.h1a{height:48.600000px;}
.h10{height:48.950156px;}
.h15{height:49.500000px;}
.h19{height:49.530000px;}
.he{height:50.902383px;}
.h7{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h8{height:59.661211px;}
.hc{height:59.973223px;}
.h23{height:61.793886px;}
.hb{height:62.585859px;}
.h1d{height:66.330000px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h1e{height:893.160000px;}
.h1f{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w29{width:23.220000px;}
.w32{width:23.670000px;}
.w28{width:23.850000px;}
.w3b{width:23.940000px;}
.w27{width:24.030000px;}
.w31{width:24.300000px;}
.w30{width:24.480000px;}
.w36{width:24.660000px;}
.w3a{width:24.750000px;}
.w35{width:24.840000px;}
.w1f{width:32.220000px;}
.w1e{width:32.490000px;}
.w45{width:58.230000px;}
.w43{width:64.530000px;}
.w1d{width:65.430000px;}
.w38{width:65.520000px;}
.w46{width:66.240000px;}
.w8{width:70.110000px;}
.w21{width:71.460000px;}
.w26{width:72.720000px;}
.w18{width:73.080000px;}
.w2f{width:74.070000px;}
.w2a{width:74.610000px;}
.w34{width:74.880000px;}
.w3e{width:74.970000px;}
.w1b{width:76.500000px;}
.w42{width:76.590000px;}
.w10{width:78.390000px;}
.w44{width:85.350000px;}
.w48{width:86.580000px;}
.w5{width:92.640000px;}
.w7{width:95.670000px;}
.w6{width:95.760000px;}
.w15{width:96.510000px;}
.w17{width:99.720000px;}
.w16{width:99.810000px;}
.wd{width:103.620000px;}
.w49{width:106.020000px;}
.wf{width:106.920000px;}
.we{width:107.010000px;}
.w12{width:108.630000px;}
.w47{width:109.350000px;}
.w4b{width:110.880000px;}
.w23{width:111.420000px;}
.w4a{width:113.610000px;}
.w2c{width:116.730000px;}
.w1a{width:123.480000px;}
.wa{width:125.370000px;}
.w2b{width:147.450000px;}
.w4c{width:160.380000px;}
.w25{width:161.010000px;}
.w24{width:161.760000px;}
.w2e{width:169.110000px;}
.w2d{width:169.950000px;}
.w22{width:173.550000px;}
.w20{width:193.260000px;}
.w11{width:247.260000px;}
.w19{width:259.410000px;}
.w3d{width:260.490000px;}
.w9{width:262.110000px;}
.w1c{width:280.200000px;}
.w3c{width:298.200000px;}
.w33{width:300.810000px;}
.w37{width:302.880000px;}
.w39{width:330.420000px;}
.w3{width:356.430000px;}
.wc{width:356.700000px;}
.w13{width:371.370000px;}
.w14{width:383.610000px;}
.w4{width:388.200000px;}
.wb{width:398.190000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w40{width:1262.250000px;}
.w41{width:1262.519981px;}
.w3f{width:1262.520000px;}
.x0{left:0.000000px;}
.xc{left:7.650000px;}
.x1{left:68.040000px;}
.xb{left:73.980000px;}
.x48{left:107.999981px;}
.x53{left:111.419987px;}
.x5{left:125.639987px;}
.x23{left:141.030000px;}
.x2b{left:144.180000px;}
.x8{left:164.549987px;}
.x18{left:165.990000px;}
.xe{left:167.340000px;}
.x13{left:173.100000px;}
.x49{left:186.120000px;}
.x39{left:204.960000px;}
.x31{left:219.810000px;}
.x36{left:223.410000px;}
.x3e{left:225.840000px;}
.x2{left:231.149987px;}
.xa{left:235.289987px;}
.x42{left:239.880000px;}
.x4a{left:251.370000px;}
.xf{left:263.820000px;}
.x19{left:266.520000px;}
.x30{left:276.689987px;}
.x1f{left:278.310000px;}
.x14{left:280.830000px;}
.x3a{left:282.180000px;}
.x7{left:291.899987px;}
.x32{left:297.030000px;}
.x37{left:300.720000px;}
.x3f{left:303.060000px;}
.x1c{left:312.060000px;}
.x24{left:315.300000px;}
.x43{left:317.190000px;}
.x4b{left:337.440000px;}
.x20{left:355.530000px;}
.x10{left:360.300000px;}
.x1a{left:367.050000px;}
.x15{left:388.560000px;}
.x4c{left:396.390000px;}
.x2c{left:409.800000px;}
.x46{left:415.829981px;}
.x25{left:427.440000px;}
.xd{left:431.130000px;}
.x17{left:440.850000px;}
.x4d{left:463.350000px;}
.x12{left:467.760000px;}
.x21{left:549.510000px;}
.x4e{left:573.420000px;}
.x44{left:578.400000px;}
.x2d{left:580.470000px;}
.x22{left:582.720000px;}
.x26{left:589.920000px;}
.x1d{left:592.980000px;}
.x33{left:598.560000px;}
.x40{left:601.980000px;}
.x38{left:604.320000px;}
.x3b{left:613.410000px;}
.x34{left:624.120000px;}
.x1e{left:626.190000px;}
.x45{left:629.430000px;}
.x41{left:635.190000px;}
.x3c{left:638.970000px;}
.x35{left:649.590000px;}
.x4f{left:660.810000px;}
.x3d{left:664.350000px;}
.x11{left:693.960000px;}
.x1b{left:700.980000px;}
.x16{left:715.830000px;}
.x2f{left:729.059987px;}
.x2a{left:748.139987px;}
.x2e{left:750.390000px;}
.x27{left:751.740000px;}
.x50{left:767.550000px;}
.x9{left:770.639987px;}
.x28{left:776.580000px;}
.x6{left:787.559987px;}
.x4{left:789.809987px;}
.x29{left:801.240000px;}
.x3{left:808.619987px;}
.x51{left:881.880000px;}
.x52{left:993.480000px;}
.x47{left:1137.929981px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v7{vertical-align:-16.000000pt;}
.v3{vertical-align:-13.440000pt;}
.v5{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.560000pt;}
.v2{vertical-align:13.440000pt;}
.v4{vertical-align:16.000000pt;}
.ls25{letter-spacing:-0.554667pt;}
.ls2a{letter-spacing:-0.395200pt;}
.ls22{letter-spacing:-0.376533pt;}
.ls32{letter-spacing:-0.363733pt;}
.ls35{letter-spacing:-0.331733pt;}
.ls27{letter-spacing:-0.326933pt;}
.ls40{letter-spacing:-0.276267pt;}
.ls2b{letter-spacing:-0.266133pt;}
.ls1d{letter-spacing:-0.253867pt;}
.ls12{letter-spacing:-0.165867pt;}
.ls39{letter-spacing:-0.158933pt;}
.ls11{letter-spacing:-0.144000pt;}
.ls3e{letter-spacing:-0.142933pt;}
.ls38{letter-spacing:-0.136533pt;}
.lsa{letter-spacing:-0.120000pt;}
.lse{letter-spacing:-0.107733pt;}
.ls9{letter-spacing:-0.080000pt;}
.lsd{letter-spacing:-0.075200pt;}
.lsb{letter-spacing:-0.074667pt;}
.ls37{letter-spacing:-0.059733pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls29{letter-spacing:-0.016320pt;}
.ls33{letter-spacing:-0.009920pt;}
.ls24{letter-spacing:-0.006720pt;}
.ls31{letter-spacing:-0.002880pt;}
.ls7{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.013547pt;}
.ls30{letter-spacing:0.020480pt;}
.ls3{letter-spacing:0.039360pt;}
.ls14{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.ls3b{letter-spacing:0.050560pt;}
.ls18{letter-spacing:0.053760pt;}
.ls16{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.058240pt;}
.ls21{letter-spacing:0.065920pt;}
.ls1e{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1a{letter-spacing:0.086720pt;}
.ls1b{letter-spacing:0.087360pt;}
.ls28{letter-spacing:0.087467pt;}
.ls23{letter-spacing:0.088533pt;}
.ls6{letter-spacing:0.088640pt;}
.ls20{letter-spacing:0.100800pt;}
.ls2e{letter-spacing:0.101440pt;}
.ls1f{letter-spacing:0.113067pt;}
.ls8{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.ls2d{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.160640pt;}
.ls13{letter-spacing:0.161067pt;}
.lsc{letter-spacing:0.170667pt;}
.lsf{letter-spacing:0.176000pt;}
.ls3f{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.378240pt;}
.ls2c{letter-spacing:0.386133pt;}
.ls26{letter-spacing:0.406933pt;}
.ls2f{letter-spacing:0.421440pt;}
.ls1c{letter-spacing:0.480640pt;}
.ls3c{letter-spacing:3.923200pt;}
.ls3d{letter-spacing:42.423680pt;}
.ls3a{letter-spacing:43.063680pt;}
.ls36{letter-spacing:72.503680pt;}
.ws2{word-spacing:-16.403200pt;}
.ws11{word-spacing:-13.360000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsc{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.932800pt;}
.wsa{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws13{word-spacing:-11.845333pt;}
.ws17{word-spacing:-11.844267pt;}
.ws15{word-spacing:-11.822933pt;}
.wsd{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.750080pt;}
.ws1b{word-spacing:-11.746880pt;}
.ws18{word-spacing:-11.740480pt;}
.ws10{word-spacing:-11.700267pt;}
.ws1d{word-spacing:-11.697067pt;}
.ws1f{word-spacing:-11.620267pt;}
.ws21{word-spacing:-11.613867pt;}
.ws8{word-spacing:-11.612800pt;}
.ws20{word-spacing:-11.597867pt;}
.ws9{word-spacing:-11.590933pt;}
.ws1e{word-spacing:-11.502933pt;}
.ws22{word-spacing:-11.480533pt;}
.ws16{word-spacing:-11.429867pt;}
.ws1c{word-spacing:-11.425067pt;}
.ws1a{word-spacing:-11.393067pt;}
.ws12{word-spacing:-11.380267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.657067pt;}
.wse{word-spacing:-7.603200pt;}
.ws19{word-spacing:-7.337067pt;}
.wsb{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._17{margin-left:-73.373120pt;}
._e{margin-left:-3.253468pt;}
._5{margin-left:-2.263632pt;}
._2{margin-left:-1.053846pt;}
._1{width:1.044809pt;}
._3{width:2.601377pt;}
._4{width:3.976786pt;}
._12{width:4.879884pt;}
._8{width:5.771734pt;}
._9{width:6.877844pt;}
._f{width:7.802240pt;}
._d{width:9.084800pt;}
._6{width:10.581334pt;}
._11{width:12.816278pt;}
._10{width:14.215040pt;}
._c{width:15.444267pt;}
._a{width:16.726934pt;}
._b{width:17.829971pt;}
._20{width:18.757843pt;}
._1e{width:19.791789pt;}
._7{width:20.841600pt;}
._22{width:22.284480pt;}
._21{width:23.296939pt;}
._23{width:24.555882pt;}
._1d{width:26.870080pt;}
._13{width:33.866006pt;}
._19{width:35.510080pt;}
._1c{width:38.049280pt;}
._1b{width:39.030080pt;}
._1a{width:40.950080pt;}
._1f{width:44.227712pt;}
._0{width:48.687456pt;}
._18{width:66.550080pt;}
._14{width:77.488000pt;}
._15{width:124.515200pt;}
._16{width:153.319360pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs7{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:5.520000pt;}
.y136{bottom:5.600000pt;}
.y13e{bottom:6.240000pt;}
.y135{bottom:6.320000pt;}
.y156{bottom:6.880000pt;}
.y14c{bottom:6.960000pt;}
.y1c1{bottom:6.986667pt;}
.y152{bottom:7.040000pt;}
.y155{bottom:7.680000pt;}
.y14b{bottom:7.760000pt;}
.y190{bottom:22.640000pt;}
.y1e8{bottom:22.960000pt;}
.y1ea{bottom:23.040000pt;}
.y14a{bottom:23.360000pt;}
.y174{bottom:23.600000pt;}
.y1b1{bottom:23.626667pt;}
.y17a{bottom:23.680000pt;}
.y1e7{bottom:24.720000pt;}
.y1ed{bottom:24.800000pt;}
.y139{bottom:25.200000pt;}
.y138{bottom:25.920000pt;}
.y150{bottom:26.560000pt;}
.y168{bottom:26.586667pt;}
.y19e{bottom:26.640000pt;}
.y14f{bottom:27.360000pt;}
.y167{bottom:27.386667pt;}
.y19d{bottom:42.320000pt;}
.y2{bottom:65.226667pt;}
.y2a{bottom:65.946667pt;}
.y1e4{bottom:66.186667pt;}
.y1{bottom:90.346667pt;}
.y1bc{bottom:99.306667pt;}
.y143{bottom:100.906667pt;}
.y192{bottom:104.586667pt;}
.y24d{bottom:105.306667pt;}
.ya7{bottom:109.626667pt;}
.y1bb{bottom:112.586667pt;}
.y164{bottom:114.106667pt;}
.y28{bottom:118.826667pt;}
.ycb{bottom:120.506667pt;}
.y24c{bottom:120.906667pt;}
.y142{bottom:123.866667pt;}
.ya6{bottom:125.226667pt;}
.y191{bottom:128.826667pt;}
.y163{bottom:129.786667pt;}
.y27{bottom:134.506667pt;}
.y24b{bottom:136.586667pt;}
.y1df{bottom:136.826667pt;}
.y1ba{bottom:136.906667pt;}
.y21b{bottom:139.546667pt;}
.ya5{bottom:144.986667pt;}
.y7d{bottom:145.066667pt;}
.y162{bottom:145.386667pt;}
.y141{bottom:146.826667pt;}
.y26{bottom:150.106667pt;}
.yca{bottom:152.106667pt;}
.y18f{bottom:153.146667pt;}
.y21a{bottom:155.226667pt;}
.y55{bottom:156.106667pt;}
.ya4{bottom:158.026667pt;}
.y24a{bottom:158.746667pt;}
.y7c{bottom:160.666667pt;}
.y1b9{bottom:161.226667pt;}
.y25{bottom:165.706667pt;}
.y161{bottom:168.986667pt;}
.y140{bottom:169.786667pt;}
.y1a6{bottom:170.186667pt;}
.y54{bottom:171.786667pt;}
.y1de{bottom:174.426667pt;}
.y249{bottom:174.506667pt;}
.y219{bottom:177.386667pt;}
.y24{bottom:181.386667pt;}
.y1a5{bottom:183.466667pt;}
.yc9{bottom:183.786667pt;}
.y1b8{bottom:185.466667pt;}
.ya3{bottom:189.626667pt;}
.y248{bottom:190.106667pt;}
.yf1{bottom:191.626667pt;}
.y7b{bottom:192.346667pt;}
.y13d{bottom:192.826667pt;}
.y218{bottom:193.146667pt;}
.y53{bottom:195.386667pt;}
.y16e{bottom:195.626667pt;}
.y23{bottom:196.986667pt;}
.y1dd{bottom:198.746667pt;}
.yc8{bottom:199.386667pt;}
.y120{bottom:200.586667pt;}
.ya2{bottom:205.306667pt;}
.yf0{bottom:207.226667pt;}
.y1a4{bottom:207.786667pt;}
.y7a{bottom:207.946667pt;}
.y217{bottom:208.746667pt;}
.y1b7{bottom:209.786667pt;}
.y18e{bottom:212.106667pt;}
.y247{bottom:212.346667pt;}
.yc7{bottom:215.706667pt;}
.y11f{bottom:216.186667pt;}
.y13c{bottom:216.426667pt;}
.y16d{bottom:219.946667pt;}
.ya1{bottom:220.906667pt;}
.yef{bottom:222.906667pt;}
.y1dc{bottom:222.986667pt;}
.y79{bottom:224.346667pt;}
.y52{bottom:226.986667pt;}
.y246{bottom:228.026667pt;}
.y22{bottom:228.586667pt;}
.y216{bottom:230.986667pt;}
.y11e{bottom:231.786667pt;}
.y1a3{bottom:232.106667pt;}
.y1b6{bottom:234.106667pt;}
.ya0{bottom:237.306667pt;}
.yee{bottom:238.506667pt;}
.y13b{bottom:239.386667pt;}
.y51{bottom:242.666667pt;}
.y18d{bottom:243.706667pt;}
.y21{bottom:244.266667pt;}
.y215{bottom:246.666667pt;}
.y1db{bottom:247.306667pt;}
.y11d{bottom:247.466667pt;}
.yc6{bottom:248.106667pt;}
.y245{bottom:250.266667pt;}
.y9f{bottom:252.906667pt;}
.y78{bottom:255.946667pt;}
.y1a2{bottom:256.346667pt;}
.y50{bottom:258.266667pt;}
.y1b5{bottom:258.346667pt;}
.y18c{bottom:259.306667pt;}
.y20{bottom:259.866667pt;}
.y13a{bottom:262.346667pt;}
.y11c{bottom:263.066667pt;}
.y10a{bottom:264.026667pt;}
.y244{bottom:266.026667pt;}
.y16c{bottom:268.586667pt;}
.y214{bottom:268.906667pt;}
.yed{bottom:270.106667pt;}
.y1da{bottom:271.626667pt;}
.y4f{bottom:273.946667pt;}
.y18b{bottom:274.986667pt;}
.y1f{bottom:275.546667pt;}
.y109{bottom:279.626667pt;}
.yc5{bottom:279.786667pt;}
.y1a1{bottom:280.666667pt;}
.y1b4{bottom:282.666667pt;}
.y9e{bottom:284.586667pt;}
.y213{bottom:284.666667pt;}
.yec{bottom:285.786667pt;}
.y137{bottom:286.106667pt;}
.y77{bottom:287.626667pt;}
.y243{bottom:288.186667pt;}
.y4e{bottom:289.546667pt;}
.y18a{bottom:290.586667pt;}
.y1e{bottom:291.146667pt;}
.y16b{bottom:292.826667pt;}
.y11b{bottom:294.666667pt;}
.y108{bottom:295.306667pt;}
.y1d9{bottom:295.946667pt;}
.yeb{bottom:301.386667pt;}
.y76{bottom:303.226667pt;}
.y242{bottom:303.946667pt;}
.y1a0{bottom:304.986667pt;}
.y189{bottom:306.266667pt;}
.y1d{bottom:306.746667pt;}
.y212{bottom:306.826667pt;}
.y11a{bottom:310.346667pt;}
.y107{bottom:310.906667pt;}
.yc4{bottom:311.386667pt;}
.y4d{bottom:313.146667pt;}
.y9d{bottom:316.186667pt;}
.y16a{bottom:317.866667pt;}
.y75{bottom:319.626667pt;}
.y1d8{bottom:320.186667pt;}
.y188{bottom:321.866667pt;}
.y211{bottom:322.586667pt;}
.y119{bottom:325.946667pt;}
.y241{bottom:326.106667pt;}
.y106{bottom:326.586667pt;}
.yc3{bottom:326.986667pt;}
.y19f{bottom:329.306667pt;}
.y134{bottom:329.386667pt;}
.y1c{bottom:330.666667pt;}
.y9c{bottom:331.786667pt;}
.yea{bottom:333.066667pt;}
.y118{bottom:341.626667pt;}
.y240{bottom:341.866667pt;}
.y105{bottom:342.186667pt;}
.yc2{bottom:343.386667pt;}
.y210{bottom:344.746667pt;}
.y4c{bottom:344.826667pt;}
.y187{bottom:345.466667pt;}
.ye9{bottom:348.666667pt;}
.y74{bottom:351.226667pt;}
.y9b{bottom:351.546667pt;}
.y19c{bottom:353.546667pt;}
.y1f0{bottom:356.453333pt;}
.y23f{bottom:357.466667pt;}
.y1b3{bottom:357.626667pt;}
.y104{bottom:357.786667pt;}
.yc1{bottom:359.786667pt;}
.y4b{bottom:360.426667pt;}
.y20f{bottom:360.506667pt;}
.y1d7{bottom:363.466667pt;}
.y9a{bottom:363.786667pt;}
.ye8{bottom:364.266667pt;}
.y169{bottom:366.426667pt;}
.y73{bottom:366.826667pt;}
.y1b2{bottom:370.906667pt;}
.y133{bottom:372.106667pt;}
.y117{bottom:373.226667pt;}
.y103{bottom:373.466667pt;}
.y1b{bottom:373.866667pt;}
.y186{bottom:374.426667pt;}
.y20e{bottom:376.106667pt;}
.y23e{bottom:379.706667pt;}
.ye7{bottom:379.946667pt;}
.y72{bottom:382.506667pt;}
.y4a{bottom:384.106667pt;}
.y116{bottom:388.826667pt;}
.y102{bottom:389.066667pt;}
.yc0{bottom:391.386667pt;}
.y166{bottom:391.466667pt;}
.y1d6{bottom:395.146667pt;}
.y1b0{bottom:395.226667pt;}
.y23d{bottom:395.386667pt;}
.y99{bottom:395.466667pt;}
.y71{bottom:398.106667pt;}
.y20d{bottom:398.346667pt;}
.y1ef{bottom:398.533333pt;}
.ye6{bottom:403.546667pt;}
.y132{bottom:403.706667pt;}
.y185{bottom:403.786667pt;}
.y101{bottom:404.666667pt;}
.y1a{bottom:406.826667pt;}
.y1d5{bottom:408.426667pt;}
.y70{bottom:413.786667pt;}
.y20c{bottom:414.026667pt;}
.y49{bottom:415.706667pt;}
.y23c{bottom:417.653333pt;}
.y131{bottom:419.413333pt;}
.y1af{bottom:419.493333pt;}
.y100{bottom:420.373333pt;}
.y115{bottom:420.533333pt;}
.y19{bottom:422.453333pt;}
.ybf{bottom:423.093333pt;}
.y98{bottom:427.013333pt;}
.y184{bottom:428.053333pt;}
.y6f{bottom:429.413333pt;}
.y20b{bottom:429.733333pt;}
.y48{bottom:431.333333pt;}
.y19b{bottom:432.133333pt;}
.y1d4{bottom:432.773333pt;}
.y23b{bottom:433.333333pt;}
.y130{bottom:435.013333pt;}
.ye5{bottom:435.493333pt;}
.yff{bottom:435.973333pt;}
.y165{bottom:436.133333pt;}
.y18{bottom:438.133333pt;}
.ybe{bottom:438.693333pt;}
.y1ee{bottom:440.533333pt;}
.y97{bottom:443.493333pt;}
.y1ae{bottom:443.813333pt;}
.y47{bottom:447.013333pt;}
.y23a{bottom:449.013333pt;}
.y114{bottom:449.173333pt;}
.y12f{bottom:450.693333pt;}
.yfe{bottom:451.653333pt;}
.y183{bottom:452.373333pt;}
.y20a{bottom:453.653333pt;}
.y17{bottom:453.733333pt;}
.ybd{bottom:455.013333pt;}
.y1d3{bottom:457.093333pt;}
.y96{bottom:459.093333pt;}
.y6e{bottom:461.013333pt;}
.y19a{bottom:463.813333pt;}
.y12e{bottom:466.293333pt;}
.y1ad{bottom:468.133333pt;}
.y16{bottom:469.333333pt;}
.y46{bottom:470.613333pt;}
.y239{bottom:471.253333pt;}
.ybc{bottom:471.413333pt;}
.y182{bottom:476.693333pt;}
.ye4{bottom:478.453333pt;}
.y160{bottom:480.293333pt;}
.y1d2{bottom:481.333333pt;}
.y1ec{bottom:482.533333pt;}
.yfd{bottom:483.253333pt;}
.y15{bottom:485.013333pt;}
.y238{bottom:486.933333pt;}
.y12d{bottom:490.693333pt;}
.y95{bottom:490.773333pt;}
.y199{bottom:492.453333pt;}
.y6d{bottom:492.693333pt;}
.ye3{bottom:494.053333pt;}
.y209{bottom:496.533333pt;}
.yfc{bottom:498.853333pt;}
.y14{bottom:500.613333pt;}
.y181{bottom:501.013333pt;}
.y45{bottom:502.293333pt;}
.y237{bottom:502.533333pt;}
.ybb{bottom:503.093333pt;}
.y1d1{bottom:505.653333pt;}
.ye2{bottom:509.653333pt;}
.y15f{bottom:511.893333pt;}
.yfb{bottom:514.533333pt;}
.y13{bottom:516.213333pt;}
.y1ac{bottom:516.693333pt;}
.y44{bottom:517.893333pt;}
.y208{bottom:520.453333pt;}
.y94{bottom:522.293333pt;}
.y6c{bottom:524.293333pt;}
.y1eb{bottom:524.613333pt;}
.y236{bottom:524.773333pt;}
.y180{bottom:525.253333pt;}
.ye1{bottom:525.333333pt;}
.y15e{bottom:527.493333pt;}
.y1d0{bottom:529.973333pt;}
.yfa{bottom:530.133333pt;}
.y12{bottom:531.893333pt;}
.y43{bottom:533.493333pt;}
.yba{bottom:534.693333pt;}
.y93{bottom:538.773333pt;}
.y6b{bottom:539.893333pt;}
.y235{bottom:540.453333pt;}
.ye0{bottom:540.933333pt;}
.y1ab{bottom:541.013333pt;}
.y15d{bottom:543.093333pt;}
.yf9{bottom:545.813333pt;}
.y17f{bottom:549.573333pt;}
.yb9{bottom:550.293333pt;}
.y12c{bottom:551.253333pt;}
.y207{bottom:553.333333pt;}
.y1cf{bottom:554.213333pt;}
.y92{bottom:554.373333pt;}
.y11{bottom:555.813333pt;}
.y234{bottom:556.133333pt;}
.y6a{bottom:556.293333pt;}
.ydf{bottom:556.533333pt;}
.y42{bottom:557.093333pt;}
.y15c{bottom:559.493333pt;}
.y1e9{bottom:566.613333pt;}
.yb8{bottom:566.693333pt;}
.y206{bottom:569.013333pt;}
.y17e{bottom:573.893333pt;}
.y113{bottom:574.133333pt;}
.yf8{bottom:577.413333pt;}
.y233{bottom:578.373333pt;}
.y1ce{bottom:578.533333pt;}
.yde{bottom:580.933333pt;}
.y12b{bottom:582.853333pt;}
.y15b{bottom:583.893333pt;}
.y1aa{bottom:584.293333pt;}
.y205{bottom:584.613333pt;}
.y91{bottom:585.973333pt;}
.y41{bottom:586.133333pt;}
.y69{bottom:588.693333pt;}
.y112{bottom:589.813333pt;}
.yf7{bottom:593.013333pt;}
.y232{bottom:594.053333pt;}
.y17d{bottom:598.213333pt;}
.y12a{bottom:598.533333pt;}
.y10{bottom:598.693333pt;}
.yb7{bottom:599.093333pt;}
.y111{bottom:605.413333pt;}
.y1a9{bottom:607.973333pt;}
.y204{bottom:608.533333pt;}
.yf6{bottom:608.693333pt;}
.y231{bottom:609.653333pt;}
.y15a{bottom:610.533333pt;}
.ydd{bottom:612.613333pt;}
.y129{bottom:614.133333pt;}
.y90{bottom:617.573333pt;}
.y40{bottom:617.733333pt;}
.y68{bottom:620.293333pt;}
.y1cd{bottom:621.813333pt;}
.yf5{bottom:624.293333pt;}
.y128{bottom:629.813333pt;}
.yf{bottom:630.533333pt;}
.yb6{bottom:630.693333pt;}
.y230{bottom:631.893333pt;}
.y3f{bottom:633.413333pt;}
.y8f{bottom:633.973333pt;}
.y159{bottom:634.853333pt;}
.y67{bottom:635.893333pt;}
.y110{bottom:637.013333pt;}
.y1a8{bottom:639.573333pt;}
.yf4{bottom:639.973333pt;}
.y203{bottom:641.733333pt;}
.ydc{bottom:644.213333pt;}
.y22f{bottom:647.573333pt;}
.y3e{bottom:649.013333pt;}
.y8e{bottom:649.653333pt;}
.y1e6{bottom:650.720000pt;}
.y66{bottom:652.293333pt;}
.y10f{bottom:652.693333pt;}
.y1cc{bottom:653.493333pt;}
.y158{bottom:659.093333pt;}
.y17c{bottom:661.093333pt;}
.y127{bottom:661.413333pt;}
.yb5{bottom:662.293333pt;}
.ye{bottom:662.533333pt;}
.y3d{bottom:664.613333pt;}
.y1a7{bottom:668.213333pt;}
.y10e{bottom:668.293333pt;}
.y1cb{bottom:669.093333pt;}
.y22e{bottom:669.813333pt;}
.yf3{bottom:671.573333pt;}
.y17b{bottom:674.373333pt;}
.ydb{bottom:675.813333pt;}
.y126{bottom:677.013333pt;}
.yb4{bottom:677.893333pt;}
.y3c{bottom:680.293333pt;}
.y8d{bottom:681.253333pt;}
.y157{bottom:683.413333pt;}
.y10d{bottom:683.973333pt;}
.y202{bottom:684.613333pt;}
.y65{bottom:684.693333pt;}
.y22d{bottom:685.573333pt;}
.yda{bottom:691.493333pt;}
.y125{bottom:692.693333pt;}
.yb3{bottom:694.293333pt;}
.yd{bottom:694.533333pt;}
.y3b{bottom:695.893333pt;}
.y179{bottom:698.693333pt;}
.yf2{bottom:700.213333pt;}
.y201{bottom:700.293333pt;}
.y1ca{bottom:700.373333pt;}
.y22c{bottom:701.173333pt;}
.yd9{bottom:707.093333pt;}
.y154{bottom:707.733333pt;}
.y124{bottom:708.293333pt;}
.y1e5{bottom:709.680000pt;}
.y3a{bottom:711.573333pt;}
.y8c{bottom:712.933333pt;}
.yc{bottom:713.893333pt;}
.y10c{bottom:715.573333pt;}
.y200{bottom:715.893333pt;}
.y1c9{bottom:715.973333pt;}
.y64{bottom:716.293333pt;}
.yd8{bottom:722.693333pt;}
.y178{bottom:723.013333pt;}
.y22b{bottom:723.413333pt;}
.y123{bottom:723.973333pt;}
.yb{bottom:726.533333pt;}
.yb2{bottom:726.693333pt;}
.y39{bottom:727.173333pt;}
.y8b{bottom:728.533333pt;}
.y1ff{bottom:731.573333pt;}
.y1c8{bottom:731.653333pt;}
.y63{bottom:731.893333pt;}
.y153{bottom:732.693333pt;}
.y1e3{bottom:733.280000pt;}
.yd7{bottom:738.373333pt;}
.y22a{bottom:739.093333pt;}
.y38{bottom:742.773333pt;}
.y10b{bottom:744.213333pt;}
.y8a{bottom:744.853333pt;}
.ya{bottom:745.893333pt;}
.y1fe{bottom:747.173333pt;}
.y177{bottom:747.333333pt;}
.y62{bottom:748.293333pt;}
.y229{bottom:754.693333pt;}
.y1c7{bottom:755.253333pt;}
.y122{bottom:755.573333pt;}
.y151{bottom:757.013333pt;}
.yb1{bottom:758.293333pt;}
.y9{bottom:758.533333pt;}
.yd6{bottom:761.973333pt;}
.y1fd{bottom:762.773333pt;}
.y37{bottom:766.453333pt;}
.y176{bottom:771.573333pt;}
.y89{bottom:776.533333pt;}
.y228{bottom:776.933333pt;}
.y8{bottom:777.893333pt;}
.y1fc{bottom:778.453333pt;}
.y61{bottom:780.693333pt;}
.y14e{bottom:781.333333pt;}
.y121{bottom:784.213333pt;}
.y1c6{bottom:786.853333pt;}
.yb0{bottom:789.973333pt;}
.y88{bottom:792.133333pt;}
.y227{bottom:792.693333pt;}
.yd5{bottom:793.653333pt;}
.y1fb{bottom:794.053333pt;}
.y175{bottom:795.893333pt;}
.y60{bottom:796.293333pt;}
.y36{bottom:798.373333pt;}
.y1c5{bottom:800.213333pt;}
.yaf{bottom:805.573333pt;}
.y7{bottom:806.613333pt;}
.y87{bottom:807.813333pt;}
.yd4{bottom:809.253333pt;}
.y1fa{bottom:809.733333pt;}
.y5f{bottom:811.893333pt;}
.y226{bottom:814.853333pt;}
.y173{bottom:820.213333pt;}
.yae{bottom:821.893333pt;}
.y86{bottom:823.413333pt;}
.y6{bottom:823.813333pt;}
.y1c4{bottom:824.533333pt;}
.y1f9{bottom:825.333333pt;}
.y14d{bottom:825.973333pt;}
.y5e{bottom:827.573333pt;}
.y225{bottom:830.613333pt;}
.y85{bottom:839.013333pt;}
.yd3{bottom:840.853333pt;}
.y1f8{bottom:840.933333pt;}
.y35{bottom:841.253333pt;}
.y5d{bottom:843.173333pt;}
.y172{bottom:844.533333pt;}
.y1c3{bottom:848.773333pt;}
.y149{bottom:851.013333pt;}
.y224{bottom:852.773333pt;}
.yad{bottom:854.293333pt;}
.y84{bottom:854.693333pt;}
.yd2{bottom:856.533333pt;}
.y34{bottom:856.853333pt;}
.y5{bottom:857.893333pt;}
.y5c{bottom:858.853333pt;}
.y223{bottom:868.533333pt;}
.yd1{bottom:872.133333pt;}
.y33{bottom:872.533333pt;}
.y1f7{bottom:872.613333pt;}
.y1c2{bottom:873.093333pt;}
.y4{bottom:879.813333pt;}
.y5b{bottom:882.453333pt;}
.yac{bottom:885.973333pt;}
.y83{bottom:886.293333pt;}
.yd0{bottom:887.813333pt;}
.y32{bottom:888.133333pt;}
.y1f6{bottom:888.213333pt;}
.y222{bottom:890.773333pt;}
.y198{bottom:891.413333pt;}
.y1c0{bottom:897.413333pt;}
.y3{bottom:901.680000pt;}
.y82{bottom:902.000000pt;}
.ycf{bottom:903.440000pt;}
.y31{bottom:903.840000pt;}
.y1e2{bottom:904.160000pt;}
.y197{bottom:904.720000pt;}
.y221{bottom:906.480000pt;}
.y148{bottom:910.720000pt;}
.y5a{bottom:911.440000pt;}
.yab{bottom:917.600000pt;}
.yce{bottom:919.040000pt;}
.y30{bottom:919.440000pt;}
.y1f5{bottom:919.520000pt;}
.y1e1{bottom:919.840000pt;}
.y1bf{bottom:921.680000pt;}
.y220{bottom:922.080000pt;}
.y196{bottom:929.040000pt;}
.yaa{bottom:933.200000pt;}
.y81{bottom:933.600000pt;}
.ycd{bottom:934.720000pt;}
.y171{bottom:935.040000pt;}
.y1f4{bottom:935.120000pt;}
.y1e0{bottom:935.440000pt;}
.y147{bottom:942.320000pt;}
.y59{bottom:943.040000pt;}
.y21f{bottom:944.320000pt;}
.y1be{bottom:946.000000pt;}
.ya9{bottom:949.600000pt;}
.y170{bottom:950.720000pt;}
.y1f3{bottom:950.800000pt;}
.y2f{bottom:951.040000pt;}
.y195{bottom:953.360000pt;}
.y146{bottom:958.000000pt;}
.ycc{bottom:958.320000pt;}
.y58{bottom:958.720000pt;}
.y21e{bottom:960.000000pt;}
.y80{bottom:965.200000pt;}
.y16f{bottom:966.320000pt;}
.y1f2{bottom:966.400000pt;}
.y2e{bottom:966.720000pt;}
.y1bd{bottom:970.320000pt;}
.y145{bottom:973.600000pt;}
.y57{bottom:974.320000pt;}
.y21d{bottom:975.680000pt;}
.y194{bottom:977.680000pt;}
.y7f{bottom:981.600000pt;}
.ya8{bottom:982.000000pt;}
.y2d{bottom:982.320000pt;}
.y144{bottom:989.200000pt;}
.y56{bottom:990.000000pt;}
.y1f1{bottom:990.320000pt;}
.y7e{bottom:997.200000pt;}
.y21c{bottom:997.920000pt;}
.y2c{bottom:998.000000pt;}
.y193{bottom:1001.920000pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.h11{height:22.320000pt;}
.h12{height:22.960000pt;}
.hd{height:23.040000pt;}
.h18{height:23.600000pt;}
.h1b{height:23.626667pt;}
.h16{height:23.680000pt;}
.h17{height:24.320000pt;}
.h14{height:24.400000pt;}
.h2{height:26.686562pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h1c{height:39.280000pt;}
.h13{height:40.000000pt;}
.h21{height:41.360000pt;}
.h20{height:41.386667pt;}
.h22{height:41.440000pt;}
.hf{height:42.640000pt;}
.h1a{height:43.200000pt;}
.h10{height:43.511250pt;}
.h15{height:44.000000pt;}
.h19{height:44.026667pt;}
.he{height:45.246562pt;}
.h7{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h8{height:53.032187pt;}
.hc{height:53.309531pt;}
.h23{height:54.927899pt;}
.hb{height:55.631875pt;}
.h1d{height:58.960000pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1e{height:793.920000pt;}
.h1f{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w29{width:20.640000pt;}
.w32{width:21.040000pt;}
.w28{width:21.200000pt;}
.w3b{width:21.280000pt;}
.w27{width:21.360000pt;}
.w31{width:21.600000pt;}
.w30{width:21.760000pt;}
.w36{width:21.920000pt;}
.w3a{width:22.000000pt;}
.w35{width:22.080000pt;}
.w1f{width:28.640000pt;}
.w1e{width:28.880000pt;}
.w45{width:51.760000pt;}
.w43{width:57.360000pt;}
.w1d{width:58.160000pt;}
.w38{width:58.240000pt;}
.w46{width:58.880000pt;}
.w8{width:62.320000pt;}
.w21{width:63.520000pt;}
.w26{width:64.640000pt;}
.w18{width:64.960000pt;}
.w2f{width:65.840000pt;}
.w2a{width:66.320000pt;}
.w34{width:66.560000pt;}
.w3e{width:66.640000pt;}
.w1b{width:68.000000pt;}
.w42{width:68.080000pt;}
.w10{width:69.680000pt;}
.w44{width:75.866667pt;}
.w48{width:76.960000pt;}
.w5{width:82.346667pt;}
.w7{width:85.040000pt;}
.w6{width:85.120000pt;}
.w15{width:85.786667pt;}
.w17{width:88.640000pt;}
.w16{width:88.720000pt;}
.wd{width:92.106667pt;}
.w49{width:94.240000pt;}
.wf{width:95.040000pt;}
.we{width:95.120000pt;}
.w12{width:96.560000pt;}
.w47{width:97.200000pt;}
.w4b{width:98.560000pt;}
.w23{width:99.040000pt;}
.w4a{width:100.986667pt;}
.w2c{width:103.760000pt;}
.w1a{width:109.760000pt;}
.wa{width:111.440000pt;}
.w2b{width:131.066667pt;}
.w4c{width:142.560000pt;}
.w25{width:143.120000pt;}
.w24{width:143.786667pt;}
.w2e{width:150.320000pt;}
.w2d{width:151.066667pt;}
.w22{width:154.266667pt;}
.w20{width:171.786667pt;}
.w11{width:219.786667pt;}
.w19{width:230.586667pt;}
.w3d{width:231.546667pt;}
.w9{width:232.986667pt;}
.w1c{width:249.066667pt;}
.w3c{width:265.066667pt;}
.w33{width:267.386667pt;}
.w37{width:269.226667pt;}
.w39{width:293.706667pt;}
.w3{width:316.826667pt;}
.wc{width:317.066667pt;}
.w13{width:330.106667pt;}
.w14{width:340.986667pt;}
.w4{width:345.066667pt;}
.wb{width:353.946667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w40{width:1122.000000pt;}
.w41{width:1122.239983pt;}
.w3f{width:1122.240000pt;}
.x0{left:0.000000pt;}
.xc{left:6.800000pt;}
.x1{left:60.480000pt;}
.xb{left:65.760000pt;}
.x48{left:95.999983pt;}
.x53{left:99.039988pt;}
.x5{left:111.679988pt;}
.x23{left:125.360000pt;}
.x2b{left:128.160000pt;}
.x8{left:146.266655pt;}
.x18{left:147.546667pt;}
.xe{left:148.746667pt;}
.x13{left:153.866667pt;}
.x49{left:165.440000pt;}
.x39{left:182.186667pt;}
.x31{left:195.386667pt;}
.x36{left:198.586667pt;}
.x3e{left:200.746667pt;}
.x2{left:205.466655pt;}
.xa{left:209.146655pt;}
.x42{left:213.226667pt;}
.x4a{left:223.440000pt;}
.xf{left:234.506667pt;}
.x19{left:236.906667pt;}
.x30{left:245.946655pt;}
.x1f{left:247.386667pt;}
.x14{left:249.626667pt;}
.x3a{left:250.826667pt;}
.x7{left:259.466655pt;}
.x32{left:264.026667pt;}
.x37{left:267.306667pt;}
.x3f{left:269.386667pt;}
.x1c{left:277.386667pt;}
.x24{left:280.266667pt;}
.x43{left:281.946667pt;}
.x4b{left:299.946667pt;}
.x20{left:316.026667pt;}
.x10{left:320.266667pt;}
.x1a{left:326.266667pt;}
.x15{left:345.386667pt;}
.x4c{left:352.346667pt;}
.x2c{left:364.266667pt;}
.x46{left:369.626650pt;}
.x25{left:379.946667pt;}
.xd{left:383.226667pt;}
.x17{left:391.866667pt;}
.x4d{left:411.866667pt;}
.x12{left:415.786667pt;}
.x21{left:488.453333pt;}
.x4e{left:509.706667pt;}
.x44{left:514.133333pt;}
.x2d{left:515.973333pt;}
.x22{left:517.973333pt;}
.x26{left:524.373333pt;}
.x1d{left:527.093333pt;}
.x33{left:532.053333pt;}
.x40{left:535.093333pt;}
.x38{left:537.173333pt;}
.x3b{left:545.253333pt;}
.x34{left:554.773333pt;}
.x1e{left:556.613333pt;}
.x45{left:559.493333pt;}
.x41{left:564.613333pt;}
.x3c{left:567.973333pt;}
.x35{left:577.413333pt;}
.x4f{left:587.386667pt;}
.x3d{left:590.533333pt;}
.x11{left:616.853333pt;}
.x1b{left:623.093333pt;}
.x16{left:636.293333pt;}
.x2f{left:648.053322pt;}
.x2a{left:665.013322pt;}
.x2e{left:667.013333pt;}
.x27{left:668.213333pt;}
.x50{left:682.266667pt;}
.x9{left:685.013322pt;}
.x28{left:690.293333pt;}
.x6{left:700.053322pt;}
.x4{left:702.053322pt;}
.x29{left:712.213333pt;}
.x3{left:718.773322pt;}
.x51{left:783.893333pt;}
.x52{left:883.093333pt;}
.x47{left:1011.493317pt;}
}




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