
    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_cbc731a60daf6cb8b5f43d28.woff')format("woff");}.ff1{font-family:ff1;line-height:1.183105;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_e187854d092184222de66df0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.122070;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_5132e7b46c8705d67fb75eae.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f4c93563d403b2a3da5eeb4a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.067383;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_080097c7a52fead45980d335.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_a181cca495597a16a95fa305.woff')format("woff");}.ff6{font-family:ff6;line-height:1.074707;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_01d3b9edffb6ab28c4436d1c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.074707;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_69ef7e93d8eb9c6f5b6b301f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.952148;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_b1192172b8f9b0e948d7afcf.woff')format("woff");}.ff9{font-family:ff9;line-height:0.880371;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_653f4dd5b6d64b2168427967.woff')format("woff");}.ffa{font-family:ffa;line-height:1.070312;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_5c6597fd4c460c73cb5fb7ca.woff')format("woff");}.ffb{font-family:ffb;line-height:0.882324;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_3efc58b2ee6553b79996fbd6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.880371;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);}
.v1{vertical-align:-10.725000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-5.265000px;}
.ls6{letter-spacing:-4.860000px;}
.ls38{letter-spacing:-4.779000px;}
.ls3b{letter-spacing:-3.819000px;}
.ls1d{letter-spacing:-3.483000px;}
.ls19{letter-spacing:-2.898000px;}
.ls11{letter-spacing:-2.415000px;}
.ls8{letter-spacing:-2.352000px;}
.ls20{letter-spacing:-2.346000px;}
.lsb{letter-spacing:-2.100000px;}
.ls40{letter-spacing:-1.932000px;}
.ls3f{letter-spacing:-1.848000px;}
.ls1a{letter-spacing:-1.794000px;}
.ls42{letter-spacing:-1.764000px;}
.ls1b{letter-spacing:-1.725000px;}
.ls7{letter-spacing:-1.620000px;}
.ls41{letter-spacing:-1.596000px;}
.ls17{letter-spacing:-1.587000px;}
.ls1f{letter-spacing:-1.518000px;}
.ls9{letter-spacing:-1.428000px;}
.ls12{letter-spacing:-1.200000px;}
.ls1e{letter-spacing:-1.104000px;}
.ls15{letter-spacing:-1.053000px;}
.lsf{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.966000px;}
.ls27{letter-spacing:-0.884994px;}
.ls14{letter-spacing:-0.855000px;}
.ls1c{letter-spacing:-0.627000px;}
.ls37{letter-spacing:-0.570000px;}
.ls2b{letter-spacing:-0.552000px;}
.ls13{letter-spacing:-0.540000px;}
.ls33{letter-spacing:-0.414000px;}
.ls5{letter-spacing:-0.240000px;}
.ls4{letter-spacing:-0.180000px;}
.ls2e{letter-spacing:-0.171000px;}
.ls10{letter-spacing:-0.069000px;}
.ls1{letter-spacing:0.000000px;}
.ls35{letter-spacing:0.007800px;}
.ls25{letter-spacing:0.008400px;}
.ls28{letter-spacing:0.025500px;}
.ls32{letter-spacing:0.621000px;}
.ls21{letter-spacing:1.656000px;}
.ls2a{letter-spacing:2.139000px;}
.lsc{letter-spacing:2.400000px;}
.ls18{letter-spacing:3.300000px;}
.ls39{letter-spacing:3.946800px;}
.ls0{letter-spacing:4.200000px;}
.ls23{letter-spacing:4.275000px;}
.ls3d{letter-spacing:4.347000px;}
.ls29{letter-spacing:4.650000px;}
.ls3{letter-spacing:5.820000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.ls3e{letter-spacing:6.048000px;}
.lse{letter-spacing:6.300000px;}
.ls3a{letter-spacing:6.624000px;}
.lsd{letter-spacing:6.675000px;}
.ls31{letter-spacing:7.200000px;}
.ls30{letter-spacing:7.314000px;}
.ls36{letter-spacing:7.500000px;}
.ls34{letter-spacing:7.879800px;}
.ls3c{letter-spacing:7.950000px;}
.ls2d{letter-spacing:8.175000px;}
.ls22{letter-spacing:9.591000px;}
.ls26{letter-spacing:16.587600px;}
.ls2c{letter-spacing:17.512200px;}
.ls2f{letter-spacing:19.458000px;}
.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;}
}
.ws22{word-spacing:-69.000000px;}
.ws3f{word-spacing:-29.250000px;}
.ws54{word-spacing:-29.025000px;}
.ws4f{word-spacing:-28.575000px;}
.ws43{word-spacing:-28.275000px;}
.wsf{word-spacing:-27.750000px;}
.ws3c{word-spacing:-25.725000px;}
.ws34{word-spacing:-25.350000px;}
.ws1{word-spacing:-25.056000px;}
.ws21{word-spacing:-24.375000px;}
.ws5c{word-spacing:-22.860000px;}
.ws4{word-spacing:-22.740000px;}
.ws55{word-spacing:-22.050000px;}
.ws0{word-spacing:-21.816000px;}
.ws11{word-spacing:-21.789000px;}
.ws13{word-spacing:-19.389000px;}
.ws3{word-spacing:-19.320000px;}
.ws28{word-spacing:-19.278000px;}
.ws5b{word-spacing:-19.152000px;}
.ws19{word-spacing:-18.954000px;}
.ws59{word-spacing:-18.900000px;}
.ws5a{word-spacing:-18.816000px;}
.ws2b{word-spacing:-18.630000px;}
.ws2{word-spacing:-18.396000px;}
.ws10{word-spacing:-18.102000px;}
.ws50{word-spacing:-17.982000px;}
.ws56{word-spacing:-17.703000px;}
.ws35{word-spacing:-17.664000px;}
.ws2a{word-spacing:-17.112000px;}
.ws14{word-spacing:-17.043000px;}
.ws7{word-spacing:-16.860000px;}
.ws3d{word-spacing:-16.491000px;}
.ws2c{word-spacing:-16.284000px;}
.ws29{word-spacing:-15.939000px;}
.ws57{word-spacing:-15.561000px;}
.ws1b{word-spacing:-15.456000px;}
.ws25{word-spacing:-15.318000px;}
.ws24{word-spacing:-15.249000px;}
.ws5{word-spacing:-14.820000px;}
.ws1a{word-spacing:-14.628000px;}
.ws18{word-spacing:-14.280000px;}
.ws23{word-spacing:-14.145000px;}
.ws17{word-spacing:-13.620000px;}
.ws6{word-spacing:-12.720000px;}
.ws12{word-spacing:-11.303787px;}
.ws39{word-spacing:-10.418793px;}
.ws52{word-spacing:-7.500000px;}
.ws42{word-spacing:-7.314000px;}
.ws58{word-spacing:-6.300000px;}
.ws5d{word-spacing:-6.048000px;}
.ws9{word-spacing:-6.000000px;}
.wsa{word-spacing:-5.820000px;}
.wse{word-spacing:-4.200000px;}
.ws4d{word-spacing:-3.657000px;}
.ws36{word-spacing:-3.312000px;}
.ws4a{word-spacing:-2.967000px;}
.ws26{word-spacing:-2.760000px;}
.ws15{word-spacing:-2.400000px;}
.ws3e{word-spacing:-2.139000px;}
.ws27{word-spacing:-1.518000px;}
.ws46{word-spacing:-0.621000px;}
.ws4b{word-spacing:-0.414000px;}
.ws31{word-spacing:-0.069000px;}
.ws8{word-spacing:0.000000px;}
.ws40{word-spacing:0.171000px;}
.wsb{word-spacing:0.180000px;}
.wsc{word-spacing:0.240000px;}
.ws2e{word-spacing:0.345000px;}
.ws4c{word-spacing:0.414000px;}
.ws51{word-spacing:0.570000px;}
.ws2d{word-spacing:0.627000px;}
.ws45{word-spacing:0.690000px;}
.ws47{word-spacing:0.828000px;}
.ws1d{word-spacing:0.855000px;}
.ws3b{word-spacing:0.966000px;}
.ws1f{word-spacing:0.972000px;}
.ws32{word-spacing:1.104000px;}
.ws1c{word-spacing:1.200000px;}
.ws33{word-spacing:1.242000px;}
.ws48{word-spacing:1.380000px;}
.ws37{word-spacing:1.518000px;}
.ws20{word-spacing:1.587000px;}
.ws5e{word-spacing:1.764000px;}
.ws2f{word-spacing:1.932000px;}
.ws16{word-spacing:2.415000px;}
.ws44{word-spacing:2.553000px;}
.ws49{word-spacing:2.622000px;}
.ws53{word-spacing:3.819000px;}
.ws3a{word-spacing:4.623000px;}
.wsd{word-spacing:4.860000px;}
.ws1e{word-spacing:5.265000px;}
.ws30{word-spacing:6.279000px;}
.ws38{word-spacing:10.074000px;}
.ws4e{word-spacing:10.143000px;}
.ws41{word-spacing:11.937000px;}
._1d{margin-left:-19.017600px;}
._25{margin-left:-10.087200px;}
._1a{margin-left:-8.836500px;}
._b{margin-left:-6.619200px;}
._6{margin-left:-5.245800px;}
._9{margin-left:-3.480000px;}
._8{margin-left:-2.364600px;}
._3{margin-left:-1.057800px;}
._5{width:1.159800px;}
._1{width:2.400000px;}
._a{width:4.319400px;}
._4{width:5.880000px;}
._7{width:7.146000px;}
._11{width:9.047700px;}
._10{width:10.110300px;}
._13{width:11.850900px;}
._12{width:13.165200px;}
._f{width:14.662500px;}
._1f{width:15.703500px;}
._19{width:16.959600px;}
._1c{width:18.226800px;}
._21{width:20.800800px;}
._22{width:22.445700px;}
._15{width:23.539200px;}
._18{width:25.630200px;}
._1e{width:27.675900px;}
._24{width:34.424100px;}
._c{width:62.454000px;}
._e{width:260.610000px;}
._20{width:492.457200px;}
._23{width:494.430000px;}
._d{width:501.390000px;}
._16{width:503.812800px;}
._0{width:578.400000px;}
._14{width:993.706200px;}
._17{width:996.331200px;}
._1b{width:1000.381200px;}
._2{width:1002.361200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:40.227000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fsb{font-size:72.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y21e{bottom:106.107300px;}
.y1fa{bottom:106.165350px;}
.y23e{bottom:106.199400px;}
.y163{bottom:106.230600px;}
.y44{bottom:106.232100px;}
.y1b7{bottom:106.236150px;}
.yf5{bottom:106.247700px;}
.y182{bottom:106.261500px;}
.y65{bottom:106.267950px;}
.y8a{bottom:106.268850px;}
.y1da{bottom:106.271250px;}
.yaf{bottom:106.271850px;}
.yd5{bottom:106.278600px;}
.y196{bottom:106.284000px;}
.y123{bottom:106.291200px;}
.y111{bottom:106.296900px;}
.y144{bottom:106.302900px;}
.y1f{bottom:106.317750px;}
.y1e{bottom:126.117750px;}
.y21d{bottom:126.479550px;}
.y1b6{bottom:126.539400px;}
.y1f9{bottom:126.589350px;}
.y43{bottom:126.621600px;}
.y162{bottom:126.654600px;}
.yf4{bottom:126.671700px;}
.y181{bottom:126.685500px;}
.yd4{bottom:126.702600px;}
.yae{bottom:126.971850px;}
.y64{bottom:127.088700px;}
.y89{bottom:127.227600px;}
.y1d9{bottom:127.230000px;}
.y195{bottom:127.242750px;}
.y122{bottom:127.249950px;}
.y110{bottom:127.255650px;}
.y23d{bottom:127.351650px;}
.y143{bottom:127.670400px;}
.y25c{bottom:136.400700px;}
.y1d{bottom:145.917750px;}
.y1b5{bottom:146.842650px;}
.y21c{bottom:146.851800px;}
.y42{bottom:147.011100px;}
.y1f8{bottom:147.013350px;}
.y161{bottom:147.078600px;}
.yf3{bottom:147.095700px;}
.y180{bottom:147.109500px;}
.yd3{bottom:147.126600px;}
.yad{bottom:147.671850px;}
.y63{bottom:147.909450px;}
.y88{bottom:148.186350px;}
.y1d8{bottom:148.188750px;}
.y194{bottom:148.201500px;}
.y121{bottom:148.208700px;}
.y10f{bottom:148.214400px;}
.y142{bottom:149.008650px;}
.y25b{bottom:156.650700px;}
.y23c{bottom:157.008900px;}
.y1c{bottom:165.717750px;}
.y1b4{bottom:167.145900px;}
.y21b{bottom:167.224050px;}
.y41{bottom:167.400600px;}
.y1f7{bottom:167.437350px;}
.y160{bottom:167.502600px;}
.yf2{bottom:167.519700px;}
.y17f{bottom:167.533500px;}
.yd2{bottom:167.550600px;}
.yac{bottom:168.371850px;}
.y62{bottom:168.730200px;}
.y87{bottom:169.145100px;}
.y1d7{bottom:169.147500px;}
.y193{bottom:169.160250px;}
.y120{bottom:169.167450px;}
.y10e{bottom:169.170750px;}
.y141{bottom:170.346900px;}
.y25a{bottom:176.900700px;}
.y23b{bottom:178.161150px;}
.y1b{bottom:185.517750px;}
.y1b3{bottom:187.449150px;}
.y21a{bottom:187.596300px;}
.y40{bottom:187.790100px;}
.y1f6{bottom:187.861350px;}
.y15f{bottom:187.926600px;}
.yf1{bottom:187.943700px;}
.y17e{bottom:187.957500px;}
.yd1{bottom:187.974600px;}
.yab{bottom:189.065100px;}
.y61{bottom:189.550950px;}
.y86{bottom:190.103850px;}
.y1d6{bottom:190.106250px;}
.y192{bottom:190.119000px;}
.y11f{bottom:190.126200px;}
.y10d{bottom:190.129500px;}
.y140{bottom:191.685150px;}
.y259{bottom:197.150700px;}
.y1a{bottom:205.317750px;}
.y1b2{bottom:207.752400px;}
.y23a{bottom:207.818400px;}
.y219{bottom:207.968550px;}
.y3f{bottom:208.179600px;}
.y1f5{bottom:208.285350px;}
.yf0{bottom:208.367700px;}
.y17d{bottom:208.381500px;}
.yd0{bottom:208.398600px;}
.yaa{bottom:209.707200px;}
.y60{bottom:210.371700px;}
.y85{bottom:211.062600px;}
.y1d5{bottom:211.065000px;}
.y191{bottom:211.077750px;}
.y11e{bottom:211.084950px;}
.y10c{bottom:211.088250px;}
.y19{bottom:225.117750px;}
.y1b1{bottom:228.055650px;}
.y218{bottom:228.340800px;}
.y3e{bottom:228.569100px;}
.y1f4{bottom:228.709350px;}
.y15e{bottom:228.774600px;}
.yef{bottom:228.791700px;}
.ycf{bottom:228.795150px;}
.y239{bottom:228.970650px;}
.y258{bottom:230.150700px;}
.ya9{bottom:230.407200px;}
.y5f{bottom:231.192450px;}
.y84{bottom:232.021350px;}
.y1d4{bottom:232.023750px;}
.y190{bottom:232.036500px;}
.y10b{bottom:232.042950px;}
.y11d{bottom:232.043700px;}
.y13f{bottom:234.361650px;}
.y1b0{bottom:248.358900px;}
.y217{bottom:248.713050px;}
.y3d{bottom:248.958600px;}
.y1f3{bottom:249.133350px;}
.y15d{bottom:249.198600px;}
.yee{bottom:249.215700px;}
.yce{bottom:249.219150px;}
.y17c{bottom:249.229500px;}
.ya8{bottom:251.107200px;}
.y83{bottom:252.980100px;}
.y1d3{bottom:252.982500px;}
.y11c{bottom:253.002450px;}
.y13e{bottom:255.699900px;}
.y18{bottom:257.682750px;}
.y238{bottom:258.627900px;}
.y1af{bottom:268.662150px;}
.y216{bottom:269.085300px;}
.y3c{bottom:269.348100px;}
.y1f2{bottom:269.557350px;}
.y15c{bottom:269.622600px;}
.yed{bottom:269.639700px;}
.ycd{bottom:269.643150px;}
.y17b{bottom:269.653500px;}
.y257{bottom:271.655700px;}
.ya7{bottom:271.807200px;}
.y5e{bottom:273.267900px;}
.y82{bottom:273.938850px;}
.y1d2{bottom:273.941250px;}
.y18f{bottom:273.954000px;}
.y10a{bottom:273.960450px;}
.y13d{bottom:277.038150px;}
.y237{bottom:279.780150px;}
.y1ae{bottom:288.965400px;}
.y215{bottom:289.457550px;}
.y3b{bottom:289.737600px;}
.y1f1{bottom:289.981350px;}
.y15b{bottom:290.046600px;}
.yec{bottom:290.063700px;}
.ycc{bottom:290.067150px;}
.y17a{bottom:290.077500px;}
.y256{bottom:291.155700px;}
.ya6{bottom:292.507200px;}
.y81{bottom:294.897600px;}
.y1d1{bottom:294.900000px;}
.y18e{bottom:294.912750px;}
.y109{bottom:294.919200px;}
.y11b{bottom:294.919950px;}
.y13c{bottom:298.376400px;}
.y236{bottom:300.932400px;}
.y17{bottom:307.257750px;}
.y1ad{bottom:309.268650px;}
.y214{bottom:309.829800px;}
.y3a{bottom:310.127100px;}
.y1f0{bottom:310.405350px;}
.y15a{bottom:310.470600px;}
.yeb{bottom:310.487700px;}
.ycb{bottom:310.491150px;}
.y179{bottom:310.501500px;}
.y255{bottom:310.655700px;}
.ya5{bottom:313.207200px;}
.y80{bottom:315.856350px;}
.y1d0{bottom:315.858750px;}
.y11a{bottom:315.871500px;}
.y108{bottom:315.877950px;}
.y16{bottom:328.557750px;}
.y1ac{bottom:329.571900px;}
.y254{bottom:330.155700px;}
.y213{bottom:330.202050px;}
.y39{bottom:330.516600px;}
.y235{bottom:330.589650px;}
.y1ef{bottom:330.829350px;}
.y178{bottom:330.860250px;}
.y159{bottom:330.894600px;}
.yea{bottom:330.911700px;}
.yca{bottom:330.915150px;}
.y5d{bottom:336.007200px;}
.y7f{bottom:336.815100px;}
.y1cf{bottom:336.817500px;}
.y107{bottom:336.823050px;}
.y119{bottom:336.830250px;}
.y13b{bottom:340.982400px;}
.y253{bottom:349.655700px;}
.y1ab{bottom:349.875150px;}
.y15{bottom:349.887300px;}
.y212{bottom:350.574300px;}
.y38{bottom:350.906100px;}
.y1ee{bottom:351.253350px;}
.y177{bottom:351.284250px;}
.y158{bottom:351.318600px;}
.ye9{bottom:351.335700px;}
.yc9{bottom:351.339150px;}
.y234{bottom:351.741900px;}
.ya4{bottom:354.589950px;}
.y5c{bottom:356.827950px;}
.y7e{bottom:357.773850px;}
.y1ce{bottom:357.776250px;}
.y106{bottom:357.781800px;}
.y118{bottom:357.789000px;}
.y13a{bottom:366.072150px;}
.y252{bottom:369.155700px;}
.y14{bottom:369.687300px;}
.y1aa{bottom:370.178400px;}
.y211{bottom:370.946550px;}
.y37{bottom:371.295600px;}
.y1ed{bottom:371.677350px;}
.y176{bottom:371.708250px;}
.ye8{bottom:371.759700px;}
.yc8{bottom:371.763150px;}
.ya3{bottom:375.289950px;}
.y5b{bottom:377.648700px;}
.y7d{bottom:378.732600px;}
.y1cd{bottom:378.735000px;}
.y105{bottom:378.740550px;}
.y117{bottom:378.747750px;}
.y233{bottom:381.399150px;}
.y251{bottom:388.655700px;}
.y13{bottom:389.487300px;}
.y139{bottom:391.161900px;}
.y210{bottom:391.318800px;}
.y36{bottom:391.685100px;}
.y1ec{bottom:392.101350px;}
.y175{bottom:392.132250px;}
.yc7{bottom:392.135700px;}
.y157{bottom:392.166600px;}
.ye7{bottom:392.183700px;}
.ya2{bottom:395.989950px;}
.y5a{bottom:398.469450px;}
.y7c{bottom:399.691350px;}
.y1cc{bottom:399.693750px;}
.y104{bottom:399.699300px;}
.y116{bottom:399.706500px;}
.y232{bottom:402.551400px;}
.y250{bottom:408.155700px;}
.y12{bottom:409.287300px;}
.y20f{bottom:411.691050px;}
.y1a9{bottom:411.736650px;}
.y35{bottom:412.074600px;}
.y1eb{bottom:412.525350px;}
.y174{bottom:412.556250px;}
.yc6{bottom:412.559700px;}
.y156{bottom:412.590600px;}
.ye6{bottom:412.604250px;}
.ya1{bottom:416.689950px;}
.y59{bottom:419.290200px;}
.y7b{bottom:420.650100px;}
.y1cb{bottom:420.652500px;}
.y103{bottom:420.658050px;}
.y115{bottom:420.665250px;}
.y24f{bottom:427.655700px;}
.y11{bottom:429.087300px;}
.y20e{bottom:432.063300px;}
.y231{bottom:432.208650px;}
.y34{bottom:432.455700px;}
.y1ea{bottom:432.949350px;}
.ye5{bottom:432.966600px;}
.yc5{bottom:432.983700px;}
.y155{bottom:433.014600px;}
.ya0{bottom:437.266950px;}
.y58{bottom:440.110950px;}
.y7a{bottom:441.608850px;}
.y1ca{bottom:441.611250px;}
.y102{bottom:441.616800px;}
.y114{bottom:441.624000px;}
.y24e{bottom:447.155700px;}
.y10{bottom:448.887300px;}
.y20d{bottom:452.435550px;}
.y33{bottom:452.845200px;}
.y230{bottom:453.360900px;}
.y1e9{bottom:453.373350px;}
.ye4{bottom:453.390600px;}
.y173{bottom:453.404250px;}
.yc4{bottom:453.407700px;}
.y154{bottom:453.438600px;}
.y138{bottom:454.528800px;}
.y9f{bottom:457.966950px;}
.y57{bottom:460.931700px;}
.y79{bottom:462.567600px;}
.y1c9{bottom:462.570000px;}
.y101{bottom:462.575550px;}
.y113{bottom:462.582750px;}
.y24d{bottom:466.655700px;}
.yf{bottom:468.687300px;}
.y20c{bottom:472.807800px;}
.y32{bottom:473.171700px;}
.y1e8{bottom:473.797350px;}
.ye3{bottom:473.814600px;}
.y172{bottom:473.828250px;}
.yc3{bottom:473.831700px;}
.y153{bottom:473.862600px;}
.y1a8{bottom:473.999250px;}
.y22f{bottom:474.513150px;}
.y137{bottom:475.867050px;}
.y9e{bottom:478.666950px;}
.y56{bottom:481.752450px;}
.y78{bottom:483.526350px;}
.y1c8{bottom:483.528750px;}
.y100{bottom:483.534300px;}
.y112{bottom:483.541500px;}
.y24c{bottom:486.155700px;}
.ye{bottom:488.487300px;}
.y20b{bottom:493.180050px;}
.y31{bottom:493.561200px;}
.y1e7{bottom:494.221350px;}
.ye2{bottom:494.238600px;}
.y171{bottom:494.252250px;}
.yc2{bottom:494.255700px;}
.y152{bottom:494.286600px;}
.y1a7{bottom:494.302500px;}
.y136{bottom:497.230800px;}
.y9d{bottom:499.366950px;}
.y55{bottom:502.573200px;}
.y22e{bottom:504.170400px;}
.y77{bottom:504.485100px;}
.y1c7{bottom:504.487500px;}
.y18d{bottom:504.490650px;}
.yff{bottom:504.493050px;}
.y24b{bottom:505.655700px;}
.y20a{bottom:513.552300px;}
.y30{bottom:513.950700px;}
.y1a6{bottom:514.605750px;}
.y1e6{bottom:514.645350px;}
.ye1{bottom:514.662600px;}
.y170{bottom:514.676250px;}
.yc1{bottom:514.679700px;}
.y151{bottom:514.696800px;}
.y135{bottom:518.569050px;}
.y9c{bottom:520.066950px;}
.yd{bottom:521.052300px;}
.y54{bottom:523.393950px;}
.y24a{bottom:525.155700px;}
.y22d{bottom:525.322650px;}
.y76{bottom:525.443850px;}
.y1c6{bottom:525.446250px;}
.y18c{bottom:525.449400px;}
.yfe{bottom:525.451800px;}
.y209{bottom:533.924550px;}
.y2f{bottom:534.340200px;}
.y1a5{bottom:534.909000px;}
.y1e5{bottom:535.069350px;}
.ye0{bottom:535.086600px;}
.y16f{bottom:535.100250px;}
.yc0{bottom:535.103700px;}
.y150{bottom:535.120800px;}
.y134{bottom:539.907300px;}
.y9b{bottom:540.766950px;}
.y53{bottom:544.214700px;}
.y249{bottom:544.655700px;}
.y75{bottom:546.402600px;}
.y1c5{bottom:546.405000px;}
.y18b{bottom:546.408150px;}
.yfd{bottom:546.410550px;}
.y208{bottom:554.296800px;}
.y2e{bottom:554.729700px;}
.y22c{bottom:554.979900px;}
.y1a4{bottom:555.212250px;}
.y1e4{bottom:555.493350px;}
.ydf{bottom:555.510600px;}
.y16e{bottom:555.524250px;}
.y14f{bottom:555.544800px;}
.y133{bottom:561.245550px;}
.y9a{bottom:561.466950px;}
.y248{bottom:564.155700px;}
.y52{bottom:565.035450px;}
.y74{bottom:567.361350px;}
.y1c4{bottom:567.363750px;}
.y18a{bottom:567.366900px;}
.yfc{bottom:567.369300px;}
.y207{bottom:574.669050px;}
.y1a3{bottom:575.515500px;}
.y1e3{bottom:575.917350px;}
.yde{bottom:575.934600px;}
.y16d{bottom:575.948250px;}
.ybf{bottom:575.951700px;}
.yc{bottom:579.128700px;}
.y99{bottom:582.166950px;}
.y132{bottom:582.583800px;}
.y247{bottom:583.655700px;}
.y51{bottom:585.856200px;}
.y73{bottom:588.320100px;}
.y1c3{bottom:588.322500px;}
.y189{bottom:588.325650px;}
.yfb{bottom:588.328050px;}
.y206{bottom:595.041300px;}
.y2d{bottom:595.508700px;}
.y1a2{bottom:595.818750px;}
.y1e2{bottom:596.341350px;}
.y16c{bottom:596.372250px;}
.ybe{bottom:596.375700px;}
.y14e{bottom:596.382600px;}
.y98{bottom:602.866950px;}
.y246{bottom:603.155700px;}
.y131{bottom:603.922050px;}
.yb{bottom:606.428700px;}
.y50{bottom:606.676950px;}
.y72{bottom:609.278850px;}
.y1c2{bottom:609.281250px;}
.y188{bottom:609.284400px;}
.yfa{bottom:609.286800px;}
.y205{bottom:615.413550px;}
.y2c{bottom:615.898200px;}
.y1a1{bottom:616.122000px;}
.y1e1{bottom:616.765350px;}
.ydd{bottom:616.782600px;}
.y16b{bottom:616.796250px;}
.ybd{bottom:616.799700px;}
.y14d{bottom:616.806600px;}
.y97{bottom:623.566950px;}
.y130{bottom:625.260300px;}
.y4f{bottom:627.497700px;}
.y22b{bottom:627.770850px;}
.y71{bottom:630.237600px;}
.y1c1{bottom:630.240000px;}
.y187{bottom:630.243150px;}
.yf9{bottom:630.245550px;}
.y245{bottom:635.405700px;}
.y2b{bottom:636.287700px;}
.y1a0{bottom:636.425250px;}
.y1e0{bottom:637.189350px;}
.ydc{bottom:637.206600px;}
.ybc{bottom:637.223700px;}
.y14c{bottom:637.230600px;}
.y96{bottom:644.266950px;}
.y12f{bottom:646.642350px;}
.y4e{bottom:648.318450px;}
.y22a{bottom:648.919350px;}
.y70{bottom:651.196350px;}
.y1c0{bottom:651.198750px;}
.y186{bottom:651.201900px;}
.yf8{bottom:651.204300px;}
.ya{bottom:654.989400px;}
.y2a{bottom:656.677200px;}
.y19f{bottom:656.728500px;}
.y204{bottom:657.037950px;}
.y1df{bottom:657.613350px;}
.ydb{bottom:657.630600px;}
.y16a{bottom:657.644250px;}
.ybb{bottom:657.647700px;}
.y95{bottom:664.966950px;}
.y12e{bottom:667.980600px;}
.y4d{bottom:669.139200px;}
.y229{bottom:670.067850px;}
.y6f{bottom:672.155100px;}
.y1bf{bottom:672.157500px;}
.y185{bottom:672.160650px;}
.yf7{bottom:672.163050px;}
.y19e{bottom:677.031750px;}
.y29{bottom:677.066700px;}
.y1de{bottom:678.037350px;}
.yda{bottom:678.054600px;}
.y169{bottom:678.068250px;}
.yba{bottom:678.071700px;}
.y94{bottom:685.666950px;}
.y9{bottom:686.795400px;}
.y12d{bottom:689.318850px;}
.y4c{bottom:689.959950px;}
.y228{bottom:691.216350px;}
.y6e{bottom:693.113850px;}
.y1be{bottom:693.116250px;}
.y244{bottom:693.167250px;}
.y19d{bottom:697.335000px;}
.y28{bottom:697.456200px;}
.y1dd{bottom:698.461350px;}
.yb9{bottom:698.478600px;}
.y14b{bottom:698.488800px;}
.y168{bottom:698.492250px;}
.y93{bottom:706.366950px;}
.y12c{bottom:710.657100px;}
.y4b{bottom:710.780700px;}
.y227{bottom:712.364850px;}
.yf6{bottom:714.072600px;}
.y1bd{bottom:714.075000px;}
.y184{bottom:714.078150px;}
.y27{bottom:717.845700px;}
.y8{bottom:718.601400px;}
.y1dc{bottom:718.885350px;}
.yb8{bottom:718.902600px;}
.y167{bottom:718.909350px;}
.y14a{bottom:718.912800px;}
.y203{bottom:719.412600px;}
.y243{bottom:720.173250px;}
.y92{bottom:727.066950px;}
.y12b{bottom:731.995350px;}
.y226{bottom:733.513350px;}
.y6d{bottom:735.031350px;}
.y1bc{bottom:735.033750px;}
.y183{bottom:735.036900px;}
.y26{bottom:738.235200px;}
.y19c{bottom:738.893250px;}
.y1db{bottom:739.309350px;}
.yb7{bottom:739.326600px;}
.y149{bottom:739.330050px;}
.y166{bottom:739.333350px;}
.y202{bottom:739.723350px;}
.y91{bottom:747.766950px;}
.y4a{bottom:752.858250px;}
.y12a{bottom:753.333600px;}
.y225{bottom:754.661850px;}
.y6c{bottom:755.990100px;}
.y1bb{bottom:755.992500px;}
.y25{bottom:758.624700px;}
.y165{bottom:759.733350px;}
.yb6{bottom:759.750600px;}
.y148{bottom:759.754050px;}
.y201{bottom:760.095600px;}
.y90{bottom:768.466950px;}
.y129{bottom:774.671850px;}
.y224{bottom:775.810350px;}
.y6b{bottom:776.948850px;}
.y1ba{bottom:776.951250px;}
.y49{bottom:777.421500px;}
.y24{bottom:779.014200px;}
.y164{bottom:780.157350px;}
.y147{bottom:780.167700px;}
.yb5{bottom:780.174600px;}
.y7{bottom:780.184650px;}
.y200{bottom:780.467850px;}
.y242{bottom:788.660850px;}
.y8f{bottom:789.166950px;}
.y128{bottom:796.010100px;}
.y223{bottom:796.958850px;}
.y6a{bottom:797.907600px;}
.y1b9{bottom:797.910000px;}
.yb4{bottom:800.581350px;}
.yd9{bottom:800.584800px;}
.y146{bottom:800.591700px;}
.y1ff{bottom:800.840100px;}
.y19b{bottom:801.189900px;}
.y8e{bottom:809.866950px;}
.y6{bottom:809.989650px;}
.y127{bottom:817.348350px;}
.y241{bottom:817.420350px;}
.y222{bottom:818.107350px;}
.y69{bottom:818.866350px;}
.y1b8{bottom:818.868750px;}
.y23{bottom:820.659450px;}
.yb3{bottom:821.005350px;}
.yd8{bottom:821.008800px;}
.y145{bottom:821.015700px;}
.y1fe{bottom:821.212350px;}
.y19a{bottom:821.493150px;}
.y5{bottom:831.289650px;}
.y126{bottom:838.686600px;}
.y221{bottom:839.255850px;}
.y68{bottom:839.825100px;}
.y48{bottom:840.239100px;}
.yb2{bottom:841.429350px;}
.yd7{bottom:841.432800px;}
.y1fd{bottom:841.584600px;}
.y199{bottom:841.796400px;}
.y240{bottom:846.179850px;}
.y8d{bottom:851.822700px;}
.y4{bottom:852.589650px;}
.y125{bottom:860.024850px;}
.y220{bottom:860.404350px;}
.y67{bottom:860.783850px;}
.y47{bottom:861.059850px;}
.yb1{bottom:861.853350px;}
.yd6{bottom:861.856800px;}
.y1fc{bottom:861.956850px;}
.y198{bottom:862.099650px;}
.y23f{bottom:874.939350px;}
.y8c{bottom:876.264450px;}
.y124{bottom:881.363100px;}
.y21f{bottom:881.552850px;}
.y66{bottom:881.742600px;}
.y46{bottom:881.880600px;}
.yb0{bottom:882.277350px;}
.y1fb{bottom:882.329100px;}
.y3{bottom:882.394650px;}
.y197{bottom:882.398100px;}
.y22{bottom:883.062750px;}
.y8b{bottom:900.706200px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y21{bottom:904.193550px;}
.y20{bottom:948.189000px;}
.h8{height:44.460938px;}
.he{height:50.009766px;}
.h2d{height:51.884766px;}
.h2c{height:52.448730px;}
.h4{height:55.576172px;}
.h9{height:55.592972px;}
.hf{height:57.578613px;}
.h3{height:58.354980px;}
.h17{height:59.667480px;}
.hb{height:63.912598px;}
.h1e{height:63.922198px;}
.h18{height:63.926398px;}
.h1d{height:63.928798px;}
.h28{height:63.931798px;}
.h26{height:63.934798px;}
.h12{height:63.939598px;}
.h21{height:63.940198px;}
.h20{height:63.941398px;}
.h1b{height:63.944398px;}
.hd{height:63.946198px;}
.h27{height:63.950998px;}
.h23{height:63.953398px;}
.h22{height:63.953998px;}
.h1c{height:63.967198px;}
.h19{height:63.967798px;}
.h1f{height:63.973198px;}
.h14{height:63.980998px;}
.h13{height:63.981598px;}
.h29{height:63.990598px;}
.h24{height:64.008598px;}
.h16{height:64.022398px;}
.h15{height:64.118398px;}
.h2a{height:64.126798px;}
.h11{height:64.144198px;}
.h2b{height:64.158598px;}
.h1a{height:64.159198px;}
.hc{height:64.164598px;}
.h25{height:64.173598px;}
.h10{height:64.404598px;}
.h2{height:69.470215px;}
.ha{height:75.027832px;}
.h7{height:77.806641px;}
.h6{height:93.392578px;}
.h5{height:100.037109px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xa{left:80.549100px;}
.x6{left:82.214250px;}
.x5{left:83.849100px;}
.x1{left:85.039350px;}
.x8{left:104.059650px;}
.x4{left:105.960600px;}
.xc{left:109.144200px;}
.xb{left:111.024450px;}
.x9{left:212.663850px;}
.x7{left:230.965050px;}
.x2{left:232.601400px;}
.x3{left:233.976450px;}
@media print{
.v1{vertical-align:-9.533333pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-4.680000pt;}
.ls6{letter-spacing:-4.320000pt;}
.ls38{letter-spacing:-4.248000pt;}
.ls3b{letter-spacing:-3.394667pt;}
.ls1d{letter-spacing:-3.096000pt;}
.ls19{letter-spacing:-2.576000pt;}
.ls11{letter-spacing:-2.146667pt;}
.ls8{letter-spacing:-2.090667pt;}
.ls20{letter-spacing:-2.085333pt;}
.lsb{letter-spacing:-1.866667pt;}
.ls40{letter-spacing:-1.717333pt;}
.ls3f{letter-spacing:-1.642667pt;}
.ls1a{letter-spacing:-1.594667pt;}
.ls42{letter-spacing:-1.568000pt;}
.ls1b{letter-spacing:-1.533333pt;}
.ls7{letter-spacing:-1.440000pt;}
.ls41{letter-spacing:-1.418667pt;}
.ls17{letter-spacing:-1.410667pt;}
.ls1f{letter-spacing:-1.349333pt;}
.ls9{letter-spacing:-1.269333pt;}
.ls12{letter-spacing:-1.066667pt;}
.ls1e{letter-spacing:-0.981333pt;}
.ls15{letter-spacing:-0.936000pt;}
.lsf{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.858667pt;}
.ls27{letter-spacing:-0.786661pt;}
.ls14{letter-spacing:-0.760000pt;}
.ls1c{letter-spacing:-0.557333pt;}
.ls37{letter-spacing:-0.506667pt;}
.ls2b{letter-spacing:-0.490667pt;}
.ls13{letter-spacing:-0.480000pt;}
.ls33{letter-spacing:-0.368000pt;}
.ls5{letter-spacing:-0.213333pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls2e{letter-spacing:-0.152000pt;}
.ls10{letter-spacing:-0.061333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls35{letter-spacing:0.006933pt;}
.ls25{letter-spacing:0.007467pt;}
.ls28{letter-spacing:0.022667pt;}
.ls32{letter-spacing:0.552000pt;}
.ls21{letter-spacing:1.472000pt;}
.ls2a{letter-spacing:1.901333pt;}
.lsc{letter-spacing:2.133333pt;}
.ls18{letter-spacing:2.933333pt;}
.ls39{letter-spacing:3.508267pt;}
.ls0{letter-spacing:3.733333pt;}
.ls23{letter-spacing:3.800000pt;}
.ls3d{letter-spacing:3.864000pt;}
.ls29{letter-spacing:4.133333pt;}
.ls3{letter-spacing:5.173333pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.ls3e{letter-spacing:5.376000pt;}
.lse{letter-spacing:5.600000pt;}
.ls3a{letter-spacing:5.888000pt;}
.lsd{letter-spacing:5.933333pt;}
.ls31{letter-spacing:6.400000pt;}
.ls30{letter-spacing:6.501333pt;}
.ls36{letter-spacing:6.666667pt;}
.ls34{letter-spacing:7.004267pt;}
.ls3c{letter-spacing:7.066667pt;}
.ls2d{letter-spacing:7.266667pt;}
.ls22{letter-spacing:8.525333pt;}
.ls26{letter-spacing:14.744533pt;}
.ls2c{letter-spacing:15.566400pt;}
.ls2f{letter-spacing:17.296000pt;}
.ws22{word-spacing:-61.333333pt;}
.ws3f{word-spacing:-26.000000pt;}
.ws54{word-spacing:-25.800000pt;}
.ws4f{word-spacing:-25.400000pt;}
.ws43{word-spacing:-25.133333pt;}
.wsf{word-spacing:-24.666667pt;}
.ws3c{word-spacing:-22.866667pt;}
.ws34{word-spacing:-22.533333pt;}
.ws1{word-spacing:-22.272000pt;}
.ws21{word-spacing:-21.666667pt;}
.ws5c{word-spacing:-20.320000pt;}
.ws4{word-spacing:-20.213333pt;}
.ws55{word-spacing:-19.600000pt;}
.ws0{word-spacing:-19.392000pt;}
.ws11{word-spacing:-19.368000pt;}
.ws13{word-spacing:-17.234667pt;}
.ws3{word-spacing:-17.173333pt;}
.ws28{word-spacing:-17.136000pt;}
.ws5b{word-spacing:-17.024000pt;}
.ws19{word-spacing:-16.848000pt;}
.ws59{word-spacing:-16.800000pt;}
.ws5a{word-spacing:-16.725333pt;}
.ws2b{word-spacing:-16.560000pt;}
.ws2{word-spacing:-16.352000pt;}
.ws10{word-spacing:-16.090667pt;}
.ws50{word-spacing:-15.984000pt;}
.ws56{word-spacing:-15.736000pt;}
.ws35{word-spacing:-15.701333pt;}
.ws2a{word-spacing:-15.210667pt;}
.ws14{word-spacing:-15.149333pt;}
.ws7{word-spacing:-14.986667pt;}
.ws3d{word-spacing:-14.658667pt;}
.ws2c{word-spacing:-14.474667pt;}
.ws29{word-spacing:-14.168000pt;}
.ws57{word-spacing:-13.832000pt;}
.ws1b{word-spacing:-13.738667pt;}
.ws25{word-spacing:-13.616000pt;}
.ws24{word-spacing:-13.554667pt;}
.ws5{word-spacing:-13.173333pt;}
.ws1a{word-spacing:-13.002667pt;}
.ws18{word-spacing:-12.693333pt;}
.ws23{word-spacing:-12.573333pt;}
.ws17{word-spacing:-12.106667pt;}
.ws6{word-spacing:-11.306667pt;}
.ws12{word-spacing:-10.047811pt;}
.ws39{word-spacing:-9.261149pt;}
.ws52{word-spacing:-6.666667pt;}
.ws42{word-spacing:-6.501333pt;}
.ws58{word-spacing:-5.600000pt;}
.ws5d{word-spacing:-5.376000pt;}
.ws9{word-spacing:-5.333333pt;}
.wsa{word-spacing:-5.173333pt;}
.wse{word-spacing:-3.733333pt;}
.ws4d{word-spacing:-3.250667pt;}
.ws36{word-spacing:-2.944000pt;}
.ws4a{word-spacing:-2.637333pt;}
.ws26{word-spacing:-2.453333pt;}
.ws15{word-spacing:-2.133333pt;}
.ws3e{word-spacing:-1.901333pt;}
.ws27{word-spacing:-1.349333pt;}
.ws46{word-spacing:-0.552000pt;}
.ws4b{word-spacing:-0.368000pt;}
.ws31{word-spacing:-0.061333pt;}
.ws8{word-spacing:0.000000pt;}
.ws40{word-spacing:0.152000pt;}
.wsb{word-spacing:0.160000pt;}
.wsc{word-spacing:0.213333pt;}
.ws2e{word-spacing:0.306667pt;}
.ws4c{word-spacing:0.368000pt;}
.ws51{word-spacing:0.506667pt;}
.ws2d{word-spacing:0.557333pt;}
.ws45{word-spacing:0.613333pt;}
.ws47{word-spacing:0.736000pt;}
.ws1d{word-spacing:0.760000pt;}
.ws3b{word-spacing:0.858667pt;}
.ws1f{word-spacing:0.864000pt;}
.ws32{word-spacing:0.981333pt;}
.ws1c{word-spacing:1.066667pt;}
.ws33{word-spacing:1.104000pt;}
.ws48{word-spacing:1.226667pt;}
.ws37{word-spacing:1.349333pt;}
.ws20{word-spacing:1.410667pt;}
.ws5e{word-spacing:1.568000pt;}
.ws2f{word-spacing:1.717333pt;}
.ws16{word-spacing:2.146667pt;}
.ws44{word-spacing:2.269333pt;}
.ws49{word-spacing:2.330667pt;}
.ws53{word-spacing:3.394667pt;}
.ws3a{word-spacing:4.109333pt;}
.wsd{word-spacing:4.320000pt;}
.ws1e{word-spacing:4.680000pt;}
.ws30{word-spacing:5.581333pt;}
.ws38{word-spacing:8.954667pt;}
.ws4e{word-spacing:9.016000pt;}
.ws41{word-spacing:10.610667pt;}
._1d{margin-left:-16.904533pt;}
._25{margin-left:-8.966400pt;}
._1a{margin-left:-7.854667pt;}
._b{margin-left:-5.883733pt;}
._6{margin-left:-4.662933pt;}
._9{margin-left:-3.093333pt;}
._8{margin-left:-2.101867pt;}
._3{margin-left:-0.940267pt;}
._5{width:1.030933pt;}
._1{width:2.133333pt;}
._a{width:3.839467pt;}
._4{width:5.226667pt;}
._7{width:6.352000pt;}
._11{width:8.042400pt;}
._10{width:8.986933pt;}
._13{width:10.534133pt;}
._12{width:11.702400pt;}
._f{width:13.033333pt;}
._1f{width:13.958667pt;}
._19{width:15.075200pt;}
._1c{width:16.201600pt;}
._21{width:18.489600pt;}
._22{width:19.951733pt;}
._15{width:20.923733pt;}
._18{width:22.782400pt;}
._1e{width:24.600800pt;}
._24{width:30.599200pt;}
._c{width:55.514667pt;}
._e{width:231.653333pt;}
._20{width:437.739733pt;}
._23{width:439.493333pt;}
._d{width:445.680000pt;}
._16{width:447.833600pt;}
._0{width:514.133333pt;}
._14{width:883.294400pt;}
._17{width:885.627733pt;}
._1b{width:889.227733pt;}
._2{width:890.987733pt;}
.fs9{font-size:35.757333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fsb{font-size:64.000000pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y21e{bottom:94.317600pt;}
.y1fa{bottom:94.369200pt;}
.y23e{bottom:94.399467pt;}
.y163{bottom:94.427200pt;}
.y44{bottom:94.428533pt;}
.y1b7{bottom:94.432133pt;}
.yf5{bottom:94.442400pt;}
.y182{bottom:94.454667pt;}
.y65{bottom:94.460400pt;}
.y8a{bottom:94.461200pt;}
.y1da{bottom:94.463333pt;}
.yaf{bottom:94.463867pt;}
.yd5{bottom:94.469867pt;}
.y196{bottom:94.474667pt;}
.y123{bottom:94.481067pt;}
.y111{bottom:94.486133pt;}
.y144{bottom:94.491467pt;}
.y1f{bottom:94.504667pt;}
.y1e{bottom:112.104667pt;}
.y21d{bottom:112.426267pt;}
.y1b6{bottom:112.479467pt;}
.y1f9{bottom:112.523867pt;}
.y43{bottom:112.552533pt;}
.y162{bottom:112.581867pt;}
.yf4{bottom:112.597067pt;}
.y181{bottom:112.609333pt;}
.yd4{bottom:112.624533pt;}
.yae{bottom:112.863867pt;}
.y64{bottom:112.967733pt;}
.y89{bottom:113.091200pt;}
.y1d9{bottom:113.093333pt;}
.y195{bottom:113.104667pt;}
.y122{bottom:113.111067pt;}
.y110{bottom:113.116133pt;}
.y23d{bottom:113.201467pt;}
.y143{bottom:113.484800pt;}
.y25c{bottom:121.245067pt;}
.y1d{bottom:129.704667pt;}
.y1b5{bottom:130.526800pt;}
.y21c{bottom:130.534933pt;}
.y42{bottom:130.676533pt;}
.y1f8{bottom:130.678533pt;}
.y161{bottom:130.736533pt;}
.yf3{bottom:130.751733pt;}
.y180{bottom:130.764000pt;}
.yd3{bottom:130.779200pt;}
.yad{bottom:131.263867pt;}
.y63{bottom:131.475067pt;}
.y88{bottom:131.721200pt;}
.y1d8{bottom:131.723333pt;}
.y194{bottom:131.734667pt;}
.y121{bottom:131.741067pt;}
.y10f{bottom:131.746133pt;}
.y142{bottom:132.452133pt;}
.y25b{bottom:139.245067pt;}
.y23c{bottom:139.563467pt;}
.y1c{bottom:147.304667pt;}
.y1b4{bottom:148.574133pt;}
.y21b{bottom:148.643600pt;}
.y41{bottom:148.800533pt;}
.y1f7{bottom:148.833200pt;}
.y160{bottom:148.891200pt;}
.yf2{bottom:148.906400pt;}
.y17f{bottom:148.918667pt;}
.yd2{bottom:148.933867pt;}
.yac{bottom:149.663867pt;}
.y62{bottom:149.982400pt;}
.y87{bottom:150.351200pt;}
.y1d7{bottom:150.353333pt;}
.y193{bottom:150.364667pt;}
.y120{bottom:150.371067pt;}
.y10e{bottom:150.374000pt;}
.y141{bottom:151.419467pt;}
.y25a{bottom:157.245067pt;}
.y23b{bottom:158.365467pt;}
.y1b{bottom:164.904667pt;}
.y1b3{bottom:166.621467pt;}
.y21a{bottom:166.752267pt;}
.y40{bottom:166.924533pt;}
.y1f6{bottom:166.987867pt;}
.y15f{bottom:167.045867pt;}
.yf1{bottom:167.061067pt;}
.y17e{bottom:167.073333pt;}
.yd1{bottom:167.088533pt;}
.yab{bottom:168.057867pt;}
.y61{bottom:168.489733pt;}
.y86{bottom:168.981200pt;}
.y1d6{bottom:168.983333pt;}
.y192{bottom:168.994667pt;}
.y11f{bottom:169.001067pt;}
.y10d{bottom:169.004000pt;}
.y140{bottom:170.386800pt;}
.y259{bottom:175.245067pt;}
.y1a{bottom:182.504667pt;}
.y1b2{bottom:184.668800pt;}
.y23a{bottom:184.727467pt;}
.y219{bottom:184.860933pt;}
.y3f{bottom:185.048533pt;}
.y1f5{bottom:185.142533pt;}
.yf0{bottom:185.215733pt;}
.y17d{bottom:185.228000pt;}
.yd0{bottom:185.243200pt;}
.yaa{bottom:186.406400pt;}
.y60{bottom:186.997067pt;}
.y85{bottom:187.611200pt;}
.y1d5{bottom:187.613333pt;}
.y191{bottom:187.624667pt;}
.y11e{bottom:187.631067pt;}
.y10c{bottom:187.634000pt;}
.y19{bottom:200.104667pt;}
.y1b1{bottom:202.716133pt;}
.y218{bottom:202.969600pt;}
.y3e{bottom:203.172533pt;}
.y1f4{bottom:203.297200pt;}
.y15e{bottom:203.355200pt;}
.yef{bottom:203.370400pt;}
.ycf{bottom:203.373467pt;}
.y239{bottom:203.529467pt;}
.y258{bottom:204.578400pt;}
.ya9{bottom:204.806400pt;}
.y5f{bottom:205.504400pt;}
.y84{bottom:206.241200pt;}
.y1d4{bottom:206.243333pt;}
.y190{bottom:206.254667pt;}
.y10b{bottom:206.260400pt;}
.y11d{bottom:206.261067pt;}
.y13f{bottom:208.321467pt;}
.y1b0{bottom:220.763467pt;}
.y217{bottom:221.078267pt;}
.y3d{bottom:221.296533pt;}
.y1f3{bottom:221.451867pt;}
.y15d{bottom:221.509867pt;}
.yee{bottom:221.525067pt;}
.yce{bottom:221.528133pt;}
.y17c{bottom:221.537333pt;}
.ya8{bottom:223.206400pt;}
.y83{bottom:224.871200pt;}
.y1d3{bottom:224.873333pt;}
.y11c{bottom:224.891067pt;}
.y13e{bottom:227.288800pt;}
.y18{bottom:229.051333pt;}
.y238{bottom:229.891467pt;}
.y1af{bottom:238.810800pt;}
.y216{bottom:239.186933pt;}
.y3c{bottom:239.420533pt;}
.y1f2{bottom:239.606533pt;}
.y15c{bottom:239.664533pt;}
.yed{bottom:239.679733pt;}
.ycd{bottom:239.682800pt;}
.y17b{bottom:239.692000pt;}
.y257{bottom:241.471733pt;}
.ya7{bottom:241.606400pt;}
.y5e{bottom:242.904800pt;}
.y82{bottom:243.501200pt;}
.y1d2{bottom:243.503333pt;}
.y18f{bottom:243.514667pt;}
.y10a{bottom:243.520400pt;}
.y13d{bottom:246.256133pt;}
.y237{bottom:248.693467pt;}
.y1ae{bottom:256.858133pt;}
.y215{bottom:257.295600pt;}
.y3b{bottom:257.544533pt;}
.y1f1{bottom:257.761200pt;}
.y15b{bottom:257.819200pt;}
.yec{bottom:257.834400pt;}
.ycc{bottom:257.837467pt;}
.y17a{bottom:257.846667pt;}
.y256{bottom:258.805067pt;}
.ya6{bottom:260.006400pt;}
.y81{bottom:262.131200pt;}
.y1d1{bottom:262.133333pt;}
.y18e{bottom:262.144667pt;}
.y109{bottom:262.150400pt;}
.y11b{bottom:262.151067pt;}
.y13c{bottom:265.223467pt;}
.y236{bottom:267.495467pt;}
.y17{bottom:273.118000pt;}
.y1ad{bottom:274.905467pt;}
.y214{bottom:275.404267pt;}
.y3a{bottom:275.668533pt;}
.y1f0{bottom:275.915867pt;}
.y15a{bottom:275.973867pt;}
.yeb{bottom:275.989067pt;}
.ycb{bottom:275.992133pt;}
.y179{bottom:276.001333pt;}
.y255{bottom:276.138400pt;}
.ya5{bottom:278.406400pt;}
.y80{bottom:280.761200pt;}
.y1d0{bottom:280.763333pt;}
.y11a{bottom:280.774667pt;}
.y108{bottom:280.780400pt;}
.y16{bottom:292.051333pt;}
.y1ac{bottom:292.952800pt;}
.y254{bottom:293.471733pt;}
.y213{bottom:293.512933pt;}
.y39{bottom:293.792533pt;}
.y235{bottom:293.857467pt;}
.y1ef{bottom:294.070533pt;}
.y178{bottom:294.098000pt;}
.y159{bottom:294.128533pt;}
.yea{bottom:294.143733pt;}
.yca{bottom:294.146800pt;}
.y5d{bottom:298.673067pt;}
.y7f{bottom:299.391200pt;}
.y1cf{bottom:299.393333pt;}
.y107{bottom:299.398267pt;}
.y119{bottom:299.404667pt;}
.y13b{bottom:303.095467pt;}
.y253{bottom:310.805067pt;}
.y1ab{bottom:311.000133pt;}
.y15{bottom:311.010933pt;}
.y212{bottom:311.621600pt;}
.y38{bottom:311.916533pt;}
.y1ee{bottom:312.225200pt;}
.y177{bottom:312.252667pt;}
.y158{bottom:312.283200pt;}
.ye9{bottom:312.298400pt;}
.yc9{bottom:312.301467pt;}
.y234{bottom:312.659467pt;}
.ya4{bottom:315.191067pt;}
.y5c{bottom:317.180400pt;}
.y7e{bottom:318.021200pt;}
.y1ce{bottom:318.023333pt;}
.y106{bottom:318.028267pt;}
.y118{bottom:318.034667pt;}
.y13a{bottom:325.397467pt;}
.y252{bottom:328.138400pt;}
.y14{bottom:328.610933pt;}
.y1aa{bottom:329.047467pt;}
.y211{bottom:329.730267pt;}
.y37{bottom:330.040533pt;}
.y1ed{bottom:330.379867pt;}
.y176{bottom:330.407333pt;}
.ye8{bottom:330.453067pt;}
.yc8{bottom:330.456133pt;}
.ya3{bottom:333.591067pt;}
.y5b{bottom:335.687733pt;}
.y7d{bottom:336.651200pt;}
.y1cd{bottom:336.653333pt;}
.y105{bottom:336.658267pt;}
.y117{bottom:336.664667pt;}
.y233{bottom:339.021467pt;}
.y251{bottom:345.471733pt;}
.y13{bottom:346.210933pt;}
.y139{bottom:347.699467pt;}
.y210{bottom:347.838933pt;}
.y36{bottom:348.164533pt;}
.y1ec{bottom:348.534533pt;}
.y175{bottom:348.562000pt;}
.yc7{bottom:348.565067pt;}
.y157{bottom:348.592533pt;}
.ye7{bottom:348.607733pt;}
.ya2{bottom:351.991067pt;}
.y5a{bottom:354.195067pt;}
.y7c{bottom:355.281200pt;}
.y1cc{bottom:355.283333pt;}
.y104{bottom:355.288267pt;}
.y116{bottom:355.294667pt;}
.y232{bottom:357.823467pt;}
.y250{bottom:362.805067pt;}
.y12{bottom:363.810933pt;}
.y20f{bottom:365.947600pt;}
.y1a9{bottom:365.988133pt;}
.y35{bottom:366.288533pt;}
.y1eb{bottom:366.689200pt;}
.y174{bottom:366.716667pt;}
.yc6{bottom:366.719733pt;}
.y156{bottom:366.747200pt;}
.ye6{bottom:366.759333pt;}
.ya1{bottom:370.391067pt;}
.y59{bottom:372.702400pt;}
.y7b{bottom:373.911200pt;}
.y1cb{bottom:373.913333pt;}
.y103{bottom:373.918267pt;}
.y115{bottom:373.924667pt;}
.y24f{bottom:380.138400pt;}
.y11{bottom:381.410933pt;}
.y20e{bottom:384.056267pt;}
.y231{bottom:384.185467pt;}
.y34{bottom:384.405067pt;}
.y1ea{bottom:384.843867pt;}
.ye5{bottom:384.859200pt;}
.yc5{bottom:384.874400pt;}
.y155{bottom:384.901867pt;}
.ya0{bottom:388.681733pt;}
.y58{bottom:391.209733pt;}
.y7a{bottom:392.541200pt;}
.y1ca{bottom:392.543333pt;}
.y102{bottom:392.548267pt;}
.y114{bottom:392.554667pt;}
.y24e{bottom:397.471733pt;}
.y10{bottom:399.010933pt;}
.y20d{bottom:402.164933pt;}
.y33{bottom:402.529067pt;}
.y230{bottom:402.987467pt;}
.y1e9{bottom:402.998533pt;}
.ye4{bottom:403.013867pt;}
.y173{bottom:403.026000pt;}
.yc4{bottom:403.029067pt;}
.y154{bottom:403.056533pt;}
.y138{bottom:404.025600pt;}
.y9f{bottom:407.081733pt;}
.y57{bottom:409.717067pt;}
.y79{bottom:411.171200pt;}
.y1c9{bottom:411.173333pt;}
.y101{bottom:411.178267pt;}
.y113{bottom:411.184667pt;}
.y24d{bottom:414.805067pt;}
.yf{bottom:416.610933pt;}
.y20c{bottom:420.273600pt;}
.y32{bottom:420.597067pt;}
.y1e8{bottom:421.153200pt;}
.ye3{bottom:421.168533pt;}
.y172{bottom:421.180667pt;}
.yc3{bottom:421.183733pt;}
.y153{bottom:421.211200pt;}
.y1a8{bottom:421.332667pt;}
.y22f{bottom:421.789467pt;}
.y137{bottom:422.992933pt;}
.y9e{bottom:425.481733pt;}
.y56{bottom:428.224400pt;}
.y78{bottom:429.801200pt;}
.y1c8{bottom:429.803333pt;}
.y100{bottom:429.808267pt;}
.y112{bottom:429.814667pt;}
.y24c{bottom:432.138400pt;}
.ye{bottom:434.210933pt;}
.y20b{bottom:438.382267pt;}
.y31{bottom:438.721067pt;}
.y1e7{bottom:439.307867pt;}
.ye2{bottom:439.323200pt;}
.y171{bottom:439.335333pt;}
.yc2{bottom:439.338400pt;}
.y152{bottom:439.365867pt;}
.y1a7{bottom:439.380000pt;}
.y136{bottom:441.982933pt;}
.y9d{bottom:443.881733pt;}
.y55{bottom:446.731733pt;}
.y22e{bottom:448.151467pt;}
.y77{bottom:448.431200pt;}
.y1c7{bottom:448.433333pt;}
.y18d{bottom:448.436133pt;}
.yff{bottom:448.438267pt;}
.y24b{bottom:449.471733pt;}
.y20a{bottom:456.490933pt;}
.y30{bottom:456.845067pt;}
.y1a6{bottom:457.427333pt;}
.y1e6{bottom:457.462533pt;}
.ye1{bottom:457.477867pt;}
.y170{bottom:457.490000pt;}
.yc1{bottom:457.493067pt;}
.y151{bottom:457.508267pt;}
.y135{bottom:460.950267pt;}
.y9c{bottom:462.281733pt;}
.yd{bottom:463.157600pt;}
.y54{bottom:465.239067pt;}
.y24a{bottom:466.805067pt;}
.y22d{bottom:466.953467pt;}
.y76{bottom:467.061200pt;}
.y1c6{bottom:467.063333pt;}
.y18c{bottom:467.066133pt;}
.yfe{bottom:467.068267pt;}
.y209{bottom:474.599600pt;}
.y2f{bottom:474.969067pt;}
.y1a5{bottom:475.474667pt;}
.y1e5{bottom:475.617200pt;}
.ye0{bottom:475.632533pt;}
.y16f{bottom:475.644667pt;}
.yc0{bottom:475.647733pt;}
.y150{bottom:475.662933pt;}
.y134{bottom:479.917600pt;}
.y9b{bottom:480.681733pt;}
.y53{bottom:483.746400pt;}
.y249{bottom:484.138400pt;}
.y75{bottom:485.691200pt;}
.y1c5{bottom:485.693333pt;}
.y18b{bottom:485.696133pt;}
.yfd{bottom:485.698267pt;}
.y208{bottom:492.708267pt;}
.y2e{bottom:493.093067pt;}
.y22c{bottom:493.315467pt;}
.y1a4{bottom:493.522000pt;}
.y1e4{bottom:493.771867pt;}
.ydf{bottom:493.787200pt;}
.y16e{bottom:493.799333pt;}
.y14f{bottom:493.817600pt;}
.y133{bottom:498.884933pt;}
.y9a{bottom:499.081733pt;}
.y248{bottom:501.471733pt;}
.y52{bottom:502.253733pt;}
.y74{bottom:504.321200pt;}
.y1c4{bottom:504.323333pt;}
.y18a{bottom:504.326133pt;}
.yfc{bottom:504.328267pt;}
.y207{bottom:510.816933pt;}
.y1a3{bottom:511.569333pt;}
.y1e3{bottom:511.926533pt;}
.yde{bottom:511.941867pt;}
.y16d{bottom:511.954000pt;}
.ybf{bottom:511.957067pt;}
.yc{bottom:514.781067pt;}
.y99{bottom:517.481733pt;}
.y132{bottom:517.852267pt;}
.y247{bottom:518.805067pt;}
.y51{bottom:520.761067pt;}
.y73{bottom:522.951200pt;}
.y1c3{bottom:522.953333pt;}
.y189{bottom:522.956133pt;}
.yfb{bottom:522.958267pt;}
.y206{bottom:528.925600pt;}
.y2d{bottom:529.341067pt;}
.y1a2{bottom:529.616667pt;}
.y1e2{bottom:530.081200pt;}
.y16c{bottom:530.108667pt;}
.ybe{bottom:530.111733pt;}
.y14e{bottom:530.117867pt;}
.y98{bottom:535.881733pt;}
.y246{bottom:536.138400pt;}
.y131{bottom:536.819600pt;}
.yb{bottom:539.047733pt;}
.y50{bottom:539.268400pt;}
.y72{bottom:541.581200pt;}
.y1c2{bottom:541.583333pt;}
.y188{bottom:541.586133pt;}
.yfa{bottom:541.588267pt;}
.y205{bottom:547.034267pt;}
.y2c{bottom:547.465067pt;}
.y1a1{bottom:547.664000pt;}
.y1e1{bottom:548.235867pt;}
.ydd{bottom:548.251200pt;}
.y16b{bottom:548.263333pt;}
.ybd{bottom:548.266400pt;}
.y14d{bottom:548.272533pt;}
.y97{bottom:554.281733pt;}
.y130{bottom:555.786933pt;}
.y4f{bottom:557.775733pt;}
.y22b{bottom:558.018533pt;}
.y71{bottom:560.211200pt;}
.y1c1{bottom:560.213333pt;}
.y187{bottom:560.216133pt;}
.yf9{bottom:560.218267pt;}
.y245{bottom:564.805067pt;}
.y2b{bottom:565.589067pt;}
.y1a0{bottom:565.711333pt;}
.y1e0{bottom:566.390533pt;}
.ydc{bottom:566.405867pt;}
.ybc{bottom:566.421067pt;}
.y14c{bottom:566.427200pt;}
.y96{bottom:572.681733pt;}
.y12f{bottom:574.793200pt;}
.y4e{bottom:576.283067pt;}
.y22a{bottom:576.817200pt;}
.y70{bottom:578.841200pt;}
.y1c0{bottom:578.843333pt;}
.y186{bottom:578.846133pt;}
.yf8{bottom:578.848267pt;}
.ya{bottom:582.212800pt;}
.y2a{bottom:583.713067pt;}
.y19f{bottom:583.758667pt;}
.y204{bottom:584.033733pt;}
.y1df{bottom:584.545200pt;}
.ydb{bottom:584.560533pt;}
.y16a{bottom:584.572667pt;}
.ybb{bottom:584.575733pt;}
.y95{bottom:591.081733pt;}
.y12e{bottom:593.760533pt;}
.y4d{bottom:594.790400pt;}
.y229{bottom:595.615867pt;}
.y6f{bottom:597.471200pt;}
.y1bf{bottom:597.473333pt;}
.y185{bottom:597.476133pt;}
.yf7{bottom:597.478267pt;}
.y19e{bottom:601.806000pt;}
.y29{bottom:601.837067pt;}
.y1de{bottom:602.699867pt;}
.yda{bottom:602.715200pt;}
.y169{bottom:602.727333pt;}
.yba{bottom:602.730400pt;}
.y94{bottom:609.481733pt;}
.y9{bottom:610.484800pt;}
.y12d{bottom:612.727867pt;}
.y4c{bottom:613.297733pt;}
.y228{bottom:614.414533pt;}
.y6e{bottom:616.101200pt;}
.y1be{bottom:616.103333pt;}
.y244{bottom:616.148667pt;}
.y19d{bottom:619.853333pt;}
.y28{bottom:619.961067pt;}
.y1dd{bottom:620.854533pt;}
.yb9{bottom:620.869867pt;}
.y14b{bottom:620.878933pt;}
.y168{bottom:620.882000pt;}
.y93{bottom:627.881733pt;}
.y12c{bottom:631.695200pt;}
.y4b{bottom:631.805067pt;}
.y227{bottom:633.213200pt;}
.yf6{bottom:634.731200pt;}
.y1bd{bottom:634.733333pt;}
.y184{bottom:634.736133pt;}
.y27{bottom:638.085067pt;}
.y8{bottom:638.756800pt;}
.y1dc{bottom:639.009200pt;}
.yb8{bottom:639.024533pt;}
.y167{bottom:639.030533pt;}
.y14a{bottom:639.033600pt;}
.y203{bottom:639.477867pt;}
.y243{bottom:640.154000pt;}
.y92{bottom:646.281733pt;}
.y12b{bottom:650.662533pt;}
.y226{bottom:652.011867pt;}
.y6d{bottom:653.361200pt;}
.y1bc{bottom:653.363333pt;}
.y183{bottom:653.366133pt;}
.y26{bottom:656.209067pt;}
.y19c{bottom:656.794000pt;}
.y1db{bottom:657.163867pt;}
.yb7{bottom:657.179200pt;}
.y149{bottom:657.182267pt;}
.y166{bottom:657.185200pt;}
.y202{bottom:657.531867pt;}
.y91{bottom:664.681733pt;}
.y4a{bottom:669.207333pt;}
.y12a{bottom:669.629867pt;}
.y225{bottom:670.810533pt;}
.y6c{bottom:671.991200pt;}
.y1bb{bottom:671.993333pt;}
.y25{bottom:674.333067pt;}
.y165{bottom:675.318533pt;}
.yb6{bottom:675.333867pt;}
.y148{bottom:675.336933pt;}
.y201{bottom:675.640533pt;}
.y90{bottom:683.081733pt;}
.y129{bottom:688.597200pt;}
.y224{bottom:689.609200pt;}
.y6b{bottom:690.621200pt;}
.y1ba{bottom:690.623333pt;}
.y49{bottom:691.041333pt;}
.y24{bottom:692.457067pt;}
.y164{bottom:693.473200pt;}
.y147{bottom:693.482400pt;}
.yb5{bottom:693.488533pt;}
.y7{bottom:693.497467pt;}
.y200{bottom:693.749200pt;}
.y242{bottom:701.031867pt;}
.y8f{bottom:701.481733pt;}
.y128{bottom:707.564533pt;}
.y223{bottom:708.407867pt;}
.y6a{bottom:709.251200pt;}
.y1b9{bottom:709.253333pt;}
.yb4{bottom:711.627867pt;}
.yd9{bottom:711.630933pt;}
.y146{bottom:711.637067pt;}
.y1ff{bottom:711.857867pt;}
.y19b{bottom:712.168800pt;}
.y8e{bottom:719.881733pt;}
.y6{bottom:719.990800pt;}
.y127{bottom:726.531867pt;}
.y241{bottom:726.595867pt;}
.y222{bottom:727.206533pt;}
.y69{bottom:727.881200pt;}
.y1b8{bottom:727.883333pt;}
.y23{bottom:729.475067pt;}
.yb3{bottom:729.782533pt;}
.yd8{bottom:729.785600pt;}
.y145{bottom:729.791733pt;}
.y1fe{bottom:729.966533pt;}
.y19a{bottom:730.216133pt;}
.y5{bottom:738.924133pt;}
.y126{bottom:745.499200pt;}
.y221{bottom:746.005200pt;}
.y68{bottom:746.511200pt;}
.y48{bottom:746.879200pt;}
.yb2{bottom:747.937200pt;}
.yd7{bottom:747.940267pt;}
.y1fd{bottom:748.075200pt;}
.y199{bottom:748.263467pt;}
.y240{bottom:752.159867pt;}
.y8d{bottom:757.175733pt;}
.y4{bottom:757.857467pt;}
.y125{bottom:764.466533pt;}
.y220{bottom:764.803867pt;}
.y67{bottom:765.141200pt;}
.y47{bottom:765.386533pt;}
.yb1{bottom:766.091867pt;}
.yd6{bottom:766.094933pt;}
.y1fc{bottom:766.183867pt;}
.y198{bottom:766.310800pt;}
.y23f{bottom:777.723867pt;}
.y8c{bottom:778.901733pt;}
.y124{bottom:783.433867pt;}
.y21f{bottom:783.602533pt;}
.y66{bottom:783.771200pt;}
.y46{bottom:783.893867pt;}
.yb0{bottom:784.246533pt;}
.y1fb{bottom:784.292533pt;}
.y3{bottom:784.350800pt;}
.y197{bottom:784.353867pt;}
.y22{bottom:784.944667pt;}
.y8b{bottom:800.627733pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y21{bottom:803.727600pt;}
.y20{bottom:842.834667pt;}
.h8{height:39.520833pt;}
.he{height:44.453125pt;}
.h2d{height:46.119792pt;}
.h2c{height:46.621094pt;}
.h4{height:49.401042pt;}
.h9{height:49.415975pt;}
.hf{height:51.180990pt;}
.h3{height:51.871094pt;}
.h17{height:53.037760pt;}
.hb{height:56.811198pt;}
.h1e{height:56.819731pt;}
.h18{height:56.823465pt;}
.h1d{height:56.825598pt;}
.h28{height:56.828265pt;}
.h26{height:56.830931pt;}
.h12{height:56.835198pt;}
.h21{height:56.835731pt;}
.h20{height:56.836798pt;}
.h1b{height:56.839465pt;}
.hd{height:56.841065pt;}
.h27{height:56.845331pt;}
.h23{height:56.847465pt;}
.h22{height:56.847998pt;}
.h1c{height:56.859731pt;}
.h19{height:56.860265pt;}
.h1f{height:56.865065pt;}
.h14{height:56.871998pt;}
.h13{height:56.872531pt;}
.h29{height:56.880531pt;}
.h24{height:56.896531pt;}
.h16{height:56.908798pt;}
.h15{height:56.994131pt;}
.h2a{height:57.001598pt;}
.h11{height:57.017065pt;}
.h2b{height:57.029865pt;}
.h1a{height:57.030398pt;}
.hc{height:57.035198pt;}
.h25{height:57.043198pt;}
.h10{height:57.248531pt;}
.h2{height:61.751302pt;}
.ha{height:66.691406pt;}
.h7{height:69.161458pt;}
.h6{height:83.015625pt;}
.h5{height:88.921875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xa{left:71.599200pt;}
.x6{left:73.079333pt;}
.x5{left:74.532533pt;}
.x1{left:75.590533pt;}
.x8{left:92.497467pt;}
.x4{left:94.187200pt;}
.xc{left:97.017067pt;}
.xb{left:98.688400pt;}
.x9{left:189.034533pt;}
.x7{left:205.302267pt;}
.x2{left:206.756800pt;}
.x3{left:207.979067pt;}
}




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