
    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_86d82c3ae7f531ae5adaac7b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.014160;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_29fa74f625afbdc8eea849cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.708008;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_45425316e03b32921aade633.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.207031;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_9a459957514f7cbafe043aad.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_ea717883abcccea5fcd72c92.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.682617;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_1fa11312c3bfd3ecf54e1bf5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.024902;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_1283d2699595630352834dcf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8e88dbbf98483d30a52c2009.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.207031;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_bed20695411d96295b1f7897.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-21.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.000000px;}
.v1{vertical-align:24.000000px;}
.ls12{letter-spacing:-1.500000px;}
.ls1b{letter-spacing:-1.302000px;}
.ls1e{letter-spacing:-1.044000px;}
.ls1c{letter-spacing:-0.585000px;}
.ls3{letter-spacing:-0.570000px;}
.ls7{letter-spacing:-0.453000px;}
.lsf{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.072000px;}
.lsd{letter-spacing:-0.024000px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.105000px;}
.ls14{letter-spacing:0.165000px;}
.ls19{letter-spacing:0.195000px;}
.lsb{letter-spacing:0.240000px;}
.ls1d{letter-spacing:0.252000px;}
.ls18{letter-spacing:0.330000px;}
.ls8{letter-spacing:0.372000px;}
.ls1{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.456000px;}
.ls0{letter-spacing:0.516000px;}
.ls9{letter-spacing:0.576000px;}
.ls1a{letter-spacing:0.612000px;}
.ls1f{letter-spacing:0.792000px;}
.ls17{letter-spacing:0.930000px;}
.ls11{letter-spacing:1.320000px;}
.ls6{letter-spacing:1.674000px;}
.lse{letter-spacing:3.720000px;}
.ls10{letter-spacing:6.720000px;}
.ls16{letter-spacing:32.490000px;}
.lsc{letter-spacing:55.134000px;}
.ls13{letter-spacing:57.990000px;}
.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;}
}
.wsc{word-spacing:-72.000000px;}
.ws3{word-spacing:-44.688000px;}
.wsa{word-spacing:-33.120000px;}
.ws2{word-spacing:-31.464000px;}
.wse{word-spacing:-18.780000px;}
.wsd{word-spacing:-18.540000px;}
.ws6{word-spacing:-17.274000px;}
.ws7{word-spacing:-16.902000px;}
.ws15{word-spacing:-15.276000px;}
.ws1{word-spacing:-15.024000px;}
.ws14{word-spacing:-15.015000px;}
.ws5{word-spacing:-14.943000px;}
.ws12{word-spacing:-14.697000px;}
.wsf{word-spacing:-14.415000px;}
.ws10{word-spacing:-14.280000px;}
.ws11{word-spacing:-14.085000px;}
.ws9{word-spacing:-14.064000px;}
.ws0{word-spacing:-13.515000px;}
.ws13{word-spacing:-12.783000px;}
.wsb{word-spacing:-12.207000px;}
.ws4{word-spacing:-11.268000px;}
.ws8{word-spacing:0.000000px;}
._24{margin-left:-3.642000px;}
._1d{margin-left:-2.343000px;}
._0{margin-left:-1.260000px;}
._1{width:1.395000px;}
._d{width:2.568000px;}
._e{width:3.876000px;}
._8{width:5.721000px;}
._9{width:6.906000px;}
._f{width:7.992000px;}
._19{width:9.765000px;}
._1e{width:11.742000px;}
._25{width:12.747000px;}
._10{width:13.752000px;}
._21{width:14.760000px;}
._22{width:15.780000px;}
._23{width:16.860000px;}
._1b{width:18.087000px;}
._1a{width:19.161000px;}
._1c{width:20.553000px;}
._15{width:21.573000px;}
._14{width:23.103000px;}
._18{width:24.156000px;}
._17{width:25.347000px;}
._16{width:26.571000px;}
._b{width:27.966000px;}
._c{width:29.733000px;}
._13{width:31.314000px;}
._4{width:32.709000px;}
._37{width:33.744000px;}
._5{width:35.169000px;}
._a{width:36.822000px;}
._3{width:38.082000px;}
._2{width:39.237000px;}
._11{width:41.208000px;}
._29{width:42.252000px;}
._2a{width:43.260000px;}
._28{width:44.385000px;}
._35{width:46.752000px;}
._31{width:48.018000px;}
._44{width:49.104000px;}
._26{width:50.280000px;}
._2b{width:51.336000px;}
._48{width:52.491000px;}
._3e{width:53.502000px;}
._27{width:54.540000px;}
._3f{width:56.985000px;}
._47{width:59.211000px;}
._41{width:60.345000px;}
._45{width:62.388000px;}
._12{width:63.819000px;}
._53{width:65.664000px;}
._2c{width:68.109000px;}
._4d{width:69.228000px;}
._30{width:71.712000px;}
._2f{width:73.920000px;}
._42{width:76.605000px;}
._32{width:78.912000px;}
._33{width:80.064000px;}
._2e{width:84.057000px;}
._38{width:87.408000px;}
._4c{width:91.548000px;}
._4f{width:92.814000px;}
._3b{width:93.879000px;}
._34{width:96.624000px;}
._36{width:102.093000px;}
._6{width:103.734000px;}
._7{width:104.856000px;}
._4a{width:105.888000px;}
._46{width:108.825000px;}
._51{width:110.064000px;}
._50{width:111.984000px;}
._43{width:116.544000px;}
._39{width:119.376000px;}
._2d{width:128.976000px;}
._3a{width:141.984000px;}
._3d{width:152.673000px;}
._54{width:154.668000px;}
._40{width:184.128000px;}
._20{width:186.888000px;}
._1f{width:188.538000px;}
._4b{width:191.517000px;}
._52{width:209.424000px;}
._49{width:238.224000px;}
._4e{width:253.653000px;}
._3c{width:287.289000px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,112,192);}
.fc4{color:rgb(0,128,0);}
.fc1{color:rgb(0,0,255);}
.fc6{color:rgb(0,128,5);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:3.000000px;}
.fs7{font-size:6.000000px;}
.fs4{font-size:12.000000px;}
.fsd{font-size:18.000000px;}
.fsb{font-size:36.000000px;}
.fs12{font-size:39.000000px;}
.fs6{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs10{font-size:50.595937px;}
.fsc{font-size:51.000000px;}
.fsf{font-size:54.000000px;}
.fs14{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fse{font-size:84.000000px;}
.fs13{font-size:96.000000px;}
.fsa{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs11{font-size:120.000000px;}
.fs5{font-size:144.000000px;}
.fs8{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.yf{bottom:0.015000px;}
.y41{bottom:1.155000px;}
.y40{bottom:1.545000px;}
.y10a{bottom:1.875000px;}
.y63{bottom:1.890000px;}
.y6d{bottom:2.250000px;}
.y61{bottom:2.265000px;}
.y252{bottom:2.610000px;}
.ya{bottom:2.625000px;}
.y244{bottom:2.640000px;}
.yc2{bottom:3.000000px;}
.y1f6{bottom:3.015000px;}
.y1a{bottom:3.375000px;}
.y62{bottom:3.765000px;}
.y4{bottom:4.875000px;}
.y1cc{bottom:5.625000px;}
.y18{bottom:6.000000px;}
.y114{bottom:7.110000px;}
.y6f{bottom:7.125000px;}
.yc5{bottom:7.500000px;}
.yb{bottom:8.625000px;}
.y5{bottom:10.125000px;}
.y5f{bottom:11.265000px;}
.y109{bottom:13.875000px;}
.y7{bottom:15.037500px;}
.y246{bottom:16.867500px;}
.y248{bottom:16.875000px;}
.y243{bottom:16.890000px;}
.y23c{bottom:17.250000px;}
.y251{bottom:17.280000px;}
.y3e{bottom:18.045000px;}
.y65{bottom:19.117500px;}
.y66{bottom:19.507500px;}
.y8{bottom:20.625000px;}
.y6c{bottom:21.000000px;}
.y1f5{bottom:21.015000px;}
.y1ef{bottom:21.030000px;}
.yc{bottom:21.375000px;}
.y3{bottom:22.875000px;}
.y13f{bottom:23.625000px;}
.yc1{bottom:24.375000px;}
.y108{bottom:25.500000px;}
.y5e{bottom:26.670000px;}
.y1cb{bottom:29.250000px;}
.y23b{bottom:31.500000px;}
.y242{bottom:31.515000px;}
.y24f{bottom:31.875000px;}
.y24c{bottom:31.905000px;}
.y3d{bottom:33.420000px;}
.y17{bottom:33.750000px;}
.y107{bottom:35.250000px;}
.y1f4{bottom:39.000000px;}
.y193{bottom:39.007500px;}
.y1ee{bottom:39.045000px;}
.ya9{bottom:39.375000px;}
.y16b{bottom:39.382500px;}
.y1d0{bottom:39.405000px;}
.y67{bottom:40.132500px;}
.y5d{bottom:42.045000px;}
.y104{bottom:42.367500px;}
.yc0{bottom:42.375000px;}
.y257{bottom:45.750000px;}
.y25a{bottom:45.780000px;}
.y25d{bottom:45.795000px;}
.y271{bottom:46.117500px;}
.y23a{bottom:46.125000px;}
.y24b{bottom:46.155000px;}
.y241{bottom:46.170000px;}
.y13e{bottom:47.242500px;}
.y1ca{bottom:47.257500px;}
.y3c{bottom:48.795000px;}
.y28c{bottom:53.295000px;}
.y1f3{bottom:55.545000px;}
.y16a{bottom:57.367500px;}
.yeb{bottom:57.375000px;}
.y192{bottom:57.382500px;}
.y1cf{bottom:57.405000px;}
.y5c{bottom:57.420000px;}
.ya8{bottom:57.757500px;}
.y260{bottom:60.375000px;}
.y103{bottom:60.382500px;}
.y289{bottom:60.405000px;}
.y240{bottom:60.420000px;}
.y27d{bottom:60.795000px;}
.y9{bottom:61.125000px;}
.y16{bottom:61.500000px;}
.ybf{bottom:63.375000px;}
.y3b{bottom:64.170000px;}
.y13d{bottom:65.257500px;}
.y1c9{bottom:65.632500px;}
.y28b{bottom:67.170000px;}
.y6{bottom:71.250000px;}
.y5b{bottom:72.795000px;}
.y25f{bottom:75.000000px;}
.y270{bottom:75.007500px;}
.y256{bottom:75.030000px;}
.y23f{bottom:75.045000px;}
.y191{bottom:75.367500px;}
.y111{bottom:75.375000px;}
.y169{bottom:75.382500px;}
.y1ce{bottom:75.405000px;}
.ya7{bottom:75.742500px;}
.yea{bottom:75.750000px;}
.ycd{bottom:75.757500px;}
.y102{bottom:78.757500px;}
.y22{bottom:79.500000px;}
.y3a{bottom:79.545000px;}
.y1c8{bottom:83.617500px;}
.y13c{bottom:83.632500px;}
.ybe{bottom:84.750000px;}
.y5a{bottom:86.670000px;}
.y15{bottom:89.280000px;}
.y26f{bottom:89.617500px;}
.y288{bottom:89.655000px;}
.y23e{bottom:89.670000px;}
.y21{bottom:90.375000px;}
.y1ec{bottom:91.545000px;}
.y190{bottom:93.382500px;}
.y1ed{bottom:93.420000px;}
.ycc{bottom:93.742500px;}
.ye9{bottom:93.750000px;}
.ya6{bottom:93.757500px;}
.y110{bottom:93.780000px;}
.y168{bottom:93.787500px;}
.y1e7{bottom:93.795000px;}
.y39{bottom:94.920000px;}
.y101{bottom:96.787500px;}
.y20{bottom:101.250000px;}
.y13b{bottom:101.662500px;}
.y255{bottom:103.905000px;}
.y26e{bottom:103.912500px;}
.y27c{bottom:104.295000px;}
.y71{bottom:104.662500px;}
.ybd{bottom:105.780000px;}
.y116{bottom:106.162500px;}
.yc7{bottom:106.537500px;}
.y1fa{bottom:106.912500px;}
.y38{bottom:110.295000px;}
.yef{bottom:111.037500px;}
.ye8{bottom:111.750000px;}
.y10f{bottom:111.780000px;}
.ya5{bottom:111.787500px;}
.y1e6{bottom:111.795000px;}
.y1f{bottom:112.125000px;}
.y194{bottom:113.662500px;}
.y1f8{bottom:114.412500px;}
.y100{bottom:114.787500px;}
.y14{bottom:117.030000px;}
.y287{bottom:118.530000px;}
.y26d{bottom:118.537500px;}
.y27b{bottom:118.545000px;}
.y68{bottom:119.662500px;}
.y1c7{bottom:122.287500px;}
.y1e{bottom:123.045000px;}
.ybc{bottom:123.780000px;}
.y37{bottom:125.670000px;}
.y10e{bottom:129.780000px;}
.y167{bottom:129.787500px;}
.y1e5{bottom:129.795000px;}
.ye7{bottom:130.155000px;}
.ya4{bottom:130.162500px;}
.y64{bottom:131.287500px;}
.yff{bottom:132.787500px;}
.y286{bottom:133.155000px;}
.y27a{bottom:133.170000px;}
.y1d{bottom:133.920000px;}
.y245{bottom:136.162500px;}
.y13a{bottom:137.662500px;}
.y36{bottom:141.075000px;}
.y13{bottom:144.780000px;}
.ybb{bottom:145.155000px;}
.y1c{bottom:145.545000px;}
.y1c6{bottom:145.912500px;}
.y285{bottom:147.405000px;}
.y26c{bottom:147.412500px;}
.y279{bottom:147.420000px;}
.y18f{bottom:147.787500px;}
.ye6{bottom:148.155000px;}
.ya3{bottom:148.162500px;}
.y1e4{bottom:148.170000px;}
.yfe{bottom:151.162500px;}
.y1f7{bottom:151.170000px;}
.y139{bottom:156.037500px;}
.y35{bottom:156.450000px;}
.y57{bottom:156.465000px;}
.y59{bottom:161.295000px;}
.y284{bottom:162.030000px;}
.y26b{bottom:162.037500px;}
.y278{bottom:162.045000px;}
.yba{bottom:163.155000px;}
.y1c5{bottom:163.912500px;}
.y23d{bottom:165.030000px;}
.y18e{bottom:165.787500px;}
.ye5{bottom:166.155000px;}
.ya2{bottom:166.162500px;}
.y1e3{bottom:166.170000px;}
.y1f2{bottom:168.030000px;}
.yfd{bottom:169.162500px;}
.y11{bottom:171.405000px;}
.y34{bottom:171.825000px;}
.y12{bottom:172.530000px;}
.y138{bottom:174.037500px;}
.y283{bottom:176.280000px;}
.y26a{bottom:176.287500px;}
.y277{bottom:176.700000px;}
.yd{bottom:181.155000px;}
.yb9{bottom:181.530000px;}
.y10c{bottom:182.280000px;}
.y1c4{bottom:182.287500px;}
.y10d{bottom:184.155000px;}
.ya1{bottom:184.162500px;}
.y1e2{bottom:184.170000px;}
.y60{bottom:186.030000px;}
.y18d{bottom:186.412500px;}
.ye4{bottom:186.780000px;}
.yfc{bottom:187.162500px;}
.y33{bottom:187.200000px;}
.y56{bottom:187.215000px;}
.y269{bottom:190.912500px;}
.y276{bottom:190.950000px;}
.y4b{bottom:191.280000px;}
.y137{bottom:192.037500px;}
.yb8{bottom:199.530000px;}
.y1c3{bottom:200.287500px;}
.y166{bottom:202.162500px;}
.ya0{bottom:202.537500px;}
.y32{bottom:202.575000px;}
.yfb{bottom:205.537500px;}
.y282{bottom:205.560000px;}
.y275{bottom:205.575000px;}
.y18c{bottom:210.037500px;}
.y136{bottom:210.412500px;}
.ye3{bottom:213.030000px;}
.yb7{bottom:217.530000px;}
.y31{bottom:217.950000px;}
.y55{bottom:217.965000px;}
.y1c2{bottom:218.287500px;}
.y268{bottom:219.787500px;}
.y281{bottom:219.810000px;}
.y274{bottom:220.200000px;}
.y9f{bottom:220.537500px;}
.y1e1{bottom:220.575000px;}
.y165{bottom:220.582500px;}
.yfa{bottom:223.582500px;}
.y135{bottom:228.457500px;}
.y30{bottom:233.325000px;}
.y54{bottom:233.340000px;}
.y280{bottom:234.435000px;}
.y267{bottom:234.457500px;}
.y237{bottom:235.942500px;}
.yb6{bottom:235.950000px;}
.ye2{bottom:236.655000px;}
.y1c1{bottom:236.707500px;}
.y9e{bottom:238.567500px;}
.y1e0{bottom:238.575000px;}
.ycb{bottom:238.582500px;}
.y1f1{bottom:240.450000px;}
.yf9{bottom:241.567500px;}
.y134{bottom:246.442500px;}
.y18b{bottom:246.457500px;}
.y266{bottom:248.692500px;}
.y2f{bottom:248.700000px;}
.y53{bottom:248.715000px;}
.y27f{bottom:249.060000px;}
.y43{bottom:249.075000px;}
.y236{bottom:249.442500px;}
.yb5{bottom:253.950000px;}
.ye1{bottom:254.685000px;}
.y1c0{bottom:254.707500px;}
.y164{bottom:256.567500px;}
.y1df{bottom:256.575000px;}
.yca{bottom:256.942500px;}
.y9d{bottom:256.957500px;}
.yf8{bottom:259.582500px;}
.y235{bottom:262.942500px;}
.y265{bottom:263.332500px;}
.y52{bottom:264.090000px;}
.y2e{bottom:264.120000px;}
.y18a{bottom:264.442500px;}
.y133{bottom:264.457500px;}
.y239{bottom:266.325000px;}
.ye0{bottom:272.685000px;}
.y1bf{bottom:272.692500px;}
.yb4{bottom:274.575000px;}
.y163{bottom:274.582500px;}
.y9c{bottom:274.942500px;}
.y1de{bottom:274.950000px;}
.yc9{bottom:274.957500px;}
.y234{bottom:276.442500px;}
.yf7{bottom:277.957500px;}
.y2d{bottom:279.480000px;}
.y51{bottom:279.495000px;}
.y58{bottom:282.450000px;}
.y189{bottom:282.457500px;}
.y132{bottom:282.832500px;}
.y233{bottom:289.942500px;}
.y1be{bottom:290.707500px;}
.ydf{bottom:291.060000px;}
.y264{bottom:292.207500px;}
.y1dd{bottom:292.950000px;}
.y9b{bottom:292.957500px;}
.y1f0{bottom:294.450000px;}
.y2c{bottom:294.855000px;}
.y50{bottom:294.870000px;}
.yf6{bottom:295.957500px;}
.yb3{bottom:298.200000px;}
.y131{bottom:300.832500px;}
.y232{bottom:303.832500px;}
.yde{bottom:309.060000px;}
.y1bd{bottom:309.082500px;}
.y2b{bottom:310.230000px;}
.y4f{bottom:310.245000px;}
.y1dc{bottom:310.950000px;}
.y9a{bottom:310.957500px;}
.yf5{bottom:313.957500px;}
.y49{bottom:315.105000px;}
.yb2{bottom:316.200000px;}
.y231{bottom:317.332500px;}
.y1eb{bottom:318.450000px;}
.y130{bottom:318.832500px;}
.y262{bottom:322.957500px;}
.y238{bottom:325.200000px;}
.y2a{bottom:325.605000px;}
.y4e{bottom:325.620000px;}
.y48{bottom:325.980000px;}
.ydd{bottom:327.060000px;}
.y162{bottom:328.957500px;}
.y99{bottom:329.332500px;}
.y1db{bottom:329.370000px;}
.y1bc{bottom:329.707500px;}
.y230{bottom:330.832500px;}
.yf4{bottom:332.332500px;}
.yb1{bottom:334.200000px;}
.y188{bottom:336.832500px;}
.y47{bottom:336.855000px;}
.y261{bottom:337.207500px;}
.y12f{bottom:339.457500px;}
.y29{bottom:340.980000px;}
.y4d{bottom:340.995000px;}
.y22f{bottom:344.332500px;}
.ydc{bottom:345.060000px;}
.y98{bottom:347.332500px;}
.y1da{bottom:347.355000px;}
.y161{bottom:347.362500px;}
.y46{bottom:347.730000px;}
.yf3{bottom:350.362500px;}
.yb0{bottom:352.605000px;}
.y1bb{bottom:353.362500px;}
.y187{bottom:355.237500px;}
.y28{bottom:356.355000px;}
.y4c{bottom:356.745000px;}
.y22e{bottom:357.862500px;}
.y45{bottom:358.605000px;}
.y12e{bottom:363.112500px;}
.ydb{bottom:363.435000px;}
.y1d9{bottom:365.355000px;}
.y97{bottom:365.362500px;}
.yf2{bottom:368.362500px;}
.y44{bottom:369.855000px;}
.yaf{bottom:370.605000px;}
.y1ba{bottom:371.362500px;}
.y22d{bottom:371.737500px;}
.y27{bottom:372.105000px;}
.y186{bottom:373.237500px;}
.y12d{bottom:381.112500px;}
.yda{bottom:381.480000px;}
.y1d8{bottom:383.355000px;}
.y160{bottom:383.362500px;}
.y96{bottom:383.737500px;}
.yf0{bottom:384.487500px;}
.y22c{bottom:385.237500px;}
.yf1{bottom:386.362500px;}
.y26{bottom:387.525000px;}
.y106{bottom:388.237500px;}
.yae{bottom:388.605000px;}
.y1b9{bottom:389.362500px;}
.y105{bottom:391.612500px;}
.y185{bottom:393.862500px;}
.y22b{bottom:398.737500px;}
.yd9{bottom:399.480000px;}
.y12c{bottom:399.487500px;}
.y15f{bottom:401.362500px;}
.y1d7{bottom:401.730000px;}
.y95{bottom:401.737500px;}
.y25{bottom:402.900000px;}
.yad{bottom:406.980000px;}
.y1b8{bottom:407.362500px;}
.y22a{bottom:412.237500px;}
.y263{bottom:415.995000px;}
.y12b{bottom:417.487500px;}
.yd8{bottom:417.855000px;}
.y1d6{bottom:419.730000px;}
.y94{bottom:419.737500px;}
.yac{bottom:424.980000px;}
.y1b7{bottom:425.737500px;}
.y229{bottom:426.112500px;}
.y1ea{bottom:426.870000px;}
.y12a{bottom:435.487500px;}
.yd7{bottom:435.855000px;}
.y1d5{bottom:437.730000px;}
.y93{bottom:437.737500px;}
.y228{bottom:439.612500px;}
.yab{bottom:442.980000px;}
.y1e9{bottom:443.370000px;}
.y1b6{bottom:443.737500px;}
.y42{bottom:446.745000px;}
.y227{bottom:453.112500px;}
.y184{bottom:453.487500px;}
.yd6{bottom:453.855000px;}
.y129{bottom:453.862500px;}
.y15e{bottom:455.737500px;}
.y92{bottom:456.112500px;}
.y25e{bottom:461.025000px;}
.y1b5{bottom:461.737500px;}
.y226{bottom:466.612500px;}
.yd5{bottom:471.855000px;}
.y128{bottom:471.862500px;}
.y183{bottom:471.907500px;}
.y91{bottom:474.112500px;}
.y15d{bottom:474.157500px;}
.y1b4{bottom:480.157500px;}
.y1e8{bottom:480.900000px;}
.y127{bottom:489.907500px;}
.yd4{bottom:490.260000px;}
.y90{bottom:492.157500px;}
.y225{bottom:494.032500px;}
.y1b3{bottom:498.157500px;}
.y1d4{bottom:504.900000px;}
.y224{bottom:507.532500px;}
.y126{bottom:507.907500px;}
.yd3{bottom:508.260000px;}
.y15c{bottom:510.157500px;}
.y8f{bottom:510.532500px;}
.yee{bottom:512.400000px;}
.y1b2{bottom:516.157500px;}
.y223{bottom:521.032500px;}
.yd2{bottom:526.260000px;}
.y125{bottom:526.282500px;}
.yc8{bottom:526.657500px;}
.y15b{bottom:528.157500px;}
.y8e{bottom:528.532500px;}
.yed{bottom:528.900000px;}
.y1b1{bottom:534.157500px;}
.y222{bottom:534.532500px;}
.y124{bottom:544.282500px;}
.yd1{bottom:544.635000px;}
.y8d{bottom:546.532500px;}
.y25c{bottom:548.025000px;}
.y221{bottom:548.032500px;}
.y28e{bottom:551.400000px;}
.y1b0{bottom:552.532500px;}
.y4a{bottom:560.775000px;}
.y220{bottom:561.907500px;}
.y123{bottom:562.282500px;}
.yd0{bottom:562.635000px;}
.y8c{bottom:564.532500px;}
.yec{bottom:566.400000px;}
.y15a{bottom:567.157500px;}
.y28a{bottom:569.400000px;}
.y1af{bottom:570.532500px;}
.y21f{bottom:575.407500px;}
.y24{bottom:576.150000px;}
.y182{bottom:580.282500px;}
.ycf{bottom:580.635000px;}
.y122{bottom:580.657500px;}
.y8b{bottom:582.907500px;}
.y21e{bottom:588.907500px;}
.yce{bottom:590.445000px;}
.y159{bottom:590.812500px;}
.y1ae{bottom:591.157500px;}
.y121{bottom:598.657500px;}
.y181{bottom:598.687500px;}
.y8a{bottom:600.937500px;}
.y21d{bottom:602.437500px;}
.y25b{bottom:605.820000px;}
.y28d{bottom:606.195000px;}
.y158{bottom:608.812500px;}
.y1ad{bottom:614.812500px;}
.y21c{bottom:615.937500px;}
.y120{bottom:616.687500px;}
.y89{bottom:618.937500px;}
.y157{bottom:626.812500px;}
.y21b{bottom:629.812500px;}
.y1ac{bottom:632.812500px;}
.y11f{bottom:634.687500px;}
.y88{bottom:637.312500px;}
.y21a{bottom:643.312500px;}
.y156{bottom:645.187500px;}
.y27e{bottom:649.320000px;}
.yc6{bottom:650.070000px;}
.y1ab{bottom:651.187500px;}
.y180{bottom:653.062500px;}
.y87{bottom:655.312500px;}
.y219{bottom:656.812500px;}
.y155{bottom:663.187500px;}
.y259{bottom:663.945000px;}
.yc4{bottom:666.195000px;}
.y1aa{bottom:669.187500px;}
.y218{bottom:670.312500px;}
.y17f{bottom:671.062500px;}
.y86{bottom:673.312500px;}
.y11e{bottom:678.937500px;}
.y154{bottom:681.187500px;}
.y217{bottom:684.187500px;}
.y1a9{bottom:687.187500px;}
.y17e{bottom:689.062500px;}
.y85{bottom:691.312500px;}
.y11d{bottom:697.312500px;}
.y216{bottom:697.687500px;}
.y153{bottom:699.187500px;}
.yc3{bottom:704.070000px;}
.y1a8{bottom:705.187500px;}
.y17d{bottom:707.062500px;}
.y84{bottom:709.687500px;}
.y215{bottom:711.187500px;}
.y11c{bottom:715.312500px;}
.y152{bottom:717.592500px;}
.y258{bottom:721.725000px;}
.y1a7{bottom:723.592500px;}
.y214{bottom:724.717500px;}
.y17c{bottom:725.467500px;}
.y83{bottom:727.717500px;}
.yaa{bottom:728.100000px;}
.y11b{bottom:733.342500px;}
.y151{bottom:735.592500px;}
.y213{bottom:738.217500px;}
.y1a6{bottom:741.592500px;}
.y17b{bottom:743.467500px;}
.y82{bottom:745.732500px;}
.y11a{bottom:751.732500px;}
.y212{bottom:752.092500px;}
.y150{bottom:753.592500px;}
.y1a5{bottom:759.592500px;}
.y17a{bottom:761.467500px;}
.y81{bottom:763.717500px;}
.y211{bottom:765.592500px;}
.y119{bottom:769.717500px;}
.y14f{bottom:771.592500px;}
.y1a4{bottom:777.592500px;}
.y210{bottom:779.092500px;}
.y179{bottom:779.467500px;}
.y254{bottom:779.850000px;}
.y80{bottom:782.092500px;}
.y117{bottom:785.842500px;}
.y118{bottom:787.717500px;}
.y14e{bottom:789.967500px;}
.y20f{bottom:792.592500px;}
.y1a3{bottom:795.967500px;}
.y178{bottom:797.842500px;}
.y23{bottom:798.645000px;}
.y7f{bottom:800.092500px;}
.y20e{bottom:806.092500px;}
.y14d{bottom:807.967500px;}
.ye{bottom:808.020000px;}
.y1a2{bottom:813.967500px;}
.y177{bottom:815.842500px;}
.y7e{bottom:818.092500px;}
.y20d{bottom:819.967500px;}
.y14c{bottom:825.967500px;}
.y3f{bottom:828.600000px;}
.y1a1{bottom:831.967500px;}
.y20c{bottom:833.467500px;}
.y176{bottom:833.842500px;}
.y1b{bottom:834.255000px;}
.y7d{bottom:836.467500px;}
.y14b{bottom:844.387500px;}
.y20b{bottom:846.967500px;}
.y1a0{bottom:850.387500px;}
.y175{bottom:852.262500px;}
.y7c{bottom:854.512500px;}
.y20a{bottom:860.512500px;}
.y14a{bottom:862.387500px;}
.y19f{bottom:868.387500px;}
.y174{bottom:870.262500px;}
.y7b{bottom:872.512500px;}
.y209{bottom:874.012500px;}
.y149{bottom:880.387500px;}
.y19e{bottom:886.387500px;}
.y208{bottom:887.887500px;}
.y173{bottom:888.262500px;}
.y7a{bottom:890.512500px;}
.y253{bottom:895.755000px;}
.y148{bottom:898.387500px;}
.y207{bottom:901.387500px;}
.y19d{bottom:904.387500px;}
.y172{bottom:906.262500px;}
.y115{bottom:908.880000px;}
.y79{bottom:908.887500px;}
.y273{bottom:910.005000px;}
.y206{bottom:914.887500px;}
.y147{bottom:919.012500px;}
.y19c{bottom:922.762500px;}
.y171{bottom:924.637500px;}
.y113{bottom:925.395000px;}
.y78{bottom:926.887500px;}
.y205{bottom:928.387500px;}
.y250{bottom:938.895000px;}
.y19b{bottom:940.762500px;}
.y204{bottom:942.262500px;}
.y146{bottom:942.637500px;}
.y77{bottom:944.887500px;}
.y203{bottom:955.762500px;}
.y1d3{bottom:957.675000px;}
.y170{bottom:960.637500px;}
.y145{bottom:961.042500px;}
.y19a{bottom:961.387500px;}
.y112{bottom:962.925000px;}
.y76{bottom:963.262500px;}
.y202{bottom:969.262500px;}
.y1d2{bottom:974.175000px;}
.y144{bottom:979.042500px;}
.y75{bottom:981.292500px;}
.y24e{bottom:982.425000px;}
.y201{bottom:982.792500px;}
.y199{bottom:985.042500px;}
.y10b{bottom:986.925000px;}
.y19{bottom:991.800000px;}
.y200{bottom:996.292500px;}
.y143{bottom:997.042500px;}
.y74{bottom:999.292500px;}
.y16f{bottom:999.667500px;}
.y198{bottom:1003.042500px;}
.y10{bottom:1007.925000px;}
.y72{bottom:1009.417500px;}
.y1ff{bottom:1010.167500px;}
.y1d1{bottom:1013.175000px;}
.y142{bottom:1015.417500px;}
.y73{bottom:1017.292500px;}
.y197{bottom:1021.417500px;}
.y16e{bottom:1023.292500px;}
.y1fe{bottom:1023.667500px;}
.y24d{bottom:1025.925000px;}
.y141{bottom:1033.417500px;}
.y1fd{bottom:1037.167500px;}
.y196{bottom:1039.417500px;}
.y16d{bottom:1041.292500px;}
.y1cd{bottom:1041.300000px;}
.y1fb{bottom:1045.042500px;}
.y1fc{bottom:1050.667500px;}
.y140{bottom:1051.417500px;}
.y24a{bottom:1054.800000px;}
.y195{bottom:1057.417500px;}
.y16c{bottom:1059.292500px;}
.y249{bottom:1112.955000px;}
.y70{bottom:1136.955000px;}
.y272{bottom:1141.830000px;}
.y6e{bottom:1153.455000px;}
.y247{bottom:1156.455000px;}
.y1f9{bottom:1168.830000px;}
.y6b{bottom:1189.830000px;}
.y2{bottom:1206.375000px;}
.y6a{bottom:1208.625000px;}
.y1{bottom:1226.625000px;}
.y69{bottom:1227.375000px;}
.h6b{height:3.001465px;}
.hd{height:3.999023px;}
.h30{height:4.166016px;}
.h26{height:4.875000px;}
.h42{height:4.910156px;}
.h25{height:5.250000px;}
.h9{height:5.625000px;}
.h1b{height:5.662500px;}
.h27{height:6.002930px;}
.h23{height:9.820312px;}
.ha{height:12.005859px;}
.h1c{height:12.498047px;}
.h68{height:14.250000px;}
.h56{height:14.287500px;}
.h63{height:14.625000px;}
.h1d{height:14.730469px;}
.h1f{height:15.375000px;}
.h14{height:16.125000px;}
.h33{height:16.500000px;}
.h52{height:17.250000px;}
.h59{height:28.875000px;}
.h5a{height:29.250000px;}
.h6{height:31.912500px;}
.h43{height:31.916016px;}
.h31{height:32.625000px;}
.h45{height:32.647500px;}
.h4f{height:32.662500px;}
.h3c{height:33.000000px;}
.h69{height:33.750000px;}
.h2b{height:36.000000px;}
.h17{height:36.017578px;}
.h6a{height:36.787500px;}
.hb{height:38.250000px;}
.h2f{height:38.625000px;}
.h41{height:39.019043px;}
.h10{height:39.281250px;}
.h2c{height:40.500000px;}
.h2d{height:41.405659px;}
.h20{height:41.736328px;}
.h5e{height:43.125000px;}
.h5b{height:43.500000px;}
.h5d{height:43.522500px;}
.h7{height:43.875000px;}
.h55{height:45.021973px;}
.h8{height:48.023438px;}
.h4b{height:49.101562px;}
.h15{height:49.189453px;}
.h2{height:49.804688px;}
.h28{height:49.875000px;}
.h3{height:49.992188px;}
.h1a{height:51.024902px;}
.h2a{height:54.026367px;}
.h53{height:57.027832px;}
.h60{height:57.787500px;}
.h57{height:58.125000px;}
.h5c{height:58.162500px;}
.h36{height:60.029297px;}
.h37{height:60.079043px;}
.h49{height:60.139043px;}
.h38{height:60.199043px;}
.h29{height:63.000000px;}
.h2e{height:68.742188px;}
.h5{height:72.035156px;}
.h51{height:72.412500px;}
.h3a{height:78.703125px;}
.h4{height:80.287500px;}
.h4d{height:83.320312px;}
.h13{height:84.667969px;}
.h61{height:87.000000px;}
.h35{height:88.541016px;}
.h12{height:89.648438px;}
.h24{height:91.162500px;}
.h3b{height:96.046875px;}
.h3d{height:98.378906px;}
.h58{height:101.287500px;}
.hc{height:108.000000px;}
.h50{height:108.412500px;}
.h5f{height:115.912500px;}
.h32{height:120.058594px;}
.hf{height:139.453125px;}
.h4c{height:144.787500px;}
.h16{height:157.530000px;}
.h22{height:164.295000px;}
.h11{height:194.280000px;}
.h44{height:199.155000px;}
.h65{height:231.825000px;}
.h66{height:260.700000px;}
.h64{height:304.200000px;}
.h21{height:369.495000px;}
.h1e{height:381.855000px;}
.h40{height:401.370000px;}
.h19{height:415.650000px;}
.h4e{height:452.775000px;}
.h39{height:457.980000px;}
.h3e{height:543.525000px;}
.h3f{height:595.635000px;}
.h67{height:616.680000px;}
.h46{height:802.725000px;}
.h18{height:810.645000px;}
.he{height:1021.050000px;}
.h34{height:1032.300000px;}
.h54{height:1061.925000px;}
.h47{height:1066.425000px;}
.h4a{height:1072.425000px;}
.h48{height:1074.300000px;}
.h62{height:1075.050000px;}
.h0{height:1261.125000px;}
.h1{height:1261.500000px;}
.wb{width:18.000000px;}
.w1c{width:18.750000px;}
.w7{width:24.787500px;}
.w16{width:40.125000px;}
.w18{width:50.625000px;}
.w5{width:59.250000px;}
.w6{width:62.625000px;}
.w13{width:85.537500px;}
.w22{width:87.037500px;}
.wf{width:95.662500px;}
.w2{width:97.537500px;}
.w11{width:106.162500px;}
.w1e{width:112.162500px;}
.we{width:114.787500px;}
.w14{width:117.037500px;}
.w10{width:127.537500px;}
.w23{width:137.662500px;}
.w9{width:143.325000px;}
.w1f{width:150.450000px;}
.w12{width:154.575000px;}
.w24{width:173.700000px;}
.w25{width:178.950000px;}
.w3{width:182.700000px;}
.wa{width:184.950000px;}
.w26{width:188.700000px;}
.w20{width:214.200000px;}
.w21{width:289.245000px;}
.wd{width:328.275000px;}
.w1a{width:329.775000px;}
.wc{width:392.400000px;}
.w1b{width:420.900000px;}
.w4{width:461.820000px;}
.w8{width:713.895000px;}
.w19{width:750.675000px;}
.w17{width:761.175000px;}
.w27{width:766.050000px;}
.w1d{width:782.550000px;}
.w15{width:801.300000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:8.250000px;}
.x18{left:13.875000px;}
.x1a{left:18.420000px;}
.xb{left:19.485000px;}
.x1c{left:26.280000px;}
.x8{left:34.125000px;}
.x2b{left:35.250000px;}
.xc{left:44.250000px;}
.x2{left:45.787500px;}
.xa{left:51.000000px;}
.x1{left:54.037487px;}
.x25{left:61.912500px;}
.x2a{left:64.537500px;}
.xd{left:66.000000px;}
.x2c{left:72.787500px;}
.x23{left:85.912500px;}
.x3{left:89.287500px;}
.x22{left:95.287487px;}
.x26{left:96.412500px;}
.xe{left:104.662500px;}
.xf{left:108.412500px;}
.x1f{left:109.530000px;}
.x10{left:133.200000px;}
.x15{left:140.707500px;}
.x4{left:143.325000px;}
.x11{left:144.832500px;}
.x16{left:160.575000px;}
.x5{left:174.825000px;}
.x2d{left:184.950000px;}
.x12{left:251.745000px;}
.x17{left:256.245000px;}
.x30{left:297.495000px;}
.x6{left:326.025000px;}
.x2e{left:335.400000px;}
.x33{left:348.907500px;}
.x19{left:383.775000px;}
.x29{left:407.385000px;}
.x28{left:412.650000px;}
.x20{left:416.069987px;}
.x27{left:426.195000px;}
.x13{left:436.695000px;}
.x34{left:446.812500px;}
.x14{left:454.695000px;}
.x31{left:471.195000px;}
.x1b{left:489.945000px;}
.x24{left:531.599987px;}
.x2f{left:549.600000px;}
.x1d{left:644.520000px;}
.x32{left:650.145000px;}
.x1e{left:730.050000px;}
.x9{left:787.845000px;}
.x21{left:838.844987px;}
@media print{
.v3{vertical-align:-18.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.666667pt;}
.v1{vertical-align:21.333333pt;}
.ls12{letter-spacing:-1.333333pt;}
.ls1b{letter-spacing:-1.157333pt;}
.ls1e{letter-spacing:-0.928000pt;}
.ls1c{letter-spacing:-0.520000pt;}
.ls3{letter-spacing:-0.506667pt;}
.ls7{letter-spacing:-0.402667pt;}
.lsf{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.064000pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.093333pt;}
.ls14{letter-spacing:0.146667pt;}
.ls19{letter-spacing:0.173333pt;}
.lsb{letter-spacing:0.213333pt;}
.ls1d{letter-spacing:0.224000pt;}
.ls18{letter-spacing:0.293333pt;}
.ls8{letter-spacing:0.330667pt;}
.ls1{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.405333pt;}
.ls0{letter-spacing:0.458667pt;}
.ls9{letter-spacing:0.512000pt;}
.ls1a{letter-spacing:0.544000pt;}
.ls1f{letter-spacing:0.704000pt;}
.ls17{letter-spacing:0.826667pt;}
.ls11{letter-spacing:1.173333pt;}
.ls6{letter-spacing:1.488000pt;}
.lse{letter-spacing:3.306667pt;}
.ls10{letter-spacing:5.973333pt;}
.ls16{letter-spacing:28.880000pt;}
.lsc{letter-spacing:49.008000pt;}
.ls13{letter-spacing:51.546667pt;}
.wsc{word-spacing:-64.000000pt;}
.ws3{word-spacing:-39.722667pt;}
.wsa{word-spacing:-29.440000pt;}
.ws2{word-spacing:-27.968000pt;}
.wse{word-spacing:-16.693333pt;}
.wsd{word-spacing:-16.480000pt;}
.ws6{word-spacing:-15.354667pt;}
.ws7{word-spacing:-15.024000pt;}
.ws15{word-spacing:-13.578667pt;}
.ws1{word-spacing:-13.354667pt;}
.ws14{word-spacing:-13.346667pt;}
.ws5{word-spacing:-13.282667pt;}
.ws12{word-spacing:-13.064000pt;}
.wsf{word-spacing:-12.813333pt;}
.ws10{word-spacing:-12.693333pt;}
.ws11{word-spacing:-12.520000pt;}
.ws9{word-spacing:-12.501333pt;}
.ws0{word-spacing:-12.013333pt;}
.ws13{word-spacing:-11.362667pt;}
.wsb{word-spacing:-10.850667pt;}
.ws4{word-spacing:-10.016000pt;}
.ws8{word-spacing:0.000000pt;}
._24{margin-left:-3.237333pt;}
._1d{margin-left:-2.082667pt;}
._0{margin-left:-1.120000pt;}
._1{width:1.240000pt;}
._d{width:2.282667pt;}
._e{width:3.445333pt;}
._8{width:5.085333pt;}
._9{width:6.138667pt;}
._f{width:7.104000pt;}
._19{width:8.680000pt;}
._1e{width:10.437333pt;}
._25{width:11.330667pt;}
._10{width:12.224000pt;}
._21{width:13.120000pt;}
._22{width:14.026667pt;}
._23{width:14.986667pt;}
._1b{width:16.077333pt;}
._1a{width:17.032000pt;}
._1c{width:18.269333pt;}
._15{width:19.176000pt;}
._14{width:20.536000pt;}
._18{width:21.472000pt;}
._17{width:22.530667pt;}
._16{width:23.618667pt;}
._b{width:24.858667pt;}
._c{width:26.429333pt;}
._13{width:27.834667pt;}
._4{width:29.074667pt;}
._37{width:29.994667pt;}
._5{width:31.261333pt;}
._a{width:32.730667pt;}
._3{width:33.850667pt;}
._2{width:34.877333pt;}
._11{width:36.629333pt;}
._29{width:37.557333pt;}
._2a{width:38.453333pt;}
._28{width:39.453333pt;}
._35{width:41.557333pt;}
._31{width:42.682667pt;}
._44{width:43.648000pt;}
._26{width:44.693333pt;}
._2b{width:45.632000pt;}
._48{width:46.658667pt;}
._3e{width:47.557333pt;}
._27{width:48.480000pt;}
._3f{width:50.653333pt;}
._47{width:52.632000pt;}
._41{width:53.640000pt;}
._45{width:55.456000pt;}
._12{width:56.728000pt;}
._53{width:58.368000pt;}
._2c{width:60.541333pt;}
._4d{width:61.536000pt;}
._30{width:63.744000pt;}
._2f{width:65.706667pt;}
._42{width:68.093333pt;}
._32{width:70.144000pt;}
._33{width:71.168000pt;}
._2e{width:74.717333pt;}
._38{width:77.696000pt;}
._4c{width:81.376000pt;}
._4f{width:82.501333pt;}
._3b{width:83.448000pt;}
._34{width:85.888000pt;}
._36{width:90.749333pt;}
._6{width:92.208000pt;}
._7{width:93.205333pt;}
._4a{width:94.122667pt;}
._46{width:96.733333pt;}
._51{width:97.834667pt;}
._50{width:99.541333pt;}
._43{width:103.594667pt;}
._39{width:106.112000pt;}
._2d{width:114.645333pt;}
._3a{width:126.208000pt;}
._3d{width:135.709333pt;}
._54{width:137.482667pt;}
._40{width:163.669333pt;}
._20{width:166.122667pt;}
._1f{width:167.589333pt;}
._4b{width:170.237333pt;}
._52{width:186.154667pt;}
._49{width:211.754667pt;}
._4e{width:225.469333pt;}
._3c{width:255.368000pt;}
.fs15{font-size:2.666667pt;}
.fs7{font-size:5.333333pt;}
.fs4{font-size:10.666667pt;}
.fsd{font-size:16.000000pt;}
.fsb{font-size:32.000000pt;}
.fs12{font-size:34.666667pt;}
.fs6{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs10{font-size:44.974166pt;}
.fsc{font-size:45.333333pt;}
.fsf{font-size:48.000000pt;}
.fs14{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fse{font-size:74.666667pt;}
.fs13{font-size:85.333333pt;}
.fsa{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs11{font-size:106.666667pt;}
.fs5{font-size:128.000000pt;}
.fs8{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:0.013333pt;}
.y41{bottom:1.026667pt;}
.y40{bottom:1.373333pt;}
.y10a{bottom:1.666667pt;}
.y63{bottom:1.680000pt;}
.y6d{bottom:2.000000pt;}
.y61{bottom:2.013333pt;}
.y252{bottom:2.320000pt;}
.ya{bottom:2.333333pt;}
.y244{bottom:2.346667pt;}
.yc2{bottom:2.666667pt;}
.y1f6{bottom:2.680000pt;}
.y1a{bottom:3.000000pt;}
.y62{bottom:3.346667pt;}
.y4{bottom:4.333333pt;}
.y1cc{bottom:5.000000pt;}
.y18{bottom:5.333333pt;}
.y114{bottom:6.320000pt;}
.y6f{bottom:6.333333pt;}
.yc5{bottom:6.666667pt;}
.yb{bottom:7.666667pt;}
.y5{bottom:9.000000pt;}
.y5f{bottom:10.013333pt;}
.y109{bottom:12.333333pt;}
.y7{bottom:13.366667pt;}
.y246{bottom:14.993333pt;}
.y248{bottom:15.000000pt;}
.y243{bottom:15.013333pt;}
.y23c{bottom:15.333333pt;}
.y251{bottom:15.360000pt;}
.y3e{bottom:16.040000pt;}
.y65{bottom:16.993333pt;}
.y66{bottom:17.340000pt;}
.y8{bottom:18.333333pt;}
.y6c{bottom:18.666667pt;}
.y1f5{bottom:18.680000pt;}
.y1ef{bottom:18.693333pt;}
.yc{bottom:19.000000pt;}
.y3{bottom:20.333333pt;}
.y13f{bottom:21.000000pt;}
.yc1{bottom:21.666667pt;}
.y108{bottom:22.666667pt;}
.y5e{bottom:23.706667pt;}
.y1cb{bottom:26.000000pt;}
.y23b{bottom:28.000000pt;}
.y242{bottom:28.013333pt;}
.y24f{bottom:28.333333pt;}
.y24c{bottom:28.360000pt;}
.y3d{bottom:29.706667pt;}
.y17{bottom:30.000000pt;}
.y107{bottom:31.333333pt;}
.y1f4{bottom:34.666667pt;}
.y193{bottom:34.673333pt;}
.y1ee{bottom:34.706667pt;}
.ya9{bottom:35.000000pt;}
.y16b{bottom:35.006667pt;}
.y1d0{bottom:35.026667pt;}
.y67{bottom:35.673333pt;}
.y5d{bottom:37.373333pt;}
.y104{bottom:37.660000pt;}
.yc0{bottom:37.666667pt;}
.y257{bottom:40.666667pt;}
.y25a{bottom:40.693333pt;}
.y25d{bottom:40.706667pt;}
.y271{bottom:40.993333pt;}
.y23a{bottom:41.000000pt;}
.y24b{bottom:41.026667pt;}
.y241{bottom:41.040000pt;}
.y13e{bottom:41.993333pt;}
.y1ca{bottom:42.006667pt;}
.y3c{bottom:43.373333pt;}
.y28c{bottom:47.373333pt;}
.y1f3{bottom:49.373333pt;}
.y16a{bottom:50.993333pt;}
.yeb{bottom:51.000000pt;}
.y192{bottom:51.006667pt;}
.y1cf{bottom:51.026667pt;}
.y5c{bottom:51.040000pt;}
.ya8{bottom:51.340000pt;}
.y260{bottom:53.666667pt;}
.y103{bottom:53.673333pt;}
.y289{bottom:53.693333pt;}
.y240{bottom:53.706667pt;}
.y27d{bottom:54.040000pt;}
.y9{bottom:54.333333pt;}
.y16{bottom:54.666667pt;}
.ybf{bottom:56.333333pt;}
.y3b{bottom:57.040000pt;}
.y13d{bottom:58.006667pt;}
.y1c9{bottom:58.340000pt;}
.y28b{bottom:59.706667pt;}
.y6{bottom:63.333333pt;}
.y5b{bottom:64.706667pt;}
.y25f{bottom:66.666667pt;}
.y270{bottom:66.673333pt;}
.y256{bottom:66.693333pt;}
.y23f{bottom:66.706667pt;}
.y191{bottom:66.993333pt;}
.y111{bottom:67.000000pt;}
.y169{bottom:67.006667pt;}
.y1ce{bottom:67.026667pt;}
.ya7{bottom:67.326667pt;}
.yea{bottom:67.333333pt;}
.ycd{bottom:67.340000pt;}
.y102{bottom:70.006667pt;}
.y22{bottom:70.666667pt;}
.y3a{bottom:70.706667pt;}
.y1c8{bottom:74.326667pt;}
.y13c{bottom:74.340000pt;}
.ybe{bottom:75.333333pt;}
.y5a{bottom:77.040000pt;}
.y15{bottom:79.360000pt;}
.y26f{bottom:79.660000pt;}
.y288{bottom:79.693333pt;}
.y23e{bottom:79.706667pt;}
.y21{bottom:80.333333pt;}
.y1ec{bottom:81.373333pt;}
.y190{bottom:83.006667pt;}
.y1ed{bottom:83.040000pt;}
.ycc{bottom:83.326667pt;}
.ye9{bottom:83.333333pt;}
.ya6{bottom:83.340000pt;}
.y110{bottom:83.360000pt;}
.y168{bottom:83.366667pt;}
.y1e7{bottom:83.373333pt;}
.y39{bottom:84.373333pt;}
.y101{bottom:86.033333pt;}
.y20{bottom:90.000000pt;}
.y13b{bottom:90.366667pt;}
.y255{bottom:92.360000pt;}
.y26e{bottom:92.366667pt;}
.y27c{bottom:92.706667pt;}
.y71{bottom:93.033333pt;}
.ybd{bottom:94.026667pt;}
.y116{bottom:94.366667pt;}
.yc7{bottom:94.700000pt;}
.y1fa{bottom:95.033333pt;}
.y38{bottom:98.040000pt;}
.yef{bottom:98.700000pt;}
.ye8{bottom:99.333333pt;}
.y10f{bottom:99.360000pt;}
.ya5{bottom:99.366667pt;}
.y1e6{bottom:99.373333pt;}
.y1f{bottom:99.666667pt;}
.y194{bottom:101.033333pt;}
.y1f8{bottom:101.700000pt;}
.y100{bottom:102.033333pt;}
.y14{bottom:104.026667pt;}
.y287{bottom:105.360000pt;}
.y26d{bottom:105.366667pt;}
.y27b{bottom:105.373333pt;}
.y68{bottom:106.366667pt;}
.y1c7{bottom:108.700000pt;}
.y1e{bottom:109.373333pt;}
.ybc{bottom:110.026667pt;}
.y37{bottom:111.706667pt;}
.y10e{bottom:115.360000pt;}
.y167{bottom:115.366667pt;}
.y1e5{bottom:115.373333pt;}
.ye7{bottom:115.693333pt;}
.ya4{bottom:115.700000pt;}
.y64{bottom:116.700000pt;}
.yff{bottom:118.033333pt;}
.y286{bottom:118.360000pt;}
.y27a{bottom:118.373333pt;}
.y1d{bottom:119.040000pt;}
.y245{bottom:121.033333pt;}
.y13a{bottom:122.366667pt;}
.y36{bottom:125.400000pt;}
.y13{bottom:128.693333pt;}
.ybb{bottom:129.026667pt;}
.y1c{bottom:129.373333pt;}
.y1c6{bottom:129.700000pt;}
.y285{bottom:131.026667pt;}
.y26c{bottom:131.033333pt;}
.y279{bottom:131.040000pt;}
.y18f{bottom:131.366667pt;}
.ye6{bottom:131.693333pt;}
.ya3{bottom:131.700000pt;}
.y1e4{bottom:131.706667pt;}
.yfe{bottom:134.366667pt;}
.y1f7{bottom:134.373333pt;}
.y139{bottom:138.700000pt;}
.y35{bottom:139.066667pt;}
.y57{bottom:139.080000pt;}
.y59{bottom:143.373333pt;}
.y284{bottom:144.026667pt;}
.y26b{bottom:144.033333pt;}
.y278{bottom:144.040000pt;}
.yba{bottom:145.026667pt;}
.y1c5{bottom:145.700000pt;}
.y23d{bottom:146.693333pt;}
.y18e{bottom:147.366667pt;}
.ye5{bottom:147.693333pt;}
.ya2{bottom:147.700000pt;}
.y1e3{bottom:147.706667pt;}
.y1f2{bottom:149.360000pt;}
.yfd{bottom:150.366667pt;}
.y11{bottom:152.360000pt;}
.y34{bottom:152.733333pt;}
.y12{bottom:153.360000pt;}
.y138{bottom:154.700000pt;}
.y283{bottom:156.693333pt;}
.y26a{bottom:156.700000pt;}
.y277{bottom:157.066667pt;}
.yd{bottom:161.026667pt;}
.yb9{bottom:161.360000pt;}
.y10c{bottom:162.026667pt;}
.y1c4{bottom:162.033333pt;}
.y10d{bottom:163.693333pt;}
.ya1{bottom:163.700000pt;}
.y1e2{bottom:163.706667pt;}
.y60{bottom:165.360000pt;}
.y18d{bottom:165.700000pt;}
.ye4{bottom:166.026667pt;}
.yfc{bottom:166.366667pt;}
.y33{bottom:166.400000pt;}
.y56{bottom:166.413333pt;}
.y269{bottom:169.700000pt;}
.y276{bottom:169.733333pt;}
.y4b{bottom:170.026667pt;}
.y137{bottom:170.700000pt;}
.yb8{bottom:177.360000pt;}
.y1c3{bottom:178.033333pt;}
.y166{bottom:179.700000pt;}
.ya0{bottom:180.033333pt;}
.y32{bottom:180.066667pt;}
.yfb{bottom:182.700000pt;}
.y282{bottom:182.720000pt;}
.y275{bottom:182.733333pt;}
.y18c{bottom:186.700000pt;}
.y136{bottom:187.033333pt;}
.ye3{bottom:189.360000pt;}
.yb7{bottom:193.360000pt;}
.y31{bottom:193.733333pt;}
.y55{bottom:193.746667pt;}
.y1c2{bottom:194.033333pt;}
.y268{bottom:195.366667pt;}
.y281{bottom:195.386667pt;}
.y274{bottom:195.733333pt;}
.y9f{bottom:196.033333pt;}
.y1e1{bottom:196.066667pt;}
.y165{bottom:196.073333pt;}
.yfa{bottom:198.740000pt;}
.y135{bottom:203.073333pt;}
.y30{bottom:207.400000pt;}
.y54{bottom:207.413333pt;}
.y280{bottom:208.386667pt;}
.y267{bottom:208.406667pt;}
.y237{bottom:209.726667pt;}
.yb6{bottom:209.733333pt;}
.ye2{bottom:210.360000pt;}
.y1c1{bottom:210.406667pt;}
.y9e{bottom:212.060000pt;}
.y1e0{bottom:212.066667pt;}
.ycb{bottom:212.073333pt;}
.y1f1{bottom:213.733333pt;}
.yf9{bottom:214.726667pt;}
.y134{bottom:219.060000pt;}
.y18b{bottom:219.073333pt;}
.y266{bottom:221.060000pt;}
.y2f{bottom:221.066667pt;}
.y53{bottom:221.080000pt;}
.y27f{bottom:221.386667pt;}
.y43{bottom:221.400000pt;}
.y236{bottom:221.726667pt;}
.yb5{bottom:225.733333pt;}
.ye1{bottom:226.386667pt;}
.y1c0{bottom:226.406667pt;}
.y164{bottom:228.060000pt;}
.y1df{bottom:228.066667pt;}
.yca{bottom:228.393333pt;}
.y9d{bottom:228.406667pt;}
.yf8{bottom:230.740000pt;}
.y235{bottom:233.726667pt;}
.y265{bottom:234.073333pt;}
.y52{bottom:234.746667pt;}
.y2e{bottom:234.773333pt;}
.y18a{bottom:235.060000pt;}
.y133{bottom:235.073333pt;}
.y239{bottom:236.733333pt;}
.ye0{bottom:242.386667pt;}
.y1bf{bottom:242.393333pt;}
.yb4{bottom:244.066667pt;}
.y163{bottom:244.073333pt;}
.y9c{bottom:244.393333pt;}
.y1de{bottom:244.400000pt;}
.yc9{bottom:244.406667pt;}
.y234{bottom:245.726667pt;}
.yf7{bottom:247.073333pt;}
.y2d{bottom:248.426667pt;}
.y51{bottom:248.440000pt;}
.y58{bottom:251.066667pt;}
.y189{bottom:251.073333pt;}
.y132{bottom:251.406667pt;}
.y233{bottom:257.726667pt;}
.y1be{bottom:258.406667pt;}
.ydf{bottom:258.720000pt;}
.y264{bottom:259.740000pt;}
.y1dd{bottom:260.400000pt;}
.y9b{bottom:260.406667pt;}
.y1f0{bottom:261.733333pt;}
.y2c{bottom:262.093333pt;}
.y50{bottom:262.106667pt;}
.yf6{bottom:263.073333pt;}
.yb3{bottom:265.066667pt;}
.y131{bottom:267.406667pt;}
.y232{bottom:270.073333pt;}
.yde{bottom:274.720000pt;}
.y1bd{bottom:274.740000pt;}
.y2b{bottom:275.760000pt;}
.y4f{bottom:275.773333pt;}
.y1dc{bottom:276.400000pt;}
.y9a{bottom:276.406667pt;}
.yf5{bottom:279.073333pt;}
.y49{bottom:280.093333pt;}
.yb2{bottom:281.066667pt;}
.y231{bottom:282.073333pt;}
.y1eb{bottom:283.066667pt;}
.y130{bottom:283.406667pt;}
.y262{bottom:287.073333pt;}
.y238{bottom:289.066667pt;}
.y2a{bottom:289.426667pt;}
.y4e{bottom:289.440000pt;}
.y48{bottom:289.760000pt;}
.ydd{bottom:290.720000pt;}
.y162{bottom:292.406667pt;}
.y99{bottom:292.740000pt;}
.y1db{bottom:292.773333pt;}
.y1bc{bottom:293.073333pt;}
.y230{bottom:294.073333pt;}
.yf4{bottom:295.406667pt;}
.yb1{bottom:297.066667pt;}
.y188{bottom:299.406667pt;}
.y47{bottom:299.426667pt;}
.y261{bottom:299.740000pt;}
.y12f{bottom:301.740000pt;}
.y29{bottom:303.093333pt;}
.y4d{bottom:303.106667pt;}
.y22f{bottom:306.073333pt;}
.ydc{bottom:306.720000pt;}
.y98{bottom:308.740000pt;}
.y1da{bottom:308.760000pt;}
.y161{bottom:308.766667pt;}
.y46{bottom:309.093333pt;}
.yf3{bottom:311.433333pt;}
.yb0{bottom:313.426667pt;}
.y1bb{bottom:314.100000pt;}
.y187{bottom:315.766667pt;}
.y28{bottom:316.760000pt;}
.y4c{bottom:317.106667pt;}
.y22e{bottom:318.100000pt;}
.y45{bottom:318.760000pt;}
.y12e{bottom:322.766667pt;}
.ydb{bottom:323.053333pt;}
.y1d9{bottom:324.760000pt;}
.y97{bottom:324.766667pt;}
.yf2{bottom:327.433333pt;}
.y44{bottom:328.760000pt;}
.yaf{bottom:329.426667pt;}
.y1ba{bottom:330.100000pt;}
.y22d{bottom:330.433333pt;}
.y27{bottom:330.760000pt;}
.y186{bottom:331.766667pt;}
.y12d{bottom:338.766667pt;}
.yda{bottom:339.093333pt;}
.y1d8{bottom:340.760000pt;}
.y160{bottom:340.766667pt;}
.y96{bottom:341.100000pt;}
.yf0{bottom:341.766667pt;}
.y22c{bottom:342.433333pt;}
.yf1{bottom:343.433333pt;}
.y26{bottom:344.466667pt;}
.y106{bottom:345.100000pt;}
.yae{bottom:345.426667pt;}
.y1b9{bottom:346.100000pt;}
.y105{bottom:348.100000pt;}
.y185{bottom:350.100000pt;}
.y22b{bottom:354.433333pt;}
.yd9{bottom:355.093333pt;}
.y12c{bottom:355.100000pt;}
.y15f{bottom:356.766667pt;}
.y1d7{bottom:357.093333pt;}
.y95{bottom:357.100000pt;}
.y25{bottom:358.133333pt;}
.yad{bottom:361.760000pt;}
.y1b8{bottom:362.100000pt;}
.y22a{bottom:366.433333pt;}
.y263{bottom:369.773333pt;}
.y12b{bottom:371.100000pt;}
.yd8{bottom:371.426667pt;}
.y1d6{bottom:373.093333pt;}
.y94{bottom:373.100000pt;}
.yac{bottom:377.760000pt;}
.y1b7{bottom:378.433333pt;}
.y229{bottom:378.766667pt;}
.y1ea{bottom:379.440000pt;}
.y12a{bottom:387.100000pt;}
.yd7{bottom:387.426667pt;}
.y1d5{bottom:389.093333pt;}
.y93{bottom:389.100000pt;}
.y228{bottom:390.766667pt;}
.yab{bottom:393.760000pt;}
.y1e9{bottom:394.106667pt;}
.y1b6{bottom:394.433333pt;}
.y42{bottom:397.106667pt;}
.y227{bottom:402.766667pt;}
.y184{bottom:403.100000pt;}
.yd6{bottom:403.426667pt;}
.y129{bottom:403.433333pt;}
.y15e{bottom:405.100000pt;}
.y92{bottom:405.433333pt;}
.y25e{bottom:409.800000pt;}
.y1b5{bottom:410.433333pt;}
.y226{bottom:414.766667pt;}
.yd5{bottom:419.426667pt;}
.y128{bottom:419.433333pt;}
.y183{bottom:419.473333pt;}
.y91{bottom:421.433333pt;}
.y15d{bottom:421.473333pt;}
.y1b4{bottom:426.806667pt;}
.y1e8{bottom:427.466667pt;}
.y127{bottom:435.473333pt;}
.yd4{bottom:435.786667pt;}
.y90{bottom:437.473333pt;}
.y225{bottom:439.140000pt;}
.y1b3{bottom:442.806667pt;}
.y1d4{bottom:448.800000pt;}
.y224{bottom:451.140000pt;}
.y126{bottom:451.473333pt;}
.yd3{bottom:451.786667pt;}
.y15c{bottom:453.473333pt;}
.y8f{bottom:453.806667pt;}
.yee{bottom:455.466667pt;}
.y1b2{bottom:458.806667pt;}
.y223{bottom:463.140000pt;}
.yd2{bottom:467.786667pt;}
.y125{bottom:467.806667pt;}
.yc8{bottom:468.140000pt;}
.y15b{bottom:469.473333pt;}
.y8e{bottom:469.806667pt;}
.yed{bottom:470.133333pt;}
.y1b1{bottom:474.806667pt;}
.y222{bottom:475.140000pt;}
.y124{bottom:483.806667pt;}
.yd1{bottom:484.120000pt;}
.y8d{bottom:485.806667pt;}
.y25c{bottom:487.133333pt;}
.y221{bottom:487.140000pt;}
.y28e{bottom:490.133333pt;}
.y1b0{bottom:491.140000pt;}
.y4a{bottom:498.466667pt;}
.y220{bottom:499.473333pt;}
.y123{bottom:499.806667pt;}
.yd0{bottom:500.120000pt;}
.y8c{bottom:501.806667pt;}
.yec{bottom:503.466667pt;}
.y15a{bottom:504.140000pt;}
.y28a{bottom:506.133333pt;}
.y1af{bottom:507.140000pt;}
.y21f{bottom:511.473333pt;}
.y24{bottom:512.133333pt;}
.y182{bottom:515.806667pt;}
.ycf{bottom:516.120000pt;}
.y122{bottom:516.140000pt;}
.y8b{bottom:518.140000pt;}
.y21e{bottom:523.473333pt;}
.yce{bottom:524.840000pt;}
.y159{bottom:525.166667pt;}
.y1ae{bottom:525.473333pt;}
.y121{bottom:532.140000pt;}
.y181{bottom:532.166667pt;}
.y8a{bottom:534.166667pt;}
.y21d{bottom:535.500000pt;}
.y25b{bottom:538.506667pt;}
.y28d{bottom:538.840000pt;}
.y158{bottom:541.166667pt;}
.y1ad{bottom:546.500000pt;}
.y21c{bottom:547.500000pt;}
.y120{bottom:548.166667pt;}
.y89{bottom:550.166667pt;}
.y157{bottom:557.166667pt;}
.y21b{bottom:559.833333pt;}
.y1ac{bottom:562.500000pt;}
.y11f{bottom:564.166667pt;}
.y88{bottom:566.500000pt;}
.y21a{bottom:571.833333pt;}
.y156{bottom:573.500000pt;}
.y27e{bottom:577.173333pt;}
.yc6{bottom:577.840000pt;}
.y1ab{bottom:578.833333pt;}
.y180{bottom:580.500000pt;}
.y87{bottom:582.500000pt;}
.y219{bottom:583.833333pt;}
.y155{bottom:589.500000pt;}
.y259{bottom:590.173333pt;}
.yc4{bottom:592.173333pt;}
.y1aa{bottom:594.833333pt;}
.y218{bottom:595.833333pt;}
.y17f{bottom:596.500000pt;}
.y86{bottom:598.500000pt;}
.y11e{bottom:603.500000pt;}
.y154{bottom:605.500000pt;}
.y217{bottom:608.166667pt;}
.y1a9{bottom:610.833333pt;}
.y17e{bottom:612.500000pt;}
.y85{bottom:614.500000pt;}
.y11d{bottom:619.833333pt;}
.y216{bottom:620.166667pt;}
.y153{bottom:621.500000pt;}
.yc3{bottom:625.840000pt;}
.y1a8{bottom:626.833333pt;}
.y17d{bottom:628.500000pt;}
.y84{bottom:630.833333pt;}
.y215{bottom:632.166667pt;}
.y11c{bottom:635.833333pt;}
.y152{bottom:637.860000pt;}
.y258{bottom:641.533333pt;}
.y1a7{bottom:643.193333pt;}
.y214{bottom:644.193333pt;}
.y17c{bottom:644.860000pt;}
.y83{bottom:646.860000pt;}
.yaa{bottom:647.200000pt;}
.y11b{bottom:651.860000pt;}
.y151{bottom:653.860000pt;}
.y213{bottom:656.193333pt;}
.y1a6{bottom:659.193333pt;}
.y17b{bottom:660.860000pt;}
.y82{bottom:662.873333pt;}
.y11a{bottom:668.206667pt;}
.y212{bottom:668.526667pt;}
.y150{bottom:669.860000pt;}
.y1a5{bottom:675.193333pt;}
.y17a{bottom:676.860000pt;}
.y81{bottom:678.860000pt;}
.y211{bottom:680.526667pt;}
.y119{bottom:684.193333pt;}
.y14f{bottom:685.860000pt;}
.y1a4{bottom:691.193333pt;}
.y210{bottom:692.526667pt;}
.y179{bottom:692.860000pt;}
.y254{bottom:693.200000pt;}
.y80{bottom:695.193333pt;}
.y117{bottom:698.526667pt;}
.y118{bottom:700.193333pt;}
.y14e{bottom:702.193333pt;}
.y20f{bottom:704.526667pt;}
.y1a3{bottom:707.526667pt;}
.y178{bottom:709.193333pt;}
.y23{bottom:709.906667pt;}
.y7f{bottom:711.193333pt;}
.y20e{bottom:716.526667pt;}
.y14d{bottom:718.193333pt;}
.ye{bottom:718.240000pt;}
.y1a2{bottom:723.526667pt;}
.y177{bottom:725.193333pt;}
.y7e{bottom:727.193333pt;}
.y20d{bottom:728.860000pt;}
.y14c{bottom:734.193333pt;}
.y3f{bottom:736.533333pt;}
.y1a1{bottom:739.526667pt;}
.y20c{bottom:740.860000pt;}
.y176{bottom:741.193333pt;}
.y1b{bottom:741.560000pt;}
.y7d{bottom:743.526667pt;}
.y14b{bottom:750.566667pt;}
.y20b{bottom:752.860000pt;}
.y1a0{bottom:755.900000pt;}
.y175{bottom:757.566667pt;}
.y7c{bottom:759.566667pt;}
.y20a{bottom:764.900000pt;}
.y14a{bottom:766.566667pt;}
.y19f{bottom:771.900000pt;}
.y174{bottom:773.566667pt;}
.y7b{bottom:775.566667pt;}
.y209{bottom:776.900000pt;}
.y149{bottom:782.566667pt;}
.y19e{bottom:787.900000pt;}
.y208{bottom:789.233333pt;}
.y173{bottom:789.566667pt;}
.y7a{bottom:791.566667pt;}
.y253{bottom:796.226667pt;}
.y148{bottom:798.566667pt;}
.y207{bottom:801.233333pt;}
.y19d{bottom:803.900000pt;}
.y172{bottom:805.566667pt;}
.y115{bottom:807.893333pt;}
.y79{bottom:807.900000pt;}
.y273{bottom:808.893333pt;}
.y206{bottom:813.233333pt;}
.y147{bottom:816.900000pt;}
.y19c{bottom:820.233333pt;}
.y171{bottom:821.900000pt;}
.y113{bottom:822.573333pt;}
.y78{bottom:823.900000pt;}
.y205{bottom:825.233333pt;}
.y250{bottom:834.573333pt;}
.y19b{bottom:836.233333pt;}
.y204{bottom:837.566667pt;}
.y146{bottom:837.900000pt;}
.y77{bottom:839.900000pt;}
.y203{bottom:849.566667pt;}
.y1d3{bottom:851.266667pt;}
.y170{bottom:853.900000pt;}
.y145{bottom:854.260000pt;}
.y19a{bottom:854.566667pt;}
.y112{bottom:855.933333pt;}
.y76{bottom:856.233333pt;}
.y202{bottom:861.566667pt;}
.y1d2{bottom:865.933333pt;}
.y144{bottom:870.260000pt;}
.y75{bottom:872.260000pt;}
.y24e{bottom:873.266667pt;}
.y201{bottom:873.593333pt;}
.y199{bottom:875.593333pt;}
.y10b{bottom:877.266667pt;}
.y19{bottom:881.600000pt;}
.y200{bottom:885.593333pt;}
.y143{bottom:886.260000pt;}
.y74{bottom:888.260000pt;}
.y16f{bottom:888.593333pt;}
.y198{bottom:891.593333pt;}
.y10{bottom:895.933333pt;}
.y72{bottom:897.260000pt;}
.y1ff{bottom:897.926667pt;}
.y1d1{bottom:900.600000pt;}
.y142{bottom:902.593333pt;}
.y73{bottom:904.260000pt;}
.y197{bottom:907.926667pt;}
.y16e{bottom:909.593333pt;}
.y1fe{bottom:909.926667pt;}
.y24d{bottom:911.933333pt;}
.y141{bottom:918.593333pt;}
.y1fd{bottom:921.926667pt;}
.y196{bottom:923.926667pt;}
.y16d{bottom:925.593333pt;}
.y1cd{bottom:925.600000pt;}
.y1fb{bottom:928.926667pt;}
.y1fc{bottom:933.926667pt;}
.y140{bottom:934.593333pt;}
.y24a{bottom:937.600000pt;}
.y195{bottom:939.926667pt;}
.y16c{bottom:941.593333pt;}
.y249{bottom:989.293333pt;}
.y70{bottom:1010.626667pt;}
.y272{bottom:1014.960000pt;}
.y6e{bottom:1025.293333pt;}
.y247{bottom:1027.960000pt;}
.y1f9{bottom:1038.960000pt;}
.y6b{bottom:1057.626667pt;}
.y2{bottom:1072.333333pt;}
.y6a{bottom:1074.333333pt;}
.y1{bottom:1090.333333pt;}
.y69{bottom:1091.000000pt;}
.h6b{height:2.667969pt;}
.hd{height:3.554688pt;}
.h30{height:3.703125pt;}
.h26{height:4.333333pt;}
.h42{height:4.364583pt;}
.h25{height:4.666667pt;}
.h9{height:5.000000pt;}
.h1b{height:5.033333pt;}
.h27{height:5.335938pt;}
.h23{height:8.729167pt;}
.ha{height:10.671875pt;}
.h1c{height:11.109375pt;}
.h68{height:12.666667pt;}
.h56{height:12.700000pt;}
.h63{height:13.000000pt;}
.h1d{height:13.093750pt;}
.h1f{height:13.666667pt;}
.h14{height:14.333333pt;}
.h33{height:14.666667pt;}
.h52{height:15.333333pt;}
.h59{height:25.666667pt;}
.h5a{height:26.000000pt;}
.h6{height:28.366667pt;}
.h43{height:28.369792pt;}
.h31{height:29.000000pt;}
.h45{height:29.020000pt;}
.h4f{height:29.033333pt;}
.h3c{height:29.333333pt;}
.h69{height:30.000000pt;}
.h2b{height:32.000000pt;}
.h17{height:32.015625pt;}
.h6a{height:32.700000pt;}
.hb{height:34.000000pt;}
.h2f{height:34.333333pt;}
.h41{height:34.683594pt;}
.h10{height:34.916667pt;}
.h2c{height:36.000000pt;}
.h2d{height:36.805030pt;}
.h20{height:37.098958pt;}
.h5e{height:38.333333pt;}
.h5b{height:38.666667pt;}
.h5d{height:38.686667pt;}
.h7{height:39.000000pt;}
.h55{height:40.019531pt;}
.h8{height:42.687500pt;}
.h4b{height:43.645833pt;}
.h15{height:43.723958pt;}
.h2{height:44.270833pt;}
.h28{height:44.333333pt;}
.h3{height:44.437500pt;}
.h1a{height:45.355469pt;}
.h2a{height:48.023438pt;}
.h53{height:50.691406pt;}
.h60{height:51.366667pt;}
.h57{height:51.666667pt;}
.h5c{height:51.700000pt;}
.h36{height:53.359375pt;}
.h37{height:53.403594pt;}
.h49{height:53.456927pt;}
.h38{height:53.510260pt;}
.h29{height:56.000000pt;}
.h2e{height:61.104167pt;}
.h5{height:64.031250pt;}
.h51{height:64.366667pt;}
.h3a{height:69.958333pt;}
.h4{height:71.366667pt;}
.h4d{height:74.062500pt;}
.h13{height:75.260417pt;}
.h61{height:77.333333pt;}
.h35{height:78.703125pt;}
.h12{height:79.687500pt;}
.h24{height:81.033333pt;}
.h3b{height:85.375000pt;}
.h3d{height:87.447917pt;}
.h58{height:90.033333pt;}
.hc{height:96.000000pt;}
.h50{height:96.366667pt;}
.h5f{height:103.033333pt;}
.h32{height:106.718750pt;}
.hf{height:123.958333pt;}
.h4c{height:128.700000pt;}
.h16{height:140.026667pt;}
.h22{height:146.040000pt;}
.h11{height:172.693333pt;}
.h44{height:177.026667pt;}
.h65{height:206.066667pt;}
.h66{height:231.733333pt;}
.h64{height:270.400000pt;}
.h21{height:328.440000pt;}
.h1e{height:339.426667pt;}
.h40{height:356.773333pt;}
.h19{height:369.466667pt;}
.h4e{height:402.466667pt;}
.h39{height:407.093333pt;}
.h3e{height:483.133333pt;}
.h3f{height:529.453333pt;}
.h67{height:548.160000pt;}
.h46{height:713.533333pt;}
.h18{height:720.573333pt;}
.he{height:907.600000pt;}
.h34{height:917.600000pt;}
.h54{height:943.933333pt;}
.h47{height:947.933333pt;}
.h4a{height:953.266667pt;}
.h48{height:954.933333pt;}
.h62{height:955.600000pt;}
.h0{height:1121.000000pt;}
.h1{height:1121.333333pt;}
.wb{width:16.000000pt;}
.w1c{width:16.666667pt;}
.w7{width:22.033333pt;}
.w16{width:35.666667pt;}
.w18{width:45.000000pt;}
.w5{width:52.666667pt;}
.w6{width:55.666667pt;}
.w13{width:76.033333pt;}
.w22{width:77.366667pt;}
.wf{width:85.033333pt;}
.w2{width:86.700000pt;}
.w11{width:94.366667pt;}
.w1e{width:99.700000pt;}
.we{width:102.033333pt;}
.w14{width:104.033333pt;}
.w10{width:113.366667pt;}
.w23{width:122.366667pt;}
.w9{width:127.400000pt;}
.w1f{width:133.733333pt;}
.w12{width:137.400000pt;}
.w24{width:154.400000pt;}
.w25{width:159.066667pt;}
.w3{width:162.400000pt;}
.wa{width:164.400000pt;}
.w26{width:167.733333pt;}
.w20{width:190.400000pt;}
.w21{width:257.106667pt;}
.wd{width:291.800000pt;}
.w1a{width:293.133333pt;}
.wc{width:348.800000pt;}
.w1b{width:374.133333pt;}
.w4{width:410.506667pt;}
.w8{width:634.573333pt;}
.w19{width:667.266667pt;}
.w17{width:676.600000pt;}
.w27{width:680.933333pt;}
.w1d{width:695.600000pt;}
.w15{width:712.266667pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:7.333333pt;}
.x18{left:12.333333pt;}
.x1a{left:16.373333pt;}
.xb{left:17.320000pt;}
.x1c{left:23.360000pt;}
.x8{left:30.333333pt;}
.x2b{left:31.333333pt;}
.xc{left:39.333333pt;}
.x2{left:40.700000pt;}
.xa{left:45.333333pt;}
.x1{left:48.033322pt;}
.x25{left:55.033333pt;}
.x2a{left:57.366667pt;}
.xd{left:58.666667pt;}
.x2c{left:64.700000pt;}
.x23{left:76.366667pt;}
.x3{left:79.366667pt;}
.x22{left:84.699988pt;}
.x26{left:85.700000pt;}
.xe{left:93.033333pt;}
.xf{left:96.366667pt;}
.x1f{left:97.360000pt;}
.x10{left:118.400000pt;}
.x15{left:125.073333pt;}
.x4{left:127.400000pt;}
.x11{left:128.740000pt;}
.x16{left:142.733333pt;}
.x5{left:155.400000pt;}
.x2d{left:164.400000pt;}
.x12{left:223.773333pt;}
.x17{left:227.773333pt;}
.x30{left:264.440000pt;}
.x6{left:289.800000pt;}
.x2e{left:298.133333pt;}
.x33{left:310.140000pt;}
.x19{left:341.133333pt;}
.x29{left:362.120000pt;}
.x28{left:366.800000pt;}
.x20{left:369.839988pt;}
.x27{left:378.840000pt;}
.x13{left:388.173333pt;}
.x34{left:397.166667pt;}
.x14{left:404.173333pt;}
.x31{left:418.840000pt;}
.x1b{left:435.506667pt;}
.x24{left:472.533322pt;}
.x2f{left:488.533333pt;}
.x1d{left:572.906667pt;}
.x32{left:577.906667pt;}
.x1e{left:648.933333pt;}
.x9{left:700.306667pt;}
.x21{left:745.639988pt;}
}




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