
    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_80a6754b59bdb81032670655.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d7a8644240d6ba9d8a4c64cb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.087891;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_a998b4351671546957c1687c.woff')format("woff");}.ff3{font-family:ff3;line-height:1.087891;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_4b42d56671414231f75afd0f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_ce44f761175da179a31b99d8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_5e7529afb290cbc1efb8a303.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_76d110b2e085487b7ff272b1.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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_e89679d09ce0939891c3b899.woff')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_20415f47df1edbcdb6918298.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f13011d217248af821456876.woff')format("woff");}.ffa{font-family:ffa;line-height:0.933105;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_e9a9f55a4bd2d3c0fb1ec77a.woff')format("woff");}.ffb{font-family:ffb;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_251046858df41af55ef7738a.woff')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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:ffd;src:url('chunks/assets/font_d4ce6d63f04a4fa1704fd94f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.021484;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:ffe;src:url('chunks/assets/font_0457a45d542ce4a0173c872c.woff')format("woff");}.ffe{font-family:ffe;line-height:1.091797;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:fff;src:url('chunks/assets/font_aab76a46d302bfdfcdae8e61.woff')format("woff");}.fff{font-family:fff;line-height:1.091797;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:ff10;src:url('chunks/assets/font_f5d99f6d84646a3bfe5a396b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.090332;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:ff11;src:url('chunks/assets/font_f6cbef524094f320ab295f8e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.090332;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:ff12;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff12{font-family:ff12;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:30.240000px;}
.ls1f{letter-spacing:-0.648000px;}
.ls21{letter-spacing:-0.587400px;}
.lsd{letter-spacing:-0.348600px;}
.lsf{letter-spacing:-0.326400px;}
.ls9{letter-spacing:-0.324000px;}
.ls13{letter-spacing:-0.229800px;}
.ls7{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.092400px;}
.ls4{letter-spacing:-0.083400px;}
.ls5{letter-spacing:-0.058320px;}
.ls1c{letter-spacing:-0.049680px;}
.ls1d{letter-spacing:-0.041040px;}
.ls8{letter-spacing:-0.036000px;}
.lsa{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.036000px;}
.ls1a{letter-spacing:0.060480px;}
.ls11{letter-spacing:0.061200px;}
.ls1e{letter-spacing:0.064200px;}
.ls14{letter-spacing:0.072000px;}
.ls20{letter-spacing:0.077040px;}
.ls16{letter-spacing:0.092880px;}
.lsc{letter-spacing:0.115200px;}
.ls1{letter-spacing:0.149760px;}
.ls18{letter-spacing:0.174240px;}
.ls22{letter-spacing:0.175200px;}
.ls17{letter-spacing:0.208800px;}
.ls10{letter-spacing:0.213840px;}
.ls12{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.222000px;}
.ls0{letter-spacing:0.233280px;}
.ls19{letter-spacing:0.243600px;}
.ls6{letter-spacing:0.247800px;}
.ls15{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.780480px;}
.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;}
}
.ws0{word-spacing:-66.240000px;}
.ws1{word-spacing:-66.156600px;}
.ws12{word-spacing:-19.038240px;}
.wsf{word-spacing:-18.808440px;}
.ws13{word-spacing:-16.632000px;}
.ws11{word-spacing:-16.488000px;}
.ws10{word-spacing:-16.272000px;}
.ws3{word-spacing:-14.970240px;}
.ws17{word-spacing:-14.382840px;}
.ws14{word-spacing:-13.749360px;}
.ws18{word-spacing:-13.680960px;}
.wsa{word-spacing:-13.668720px;}
.ws16{word-spacing:-13.569960px;}
.ws4{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.464720px;}
.wsc{word-spacing:-13.446720px;}
.wsd{word-spacing:-13.354320px;}
.wse{word-spacing:-13.179360px;}
.wsb{word-spacing:-13.098120px;}
.ws2{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.186000px;}
.ws5{word-spacing:-10.962000px;}
.ws6{word-spacing:-10.926000px;}
.ws7{word-spacing:-10.638000px;}
.ws9{word-spacing:0.000000px;}
._32{margin-left:-9.206160px;}
._31{margin-left:-8.152080px;}
._4{margin-left:-6.697200px;}
._1{margin-left:-4.999680px;}
._2{margin-left:-3.281040px;}
._0{margin-left:-1.874880px;}
._3{width:1.279920px;}
._e{width:2.332800px;}
._7{width:3.346560px;}
._8{width:4.556160px;}
._5{width:6.454080px;}
._6{width:7.766160px;}
._b{width:8.906880px;}
._a{width:10.854000px;}
._9{width:11.974320px;}
._14{width:13.176000px;}
._d{width:15.119280px;}
._c{width:16.135200px;}
._11{width:17.573760px;}
._1e{width:19.560960px;}
._19{width:21.265920px;}
._18{width:22.291200px;}
._13{width:23.693760px;}
._12{width:24.768000px;}
._1a{width:25.778880px;}
._1b{width:27.216000px;}
._22{width:28.253280px;}
._20{width:29.258160px;}
._1f{width:30.533760px;}
._21{width:31.805520px;}
._1d{width:33.097440px;}
._1c{width:34.488000px;}
._16{width:36.216000px;}
._15{width:37.872000px;}
._2b{width:39.235200px;}
._10{width:40.327440px;}
._f{width:41.981760px;}
._17{width:43.106160px;}
._23{width:44.521200px;}
._24{width:46.015200px;}
._25{width:48.246000px;}
._27{width:49.284960px;}
._26{width:53.806320px;}
._29{width:55.782720px;}
._28{width:57.033360px;}
._2c{width:67.384320px;}
._2a{width:100.994400px;}
._30{width:129.035520px;}
._2e{width:130.095360px;}
._2f{width:131.166960px;}
._2d{width:152.847360px;}
._33{width:542.306880px;}
._34{width:543.870720px;}
.fc4{color:rgb(163,14,12);}
.fc3{color:transparent;}
.fc2{color:rgb(70,120,134);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs3{font-size:144.000000px;}
.fs2{font-size:156.240000px;}
.y6b{bottom:-1.080000px;}
.y0{bottom:0.000000px;}
.y1d0{bottom:3.954000px;}
.y13b{bottom:3.960000px;}
.y13f{bottom:4.140000px;}
.y37{bottom:4.320000px;}
.y2{bottom:5.760000px;}
.y120{bottom:5.940000px;}
.y123{bottom:6.120000px;}
.y11f{bottom:8.100000px;}
.y122{bottom:8.280000px;}
.y12e{bottom:8.310000px;}
.y1cf{bottom:22.134000px;}
.y1aa{bottom:22.140000px;}
.y1e1{bottom:22.170000px;}
.y13e{bottom:22.320000px;}
.y1ce{bottom:40.494000px;}
.y1a9{bottom:40.500000px;}
.y1e0{bottom:40.530000px;}
.y198{bottom:40.545000px;}
.y13d{bottom:40.680000px;}
.y209{bottom:40.725000px;}
.y1{bottom:46.296000px;}
.y69{bottom:47.016000px;}
.y3{bottom:48.996000px;}
.y1cd{bottom:58.854000px;}
.y173{bottom:58.860000px;}
.y1df{bottom:58.890000px;}
.y197{bottom:58.905000px;}
.y1f0{bottom:59.040000px;}
.y68{bottom:67.176000px;}
.y1cc{bottom:77.034000px;}
.y21f{bottom:77.040000px;}
.y172{bottom:77.220000px;}
.y1de{bottom:77.250000px;}
.y196{bottom:77.265000px;}
.y67{bottom:87.336000px;}
.y1cb{bottom:95.394000px;}
.y1a8{bottom:95.400000px;}
.y1dd{bottom:95.430000px;}
.y18c{bottom:95.580000px;}
.y171{bottom:95.625000px;}
.y36{bottom:113.616000px;}
.y1ca{bottom:113.754000px;}
.y18b{bottom:113.760000px;}
.y1dc{bottom:113.790000px;}
.y195{bottom:113.805000px;}
.y1fb{bottom:113.940000px;}
.y170{bottom:113.985000px;}
.y23e{bottom:114.156000px;}
.y18f{bottom:114.516000px;}
.y178{bottom:115.056000px;}
.ya2{bottom:115.236000px;}
.y222{bottom:117.216000px;}
.y257{bottom:119.916000px;}
.yf5{bottom:122.796000px;}
.y204{bottom:123.876000px;}
.y143{bottom:125.316000px;}
.y20e{bottom:127.476000px;}
.y1ae{bottom:128.196000px;}
.y116{bottom:128.556000px;}
.y35{bottom:131.976000px;}
.y1c9{bottom:132.114000px;}
.y1a7{bottom:132.120000px;}
.y1db{bottom:132.150000px;}
.y16f{bottom:132.165000px;}
.y1fa{bottom:132.300000px;}
.y1ef{bottom:132.345000px;}
.y18e{bottom:132.696000px;}
.y177{bottom:133.416000px;}
.y287{bottom:133.776000px;}
.y1d1{bottom:134.496000px;}
.y221{bottom:135.396000px;}
.ycd{bottom:135.576000px;}
.y23d{bottom:136.116000px;}
.ya1{bottom:137.196000px;}
.y256{bottom:140.076000px;}
.y203{bottom:143.676000px;}
.y142{bottom:145.116000px;}
.y1eb{bottom:145.296000px;}
.y20d{bottom:147.276000px;}
.y1ad{bottom:147.996000px;}
.y1bc{bottom:149.796000px;}
.y34{bottom:150.150000px;}
.y21b{bottom:150.330000px;}
.y1c8{bottom:150.339000px;}
.y21e{bottom:150.345000px;}
.y1a6{bottom:150.480000px;}
.y1da{bottom:150.510000px;}
.y16e{bottom:150.525000px;}
.y18d{bottom:151.050000px;}
.y176{bottom:151.770000px;}
.yf4{bottom:153.750000px;}
.y286{bottom:153.930000px;}
.ycc{bottom:157.530000px;}
.y23c{bottom:158.070000px;}
.ya0{bottom:159.150000px;}
.y115{bottom:159.510000px;}
.y255{bottom:160.230000px;}
.y202{bottom:163.290000px;}
.y141{bottom:164.910000px;}
.y17c{bottom:166.170000px;}
.y20c{bottom:167.070000px;}
.y220{bottom:167.250000px;}
.y1ac{bottom:167.790000px;}
.y1b7{bottom:168.660000px;}
.y1a5{bottom:168.690000px;}
.y1c7{bottom:168.699000px;}
.y194{bottom:168.705000px;}
.y1f9{bottom:168.840000px;}
.y16d{bottom:168.885000px;}
.y33{bottom:169.050000px;}
.y175{bottom:170.130000px;}
.y285{bottom:174.090000px;}
.yf3{bottom:175.710000px;}
.y201{bottom:178.590000px;}
.ycb{bottom:179.490000px;}
.y1e8{bottom:180.030000px;}
.y254{bottom:180.210000px;}
.y9f{bottom:181.110000px;}
.y114{bottom:181.470000px;}
.y21c{bottom:182.370000px;}
.y1ab{bottom:182.910000px;}
.y140{bottom:184.710000px;}
.y20b{bottom:186.870000px;}
.y1b6{bottom:187.020000px;}
.y1a4{bottom:187.050000px;}
.y1c6{bottom:187.059000px;}
.y18a{bottom:187.065000px;}
.y1f8{bottom:187.200000px;}
.y16c{bottom:187.245000px;}
.y174{bottom:188.310000px;}
.y284{bottom:194.070000px;}
.yf2{bottom:197.670000px;}
.y13c{bottom:199.830000px;}
.y253{bottom:200.370000px;}
.yca{bottom:201.450000px;}
.y20a{bottom:201.990000px;}
.y1ea{bottom:202.725000px;}
.y32{bottom:202.890000px;}
.y9e{bottom:203.070000px;}
.y113{bottom:203.430000px;}
.y1b5{bottom:205.380000px;}
.y1a3{bottom:205.410000px;}
.y1c5{bottom:205.419000px;}
.y16b{bottom:205.425000px;}
.y283{bottom:214.230000px;}
.yf1{bottom:219.810000px;}
.y252{bottom:220.530000px;}
.y1e9{bottom:222.165000px;}
.y31{bottom:222.510000px;}
.yc9{bottom:223.410000px;}
.y1a2{bottom:223.590000px;}
.y1c4{bottom:223.599000px;}
.y21d{bottom:223.605000px;}
.y1b4{bottom:223.740000px;}
.y1f7{bottom:223.770000px;}
.y16a{bottom:223.785000px;}
.y23b{bottom:223.950000px;}
.y9d{bottom:225.030000px;}
.y112{bottom:225.390000px;}
.y282{bottom:234.390000px;}
.y30{bottom:240.690000px;}
.y1a1{bottom:241.950000px;}
.y1c3{bottom:241.959000px;}
.y193{bottom:241.965000px;}
.y1f6{bottom:242.130000px;}
.y169{bottom:242.145000px;}
.yc8{bottom:245.370000px;}
.y23a{bottom:246.090000px;}
.y9c{bottom:246.990000px;}
.y111{bottom:247.350000px;}
.yf0{bottom:250.770000px;}
.y200{bottom:252.570000px;}
.y281{bottom:254.550000px;}
.y13a{bottom:255.630000px;}
.y62{bottom:256.350000px;}
.y206{bottom:257.610000px;}
.y1ed{bottom:257.625000px;}
.y2f{bottom:259.050000px;}
.y1a0{bottom:260.310000px;}
.y1c2{bottom:260.319000px;}
.y168{bottom:260.325000px;}
.y1f5{bottom:260.490000px;}
.y1ee{bottom:260.505000px;}
.y251{bottom:260.850000px;}
.y239{bottom:268.050000px;}
.y9b{bottom:268.950000px;}
.y110{bottom:269.310000px;}
.yef{bottom:272.730000px;}
.y280{bottom:274.710000px;}
.y1ff{bottom:275.610000px;}
.yc7{bottom:276.330000px;}
.y1ec{bottom:277.245000px;}
.y2e{bottom:277.410000px;}
.y1c1{bottom:278.499000px;}
.y139{bottom:278.670000px;}
.y167{bottom:278.685000px;}
.y250{bottom:281.010000px;}
.yee{bottom:294.735000px;}
.y27f{bottom:294.915000px;}
.y2d{bottom:295.635000px;}
.y19f{bottom:296.850000px;}
.y1c0{bottom:296.859000px;}
.y1d9{bottom:296.895000px;}
.y1f4{bottom:297.030000px;}
.y166{bottom:297.045000px;}
.y9a{bottom:299.955000px;}
.y10f{bottom:300.315000px;}
.y24f{bottom:301.215000px;}
.y61{bottom:302.835000px;}
.y238{bottom:303.735000px;}
.y138{bottom:306.975000px;}
.yc6{bottom:307.335000px;}
.y1fe{bottom:307.515000px;}
.y2c{bottom:313.995000px;}
.y27e{bottom:315.075000px;}
.y21a{bottom:315.210000px;}
.y1bf{bottom:315.219000px;}
.y189{bottom:315.225000px;}
.y1d8{bottom:315.255000px;}
.y1f3{bottom:315.390000px;}
.y165{bottom:315.405000px;}
.y208{bottom:315.435000px;}
.yed{bottom:316.695000px;}
.y60{bottom:319.215000px;}
.y24e{bottom:321.375000px;}
.y10e{bottom:322.275000px;}
.y1fd{bottom:327.135000px;}
.y237{bottom:327.495000px;}
.y137{bottom:330.375000px;}
.y99{bottom:331.815000px;}
.y2b{bottom:332.355000px;}
.y219{bottom:333.570000px;}
.y1be{bottom:333.579000px;}
.y164{bottom:333.585000px;}
.y1d7{bottom:333.615000px;}
.y27d{bottom:335.235000px;}
.y5f{bottom:335.775000px;}
.yc5{bottom:338.295000px;}
.yec{bottom:338.655000px;}
.y24d{bottom:341.535000px;}
.y10d{bottom:344.235000px;}
.y1fc{bottom:346.755000px;}
.y2a{bottom:350.715000px;}
.y236{bottom:351.075000px;}
.y218{bottom:351.750000px;}
.y1bd{bottom:351.759000px;}
.y163{bottom:351.945000px;}
.y136{bottom:351.975000px;}
.y5e{bottom:352.155000px;}
.y27c{bottom:355.395000px;}
.yc4{bottom:360.255000px;}
.y24c{bottom:361.695000px;}
.y1f2{bottom:361.875000px;}
.y98{bottom:365.655000px;}
.y10c{bottom:366.195000px;}
.y5d{bottom:368.715000px;}
.y29{bottom:368.895000px;}
.yeb{bottom:369.615000px;}
.y217{bottom:370.110000px;}
.y1b3{bottom:370.125000px;}
.y1d6{bottom:370.155000px;}
.y188{bottom:370.305000px;}
.y162{bottom:370.335000px;}
.y135{bottom:373.755000px;}
.y235{bottom:374.835000px;}
.y27b{bottom:375.555000px;}
.y24b{bottom:381.675000px;}
.yc3{bottom:382.215000px;}
.y5c{bottom:385.095000px;}
.y28{bottom:387.255000px;}
.y10b{bottom:388.155000px;}
.y216{bottom:388.470000px;}
.y187{bottom:388.485000px;}
.y161{bottom:388.515000px;}
.y207{bottom:388.695000px;}
.yea{bottom:391.575000px;}
.y134{bottom:395.535000px;}
.y97{bottom:396.615000px;}
.y234{bottom:398.595000px;}
.y5b{bottom:401.655000px;}
.y24a{bottom:401.835000px;}
.y19e{bottom:402.735000px;}
.yc2{bottom:404.175000px;}
.y27{bottom:406.155000px;}
.y1b2{bottom:406.845000px;}
.y160{bottom:406.875000px;}
.y10a{bottom:410.295000px;}
.ye9{bottom:413.535000px;}
.y27a{bottom:415.695000px;}
.y133{bottom:417.315000px;}
.y5a{bottom:418.035000px;}
.y96{bottom:418.575000px;}
.y249{bottom:421.995000px;}
.y233{bottom:422.355000px;}
.y1d5{bottom:425.055000px;}
.y1b1{bottom:425.205000px;}
.y15f{bottom:425.235000px;}
.y109{bottom:432.255000px;}
.y59{bottom:434.595000px;}
.yc1{bottom:435.135000px;}
.ye8{bottom:435.495000px;}
.y279{bottom:435.855000px;}
.y1e7{bottom:437.115000px;}
.y26{bottom:439.815000px;}
.y95{bottom:440.535000px;}
.y248{bottom:442.155000px;}
.y1b0{bottom:443.385000px;}
.y186{bottom:443.415000px;}
.y15e{bottom:443.595000px;}
.y232{bottom:445.935000px;}
.y132{bottom:446.655000px;}
.y58{bottom:451.155000px;}
.y108{bottom:454.215000px;}
.y278{bottom:456.015000px;}
.yc0{bottom:457.275000px;}
.ye7{bottom:457.455000px;}
.y212{bottom:457.815000px;}
.y25{bottom:459.435000px;}
.y1e6{bottom:460.155000px;}
.y15d{bottom:461.775000px;}
.y247{bottom:462.315000px;}
.y94{bottom:462.495000px;}
.y57{bottom:467.535000px;}
.y107{bottom:476.175000px;}
.y24{bottom:477.795000px;}
.y1e5{bottom:478.515000px;}
.ybf{bottom:479.235000px;}
.ye6{bottom:479.415000px;}
.y215{bottom:479.955000px;}
.y15c{bottom:480.135000px;}
.y131{bottom:481.215000px;}
.y231{bottom:481.755000px;}
.y246{bottom:482.475000px;}
.y56{bottom:484.095000px;}
.y93{bottom:484.455000px;}
.y23{bottom:496.155000px;}
.y277{bottom:496.335000px;}
.y1d4{bottom:498.315000px;}
.y15b{bottom:498.495000px;}
.y55{bottom:500.475000px;}
.ybe{bottom:501.195000px;}
.ye5{bottom:501.375000px;}
.y245{bottom:502.635000px;}
.y230{bottom:505.515000px;}
.y92{bottom:506.415000px;}
.y106{bottom:507.135000px;}
.y1e4{bottom:510.375000px;}
.y22{bottom:514.335000px;}
.y276{bottom:516.495000px;}
.y185{bottom:516.675000px;}
.y15a{bottom:516.855000px;}
.y54{bottom:517.395000px;}
.y130{bottom:519.375000px;}
.y244{bottom:522.795000px;}
.ybd{bottom:523.155000px;}
.ye4{bottom:523.335000px;}
.y91{bottom:528.375000px;}
.y22f{bottom:529.095000px;}
.y1e3{bottom:529.995000px;}
.y21{bottom:532.695000px;}
.y159{bottom:535.035000px;}
.y53{bottom:535.575000px;}
.y275{bottom:536.655000px;}
.y105{bottom:538.815000px;}
.y1bb{bottom:539.715000px;}
.y12f{bottom:541.875000px;}
.y243{bottom:542.955000px;}
.ybc{bottom:545.115000px;}
.ye3{bottom:545.475000px;}
.y1e2{bottom:549.795000px;}
.y90{bottom:550.335000px;}
.y20{bottom:551.055000px;}
.y22e{bottom:552.855000px;}
.y214{bottom:553.215000px;}
.y158{bottom:553.395000px;}
.y52{bottom:553.575000px;}
.y274{bottom:556.815000px;}
.y1ba{bottom:558.075000px;}
.y242{bottom:562.935000px;}
.y12d{bottom:564.375000px;}
.y1d3{bottom:564.915000px;}
.ye2{bottom:567.435000px;}
.y1f{bottom:569.235000px;}
.y51{bottom:570.165000px;}
.y213{bottom:571.575000px;}
.y157{bottom:571.755000px;}
.y8f{bottom:572.505000px;}
.y104{bottom:572.685000px;}
.ybb{bottom:576.105000px;}
.y22d{bottom:576.645000px;}
.y273{bottom:577.005000px;}
.y241{bottom:583.125000px;}
.y50{bottom:586.545000px;}
.y12c{bottom:586.905000px;}
.y1e{bottom:587.625000px;}
.ye1{bottom:589.425000px;}
.y156{bottom:589.935000px;}
.y1b9{bottom:589.965000px;}
.y103{bottom:594.645000px;}
.y272{bottom:596.985000px;}
.yba{bottom:598.065000px;}
.y22c{bottom:600.225000px;}
.y4f{bottom:603.105000px;}
.y8e{bottom:603.465000px;}
.y240{bottom:604.545000px;}
.y1d{bottom:605.985000px;}
.y155{bottom:608.295000px;}
.y12b{bottom:609.405000px;}
.y1b8{bottom:609.585000px;}
.y102{bottom:616.605000px;}
.y271{bottom:617.145000px;}
.y4e{bottom:619.485000px;}
.yb9{bottom:620.025000px;}
.ye0{bottom:620.385000px;}
.y22b{bottom:623.985000px;}
.y1c{bottom:624.345000px;}
.y1af{bottom:624.705000px;}
.y8d{bottom:625.425000px;}
.y154{bottom:626.655000px;}
.y12a{bottom:631.905000px;}
.y4d{bottom:636.045000px;}
.y270{bottom:637.305000px;}
.y23f{bottom:638.385000px;}
.y101{bottom:638.565000px;}
.yb8{bottom:641.985000px;}
.ydf{bottom:642.345000px;}
.y1b{bottom:642.525000px;}
.y184{bottom:644.835000px;}
.y153{bottom:645.015000px;}
.y8c{bottom:647.385000px;}
.y22a{bottom:647.745000px;}
.y4c{bottom:652.785000px;}
.y129{bottom:654.405000px;}
.y26f{bottom:657.465000px;}
.y1a{bottom:661.425000px;}
.y183{bottom:663.195000px;}
.y152{bottom:663.240000px;}
.yb7{bottom:663.945000px;}
.yde{bottom:664.305000px;}
.y4b{bottom:669.165000px;}
.y8b{bottom:669.345000px;}
.y100{bottom:669.705000px;}
.y229{bottom:671.505000px;}
.y128{bottom:676.905000px;}
.y26e{bottom:677.625000px;}
.y19{bottom:679.425000px;}
.y182{bottom:681.555000px;}
.y151{bottom:681.600000px;}
.y4a{bottom:685.725000px;}
.yb6{bottom:685.905000px;}
.ydd{bottom:686.265000px;}
.y18{bottom:690.405000px;}
.y8a{bottom:691.305000px;}
.y1f1{bottom:692.385000px;}
.y228{bottom:695.085000px;}
.y26d{bottom:697.785000px;}
.y127{bottom:699.405000px;}
.y150{bottom:699.960000px;}
.yff{bottom:701.385000px;}
.y49{bottom:702.105000px;}
.y17{bottom:703.005000px;}
.yb5{bottom:707.865000px;}
.ydc{bottom:708.225000px;}
.y89{bottom:713.265000px;}
.y19d{bottom:714.705000px;}
.y26c{bottom:717.945000px;}
.y181{bottom:718.140000px;}
.y14f{bottom:718.320000px;}
.y48{bottom:718.665000px;}
.y227{bottom:718.845000px;}
.y16{bottom:719.745000px;}
.y126{bottom:721.905000px;}
.ydb{bottom:730.185000px;}
.y15{bottom:730.725000px;}
.y47{bottom:735.045000px;}
.y88{bottom:735.225000px;}
.y14e{bottom:736.500000px;}
.y19c{bottom:737.745000px;}
.y26b{bottom:738.105000px;}
.yb4{bottom:738.825000px;}
.y226{bottom:742.605000px;}
.y14{bottom:743.865000px;}
.y125{bottom:744.405000px;}
.y46{bottom:751.605000px;}
.yda{bottom:752.145000px;}
.y205{bottom:752.865000px;}
.y14d{bottom:754.860000px;}
.y19b{bottom:756.105000px;}
.yfe{bottom:757.185000px;}
.y26a{bottom:758.265000px;}
.yb3{bottom:760.785000px;}
.y13{bottom:761.865000px;}
.y87{bottom:766.185000px;}
.y124{bottom:766.905000px;}
.y45{bottom:767.985000px;}
.y14c{bottom:773.220000px;}
.y225{bottom:773.565000px;}
.yd9{bottom:774.105000px;}
.y19a{bottom:774.465000px;}
.y12{bottom:775.005000px;}
.y292{bottom:776.445000px;}
.y269{bottom:778.425000px;}
.yfd{bottom:779.145000px;}
.yb2{bottom:782.925000px;}
.y44{bottom:784.545000px;}
.y86{bottom:788.145000px;}
.y121{bottom:789.405000px;}
.y14b{bottom:791.400000px;}
.y11{bottom:796.245000px;}
.y291{bottom:796.605000px;}
.y268{bottom:798.405000px;}
.y43{bottom:800.925000px;}
.yfc{bottom:801.105000px;}
.yb1{bottom:804.885000px;}
.yd8{bottom:805.065000px;}
.y199{bottom:806.325000px;}
.y224{bottom:806.685000px;}
.y14a{bottom:809.760000px;}
.y85{bottom:810.105000px;}
.y11e{bottom:812.805000px;}
.y290{bottom:816.585000px;}
.y42{bottom:817.485000px;}
.y10{bottom:818.565000px;}
.y223{bottom:820.905000px;}
.y192{bottom:821.265000px;}
.yfb{bottom:823.065000px;}
.yb0{bottom:826.845000px;}
.y149{bottom:828.120000px;}
.yf{bottom:831.705000px;}
.y84{bottom:832.065000px;}
.y41{bottom:834.045000px;}
.yd7{bottom:836.025000px;}
.y28f{bottom:836.745000px;}
.y267{bottom:838.725000px;}
.y11d{bottom:839.985000px;}
.yfa{bottom:845.025000px;}
.y180{bottom:846.300000px;}
.y148{bottom:846.480000px;}
.y40{bottom:850.470000px;}
.ye{bottom:852.990000px;}
.y83{bottom:854.070000px;}
.y28e{bottom:856.950000px;}
.yaf{bottom:857.850000px;}
.y266{bottom:858.930000px;}
.y147{bottom:864.660000px;}
.y3f{bottom:867.030000px;}
.y11c{bottom:868.290000px;}
.yd{bottom:875.310000px;}
.y82{bottom:876.030000px;}
.y28d{bottom:877.110000px;}
.y265{bottom:879.090000px;}
.yae{bottom:879.810000px;}
.y17f{bottom:883.020000px;}
.y3e{bottom:883.410000px;}
.yc{bottom:888.450000px;}
.yd6{bottom:889.170000px;}
.y81{bottom:898.170000px;}
.y264{bottom:899.250000px;}
.y3d{bottom:899.970000px;}
.y17e{bottom:901.380000px;}
.yad{bottom:901.770000px;}
.y11b{bottom:903.930000px;}
.yb{bottom:909.870000px;}
.y28c{bottom:910.410000px;}
.yd5{bottom:911.130000px;}
.y3c{bottom:916.350000px;}
.y263{bottom:919.410000px;}
.y17d{bottom:919.560000px;}
.y80{bottom:920.130000px;}
.yac{bottom:923.730000px;}
.y11a{bottom:927.690000px;}
.y28b{bottom:929.850000px;}
.y3b{bottom:932.910000px;}
.yd4{bottom:933.090000px;}
.ya{bottom:938.130000px;}
.y76{bottom:938.670000px;}
.y262{bottom:939.570000px;}
.y7f{bottom:942.090000px;}
.yab{bottom:945.690000px;}
.y3a{bottom:949.290000px;}
.y28a{bottom:949.650000px;}
.y119{bottom:951.270000px;}
.yf9{bottom:955.050000px;}
.y261{bottom:959.730000px;}
.yd3{bottom:962.970000px;}
.y9{bottom:963.690000px;}
.y39{bottom:965.850000px;}
.y75{bottom:971.610000px;}
.y7e{bottom:973.050000px;}
.yaa{bottom:976.650000px;}
.y260{bottom:979.890000px;}
.yd2{bottom:981.330000px;}
.y289{bottom:981.690000px;}
.y38{bottom:982.410000px;}
.y118{bottom:983.130000px;}
.yf8{bottom:986.730000px;}
.y8{bottom:989.430000px;}
.y7d{bottom:995.010000px;}
.ya9{bottom:998.610000px;}
.yd1{bottom:999.690000px;}
.y25f{bottom:999.870000px;}
.y288{bottom:1001.130000px;}
.y74{bottom:1004.010000px;}
.y7{bottom:1014.990000px;}
.y7c{bottom:1016.970000px;}
.y117{bottom:1017.690000px;}
.yd0{bottom:1018.050000px;}
.y25e{bottom:1020.030000px;}
.ya8{bottom:1020.570000px;}
.y73{bottom:1023.630000px;}
.ycf{bottom:1036.410000px;}
.y7b{bottom:1038.930000px;}
.y25d{bottom:1040.190000px;}
.y72{bottom:1041.990000px;}
.ya7{bottom:1042.530000px;}
.y6{bottom:1046.130000px;}
.yf7{bottom:1051.530000px;}
.y71{bottom:1060.170000px;}
.y25c{bottom:1060.350000px;}
.y7a{bottom:1060.890000px;}
.ya6{bottom:1064.490000px;}
.yf6{bottom:1073.490000px;}
.y191{bottom:1078.350000px;}
.y70{bottom:1078.530000px;}
.y25b{bottom:1080.510000px;}
.y211{bottom:1081.050000px;}
.y79{bottom:1082.850000px;}
.y146{bottom:1083.210000px;}
.ya5{bottom:1086.450000px;}
.y5{bottom:1093.650000px;}
.yce{bottom:1095.450000px;}
.y1d2{bottom:1096.710000px;}
.y6f{bottom:1096.890000px;}
.y25a{bottom:1100.670000px;}
.y17b{bottom:1100.850000px;}
.y210{bottom:1104.090000px;}
.y78{bottom:1104.810000px;}
.y190{bottom:1105.530000px;}
.y145{bottom:1110.390000px;}
.y6e{bottom:1115.250000px;}
.ya4{bottom:1117.590000px;}
.y259{bottom:1120.830000px;}
.y20f{bottom:1122.450000px;}
.y17a{bottom:1123.890000px;}
.y6d{bottom:1133.460000px;}
.y77{bottom:1136.700000px;}
.ya3{bottom:1139.580000px;}
.y258{bottom:1141.020000px;}
.y4{bottom:1141.380000px;}
.y179{bottom:1142.280000px;}
.y144{bottom:1142.460000px;}
.y6c{bottom:1151.820000px;}
.y66{bottom:1170.360000px;}
.y6a{bottom:1177.920000px;}
.y65{bottom:1191.060000px;}
.y64{bottom:1209.240000px;}
.y63{bottom:1227.420000px;}
.h2d{height:18.180000px;}
.h20{height:18.360000px;}
.h1e{height:22.500000px;}
.h1f{height:22.536000px;}
.hb{height:35.806641px;}
.hd{height:36.861328px;}
.h15{height:41.238281px;}
.h11{height:45.641602px;}
.h10{height:46.801758px;}
.h12{height:46.880859px;}
.h1a{height:48.224531px;}
.h16{height:51.881484px;}
.h14{height:53.709961px;}
.h31{height:54.900000px;}
.h21{height:55.080000px;}
.h13{height:55.291992px;}
.h4{height:57.248437px;}
.h18{height:57.410156px;}
.h17{height:57.507187px;}
.h2{height:59.439023px;}
.hc{height:61.189805px;}
.h7{height:64.331719px;}
.ha{height:65.884219px;}
.he{height:67.824844px;}
.h1b{height:71.613281px;}
.h8{height:73.129219px;}
.h2e{height:73.260000px;}
.h1c{height:73.722656px;}
.h19{height:77.760000px;}
.h1d{height:83.787539px;}
.h9{height:86.255508px;}
.h2b{height:91.440000px;}
.h3{height:95.076000px;}
.h5{height:135.413086px;}
.h6{height:143.226562px;}
.h26{height:219.810000px;}
.h24{height:256.350000px;}
.h33{height:274.530000px;}
.h25{height:311.250000px;}
.h2a{height:311.430000px;}
.h2f{height:329.610000px;}
.h2c{height:329.790000px;}
.h28{height:366.150000px;}
.h27{height:457.770000px;}
.h30{height:494.535000px;}
.h29{height:531.075000px;}
.h32{height:622.515000px;}
.h22{height:879.045000px;}
.h23{height:933.945000px;}
.hf{height:1251.360000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:53.280000px;}
.w9{width:58.320000px;}
.we{width:63.900000px;}
.w7{width:74.520000px;}
.w3{width:90.000000px;}
.w20{width:138.096000px;}
.w1d{width:154.290000px;}
.w1b{width:172.830000px;}
.w11{width:173.910000px;}
.w15{width:174.450000px;}
.wc{width:175.710000px;}
.w5{width:177.509985px;}
.w4{width:177.869973px;}
.w19{width:179.310000px;}
.w6{width:180.750000px;}
.wa{width:184.170000px;}
.w13{width:200.190000px;}
.w17{width:200.370000px;}
.wf{width:201.990000px;}
.w10{width:319.035000px;}
.w18{width:326.235000px;}
.w14{width:326.415000px;}
.w8{width:329.655000px;}
.wb{width:331.815000px;}
.wd{width:340.275000px;}
.w12{width:347.115000px;}
.w1a{width:347.295000px;}
.w16{width:352.155000px;}
.w1c{width:353.775000px;}
.w1e{width:372.315000px;}
.w21{width:393.375000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x32{left:8.100000px;}
.x22{left:23.579973px;}
.x3a{left:24.840000px;}
.x3{left:29.160000px;}
.x20{left:30.599973px;}
.x19{left:67.499973px;}
.x18{left:68.759973px;}
.x2c{left:85.139987px;}
.x1c{left:95.615973px;}
.x1e{left:99.755973px;}
.x1d{left:103.535973px;}
.x1f{left:108.575973px;}
.x15{left:111.815973px;}
.x16{left:113.435973px;}
.x17{left:115.775973px;}
.x23{left:120.095973px;}
.x24{left:126.215973px;}
.x1{left:127.655987px;}
.x1b{left:129.995973px;}
.x2f{left:138.275987px;}
.x25{left:139.715973px;}
.x26{left:144.755973px;}
.x21{left:146.375973px;}
.x2d{left:150.149985px;}
.x1a{left:167.069973px;}
.x2b{left:180.749987px;}
.x38{left:183.269987px;}
.x13{left:191.549987px;}
.x42{left:196.049987px;}
.x27{left:197.129987px;}
.x3e{left:209.549987px;}
.x28{left:212.789987px;}
.x7{left:214.049987px;}
.x2e{left:233.849987px;}
.x35{left:239.070000px;}
.x39{left:244.650000px;}
.x29{left:250.229987px;}
.x4{left:254.009987px;}
.x14{left:255.269987px;}
.x9{left:277.409987px;}
.x30{left:287.129987px;}
.x6{left:308.234987px;}
.x31{left:316.514987px;}
.x44{left:317.954987px;}
.x5{left:344.594987px;}
.x33{left:361.515000px;}
.x43{left:372.315000px;}
.x12{left:387.434987px;}
.x41{left:393.375000px;}
.x2a{left:401.294987px;}
.x3f{left:406.874987px;}
.x40{left:411.915000px;}
.x3d{left:413.535000px;}
.x37{left:414.795000px;}
.x3b{left:418.575000px;}
.x36{left:423.255000px;}
.x34{left:436.035000px;}
.x3c{left:439.275000px;}
.xb{left:446.294987px;}
.xa{left:518.144987px;}
.xc{left:537.224987px;}
.x11{left:557.744987px;}
.xf{left:565.124987px;}
.xe{left:568.364987px;}
.x8{left:625.604987px;}
.x10{left:627.044987px;}
.x45{left:738.869987px;}
.xd{left:765.509987px;}
.x2{left:784.230000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.880000pt;}
.ls1f{letter-spacing:-0.576000pt;}
.ls21{letter-spacing:-0.522133pt;}
.lsd{letter-spacing:-0.309867pt;}
.lsf{letter-spacing:-0.290133pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls13{letter-spacing:-0.204267pt;}
.ls7{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.082133pt;}
.ls4{letter-spacing:-0.074133pt;}
.ls5{letter-spacing:-0.051840pt;}
.ls1c{letter-spacing:-0.044160pt;}
.ls1d{letter-spacing:-0.036480pt;}
.ls8{letter-spacing:-0.032000pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.032000pt;}
.ls1a{letter-spacing:0.053760pt;}
.ls11{letter-spacing:0.054400pt;}
.ls1e{letter-spacing:0.057067pt;}
.ls14{letter-spacing:0.064000pt;}
.ls20{letter-spacing:0.068480pt;}
.ls16{letter-spacing:0.082560pt;}
.lsc{letter-spacing:0.102400pt;}
.ls1{letter-spacing:0.133120pt;}
.ls18{letter-spacing:0.154880pt;}
.ls22{letter-spacing:0.155733pt;}
.ls17{letter-spacing:0.185600pt;}
.ls10{letter-spacing:0.190080pt;}
.ls12{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.197333pt;}
.ls0{letter-spacing:0.207360pt;}
.ls19{letter-spacing:0.216533pt;}
.ls6{letter-spacing:0.220267pt;}
.ls15{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.693760pt;}
.ws0{word-spacing:-58.880000pt;}
.ws1{word-spacing:-58.805867pt;}
.ws12{word-spacing:-16.922880pt;}
.wsf{word-spacing:-16.718613pt;}
.ws13{word-spacing:-14.784000pt;}
.ws11{word-spacing:-14.656000pt;}
.ws10{word-spacing:-14.464000pt;}
.ws3{word-spacing:-13.306880pt;}
.ws17{word-spacing:-12.784747pt;}
.ws14{word-spacing:-12.221653pt;}
.ws18{word-spacing:-12.160853pt;}
.wsa{word-spacing:-12.149973pt;}
.ws16{word-spacing:-12.062187pt;}
.ws4{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.968640pt;}
.wsc{word-spacing:-11.952640pt;}
.wsd{word-spacing:-11.870507pt;}
.wse{word-spacing:-11.714987pt;}
.wsb{word-spacing:-11.642773pt;}
.ws2{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.832000pt;}
.ws5{word-spacing:-9.744000pt;}
.ws6{word-spacing:-9.712000pt;}
.ws7{word-spacing:-9.456000pt;}
.ws9{word-spacing:0.000000pt;}
._32{margin-left:-8.183253pt;}
._31{margin-left:-7.246293pt;}
._4{margin-left:-5.953067pt;}
._1{margin-left:-4.444160pt;}
._2{margin-left:-2.916480pt;}
._0{margin-left:-1.666560pt;}
._3{width:1.137707pt;}
._e{width:2.073600pt;}
._7{width:2.974720pt;}
._8{width:4.049920pt;}
._5{width:5.736960pt;}
._6{width:6.903253pt;}
._b{width:7.917227pt;}
._a{width:9.648000pt;}
._9{width:10.643840pt;}
._14{width:11.712000pt;}
._d{width:13.439360pt;}
._c{width:14.342400pt;}
._11{width:15.621120pt;}
._1e{width:17.387520pt;}
._19{width:18.903040pt;}
._18{width:19.814400pt;}
._13{width:21.061120pt;}
._12{width:22.016000pt;}
._1a{width:22.914560pt;}
._1b{width:24.192000pt;}
._22{width:25.114027pt;}
._20{width:26.007253pt;}
._1f{width:27.141120pt;}
._21{width:28.271573pt;}
._1d{width:29.419947pt;}
._1c{width:30.656000pt;}
._16{width:32.192000pt;}
._15{width:33.664000pt;}
._2b{width:34.875733pt;}
._10{width:35.846613pt;}
._f{width:37.317120pt;}
._17{width:38.316587pt;}
._23{width:39.574400pt;}
._24{width:40.902400pt;}
._25{width:42.885333pt;}
._27{width:43.808853pt;}
._26{width:47.827840pt;}
._29{width:49.584640pt;}
._28{width:50.696320pt;}
._2c{width:59.897173pt;}
._2a{width:89.772800pt;}
._30{width:114.698240pt;}
._2e{width:115.640320pt;}
._2f{width:116.592853pt;}
._2d{width:135.864320pt;}
._33{width:482.050560pt;}
._34{width:483.440640pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs3{font-size:128.000000pt;}
.fs2{font-size:138.880000pt;}
.y6b{bottom:-0.960000pt;}
.y0{bottom:0.000000pt;}
.y1d0{bottom:3.514667pt;}
.y13b{bottom:3.520000pt;}
.y13f{bottom:3.680000pt;}
.y37{bottom:3.840000pt;}
.y2{bottom:5.120000pt;}
.y120{bottom:5.280000pt;}
.y123{bottom:5.440000pt;}
.y11f{bottom:7.200000pt;}
.y122{bottom:7.360000pt;}
.y12e{bottom:7.386667pt;}
.y1cf{bottom:19.674667pt;}
.y1aa{bottom:19.680000pt;}
.y1e1{bottom:19.706667pt;}
.y13e{bottom:19.840000pt;}
.y1ce{bottom:35.994667pt;}
.y1a9{bottom:36.000000pt;}
.y1e0{bottom:36.026667pt;}
.y198{bottom:36.040000pt;}
.y13d{bottom:36.160000pt;}
.y209{bottom:36.200000pt;}
.y1{bottom:41.152000pt;}
.y69{bottom:41.792000pt;}
.y3{bottom:43.552000pt;}
.y1cd{bottom:52.314667pt;}
.y173{bottom:52.320000pt;}
.y1df{bottom:52.346667pt;}
.y197{bottom:52.360000pt;}
.y1f0{bottom:52.480000pt;}
.y68{bottom:59.712000pt;}
.y1cc{bottom:68.474667pt;}
.y21f{bottom:68.480000pt;}
.y172{bottom:68.640000pt;}
.y1de{bottom:68.666667pt;}
.y196{bottom:68.680000pt;}
.y67{bottom:77.632000pt;}
.y1cb{bottom:84.794667pt;}
.y1a8{bottom:84.800000pt;}
.y1dd{bottom:84.826667pt;}
.y18c{bottom:84.960000pt;}
.y171{bottom:85.000000pt;}
.y36{bottom:100.992000pt;}
.y1ca{bottom:101.114667pt;}
.y18b{bottom:101.120000pt;}
.y1dc{bottom:101.146667pt;}
.y195{bottom:101.160000pt;}
.y1fb{bottom:101.280000pt;}
.y170{bottom:101.320000pt;}
.y23e{bottom:101.472000pt;}
.y18f{bottom:101.792000pt;}
.y178{bottom:102.272000pt;}
.ya2{bottom:102.432000pt;}
.y222{bottom:104.192000pt;}
.y257{bottom:106.592000pt;}
.yf5{bottom:109.152000pt;}
.y204{bottom:110.112000pt;}
.y143{bottom:111.392000pt;}
.y20e{bottom:113.312000pt;}
.y1ae{bottom:113.952000pt;}
.y116{bottom:114.272000pt;}
.y35{bottom:117.312000pt;}
.y1c9{bottom:117.434667pt;}
.y1a7{bottom:117.440000pt;}
.y1db{bottom:117.466667pt;}
.y16f{bottom:117.480000pt;}
.y1fa{bottom:117.600000pt;}
.y1ef{bottom:117.640000pt;}
.y18e{bottom:117.952000pt;}
.y177{bottom:118.592000pt;}
.y287{bottom:118.912000pt;}
.y1d1{bottom:119.552000pt;}
.y221{bottom:120.352000pt;}
.ycd{bottom:120.512000pt;}
.y23d{bottom:120.992000pt;}
.ya1{bottom:121.952000pt;}
.y256{bottom:124.512000pt;}
.y203{bottom:127.712000pt;}
.y142{bottom:128.992000pt;}
.y1eb{bottom:129.152000pt;}
.y20d{bottom:130.912000pt;}
.y1ad{bottom:131.552000pt;}
.y1bc{bottom:133.152000pt;}
.y34{bottom:133.466667pt;}
.y21b{bottom:133.626667pt;}
.y1c8{bottom:133.634667pt;}
.y21e{bottom:133.640000pt;}
.y1a6{bottom:133.760000pt;}
.y1da{bottom:133.786667pt;}
.y16e{bottom:133.800000pt;}
.y18d{bottom:134.266667pt;}
.y176{bottom:134.906667pt;}
.yf4{bottom:136.666667pt;}
.y286{bottom:136.826667pt;}
.ycc{bottom:140.026667pt;}
.y23c{bottom:140.506667pt;}
.ya0{bottom:141.466667pt;}
.y115{bottom:141.786667pt;}
.y255{bottom:142.426667pt;}
.y202{bottom:145.146667pt;}
.y141{bottom:146.586667pt;}
.y17c{bottom:147.706667pt;}
.y20c{bottom:148.506667pt;}
.y220{bottom:148.666667pt;}
.y1ac{bottom:149.146667pt;}
.y1b7{bottom:149.920000pt;}
.y1a5{bottom:149.946667pt;}
.y1c7{bottom:149.954667pt;}
.y194{bottom:149.960000pt;}
.y1f9{bottom:150.080000pt;}
.y16d{bottom:150.120000pt;}
.y33{bottom:150.266667pt;}
.y175{bottom:151.226667pt;}
.y285{bottom:154.746667pt;}
.yf3{bottom:156.186667pt;}
.y201{bottom:158.746667pt;}
.ycb{bottom:159.546667pt;}
.y1e8{bottom:160.026667pt;}
.y254{bottom:160.186667pt;}
.y9f{bottom:160.986667pt;}
.y114{bottom:161.306667pt;}
.y21c{bottom:162.106667pt;}
.y1ab{bottom:162.586667pt;}
.y140{bottom:164.186667pt;}
.y20b{bottom:166.106667pt;}
.y1b6{bottom:166.240000pt;}
.y1a4{bottom:166.266667pt;}
.y1c6{bottom:166.274667pt;}
.y18a{bottom:166.280000pt;}
.y1f8{bottom:166.400000pt;}
.y16c{bottom:166.440000pt;}
.y174{bottom:167.386667pt;}
.y284{bottom:172.506667pt;}
.yf2{bottom:175.706667pt;}
.y13c{bottom:177.626667pt;}
.y253{bottom:178.106667pt;}
.yca{bottom:179.066667pt;}
.y20a{bottom:179.546667pt;}
.y1ea{bottom:180.200000pt;}
.y32{bottom:180.346667pt;}
.y9e{bottom:180.506667pt;}
.y113{bottom:180.826667pt;}
.y1b5{bottom:182.560000pt;}
.y1a3{bottom:182.586667pt;}
.y1c5{bottom:182.594667pt;}
.y16b{bottom:182.600000pt;}
.y283{bottom:190.426667pt;}
.yf1{bottom:195.386667pt;}
.y252{bottom:196.026667pt;}
.y1e9{bottom:197.480000pt;}
.y31{bottom:197.786667pt;}
.yc9{bottom:198.586667pt;}
.y1a2{bottom:198.746667pt;}
.y1c4{bottom:198.754667pt;}
.y21d{bottom:198.760000pt;}
.y1b4{bottom:198.880000pt;}
.y1f7{bottom:198.906667pt;}
.y16a{bottom:198.920000pt;}
.y23b{bottom:199.066667pt;}
.y9d{bottom:200.026667pt;}
.y112{bottom:200.346667pt;}
.y282{bottom:208.346667pt;}
.y30{bottom:213.946667pt;}
.y1a1{bottom:215.066667pt;}
.y1c3{bottom:215.074667pt;}
.y193{bottom:215.080000pt;}
.y1f6{bottom:215.226667pt;}
.y169{bottom:215.240000pt;}
.yc8{bottom:218.106667pt;}
.y23a{bottom:218.746667pt;}
.y9c{bottom:219.546667pt;}
.y111{bottom:219.866667pt;}
.yf0{bottom:222.906667pt;}
.y200{bottom:224.506667pt;}
.y281{bottom:226.266667pt;}
.y13a{bottom:227.226667pt;}
.y62{bottom:227.866667pt;}
.y206{bottom:228.986667pt;}
.y1ed{bottom:229.000000pt;}
.y2f{bottom:230.266667pt;}
.y1a0{bottom:231.386667pt;}
.y1c2{bottom:231.394667pt;}
.y168{bottom:231.400000pt;}
.y1f5{bottom:231.546667pt;}
.y1ee{bottom:231.560000pt;}
.y251{bottom:231.866667pt;}
.y239{bottom:238.266667pt;}
.y9b{bottom:239.066667pt;}
.y110{bottom:239.386667pt;}
.yef{bottom:242.426667pt;}
.y280{bottom:244.186667pt;}
.y1ff{bottom:244.986667pt;}
.yc7{bottom:245.626667pt;}
.y1ec{bottom:246.440000pt;}
.y2e{bottom:246.586667pt;}
.y1c1{bottom:247.554667pt;}
.y139{bottom:247.706667pt;}
.y167{bottom:247.720000pt;}
.y250{bottom:249.786667pt;}
.yee{bottom:261.986667pt;}
.y27f{bottom:262.146667pt;}
.y2d{bottom:262.786667pt;}
.y19f{bottom:263.866667pt;}
.y1c0{bottom:263.874667pt;}
.y1d9{bottom:263.906667pt;}
.y1f4{bottom:264.026667pt;}
.y166{bottom:264.040000pt;}
.y9a{bottom:266.626667pt;}
.y10f{bottom:266.946667pt;}
.y24f{bottom:267.746667pt;}
.y61{bottom:269.186667pt;}
.y238{bottom:269.986667pt;}
.y138{bottom:272.866667pt;}
.yc6{bottom:273.186667pt;}
.y1fe{bottom:273.346667pt;}
.y2c{bottom:279.106667pt;}
.y27e{bottom:280.066667pt;}
.y21a{bottom:280.186667pt;}
.y1bf{bottom:280.194667pt;}
.y189{bottom:280.200000pt;}
.y1d8{bottom:280.226667pt;}
.y1f3{bottom:280.346667pt;}
.y165{bottom:280.360000pt;}
.y208{bottom:280.386667pt;}
.yed{bottom:281.506667pt;}
.y60{bottom:283.746667pt;}
.y24e{bottom:285.666667pt;}
.y10e{bottom:286.466667pt;}
.y1fd{bottom:290.786667pt;}
.y237{bottom:291.106667pt;}
.y137{bottom:293.666667pt;}
.y99{bottom:294.946667pt;}
.y2b{bottom:295.426667pt;}
.y219{bottom:296.506667pt;}
.y1be{bottom:296.514667pt;}
.y164{bottom:296.520000pt;}
.y1d7{bottom:296.546667pt;}
.y27d{bottom:297.986667pt;}
.y5f{bottom:298.466667pt;}
.yc5{bottom:300.706667pt;}
.yec{bottom:301.026667pt;}
.y24d{bottom:303.586667pt;}
.y10d{bottom:305.986667pt;}
.y1fc{bottom:308.226667pt;}
.y2a{bottom:311.746667pt;}
.y236{bottom:312.066667pt;}
.y218{bottom:312.666667pt;}
.y1bd{bottom:312.674667pt;}
.y163{bottom:312.840000pt;}
.y136{bottom:312.866667pt;}
.y5e{bottom:313.026667pt;}
.y27c{bottom:315.906667pt;}
.yc4{bottom:320.226667pt;}
.y24c{bottom:321.506667pt;}
.y1f2{bottom:321.666667pt;}
.y98{bottom:325.026667pt;}
.y10c{bottom:325.506667pt;}
.y5d{bottom:327.746667pt;}
.y29{bottom:327.906667pt;}
.yeb{bottom:328.546667pt;}
.y217{bottom:328.986667pt;}
.y1b3{bottom:329.000000pt;}
.y1d6{bottom:329.026667pt;}
.y188{bottom:329.160000pt;}
.y162{bottom:329.186667pt;}
.y135{bottom:332.226667pt;}
.y235{bottom:333.186667pt;}
.y27b{bottom:333.826667pt;}
.y24b{bottom:339.266667pt;}
.yc3{bottom:339.746667pt;}
.y5c{bottom:342.306667pt;}
.y28{bottom:344.226667pt;}
.y10b{bottom:345.026667pt;}
.y216{bottom:345.306667pt;}
.y187{bottom:345.320000pt;}
.y161{bottom:345.346667pt;}
.y207{bottom:345.506667pt;}
.yea{bottom:348.066667pt;}
.y134{bottom:351.586667pt;}
.y97{bottom:352.546667pt;}
.y234{bottom:354.306667pt;}
.y5b{bottom:357.026667pt;}
.y24a{bottom:357.186667pt;}
.y19e{bottom:357.986667pt;}
.yc2{bottom:359.266667pt;}
.y27{bottom:361.026667pt;}
.y1b2{bottom:361.640000pt;}
.y160{bottom:361.666667pt;}
.y10a{bottom:364.706667pt;}
.ye9{bottom:367.586667pt;}
.y27a{bottom:369.506667pt;}
.y133{bottom:370.946667pt;}
.y5a{bottom:371.586667pt;}
.y96{bottom:372.066667pt;}
.y249{bottom:375.106667pt;}
.y233{bottom:375.426667pt;}
.y1d5{bottom:377.826667pt;}
.y1b1{bottom:377.960000pt;}
.y15f{bottom:377.986667pt;}
.y109{bottom:384.226667pt;}
.y59{bottom:386.306667pt;}
.yc1{bottom:386.786667pt;}
.ye8{bottom:387.106667pt;}
.y279{bottom:387.426667pt;}
.y1e7{bottom:388.546667pt;}
.y26{bottom:390.946667pt;}
.y95{bottom:391.586667pt;}
.y248{bottom:393.026667pt;}
.y1b0{bottom:394.120000pt;}
.y186{bottom:394.146667pt;}
.y15e{bottom:394.306667pt;}
.y232{bottom:396.386667pt;}
.y132{bottom:397.026667pt;}
.y58{bottom:401.026667pt;}
.y108{bottom:403.746667pt;}
.y278{bottom:405.346667pt;}
.yc0{bottom:406.466667pt;}
.ye7{bottom:406.626667pt;}
.y212{bottom:406.946667pt;}
.y25{bottom:408.386667pt;}
.y1e6{bottom:409.026667pt;}
.y15d{bottom:410.466667pt;}
.y247{bottom:410.946667pt;}
.y94{bottom:411.106667pt;}
.y57{bottom:415.586667pt;}
.y107{bottom:423.266667pt;}
.y24{bottom:424.706667pt;}
.y1e5{bottom:425.346667pt;}
.ybf{bottom:425.986667pt;}
.ye6{bottom:426.146667pt;}
.y215{bottom:426.626667pt;}
.y15c{bottom:426.786667pt;}
.y131{bottom:427.746667pt;}
.y231{bottom:428.226667pt;}
.y246{bottom:428.866667pt;}
.y56{bottom:430.306667pt;}
.y93{bottom:430.626667pt;}
.y23{bottom:441.026667pt;}
.y277{bottom:441.186667pt;}
.y1d4{bottom:442.946667pt;}
.y15b{bottom:443.106667pt;}
.y55{bottom:444.866667pt;}
.ybe{bottom:445.506667pt;}
.ye5{bottom:445.666667pt;}
.y245{bottom:446.786667pt;}
.y230{bottom:449.346667pt;}
.y92{bottom:450.146667pt;}
.y106{bottom:450.786667pt;}
.y1e4{bottom:453.666667pt;}
.y22{bottom:457.186667pt;}
.y276{bottom:459.106667pt;}
.y185{bottom:459.266667pt;}
.y15a{bottom:459.426667pt;}
.y54{bottom:459.906667pt;}
.y130{bottom:461.666667pt;}
.y244{bottom:464.706667pt;}
.ybd{bottom:465.026667pt;}
.ye4{bottom:465.186667pt;}
.y91{bottom:469.666667pt;}
.y22f{bottom:470.306667pt;}
.y1e3{bottom:471.106667pt;}
.y21{bottom:473.506667pt;}
.y159{bottom:475.586667pt;}
.y53{bottom:476.066667pt;}
.y275{bottom:477.026667pt;}
.y105{bottom:478.946667pt;}
.y1bb{bottom:479.746667pt;}
.y12f{bottom:481.666667pt;}
.y243{bottom:482.626667pt;}
.ybc{bottom:484.546667pt;}
.ye3{bottom:484.866667pt;}
.y1e2{bottom:488.706667pt;}
.y90{bottom:489.186667pt;}
.y20{bottom:489.826667pt;}
.y22e{bottom:491.426667pt;}
.y214{bottom:491.746667pt;}
.y158{bottom:491.906667pt;}
.y52{bottom:492.066667pt;}
.y274{bottom:494.946667pt;}
.y1ba{bottom:496.066667pt;}
.y242{bottom:500.386667pt;}
.y12d{bottom:501.666667pt;}
.y1d3{bottom:502.146667pt;}
.ye2{bottom:504.386667pt;}
.y1f{bottom:505.986667pt;}
.y51{bottom:506.813333pt;}
.y213{bottom:508.066667pt;}
.y157{bottom:508.226667pt;}
.y8f{bottom:508.893333pt;}
.y104{bottom:509.053333pt;}
.ybb{bottom:512.093333pt;}
.y22d{bottom:512.573333pt;}
.y273{bottom:512.893333pt;}
.y241{bottom:518.333333pt;}
.y50{bottom:521.373333pt;}
.y12c{bottom:521.693333pt;}
.y1e{bottom:522.333333pt;}
.ye1{bottom:523.933333pt;}
.y156{bottom:524.386667pt;}
.y1b9{bottom:524.413333pt;}
.y103{bottom:528.573333pt;}
.y272{bottom:530.653333pt;}
.yba{bottom:531.613333pt;}
.y22c{bottom:533.533333pt;}
.y4f{bottom:536.093333pt;}
.y8e{bottom:536.413333pt;}
.y240{bottom:537.373333pt;}
.y1d{bottom:538.653333pt;}
.y155{bottom:540.706667pt;}
.y12b{bottom:541.693333pt;}
.y1b8{bottom:541.853333pt;}
.y102{bottom:548.093333pt;}
.y271{bottom:548.573333pt;}
.y4e{bottom:550.653333pt;}
.yb9{bottom:551.133333pt;}
.ye0{bottom:551.453333pt;}
.y22b{bottom:554.653333pt;}
.y1c{bottom:554.973333pt;}
.y1af{bottom:555.293333pt;}
.y8d{bottom:555.933333pt;}
.y154{bottom:557.026667pt;}
.y12a{bottom:561.693333pt;}
.y4d{bottom:565.373333pt;}
.y270{bottom:566.493333pt;}
.y23f{bottom:567.453333pt;}
.y101{bottom:567.613333pt;}
.yb8{bottom:570.653333pt;}
.ydf{bottom:570.973333pt;}
.y1b{bottom:571.133333pt;}
.y184{bottom:573.186667pt;}
.y153{bottom:573.346667pt;}
.y8c{bottom:575.453333pt;}
.y22a{bottom:575.773333pt;}
.y4c{bottom:580.253333pt;}
.y129{bottom:581.693333pt;}
.y26f{bottom:584.413333pt;}
.y1a{bottom:587.933333pt;}
.y183{bottom:589.506667pt;}
.y152{bottom:589.546667pt;}
.yb7{bottom:590.173333pt;}
.yde{bottom:590.493333pt;}
.y4b{bottom:594.813333pt;}
.y8b{bottom:594.973333pt;}
.y100{bottom:595.293333pt;}
.y229{bottom:596.893333pt;}
.y128{bottom:601.693333pt;}
.y26e{bottom:602.333333pt;}
.y19{bottom:603.933333pt;}
.y182{bottom:605.826667pt;}
.y151{bottom:605.866667pt;}
.y4a{bottom:609.533333pt;}
.yb6{bottom:609.693333pt;}
.ydd{bottom:610.013333pt;}
.y18{bottom:613.693333pt;}
.y8a{bottom:614.493333pt;}
.y1f1{bottom:615.453333pt;}
.y228{bottom:617.853333pt;}
.y26d{bottom:620.253333pt;}
.y127{bottom:621.693333pt;}
.y150{bottom:622.186667pt;}
.yff{bottom:623.453333pt;}
.y49{bottom:624.093333pt;}
.y17{bottom:624.893333pt;}
.yb5{bottom:629.213333pt;}
.ydc{bottom:629.533333pt;}
.y89{bottom:634.013333pt;}
.y19d{bottom:635.293333pt;}
.y26c{bottom:638.173333pt;}
.y181{bottom:638.346667pt;}
.y14f{bottom:638.506667pt;}
.y48{bottom:638.813333pt;}
.y227{bottom:638.973333pt;}
.y16{bottom:639.773333pt;}
.y126{bottom:641.693333pt;}
.ydb{bottom:649.053333pt;}
.y15{bottom:649.533333pt;}
.y47{bottom:653.373333pt;}
.y88{bottom:653.533333pt;}
.y14e{bottom:654.666667pt;}
.y19c{bottom:655.773333pt;}
.y26b{bottom:656.093333pt;}
.yb4{bottom:656.733333pt;}
.y226{bottom:660.093333pt;}
.y14{bottom:661.213333pt;}
.y125{bottom:661.693333pt;}
.y46{bottom:668.093333pt;}
.yda{bottom:668.573333pt;}
.y205{bottom:669.213333pt;}
.y14d{bottom:670.986667pt;}
.y19b{bottom:672.093333pt;}
.yfe{bottom:673.053333pt;}
.y26a{bottom:674.013333pt;}
.yb3{bottom:676.253333pt;}
.y13{bottom:677.213333pt;}
.y87{bottom:681.053333pt;}
.y124{bottom:681.693333pt;}
.y45{bottom:682.653333pt;}
.y14c{bottom:687.306667pt;}
.y225{bottom:687.613333pt;}
.yd9{bottom:688.093333pt;}
.y19a{bottom:688.413333pt;}
.y12{bottom:688.893333pt;}
.y292{bottom:690.173333pt;}
.y269{bottom:691.933333pt;}
.yfd{bottom:692.573333pt;}
.yb2{bottom:695.933333pt;}
.y44{bottom:697.373333pt;}
.y86{bottom:700.573333pt;}
.y121{bottom:701.693333pt;}
.y14b{bottom:703.466667pt;}
.y11{bottom:707.773333pt;}
.y291{bottom:708.093333pt;}
.y268{bottom:709.693333pt;}
.y43{bottom:711.933333pt;}
.yfc{bottom:712.093333pt;}
.yb1{bottom:715.453333pt;}
.yd8{bottom:715.613333pt;}
.y199{bottom:716.733333pt;}
.y224{bottom:717.053333pt;}
.y14a{bottom:719.786667pt;}
.y85{bottom:720.093333pt;}
.y11e{bottom:722.493333pt;}
.y290{bottom:725.853333pt;}
.y42{bottom:726.653333pt;}
.y10{bottom:727.613333pt;}
.y223{bottom:729.693333pt;}
.y192{bottom:730.013333pt;}
.yfb{bottom:731.613333pt;}
.yb0{bottom:734.973333pt;}
.y149{bottom:736.106667pt;}
.yf{bottom:739.293333pt;}
.y84{bottom:739.613333pt;}
.y41{bottom:741.373333pt;}
.yd7{bottom:743.133333pt;}
.y28f{bottom:743.773333pt;}
.y267{bottom:745.533333pt;}
.y11d{bottom:746.653333pt;}
.yfa{bottom:751.133333pt;}
.y180{bottom:752.266667pt;}
.y148{bottom:752.426667pt;}
.y40{bottom:755.973333pt;}
.ye{bottom:758.213333pt;}
.y83{bottom:759.173333pt;}
.y28e{bottom:761.733333pt;}
.yaf{bottom:762.533333pt;}
.y266{bottom:763.493333pt;}
.y147{bottom:768.586667pt;}
.y3f{bottom:770.693333pt;}
.y11c{bottom:771.813333pt;}
.yd{bottom:778.053333pt;}
.y82{bottom:778.693333pt;}
.y28d{bottom:779.653333pt;}
.y265{bottom:781.413333pt;}
.yae{bottom:782.053333pt;}
.y17f{bottom:784.906667pt;}
.y3e{bottom:785.253333pt;}
.yc{bottom:789.733333pt;}
.yd6{bottom:790.373333pt;}
.y81{bottom:798.373333pt;}
.y264{bottom:799.333333pt;}
.y3d{bottom:799.973333pt;}
.y17e{bottom:801.226667pt;}
.yad{bottom:801.573333pt;}
.y11b{bottom:803.493333pt;}
.yb{bottom:808.773333pt;}
.y28c{bottom:809.253333pt;}
.yd5{bottom:809.893333pt;}
.y3c{bottom:814.533333pt;}
.y263{bottom:817.253333pt;}
.y17d{bottom:817.386667pt;}
.y80{bottom:817.893333pt;}
.yac{bottom:821.093333pt;}
.y11a{bottom:824.613333pt;}
.y28b{bottom:826.533333pt;}
.y3b{bottom:829.253333pt;}
.yd4{bottom:829.413333pt;}
.ya{bottom:833.893333pt;}
.y76{bottom:834.373333pt;}
.y262{bottom:835.173333pt;}
.y7f{bottom:837.413333pt;}
.yab{bottom:840.613333pt;}
.y3a{bottom:843.813333pt;}
.y28a{bottom:844.133333pt;}
.y119{bottom:845.573333pt;}
.yf9{bottom:848.933333pt;}
.y261{bottom:853.093333pt;}
.yd3{bottom:855.973333pt;}
.y9{bottom:856.613333pt;}
.y39{bottom:858.533333pt;}
.y75{bottom:863.653333pt;}
.y7e{bottom:864.933333pt;}
.yaa{bottom:868.133333pt;}
.y260{bottom:871.013333pt;}
.yd2{bottom:872.293333pt;}
.y289{bottom:872.613333pt;}
.y38{bottom:873.253333pt;}
.y118{bottom:873.893333pt;}
.yf8{bottom:877.093333pt;}
.y8{bottom:879.493333pt;}
.y7d{bottom:884.453333pt;}
.ya9{bottom:887.653333pt;}
.yd1{bottom:888.613333pt;}
.y25f{bottom:888.773333pt;}
.y288{bottom:889.893333pt;}
.y74{bottom:892.453333pt;}
.y7{bottom:902.213333pt;}
.y7c{bottom:903.973333pt;}
.y117{bottom:904.613333pt;}
.yd0{bottom:904.933333pt;}
.y25e{bottom:906.693333pt;}
.ya8{bottom:907.173333pt;}
.y73{bottom:909.893333pt;}
.ycf{bottom:921.253333pt;}
.y7b{bottom:923.493333pt;}
.y25d{bottom:924.613333pt;}
.y72{bottom:926.213333pt;}
.ya7{bottom:926.693333pt;}
.y6{bottom:929.893333pt;}
.yf7{bottom:934.693333pt;}
.y71{bottom:942.373333pt;}
.y25c{bottom:942.533333pt;}
.y7a{bottom:943.013333pt;}
.ya6{bottom:946.213333pt;}
.yf6{bottom:954.213333pt;}
.y191{bottom:958.533333pt;}
.y70{bottom:958.693333pt;}
.y25b{bottom:960.453333pt;}
.y211{bottom:960.933333pt;}
.y79{bottom:962.533333pt;}
.y146{bottom:962.853333pt;}
.ya5{bottom:965.733333pt;}
.y5{bottom:972.133333pt;}
.yce{bottom:973.733333pt;}
.y1d2{bottom:974.853333pt;}
.y6f{bottom:975.013333pt;}
.y25a{bottom:978.373333pt;}
.y17b{bottom:978.533333pt;}
.y210{bottom:981.413333pt;}
.y78{bottom:982.053333pt;}
.y190{bottom:982.693333pt;}
.y145{bottom:987.013333pt;}
.y6e{bottom:991.333333pt;}
.ya4{bottom:993.413333pt;}
.y259{bottom:996.293333pt;}
.y20f{bottom:997.733333pt;}
.y17a{bottom:999.013333pt;}
.y6d{bottom:1007.520000pt;}
.y77{bottom:1010.400000pt;}
.ya3{bottom:1012.960000pt;}
.y258{bottom:1014.240000pt;}
.y4{bottom:1014.560000pt;}
.y179{bottom:1015.360000pt;}
.y144{bottom:1015.520000pt;}
.y6c{bottom:1023.840000pt;}
.y66{bottom:1040.320000pt;}
.y6a{bottom:1047.040000pt;}
.y65{bottom:1058.720000pt;}
.y64{bottom:1074.880000pt;}
.y63{bottom:1091.040000pt;}
.h2d{height:16.160000pt;}
.h20{height:16.320000pt;}
.h1e{height:20.000000pt;}
.h1f{height:20.032000pt;}
.hb{height:31.828125pt;}
.hd{height:32.765625pt;}
.h15{height:36.656250pt;}
.h11{height:40.570312pt;}
.h10{height:41.601562pt;}
.h12{height:41.671875pt;}
.h1a{height:42.866250pt;}
.h16{height:46.116875pt;}
.h14{height:47.742188pt;}
.h31{height:48.800000pt;}
.h21{height:48.960000pt;}
.h13{height:49.148438pt;}
.h4{height:50.887500pt;}
.h18{height:51.031250pt;}
.h17{height:51.117500pt;}
.h2{height:52.834688pt;}
.hc{height:54.390938pt;}
.h7{height:57.183750pt;}
.ha{height:58.563750pt;}
.he{height:60.288750pt;}
.h1b{height:63.656250pt;}
.h8{height:65.003750pt;}
.h2e{height:65.120000pt;}
.h1c{height:65.531250pt;}
.h19{height:69.120000pt;}
.h1d{height:74.477812pt;}
.h9{height:76.671562pt;}
.h2b{height:81.280000pt;}
.h3{height:84.512000pt;}
.h5{height:120.367188pt;}
.h6{height:127.312500pt;}
.h26{height:195.386667pt;}
.h24{height:227.866667pt;}
.h33{height:244.026667pt;}
.h25{height:276.666667pt;}
.h2a{height:276.826667pt;}
.h2f{height:292.986667pt;}
.h2c{height:293.146667pt;}
.h28{height:325.466667pt;}
.h27{height:406.906667pt;}
.h30{height:439.586667pt;}
.h29{height:472.066667pt;}
.h32{height:553.346667pt;}
.h22{height:781.373333pt;}
.h23{height:830.173333pt;}
.hf{height:1112.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:47.360000pt;}
.w9{width:51.840000pt;}
.we{width:56.800000pt;}
.w7{width:66.240000pt;}
.w3{width:80.000000pt;}
.w20{width:122.752000pt;}
.w1d{width:137.146667pt;}
.w1b{width:153.626667pt;}
.w11{width:154.586667pt;}
.w15{width:155.066667pt;}
.wc{width:156.186667pt;}
.w5{width:157.786653pt;}
.w4{width:158.106643pt;}
.w19{width:159.386667pt;}
.w6{width:160.666667pt;}
.wa{width:163.706667pt;}
.w13{width:177.946667pt;}
.w17{width:178.106667pt;}
.wf{width:179.546667pt;}
.w10{width:283.586667pt;}
.w18{width:289.986667pt;}
.w14{width:290.146667pt;}
.w8{width:293.026667pt;}
.wb{width:294.946667pt;}
.wd{width:302.466667pt;}
.w12{width:308.546667pt;}
.w1a{width:308.706667pt;}
.w16{width:313.026667pt;}
.w1c{width:314.466667pt;}
.w1e{width:330.946667pt;}
.w21{width:349.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x32{left:7.200000pt;}
.x22{left:20.959976pt;}
.x3a{left:22.080000pt;}
.x3{left:25.920000pt;}
.x20{left:27.199976pt;}
.x19{left:59.999976pt;}
.x18{left:61.119976pt;}
.x2c{left:75.679988pt;}
.x1c{left:84.991976pt;}
.x1e{left:88.671976pt;}
.x1d{left:92.031976pt;}
.x1f{left:96.511976pt;}
.x15{left:99.391976pt;}
.x16{left:100.831976pt;}
.x17{left:102.911976pt;}
.x23{left:106.751976pt;}
.x24{left:112.191976pt;}
.x1{left:113.471988pt;}
.x1b{left:115.551976pt;}
.x2f{left:122.911988pt;}
.x25{left:124.191976pt;}
.x26{left:128.671976pt;}
.x21{left:130.111976pt;}
.x2d{left:133.466653pt;}
.x1a{left:148.506643pt;}
.x2b{left:160.666655pt;}
.x38{left:162.906655pt;}
.x13{left:170.266655pt;}
.x42{left:174.266655pt;}
.x27{left:175.226655pt;}
.x3e{left:186.266655pt;}
.x28{left:189.146655pt;}
.x7{left:190.266655pt;}
.x2e{left:207.866655pt;}
.x35{left:212.506667pt;}
.x39{left:217.466667pt;}
.x29{left:222.426655pt;}
.x4{left:225.786655pt;}
.x14{left:226.906655pt;}
.x9{left:246.586655pt;}
.x30{left:255.226655pt;}
.x6{left:273.986655pt;}
.x31{left:281.346655pt;}
.x44{left:282.626655pt;}
.x5{left:306.306655pt;}
.x33{left:321.346667pt;}
.x43{left:330.946667pt;}
.x12{left:344.386655pt;}
.x41{left:349.666667pt;}
.x2a{left:356.706655pt;}
.x3f{left:361.666655pt;}
.x40{left:366.146667pt;}
.x3d{left:367.586667pt;}
.x37{left:368.706667pt;}
.x3b{left:372.066667pt;}
.x36{left:376.226667pt;}
.x34{left:387.586667pt;}
.x3c{left:390.466667pt;}
.xb{left:396.706655pt;}
.xa{left:460.573322pt;}
.xc{left:477.533322pt;}
.x11{left:495.773322pt;}
.xf{left:502.333322pt;}
.xe{left:505.213322pt;}
.x8{left:556.093322pt;}
.x10{left:557.373322pt;}
.x45{left:656.773322pt;}
.xd{left:680.453322pt;}
.x2{left:697.093333pt;}
}




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