
    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_4a0d84fb6624ef6950990235.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_e0cedba78030bf698c2fcc2e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.113281;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_855eaca8c6554b2a6bada7b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.882812;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_7eed6551fc7ba010db085633.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.995117;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_045c148559a479fb7a741e01.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.002441;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_ef95e512fcc20fa0d3f5e7ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107422;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_a1c472fc3e390b18732370da.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bff5bc57c268b7a6767800b0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930664;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_926472944d893210632653dc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_6a1ea7bb4c3949e4ba63a136.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.115234;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_eddf867777e250b79f1d0cfa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.767090;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);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls18{letter-spacing:-2.376000px;}
.lsb{letter-spacing:-1.440000px;}
.ls20{letter-spacing:-1.296000px;}
.ls4{letter-spacing:-1.152000px;}
.ls17{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.501000px;}
.ls1a{letter-spacing:-0.496200px;}
.ls6{letter-spacing:-0.463800px;}
.ls19{letter-spacing:-0.423600px;}
.ls11{letter-spacing:-0.313800px;}
.ls15{letter-spacing:-0.184200px;}
.ls21{letter-spacing:-0.152400px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls1e{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls1f{letter-spacing:0.305280px;}
.ls1b{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.345600px;}
.ls12{letter-spacing:0.423360px;}
.ls13{letter-spacing:0.466800px;}
.ls14{letter-spacing:0.498240px;}
.ls1c{letter-spacing:0.504000px;}
.lse{letter-spacing:0.576000px;}
.ls5{letter-spacing:0.587400px;}
.ls10{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.938880px;}
.ls8{letter-spacing:1.296000px;}
.ls1d{letter-spacing:1.584000px;}
.lsc{letter-spacing:43.320000px;}
.lsf{letter-spacing:49.104000px;}
.ls9{letter-spacing:54.864000px;}
.ls16{letter-spacing:191.820000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.ws8{word-spacing:-21.312000px;}
.ws3{word-spacing:-20.304000px;}
.ws13{word-spacing:-20.232000px;}
.ws9{word-spacing:-20.160000px;}
.ws2{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.512000px;}
.ws4{word-spacing:-18.864000px;}
.ws14{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.374400px;}
.ws15{word-spacing:-18.262320px;}
.ws11{word-spacing:-17.640000px;}
.ws16{word-spacing:-16.974720px;}
.wsd{word-spacing:-16.813440px;}
.ws5{word-spacing:-15.557640px;}
.wsf{word-spacing:-15.212160px;}
.wse{word-spacing:-15.027960px;}
.wsc{word-spacing:-14.898360px;}
.ws6{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.210560px;}
.wsb{word-spacing:-12.709560px;}
.ws0{word-spacing:0.000000px;}
._15{margin-left:-13.593480px;}
._17{margin-left:-11.793840px;}
._16{margin-left:-9.105600px;}
._37{margin-left:-7.367040px;}
._18{margin-left:-5.652960px;}
._19{margin-left:-4.086240px;}
._14{margin-left:-3.006720px;}
._0{margin-left:-1.920960px;}
._1{width:1.419840px;}
._f{width:2.455680px;}
._3{width:3.564960px;}
._c{width:4.671840px;}
._2{width:5.995680px;}
._9{width:7.704000px;}
._a{width:8.804160px;}
._b{width:9.838080px;}
._11{width:10.848000px;}
._12{width:12.054240px;}
._2a{width:13.752000px;}
._7{width:14.849280px;}
._8{width:15.932160px;}
._5{width:17.009280px;}
._6{width:18.132480px;}
._4{width:22.025280px;}
._24{width:23.096640px;}
._10{width:24.096960px;}
._2b{width:25.097760px;}
._23{width:26.212800px;}
._25{width:28.167360px;}
._d{width:29.972160px;}
._e{width:31.668000px;}
._26{width:32.707680px;}
._13{width:34.844160px;}
._1c{width:36.360000px;}
._30{width:37.491360px;}
._27{width:38.756160px;}
._29{width:40.055040px;}
._28{width:41.216160px;}
._2d{width:42.933600px;}
._1f{width:44.784000px;}
._22{width:46.609920px;}
._21{width:47.952000px;}
._2c{width:49.299840px;}
._3b{width:51.189120px;}
._3c{width:52.309440px;}
._32{width:53.637120px;}
._1a{width:54.864000px;}
._31{width:62.939520px;}
._1d{width:64.008000px;}
._20{width:65.831040px;}
._39{width:69.341280px;}
._1e{width:77.904000px;}
._2f{width:87.779040px;}
._2e{width:89.282880px;}
._42{width:92.243880px;}
._4a{width:93.515760px;}
._47{width:96.139680px;}
._46{width:97.200000px;}
._38{width:120.590400px;}
._34{width:123.530400px;}
._33{width:138.492000px;}
._44{width:146.016000px;}
._43{width:147.384000px;}
._3e{width:187.848000px;}
._1b{width:191.820000px;}
._3a{width:193.104000px;}
._3d{width:248.921280px;}
._4b{width:260.640000px;}
._35{width:319.910400px;}
._48{width:395.640000px;}
._49{width:396.870240px;}
._41{width:467.012160px;}
._36{width:532.260000px;}
._45{width:796.608000px;}
._40{width:816.768000px;}
._3f{width:895.968000px;}
.fc7{color:rgb(49,43,42);}
.fc5{color:rgb(0,112,193);}
.fc3{color:rgb(51,95,146);}
.fc6{color:rgb(0,0,255);}
.fc2{color:rgb(78,130,190);}
.fc1{color:transparent;}
.fc4{color:rgb(255,249,244);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs5{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs7{font-size:60.624000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs2{font-size:108.000000px;}
.y15b{bottom:-5.040000px;}
.y0{bottom:0.000000px;}
.y92{bottom:4.305000px;}
.y81{bottom:4.671000px;}
.y18d{bottom:5.385000px;}
.y196{bottom:5.400000px;}
.y192{bottom:5.745000px;}
.y1c1{bottom:5.751000px;}
.y198{bottom:5.760000px;}
.y1bd{bottom:5.790000px;}
.y169{bottom:6.105000px;}
.y18{bottom:6.120000px;}
.y173{bottom:6.465000px;}
.y178{bottom:6.480000px;}
.y1ee{bottom:10.425000px;}
.y204{bottom:10.440000px;}
.y19{bottom:11.520000px;}
.y17b{bottom:12.240000px;}
.y156{bottom:12.600000px;}
.y160{bottom:12.945000px;}
.y15a{bottom:12.960000px;}
.yb3{bottom:13.350000px;}
.y19b{bottom:14.040000px;}
.y1ec{bottom:17.565000px;}
.y21f{bottom:17.670000px;}
.y18a{bottom:18.345000px;}
.y1b5{bottom:18.360000px;}
.yb7{bottom:18.720000px;}
.yb5{bottom:19.080000px;}
.y18f{bottom:19.425000px;}
.y19d{bottom:19.440000px;}
.y1a2{bottom:19.485000px;}
.y162{bottom:21.600000px;}
.y191{bottom:23.385000px;}
.y1c0{bottom:23.391000px;}
.y195{bottom:23.400000px;}
.y1c7{bottom:23.415000px;}
.y18c{bottom:23.430000px;}
.y19f{bottom:23.760000px;}
.y1b8{bottom:23.775000px;}
.y1bc{bottom:23.790000px;}
.y170{bottom:25.545000px;}
.y168{bottom:25.905000px;}
.y166{bottom:25.920000px;}
.y16c{bottom:26.265000px;}
.y177{bottom:26.280000px;}
.yb9{bottom:28.080000px;}
.y158{bottom:30.240000px;}
.y155{bottom:30.600000px;}
.y19a{bottom:32.040000px;}
.yb2{bottom:32.430000px;}
.y15e{bottom:33.465000px;}
.y1a0{bottom:35.280000px;}
.y1d3{bottom:37.080000px;}
.yba{bottom:37.800000px;}
.ybd{bottom:37.845000px;}
.y1a8{bottom:41.385000px;}
.y1a5{bottom:41.400000px;}
.y1b7{bottom:41.415000px;}
.y1ab{bottom:41.430000px;}
.y1c4{bottom:41.445000px;}
.y165{bottom:45.360000px;}
.y16f{bottom:45.390000px;}
.y17e{bottom:45.405000px;}
.y164{bottom:45.720000px;}
.y16e{bottom:45.750000px;}
.y17d{bottom:45.765000px;}
.y16b{bottom:46.065000px;}
.y154{bottom:48.240000px;}
.y159{bottom:48.600000px;}
.y21d{bottom:49.320000px;}
.y15d{bottom:52.185000px;}
.y200{bottom:56.805000px;}
.y1c{bottom:57.600000px;}
.y1bf{bottom:59.025000px;}
.y1d1{bottom:59.040000px;}
.y1ce{bottom:59.070000px;}
.y1ca{bottom:59.385000px;}
.y1a4{bottom:59.400000px;}
.y1bb{bottom:59.430000px;}
.y153{bottom:66.240000px;}
.y1ff{bottom:68.070000px;}
.y212{bottom:68.835000px;}
.y1cd{bottom:77.070000px;}
.y1b{bottom:77.436000px;}
.y213{bottom:89.175000px;}
.y214{bottom:109.515000px;}
.y53{bottom:110.196000px;}
.y1be{bottom:114.165000px;}
.y7f{bottom:116.316000px;}
.ya9{bottom:117.036000px;}
.y12a{bottom:120.636000px;}
.y1dc{bottom:123.876000px;}
.y6c{bottom:124.236000px;}
.y80{bottom:124.965000px;}
.y39{bottom:125.676000px;}
.y143{bottom:127.476000px;}
.y215{bottom:129.885000px;}
.y29d{bottom:132.156000px;}
.y1ac{bottom:135.396000px;}
.y27b{bottom:136.836000px;}
.y259{bottom:140.076000px;}
.y90{bottom:140.796000px;}
.y151{bottom:141.156000px;}
.yc5{bottom:141.876000px;}
.y112{bottom:143.676000px;}
.y1ea{bottom:145.116000px;}
.y15f{bottom:145.845000px;}
.y16{bottom:146.556000px;}
.ya8{bottom:147.996000px;}
.y52{bottom:148.356000px;}
.yfb{bottom:148.716000px;}
.y216{bottom:150.225000px;}
.y1aa{bottom:152.685000px;}
.y29c{bottom:153.030000px;}
.y1ed{bottom:153.765000px;}
.y1db{bottom:154.830000px;}
.y6b{bottom:155.190000px;}
.y1fc{bottom:156.630000px;}
.y7e{bottom:158.430000px;}
.yf2{bottom:164.190000px;}
.y38{bottom:164.550000px;}
.y129{bottom:167.070000px;}
.y217{bottom:170.565000px;}
.y8f{bottom:171.750000px;}
.y27a{bottom:172.110000px;}
.yc4{bottom:172.470000px;}
.y29b{bottom:173.190000px;}
.y142{bottom:173.550000px;}
.y201{bottom:173.850000px;}
.y1fe{bottom:174.960000px;}
.y258{bottom:178.230000px;}
.y182{bottom:182.910000px;}
.y1da{bottom:185.790000px;}
.y51{bottom:186.510000px;}
.y1e9{bottom:186.870000px;}
.y1ba{bottom:186.885000px;}
.y1eb{bottom:187.200000px;}
.y150{bottom:187.230000px;}
.y23c{bottom:189.390000px;}
.y111{bottom:189.795000px;}
.y218{bottom:190.950000px;}
.y279{bottom:191.235000px;}
.y15{bottom:192.675000px;}
.y29a{bottom:194.115000px;}
.ya7{bottom:194.475000px;}
.yf1{bottom:195.195000px;}
.yfa{bottom:197.715000px;}
.ydd{bottom:198.075000px;}
.y37{bottom:203.115000px;}
.yc3{bottom:203.835000px;}
.y1a9{bottom:207.810000px;}
.y210{bottom:209.235000px;}
.y278{bottom:210.315000px;}
.y219{bottom:211.290000px;}
.y141{bottom:212.475000px;}
.y248{bottom:213.915000px;}
.y257{bottom:216.435000px;}
.y1d9{bottom:217.155000px;}
.y50{bottom:217.515000px;}
.y1fb{bottom:219.675000px;}
.y23b{bottom:220.395000px;}
.ya6{bottom:225.075000px;}
.yf0{bottom:226.155000px;}
.y15c{bottom:227.970000px;}
.ydc{bottom:228.675000px;}
.y128{bottom:229.395000px;}
.y299{bottom:229.755000px;}
.y277{bottom:231.195000px;}
.y21a{bottom:231.630000px;}
.y14f{bottom:233.355000px;}
.yc2{bottom:234.795000px;}
.y110{bottom:235.875000px;}
.y14{bottom:238.755000px;}
.y36{bottom:241.995000px;}
.yf9{bottom:247.035000px;}
.y6a{bottom:248.475000px;}
.y8e{bottom:249.555000px;}
.y298{bottom:250.275000px;}
.y1fa{bottom:250.635000px;}
.y23a{bottom:251.715000px;}
.y21b{bottom:252.000000px;}
.y256{bottom:254.595000px;}
.y20f{bottom:255.315000px;}
.ya5{bottom:256.035000px;}
.yef{bottom:257.115000px;}
.y91{bottom:258.930000px;}
.ydb{bottom:259.635000px;}
.y247{bottom:259.995000px;}
.y1b9{bottom:260.010000px;}
.y127{bottom:261.075000px;}
.y1a7{bottom:262.890000px;}
.y1d8{bottom:263.235000px;}
.y297{bottom:271.515000px;}
.y21c{bottom:272.340000px;}
.y276{bottom:272.595000px;}
.y181{bottom:275.115000px;}
.y255{bottom:277.995000px;}
.y140{bottom:279.075000px;}
.y69{bottom:279.435000px;}
.y203{bottom:280.185000px;}
.y35{bottom:280.875000px;}
.yc1{bottom:281.235000px;}
.y10f{bottom:281.595000px;}
.y239{bottom:282.675000px;}
.y1f9{bottom:283.035000px;}
.y13{bottom:284.475000px;}
.ya4{bottom:286.995000px;}
.yee{bottom:288.075000px;}
.yda{bottom:290.955000px;}
.y8d{bottom:291.675000px;}
.y126{bottom:292.035000px;}
.y275{bottom:293.475000px;}
.y1d7{bottom:294.195000px;}
.y1b6{bottom:297.090000px;}
.yf8{bottom:298.875000px;}
.y20e{bottom:301.395000px;}
.y21e{bottom:303.090000px;}
.y246{bottom:306.075000px;}
.y13f{bottom:310.035000px;}
.y68{bottom:310.755000px;}
.yc0{bottom:311.835000px;}
.y296{bottom:312.915000px;}
.y1f8{bottom:313.995000px;}
.y202{bottom:316.830000px;}
.y1a6{bottom:317.985000px;}
.ya3{bottom:318.705000px;}
.yed{bottom:319.425000px;}
.yd9{bottom:321.945000px;}
.y125{bottom:323.025000px;}
.y14e{bottom:325.185000px;}
.y34{bottom:326.625000px;}
.y180{bottom:327.345000px;}
.y10e{bottom:327.705000px;}
.y274{bottom:328.785000px;}
.y238{bottom:329.145000px;}
.y12{bottom:330.585000px;}
.y245{bottom:336.705000px;}
.y13e{bottom:341.025000px;}
.y67{bottom:341.745000px;}
.ybf{bottom:342.825000px;}
.y254{bottom:344.985000px;}
.y20d{bottom:347.145000px;}
.y295{bottom:348.225000px;}
.y273{bottom:349.665000px;}
.yec{bottom:350.385000px;}
.y4f{bottom:351.465000px;}
.y1b4{bottom:352.185000px;}
.yd8{bottom:352.905000px;}
.y124{bottom:354.345000px;}
.y1a3{bottom:355.065000px;}
.y1d6{bottom:356.145000px;}
.y33{bottom:357.225000px;}
.y237{bottom:359.745000px;}
.y1f7{bottom:361.545000px;}
.ya2{bottom:365.865000px;}
.y17f{bottom:367.665000px;}
.y244{bottom:368.025000px;}
.y294{bottom:369.105000px;}
.y272{bottom:370.185000px;}
.yf7{bottom:371.265000px;}
.y13d{bottom:372.345000px;}
.y10d{bottom:373.785000px;}
.y253{bottom:375.945000px;}
.y11{bottom:376.305000px;}
.y4e{bottom:382.065000px;}
.yd7{bottom:383.865000px;}
.y123{bottom:385.305000px;}
.y1d5{bottom:387.105000px;}
.y32{bottom:388.185000px;}
.ybe{bottom:389.265000px;}
.y293{bottom:389.625000px;}
.y236{bottom:390.705000px;}
.y271{bottom:391.425000px;}
.y1f6{bottom:392.145000px;}
.y20c{bottom:393.225000px;}
.ya1{bottom:396.465000px;}
.yeb{bottom:396.825000px;}
.y243{bottom:398.985000px;}
.y13c{bottom:403.305000px;}
.ybc{bottom:405.465000px;}
.y252{bottom:406.905000px;}
.y17c{bottom:407.625000px;}
.y292{bottom:410.865000px;}
.y270{bottom:411.945000px;}
.y4d{bottom:413.385000px;}
.yd6{bottom:414.825000px;}
.y1b3{bottom:415.185000px;}
.y122{bottom:416.625000px;}
.y14d{bottom:417.345000px;}
.y10c{bottom:419.865000px;}
.y235{bottom:421.665000px;}
.y10{bottom:422.385000px;}
.y1f5{bottom:423.105000px;}
.ya0{bottom:427.425000px;}
.y1a1{bottom:428.145000px;}
.y242{bottom:429.945000px;}
.y291{bottom:431.385000px;}
.y1e8{bottom:431.745000px;}
.y26f{bottom:432.825000px;}
.y1d4{bottom:433.545000px;}
.y66{bottom:434.265000px;}
.y31{bottom:434.625000px;}
.y20b{bottom:439.305000px;}
.yf6{bottom:443.310000px;}
.y4c{bottom:444.390000px;}
.y1b2{bottom:446.190000px;}
.y121{bottom:448.710000px;}
.y1d2{bottom:451.590000px;}
.y290{bottom:452.310000px;}
.y234{bottom:453.030000px;}
.y251{bottom:453.390000px;}
.y1f4{bottom:454.110000px;}
.y157{bottom:456.990000px;}
.y2b2{bottom:457.350000px;}
.yea{bottom:458.430000px;}
.y9f{bottom:458.790000px;}
.y241{bottom:460.950000px;}
.yd5{bottom:461.310000px;}
.y1e7{bottom:462.030000px;}
.y14c{bottom:463.470000px;}
.y65{bottom:464.910000px;}
.y30{bottom:465.270000px;}
.y10b{bottom:465.990000px;}
.y17a{bottom:467.430000px;}
.yf{bottom:468.510000px;}
.y28f{bottom:472.470000px;}
.ybb{bottom:474.270000px;}
.y4b{bottom:475.350000px;}
.y2b1{bottom:478.230000px;}
.y120{bottom:480.030000px;}
.y233{bottom:483.990000px;}
.y20a{bottom:485.430000px;}
.y26e{bottom:488.670000px;}
.ye9{bottom:489.390000px;}
.y9e{bottom:489.750000px;}
.yd4{bottom:492.270000px;}
.y1b1{bottom:492.630000px;}
.y1e6{bottom:493.350000px;}
.y179{bottom:493.710000px;}
.y64{bottom:495.870000px;}
.y13b{bottom:496.230000px;}
.y2f{bottom:496.590000px;}
.y2b0{bottom:499.110000px;}
.y1f3{bottom:500.550000px;}
.y1d0{bottom:502.350000px;}
.y4a{bottom:506.310000px;}
.y240{bottom:507.390000px;}
.y28e{bottom:508.110000px;}
.y14b{bottom:509.550000px;}
.y19e{bottom:510.270000px;}
.y10a{bottom:512.070000px;}
.y11f{bottom:512.430000px;}
.y232{bottom:514.950000px;}
.yf5{bottom:515.670000px;}
.y2af{bottom:519.990000px;}
.y9d{bottom:520.710000px;}
.ye{bottom:521.790000px;}
.yd3{bottom:523.230000px;}
.yb8{bottom:523.950000px;}
.y1e5{bottom:524.310000px;}
.y2e{bottom:527.550000px;}
.y28d{bottom:528.990000px;}
.y26d{bottom:530.070000px;}
.y1f2{bottom:531.510000px;}
.y176{bottom:533.670000px;}
.ye8{bottom:535.830000px;}
.y49{bottom:537.990000px;}
.y23f{bottom:538.350000px;}
.y63{bottom:542.310000px;}
.y11e{bottom:544.110000px;}
.y250{bottom:545.910000px;}
.y19c{bottom:547.710000px;}
.y28c{bottom:549.870000px;}
.y26c{bottom:551.310000px;}
.y9c{bottom:551.670000px;}
.yd2{bottom:554.190000px;}
.y1e4{bottom:555.270000px;}
.y14a{bottom:555.630000px;}
.y109{bottom:558.150000px;}
.y231{bottom:561.390000px;}
.y1f1{bottom:562.470000px;}
.y13a{bottom:566.790000px;}
.ye7{bottom:567.870000px;}
.yd{bottom:568.620000px;}
.y23e{bottom:569.340000px;}
.y152{bottom:569.700000px;}
.y28b{bottom:570.780000px;}
.y62{bottom:572.940000px;}
.y2d{bottom:574.020000px;}
.y1cf{bottom:575.100000px;}
.y11d{bottom:575.820000px;}
.y2ae{bottom:576.180000px;}
.y24f{bottom:577.260000px;}
.y209{bottom:577.620000px;}
.y199{bottom:580.860000px;}
.y9b{bottom:583.020000px;}
.yd1{bottom:585.180000px;}
.y1e3{bottom:586.260000px;}
.y26b{bottom:586.620000px;}
.yf4{bottom:588.060000px;}
.y28a{bottom:590.940000px;}
.y230{bottom:592.020000px;}
.yb6{bottom:592.740000px;}
.y2ad{bottom:597.060000px;}
.y48{bottom:597.420000px;}
.ye6{bottom:599.220000px;}
.y7d{bottom:599.580000px;}
.y23d{bottom:600.300000px;}
.y149{bottom:601.740000px;}
.y61{bottom:603.900000px;}
.y108{bottom:604.260000px;}
.y2c{bottom:604.620000px;}
.y139{bottom:605.340000px;}
.y11c{bottom:607.500000px;}
.y24e{bottom:608.220000px;}
.y1f0{bottom:608.940000px;}
.y175{bottom:613.980000px;}
.y9a{bottom:614.340000px;}
.yc{bottom:615.060000px;}
.y1b0{bottom:616.500000px;}
.y2ac{bottom:617.940000px;}
.y22f{bottom:623.340000px;}
.y208{bottom:623.700000px;}
.y197{bottom:626.580000px;}
.y26a{bottom:628.380000px;}
.y138{bottom:628.740000px;}
.y7c{bottom:630.180000px;}
.ye5{bottom:631.260000px;}
.yd0{bottom:631.620000px;}
.y1e2{bottom:632.700000px;}
.y60{bottom:635.220000px;}
.y2b{bottom:635.580000px;}
.y2ab{bottom:638.460000px;}
.yb4{bottom:642.420000px;}
.y1af{bottom:647.460000px;}
.y148{bottom:647.820000px;}
.y1cc{bottom:648.180000px;}
.y269{bottom:649.260000px;}
.y107{bottom:650.340000px;}
.y1fd{bottom:650.880000px;}
.y1ef{bottom:651.060000px;}
.y174{bottom:653.940000px;}
.y22e{bottom:654.300000px;}
.y24d{bottom:654.660000px;}
.yf3{bottom:660.060000px;}
.y7b{bottom:661.500000px;}
.ye4{bottom:662.220000px;}
.ycf{bottom:662.580000px;}
.y1e1{bottom:663.300000px;}
.y194{bottom:664.020000px;}
.y5f{bottom:666.180000px;}
.y47{bottom:666.540000px;}
.y289{bottom:667.980000px;}
.y137{bottom:668.340000px;}
.yb{bottom:669.780000px;}
.y2aa{bottom:673.740000px;}
.y11b{bottom:674.460000px;}
.y2a{bottom:682.020000px;}
.y22d{bottom:685.260000px;}
.y288{bottom:688.860000px;}
.y99{bottom:692.100000px;}
.y7a{bottom:692.460000px;}
.yce{bottom:693.540000px;}
.y147{bottom:693.900000px;}
.y1e0{bottom:694.620000px;}
.y106{bottom:696.450000px;}
.y5e{bottom:697.170000px;}
.y193{bottom:701.145000px;}
.y268{bottom:705.090000px;}
.y11a{bottom:705.450000px;}
.ye3{bottom:709.770000px;}
.y29{bottom:712.650000px;}
.y172{bottom:713.745000px;}
.y136{bottom:714.090000px;}
.ya{bottom:715.530000px;}
.y207{bottom:715.890000px;}
.y22c{bottom:716.250000px;}
.y79{bottom:723.450000px;}
.ycd{bottom:724.530000px;}
.y46{bottom:725.970000px;}
.y5d{bottom:728.130000px;}
.y287{bottom:730.650000px;}
.y8c{bottom:732.450000px;}
.y2a9{bottom:736.410000px;}
.y119{bottom:736.770000px;}
.y190{bottom:738.225000px;}
.y1cb{bottom:738.945000px;}
.ye2{bottom:740.730000px;}
.y1df{bottom:741.090000px;}
.y105{bottom:742.530000px;}
.y28{bottom:743.970000px;}
.y135{bottom:744.690000px;}
.y267{bottom:746.850000px;}
.y22b{bottom:747.570000px;}
.y171{bottom:754.065000px;}
.y78{bottom:754.410000px;}
.ycc{bottom:755.490000px;}
.y45{bottom:756.570000px;}
.y5c{bottom:759.450000px;}
.y9{bottom:761.610000px;}
.y206{bottom:761.970000px;}
.y8b{bottom:763.410000px;}
.y286{bottom:765.930000px;}
.y220{bottom:765.945000px;}
.y118{bottom:767.730000px;}
.ye1{bottom:771.690000px;}
.y104{bottom:773.130000px;}
.y18e{bottom:775.665000px;}
.y134{bottom:776.010000px;}
.y22a{bottom:778.530000px;}
.y266{bottom:782.130000px;}
.y98{bottom:785.370000px;}
.y77{bottom:785.730000px;}
.y146{bottom:786.450000px;}
.yb1{bottom:786.810000px;}
.y44{bottom:787.170000px;}
.y27{bottom:790.410000px;}
.y2a8{bottom:792.210000px;}
.y16d{bottom:794.025000px;}
.y8a{bottom:795.450000px;}
.y117{bottom:798.690000px;}
.ycb{bottom:801.930000px;}
.y1de{bottom:802.650000px;}
.y265{bottom:803.010000px;}
.y205{bottom:803.730000px;}
.y211{bottom:803.880000px;}
.y103{bottom:804.450000px;}
.y133{bottom:806.970000px;}
.y285{bottom:807.330000px;}
.y8{bottom:807.690000px;}
.y18b{bottom:808.785000px;}
.y229{bottom:809.490000px;}
.y2a7{bottom:813.450000px;}
.y97{bottom:816.330000px;}
.y76{bottom:816.690000px;}
.y43{bottom:817.770000px;}
.ye0{bottom:818.130000px;}
.y26{bottom:821.055000px;}
.y5b{bottom:821.415000px;}
.y264{bottom:823.575000px;}
.y89{bottom:826.815000px;}
.y284{bottom:827.895000px;}
.y116{bottom:829.695000px;}
.y1c9{bottom:831.150000px;}
.yca{bottom:832.575000px;}
.y2a6{bottom:834.015000px;}
.y102{bottom:835.815000px;}
.y132{bottom:837.975000px;}
.y228{bottom:840.495000px;}
.y189{bottom:844.470000px;}
.y263{bottom:844.815000px;}
.y75{bottom:847.695000px;}
.y42{bottom:848.415000px;}
.yb0{bottom:848.775000px;}
.y1dd{bottom:849.135000px;}
.y25{bottom:852.015000px;}
.y7{bottom:853.815000px;}
.y16a{bottom:853.830000px;}
.y2a5{bottom:854.895000px;}
.y24c{bottom:855.975000px;}
.y88{bottom:858.855000px;}
.yc9{bottom:863.895000px;}
.y1ae{bottom:864.255000px;}
.y5a{bottom:867.855000px;}
.y131{bottom:868.935000px;}
.y283{bottom:869.655000px;}
.y227{bottom:871.815000px;}
.y74{bottom:878.655000px;}
.y41{bottom:879.015000px;}
.yaf{bottom:879.735000px;}
.y262{bottom:880.095000px;}
.y101{bottom:882.255000px;}
.y24{bottom:882.975000px;}
.y24b{bottom:886.575000px;}
.y87{bottom:890.175000px;}
.yc8{bottom:894.855000px;}
.ydf{bottom:895.215000px;}
.y59{bottom:898.455000px;}
.y261{bottom:900.615000px;}
.y6{bottom:902.055000px;}
.y226{bottom:902.775000px;}
.y1c8{bottom:904.230000px;}
.y188{bottom:906.015000px;}
.y96{bottom:909.615000px;}
.y40{bottom:909.975000px;}
.y145{bottom:910.695000px;}
.y167{bottom:913.950000px;}
.y130{bottom:915.375000px;}
.y24a{bottom:917.535000px;}
.y260{bottom:921.855000px;}
.y86{bottom:922.215000px;}
.yc7{bottom:925.815000px;}
.yae{bottom:926.175000px;}
.y23{bottom:929.415000px;}
.y58{bottom:929.775000px;}
.y100{bottom:930.855000px;}
.y2a4{bottom:931.935000px;}
.y187{bottom:936.615000px;}
.y3f{bottom:940.575000px;}
.y73{bottom:940.935000px;}
.y1ad{bottom:941.295000px;}
.y1c6{bottom:941.310000px;}
.y12f{bottom:945.975000px;}
.y282{bottom:946.695000px;}
.y249{bottom:948.885000px;}
.y225{bottom:949.245000px;}
.y2a3{bottom:952.485000px;}
.y5{bottom:953.205000px;}
.y85{bottom:953.565000px;}
.y163{bottom:953.925000px;}
.yad{bottom:956.805000px;}
.y95{bottom:957.165000px;}
.y22{bottom:960.045000px;}
.yff{bottom:961.845000px;}
.y281{bottom:967.245000px;}
.y186{bottom:967.965000px;}
.y3e{bottom:971.205000px;}
.y72{bottom:971.925000px;}
.yc6{bottom:972.285000px;}
.y57{bottom:975.885000px;}
.y12e{bottom:977.325000px;}
.y25f{bottom:978.045000px;}
.y1c5{bottom:978.405000px;}
.y224{bottom:979.845000px;}
.y84{bottom:985.605000px;}
.y94{bottom:988.125000px;}
.y280{bottom:988.485000px;}
.y21{bottom:991.365000px;}
.yfe{bottom:992.805000px;}
.y25e{bottom:998.565000px;}
.y3d{bottom:1001.805000px;}
.y4{bottom:1002.165000px;}
.y71{bottom:1002.885000px;}
.y115{bottom:1003.245000px;}
.y56{bottom:1006.845000px;}
.y12d{bottom:1008.285000px;}
.y2a2{bottom:1008.645000px;}
.y27f{bottom:1009.005000px;}
.y223{bottom:1010.805000px;}
.y161{bottom:1013.685000px;}
.y185{bottom:1014.045000px;}
.y83{bottom:1018.005000px;}
.yac{bottom:1019.085000px;}
.yde{bottom:1019.445000px;}
.y25d{bottom:1019.805000px;}
.y20{bottom:1022.325000px;}
.yfd{bottom:1023.765000px;}
.y27e{bottom:1029.525000px;}
.y2a1{bottom:1029.885000px;}
.y3c{bottom:1032.405000px;}
.y1c3{bottom:1033.485000px;}
.y70{bottom:1034.205000px;}
.y93{bottom:1034.565000px;}
.y55{bottom:1038.165000px;}
.y25c{bottom:1040.325000px;}
.y222{bottom:1041.765000px;}
.y184{bottom:1045.005000px;}
.y3{bottom:1048.245000px;}
.yab{bottom:1050.045000px;}
.y2a0{bottom:1050.405000px;}
.y1f{bottom:1053.285000px;}
.y3b{bottom:1056.885000px;}
.y12c{bottom:1057.245000px;}
.y25b{bottom:1061.205000px;}
.y6f{bottom:1065.165000px;}
.y82{bottom:1065.525000px;}
.y29f{bottom:1071.285000px;}
.y221{bottom:1073.085000px;}
.yfc{bottom:1073.445000px;}
.y114{bottom:1073.850000px;}
.y183{bottom:1076.010000px;}
.y144{bottom:1081.050000px;}
.y25a{bottom:1081.410000px;}
.y1e{bottom:1084.290000px;}
.y27d{bottom:1085.730000px;}
.y54{bottom:1086.810000px;}
.y12b{bottom:1088.250000px;}
.y1c2{bottom:1088.610000px;}
.y2{bottom:1094.370000px;}
.y6e{bottom:1096.170000px;}
.yaa{bottom:1096.530000px;}
.y29e{bottom:1106.610000px;}
.y27c{bottom:1106.970000px;}
.y1d{bottom:1124.970000px;}
.y113{bottom:1125.330000px;}
.y6d{bottom:1127.130000px;}
.y3a{bottom:1127.850000px;}
.y1{bottom:1140.450000px;}
.y1a{bottom:1148.370000px;}
.y17{bottom:1172.850000px;}
.hf{height:20.505000px;}
.he{height:20.871000px;}
.h43{height:25.185000px;}
.h47{height:25.200000px;}
.h29{height:25.905000px;}
.h1c{height:27.711000px;}
.h6{height:31.350000px;}
.h2b{height:31.665000px;}
.h31{height:31.710000px;}
.h2d{height:35.625000px;}
.h2f{height:35.640000px;}
.h2c{height:35.661000px;}
.h2e{height:35.676000px;}
.h32{height:35.985000px;}
.h25{height:39.585000px;}
.h22{height:39.600000px;}
.h26{height:39.945000px;}
.h28{height:39.990000px;}
.h1e{height:44.031094px;}
.h30{height:44.280000px;}
.h33{height:47.505000px;}
.h11{height:48.224531px;}
.h16{height:48.945000px;}
.h13{height:48.960000px;}
.h19{height:49.055625px;}
.h37{height:49.082344px;}
.h3f{height:49.305000px;}
.h1b{height:49.402969px;}
.h42{height:49.878281px;}
.h45{height:49.997039px;}
.h1d{height:52.905000px;}
.h36{height:53.625000px;}
.h35{height:53.640000px;}
.h38{height:53.661000px;}
.h3b{height:53.670000px;}
.h21{height:54.219375px;}
.h20{height:54.603281px;}
.h9{height:54.628594px;}
.h12{height:59.383125px;}
.h1f{height:59.385000px;}
.h24{height:59.421000px;}
.h2a{height:59.430000px;}
.h27{height:59.436000px;}
.h23{height:59.745000px;}
.h14{height:59.803594px;}
.h2{height:64.546875px;}
.hb{height:64.582031px;}
.h4{height:65.003906px;}
.h40{height:65.144531px;}
.h10{height:65.196000px;}
.hd{height:67.080938px;}
.h17{height:67.260938px;}
.h15{height:68.070000px;}
.hc{height:70.388437px;}
.h3a{height:71.271000px;}
.h3e{height:71.310000px;}
.h34{height:71.625000px;}
.h3d{height:71.640000px;}
.h39{height:71.661000px;}
.h3{height:74.874375px;}
.ha{height:75.404531px;}
.h1a{height:78.465000px;}
.h18{height:78.480000px;}
.h46{height:81.632812px;}
.h3c{height:89.316000px;}
.h8{height:91.019531px;}
.h7{height:93.972656px;}
.h5{height:97.505859px;}
.h41{height:214.560000px;}
.h48{height:339.840000px;}
.h44{height:353.880000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:39.987000px;}
.w17{width:62.667000px;}
.w10{width:65.907000px;}
.w1a{width:89.661000px;}
.w12{width:95.790000px;}
.w13{width:106.272000px;}
.w15{width:108.000000px;}
.w1b{width:117.045000px;}
.w3{width:134.640000px;}
.w19{width:140.436000px;}
.w9{width:144.030000px;}
.wa{width:144.390000px;}
.w11{width:159.480000px;}
.w14{width:170.295000px;}
.w7{width:252.810000px;}
.w4{width:287.025000px;}
.w18{width:313.647000px;}
.w8{width:373.080000px;}
.w1d{width:510.645000px;}
.w1c{width:511.920000px;}
.w2{width:517.521000px;}
.w5{width:535.140000px;}
.wb{width:578.340000px;}
.w1e{width:583.920000px;}
.w21{width:584.820000px;}
.w1f{width:586.260000px;}
.w20{width:586.440000px;}
.we{width:613.620000px;}
.w6{width:625.905000px;}
.wc{width:654.345000px;}
.wf{width:707.265000px;}
.w16{width:723.510000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xe{left:7.185000px;}
.x1e{left:8.307000px;}
.x46{left:9.705000px;}
.x19{left:10.800000px;}
.x2c{left:12.240000px;}
.x55{left:13.305000px;}
.x41{left:14.745000px;}
.x2e{left:15.840000px;}
.x3a{left:16.905000px;}
.x30{left:19.080000px;}
.x35{left:20.865000px;}
.x3d{left:21.975000px;}
.x2a{left:23.400000px;}
.x44{left:25.191000px;}
.x2f{left:27.360000px;}
.xc{left:29.187000px;}
.x4e{left:30.630000px;}
.x5f{left:31.680000px;}
.x28{left:33.120000px;}
.x29{left:34.200000px;}
.x5d{left:35.265000px;}
.x3c{left:36.405000px;}
.x2d{left:37.440000px;}
.x3b{left:38.505000px;}
.x3e{left:40.005000px;}
.x47{left:41.430000px;}
.x40{left:43.965000px;}
.x45{left:45.345000px;}
.x48{left:47.565000px;}
.x42{left:48.945000px;}
.x43{left:50.790000px;}
.x32{left:51.825000px;}
.x59{left:52.920000px;}
.x6e{left:53.985000px;}
.x5e{left:55.785000px;}
.x3f{left:57.585000px;}
.x60{left:58.695000px;}
.x53{left:61.905000px;}
.x31{left:63.360000px;}
.x56{left:67.305000px;}
.x4b{left:69.465000px;}
.x5b{left:70.905000px;}
.x57{left:82.425000px;}
.x61{left:83.505000px;}
.x49{left:85.005000px;}
.x5c{left:86.025000px;}
.x69{left:90.285000px;}
.x54{left:91.815000px;}
.x34{left:92.925000px;}
.x52{left:96.855000px;}
.x4f{left:98.655000px;}
.x5a{left:100.455000px;}
.x51{left:107.295000px;}
.x6a{left:108.390000px;}
.x58{left:111.975000px;}
.xb{left:118.845000px;}
.x50{left:124.215000px;}
.x1{left:127.476000px;}
.x1d{left:133.605000px;}
.x3{left:135.396000px;}
.x6f{left:138.276000px;}
.x6d{left:143.745000px;}
.x4a{left:147.690000px;}
.x20{left:148.752000px;}
.x6c{left:152.640000px;}
.x21{left:154.515000px;}
.x14{left:157.035000px;}
.x33{left:159.930000px;}
.x11{left:162.795000px;}
.x70{left:164.955000px;}
.x6{left:176.835000px;}
.x10{left:180.435000px;}
.x12{left:181.515000px;}
.x1b{left:188.370000px;}
.x22{left:190.155000px;}
.x64{left:191.970000px;}
.x23{left:207.435000px;}
.x13{left:208.515000px;}
.x68{left:210.630000px;}
.x26{left:216.075000px;}
.x5{left:219.315000px;}
.x62{left:221.835000px;}
.x15{left:235.515000px;}
.x24{left:242.745000px;}
.x25{left:261.465000px;}
.x16{left:262.545000px;}
.x7{left:286.665000px;}
.x18{left:303.225000px;}
.x4{left:314.025000px;}
.x36{left:319.065000px;}
.x9{left:326.985000px;}
.x67{left:331.050000px;}
.x8{left:337.470000px;}
.x66{left:345.705000px;}
.x2b{left:356.190000px;}
.x27{left:357.270000px;}
.xa{left:374.910000px;}
.x1f{left:386.430000px;}
.x37{left:414.870000px;}
.x1c{left:438.300000px;}
.xf{left:442.260000px;}
.x2{left:446.580000px;}
.x4c{left:461.340000px;}
.x38{left:521.145000px;}
.x17{left:575.850000px;}
.x4d{left:601.785000px;}
.xd{left:639.630000px;}
.x39{left:691.470000px;}
.x63{left:705.135000px;}
.x65{left:741.165000px;}
.x6b{left:742.245000px;}
.x1a{left:745.845000px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls18{letter-spacing:-2.112000pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls20{letter-spacing:-1.152000pt;}
.ls4{letter-spacing:-1.024000pt;}
.ls17{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.445333pt;}
.ls1a{letter-spacing:-0.441067pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls19{letter-spacing:-0.376533pt;}
.ls11{letter-spacing:-0.278933pt;}
.ls15{letter-spacing:-0.163733pt;}
.ls21{letter-spacing:-0.135467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls1f{letter-spacing:0.271360pt;}
.ls1b{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.307200pt;}
.ls12{letter-spacing:0.376320pt;}
.ls13{letter-spacing:0.414933pt;}
.ls14{letter-spacing:0.442880pt;}
.ls1c{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.512000pt;}
.ls5{letter-spacing:0.522133pt;}
.ls10{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.834560pt;}
.ls8{letter-spacing:1.152000pt;}
.ls1d{letter-spacing:1.408000pt;}
.lsc{letter-spacing:38.506667pt;}
.lsf{letter-spacing:43.648000pt;}
.ls9{letter-spacing:48.768000pt;}
.ls16{letter-spacing:170.506667pt;}
.ws12{word-spacing:-64.000000pt;}
.ws8{word-spacing:-18.944000pt;}
.ws3{word-spacing:-18.048000pt;}
.ws13{word-spacing:-17.984000pt;}
.ws9{word-spacing:-17.920000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.344000pt;}
.ws4{word-spacing:-16.768000pt;}
.ws14{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.332800pt;}
.ws15{word-spacing:-16.233173pt;}
.ws11{word-spacing:-15.680000pt;}
.ws16{word-spacing:-15.088640pt;}
.wsd{word-spacing:-14.945280pt;}
.ws5{word-spacing:-13.829013pt;}
.wsf{word-spacing:-13.521920pt;}
.wse{word-spacing:-13.358187pt;}
.wsc{word-spacing:-13.242987pt;}
.ws6{word-spacing:-12.894613pt;}
.ws7{word-spacing:-11.742720pt;}
.wsb{word-spacing:-11.297387pt;}
.ws0{word-spacing:0.000000pt;}
._15{margin-left:-12.083093pt;}
._17{margin-left:-10.483413pt;}
._16{margin-left:-8.093867pt;}
._37{margin-left:-6.548480pt;}
._18{margin-left:-5.024853pt;}
._19{margin-left:-3.632213pt;}
._14{margin-left:-2.672640pt;}
._0{margin-left:-1.707520pt;}
._1{width:1.262080pt;}
._f{width:2.182827pt;}
._3{width:3.168853pt;}
._c{width:4.152747pt;}
._2{width:5.329493pt;}
._9{width:6.848000pt;}
._a{width:7.825920pt;}
._b{width:8.744960pt;}
._11{width:9.642667pt;}
._12{width:10.714880pt;}
._2a{width:12.224000pt;}
._7{width:13.199360pt;}
._8{width:14.161920pt;}
._5{width:15.119360pt;}
._6{width:16.117760pt;}
._4{width:19.578027pt;}
._24{width:20.530347pt;}
._10{width:21.419520pt;}
._2b{width:22.309120pt;}
._23{width:23.300267pt;}
._25{width:25.037653pt;}
._d{width:26.641920pt;}
._e{width:28.149333pt;}
._26{width:29.073493pt;}
._13{width:30.972587pt;}
._1c{width:32.320000pt;}
._30{width:33.325653pt;}
._27{width:34.449920pt;}
._29{width:35.604480pt;}
._28{width:36.636587pt;}
._2d{width:38.163200pt;}
._1f{width:39.808000pt;}
._22{width:41.431040pt;}
._21{width:42.624000pt;}
._2c{width:43.822080pt;}
._3b{width:45.501440pt;}
._3c{width:46.497280pt;}
._32{width:47.677440pt;}
._1a{width:48.768000pt;}
._31{width:55.946240pt;}
._1d{width:56.896000pt;}
._20{width:58.516480pt;}
._39{width:61.636693pt;}
._1e{width:69.248000pt;}
._2f{width:78.025813pt;}
._2e{width:79.362560pt;}
._42{width:81.994560pt;}
._4a{width:83.125120pt;}
._47{width:85.457493pt;}
._46{width:86.400000pt;}
._38{width:107.191467pt;}
._34{width:109.804800pt;}
._33{width:123.104000pt;}
._44{width:129.792000pt;}
._43{width:131.008000pt;}
._3e{width:166.976000pt;}
._1b{width:170.506667pt;}
._3a{width:171.648000pt;}
._3d{width:221.263360pt;}
._4b{width:231.680000pt;}
._35{width:284.364800pt;}
._48{width:351.680000pt;}
._49{width:352.773547pt;}
._41{width:415.121920pt;}
._36{width:473.120000pt;}
._45{width:708.096000pt;}
._40{width:726.016000pt;}
._3f{width:796.416000pt;}
.fs4{font-size:42.240000pt;}
.fs5{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs7{font-size:53.888000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs2{font-size:96.000000pt;}
.y15b{bottom:-4.480000pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:3.826667pt;}
.y81{bottom:4.152000pt;}
.y18d{bottom:4.786667pt;}
.y196{bottom:4.800000pt;}
.y192{bottom:5.106667pt;}
.y1c1{bottom:5.112000pt;}
.y198{bottom:5.120000pt;}
.y1bd{bottom:5.146667pt;}
.y169{bottom:5.426667pt;}
.y18{bottom:5.440000pt;}
.y173{bottom:5.746667pt;}
.y178{bottom:5.760000pt;}
.y1ee{bottom:9.266667pt;}
.y204{bottom:9.280000pt;}
.y19{bottom:10.240000pt;}
.y17b{bottom:10.880000pt;}
.y156{bottom:11.200000pt;}
.y160{bottom:11.506667pt;}
.y15a{bottom:11.520000pt;}
.yb3{bottom:11.866667pt;}
.y19b{bottom:12.480000pt;}
.y1ec{bottom:15.613333pt;}
.y21f{bottom:15.706667pt;}
.y18a{bottom:16.306667pt;}
.y1b5{bottom:16.320000pt;}
.yb7{bottom:16.640000pt;}
.yb5{bottom:16.960000pt;}
.y18f{bottom:17.266667pt;}
.y19d{bottom:17.280000pt;}
.y1a2{bottom:17.320000pt;}
.y162{bottom:19.200000pt;}
.y191{bottom:20.786667pt;}
.y1c0{bottom:20.792000pt;}
.y195{bottom:20.800000pt;}
.y1c7{bottom:20.813333pt;}
.y18c{bottom:20.826667pt;}
.y19f{bottom:21.120000pt;}
.y1b8{bottom:21.133333pt;}
.y1bc{bottom:21.146667pt;}
.y170{bottom:22.706667pt;}
.y168{bottom:23.026667pt;}
.y166{bottom:23.040000pt;}
.y16c{bottom:23.346667pt;}
.y177{bottom:23.360000pt;}
.yb9{bottom:24.960000pt;}
.y158{bottom:26.880000pt;}
.y155{bottom:27.200000pt;}
.y19a{bottom:28.480000pt;}
.yb2{bottom:28.826667pt;}
.y15e{bottom:29.746667pt;}
.y1a0{bottom:31.360000pt;}
.y1d3{bottom:32.960000pt;}
.yba{bottom:33.600000pt;}
.ybd{bottom:33.640000pt;}
.y1a8{bottom:36.786667pt;}
.y1a5{bottom:36.800000pt;}
.y1b7{bottom:36.813333pt;}
.y1ab{bottom:36.826667pt;}
.y1c4{bottom:36.840000pt;}
.y165{bottom:40.320000pt;}
.y16f{bottom:40.346667pt;}
.y17e{bottom:40.360000pt;}
.y164{bottom:40.640000pt;}
.y16e{bottom:40.666667pt;}
.y17d{bottom:40.680000pt;}
.y16b{bottom:40.946667pt;}
.y154{bottom:42.880000pt;}
.y159{bottom:43.200000pt;}
.y21d{bottom:43.840000pt;}
.y15d{bottom:46.386667pt;}
.y200{bottom:50.493333pt;}
.y1c{bottom:51.200000pt;}
.y1bf{bottom:52.466667pt;}
.y1d1{bottom:52.480000pt;}
.y1ce{bottom:52.506667pt;}
.y1ca{bottom:52.786667pt;}
.y1a4{bottom:52.800000pt;}
.y1bb{bottom:52.826667pt;}
.y153{bottom:58.880000pt;}
.y1ff{bottom:60.506667pt;}
.y212{bottom:61.186667pt;}
.y1cd{bottom:68.506667pt;}
.y1b{bottom:68.832000pt;}
.y213{bottom:79.266667pt;}
.y214{bottom:97.346667pt;}
.y53{bottom:97.952000pt;}
.y1be{bottom:101.480000pt;}
.y7f{bottom:103.392000pt;}
.ya9{bottom:104.032000pt;}
.y12a{bottom:107.232000pt;}
.y1dc{bottom:110.112000pt;}
.y6c{bottom:110.432000pt;}
.y80{bottom:111.080000pt;}
.y39{bottom:111.712000pt;}
.y143{bottom:113.312000pt;}
.y215{bottom:115.453333pt;}
.y29d{bottom:117.472000pt;}
.y1ac{bottom:120.352000pt;}
.y27b{bottom:121.632000pt;}
.y259{bottom:124.512000pt;}
.y90{bottom:125.152000pt;}
.y151{bottom:125.472000pt;}
.yc5{bottom:126.112000pt;}
.y112{bottom:127.712000pt;}
.y1ea{bottom:128.992000pt;}
.y15f{bottom:129.640000pt;}
.y16{bottom:130.272000pt;}
.ya8{bottom:131.552000pt;}
.y52{bottom:131.872000pt;}
.yfb{bottom:132.192000pt;}
.y216{bottom:133.533333pt;}
.y1aa{bottom:135.720000pt;}
.y29c{bottom:136.026667pt;}
.y1ed{bottom:136.680000pt;}
.y1db{bottom:137.626667pt;}
.y6b{bottom:137.946667pt;}
.y1fc{bottom:139.226667pt;}
.y7e{bottom:140.826667pt;}
.yf2{bottom:145.946667pt;}
.y38{bottom:146.266667pt;}
.y129{bottom:148.506667pt;}
.y217{bottom:151.613333pt;}
.y8f{bottom:152.666667pt;}
.y27a{bottom:152.986667pt;}
.yc4{bottom:153.306667pt;}
.y29b{bottom:153.946667pt;}
.y142{bottom:154.266667pt;}
.y201{bottom:154.533333pt;}
.y1fe{bottom:155.520000pt;}
.y258{bottom:158.426667pt;}
.y182{bottom:162.586667pt;}
.y1da{bottom:165.146667pt;}
.y51{bottom:165.786667pt;}
.y1e9{bottom:166.106667pt;}
.y1ba{bottom:166.120000pt;}
.y1eb{bottom:166.400000pt;}
.y150{bottom:166.426667pt;}
.y23c{bottom:168.346667pt;}
.y111{bottom:168.706667pt;}
.y218{bottom:169.733333pt;}
.y279{bottom:169.986667pt;}
.y15{bottom:171.266667pt;}
.y29a{bottom:172.546667pt;}
.ya7{bottom:172.866667pt;}
.yf1{bottom:173.506667pt;}
.yfa{bottom:175.746667pt;}
.ydd{bottom:176.066667pt;}
.y37{bottom:180.546667pt;}
.yc3{bottom:181.186667pt;}
.y1a9{bottom:184.720000pt;}
.y210{bottom:185.986667pt;}
.y278{bottom:186.946667pt;}
.y219{bottom:187.813333pt;}
.y141{bottom:188.866667pt;}
.y248{bottom:190.146667pt;}
.y257{bottom:192.386667pt;}
.y1d9{bottom:193.026667pt;}
.y50{bottom:193.346667pt;}
.y1fb{bottom:195.266667pt;}
.y23b{bottom:195.906667pt;}
.ya6{bottom:200.066667pt;}
.yf0{bottom:201.026667pt;}
.y15c{bottom:202.640000pt;}
.ydc{bottom:203.266667pt;}
.y128{bottom:203.906667pt;}
.y299{bottom:204.226667pt;}
.y277{bottom:205.506667pt;}
.y21a{bottom:205.893333pt;}
.y14f{bottom:207.426667pt;}
.yc2{bottom:208.706667pt;}
.y110{bottom:209.666667pt;}
.y14{bottom:212.226667pt;}
.y36{bottom:215.106667pt;}
.yf9{bottom:219.586667pt;}
.y6a{bottom:220.866667pt;}
.y8e{bottom:221.826667pt;}
.y298{bottom:222.466667pt;}
.y1fa{bottom:222.786667pt;}
.y23a{bottom:223.746667pt;}
.y21b{bottom:224.000000pt;}
.y256{bottom:226.306667pt;}
.y20f{bottom:226.946667pt;}
.ya5{bottom:227.586667pt;}
.yef{bottom:228.546667pt;}
.y91{bottom:230.160000pt;}
.ydb{bottom:230.786667pt;}
.y247{bottom:231.106667pt;}
.y1b9{bottom:231.120000pt;}
.y127{bottom:232.066667pt;}
.y1a7{bottom:233.680000pt;}
.y1d8{bottom:233.986667pt;}
.y297{bottom:241.346667pt;}
.y21c{bottom:242.080000pt;}
.y276{bottom:242.306667pt;}
.y181{bottom:244.546667pt;}
.y255{bottom:247.106667pt;}
.y140{bottom:248.066667pt;}
.y69{bottom:248.386667pt;}
.y203{bottom:249.053333pt;}
.y35{bottom:249.666667pt;}
.yc1{bottom:249.986667pt;}
.y10f{bottom:250.306667pt;}
.y239{bottom:251.266667pt;}
.y1f9{bottom:251.586667pt;}
.y13{bottom:252.866667pt;}
.ya4{bottom:255.106667pt;}
.yee{bottom:256.066667pt;}
.yda{bottom:258.626667pt;}
.y8d{bottom:259.266667pt;}
.y126{bottom:259.586667pt;}
.y275{bottom:260.866667pt;}
.y1d7{bottom:261.506667pt;}
.y1b6{bottom:264.080000pt;}
.yf8{bottom:265.666667pt;}
.y20e{bottom:267.906667pt;}
.y21e{bottom:269.413333pt;}
.y246{bottom:272.066667pt;}
.y13f{bottom:275.586667pt;}
.y68{bottom:276.226667pt;}
.yc0{bottom:277.186667pt;}
.y296{bottom:278.146667pt;}
.y1f8{bottom:279.106667pt;}
.y202{bottom:281.626667pt;}
.y1a6{bottom:282.653333pt;}
.ya3{bottom:283.293333pt;}
.yed{bottom:283.933333pt;}
.yd9{bottom:286.173333pt;}
.y125{bottom:287.133333pt;}
.y14e{bottom:289.053333pt;}
.y34{bottom:290.333333pt;}
.y180{bottom:290.973333pt;}
.y10e{bottom:291.293333pt;}
.y274{bottom:292.253333pt;}
.y238{bottom:292.573333pt;}
.y12{bottom:293.853333pt;}
.y245{bottom:299.293333pt;}
.y13e{bottom:303.133333pt;}
.y67{bottom:303.773333pt;}
.ybf{bottom:304.733333pt;}
.y254{bottom:306.653333pt;}
.y20d{bottom:308.573333pt;}
.y295{bottom:309.533333pt;}
.y273{bottom:310.813333pt;}
.yec{bottom:311.453333pt;}
.y4f{bottom:312.413333pt;}
.y1b4{bottom:313.053333pt;}
.yd8{bottom:313.693333pt;}
.y124{bottom:314.973333pt;}
.y1a3{bottom:315.613333pt;}
.y1d6{bottom:316.573333pt;}
.y33{bottom:317.533333pt;}
.y237{bottom:319.773333pt;}
.y1f7{bottom:321.373333pt;}
.ya2{bottom:325.213333pt;}
.y17f{bottom:326.813333pt;}
.y244{bottom:327.133333pt;}
.y294{bottom:328.093333pt;}
.y272{bottom:329.053333pt;}
.yf7{bottom:330.013333pt;}
.y13d{bottom:330.973333pt;}
.y10d{bottom:332.253333pt;}
.y253{bottom:334.173333pt;}
.y11{bottom:334.493333pt;}
.y4e{bottom:339.613333pt;}
.yd7{bottom:341.213333pt;}
.y123{bottom:342.493333pt;}
.y1d5{bottom:344.093333pt;}
.y32{bottom:345.053333pt;}
.ybe{bottom:346.013333pt;}
.y293{bottom:346.333333pt;}
.y236{bottom:347.293333pt;}
.y271{bottom:347.933333pt;}
.y1f6{bottom:348.573333pt;}
.y20c{bottom:349.533333pt;}
.ya1{bottom:352.413333pt;}
.yeb{bottom:352.733333pt;}
.y243{bottom:354.653333pt;}
.y13c{bottom:358.493333pt;}
.ybc{bottom:360.413333pt;}
.y252{bottom:361.693333pt;}
.y17c{bottom:362.333333pt;}
.y292{bottom:365.213333pt;}
.y270{bottom:366.173333pt;}
.y4d{bottom:367.453333pt;}
.yd6{bottom:368.733333pt;}
.y1b3{bottom:369.053333pt;}
.y122{bottom:370.333333pt;}
.y14d{bottom:370.973333pt;}
.y10c{bottom:373.213333pt;}
.y235{bottom:374.813333pt;}
.y10{bottom:375.453333pt;}
.y1f5{bottom:376.093333pt;}
.ya0{bottom:379.933333pt;}
.y1a1{bottom:380.573333pt;}
.y242{bottom:382.173333pt;}
.y291{bottom:383.453333pt;}
.y1e8{bottom:383.773333pt;}
.y26f{bottom:384.733333pt;}
.y1d4{bottom:385.373333pt;}
.y66{bottom:386.013333pt;}
.y31{bottom:386.333333pt;}
.y20b{bottom:390.493333pt;}
.yf6{bottom:394.053333pt;}
.y4c{bottom:395.013333pt;}
.y1b2{bottom:396.613333pt;}
.y121{bottom:398.853333pt;}
.y1d2{bottom:401.413333pt;}
.y290{bottom:402.053333pt;}
.y234{bottom:402.693333pt;}
.y251{bottom:403.013333pt;}
.y1f4{bottom:403.653333pt;}
.y157{bottom:406.213333pt;}
.y2b2{bottom:406.533333pt;}
.yea{bottom:407.493333pt;}
.y9f{bottom:407.813333pt;}
.y241{bottom:409.733333pt;}
.yd5{bottom:410.053333pt;}
.y1e7{bottom:410.693333pt;}
.y14c{bottom:411.973333pt;}
.y65{bottom:413.253333pt;}
.y30{bottom:413.573333pt;}
.y10b{bottom:414.213333pt;}
.y17a{bottom:415.493333pt;}
.yf{bottom:416.453333pt;}
.y28f{bottom:419.973333pt;}
.ybb{bottom:421.573333pt;}
.y4b{bottom:422.533333pt;}
.y2b1{bottom:425.093333pt;}
.y120{bottom:426.693333pt;}
.y233{bottom:430.213333pt;}
.y20a{bottom:431.493333pt;}
.y26e{bottom:434.373333pt;}
.ye9{bottom:435.013333pt;}
.y9e{bottom:435.333333pt;}
.yd4{bottom:437.573333pt;}
.y1b1{bottom:437.893333pt;}
.y1e6{bottom:438.533333pt;}
.y179{bottom:438.853333pt;}
.y64{bottom:440.773333pt;}
.y13b{bottom:441.093333pt;}
.y2f{bottom:441.413333pt;}
.y2b0{bottom:443.653333pt;}
.y1f3{bottom:444.933333pt;}
.y1d0{bottom:446.533333pt;}
.y4a{bottom:450.053333pt;}
.y240{bottom:451.013333pt;}
.y28e{bottom:451.653333pt;}
.y14b{bottom:452.933333pt;}
.y19e{bottom:453.573333pt;}
.y10a{bottom:455.173333pt;}
.y11f{bottom:455.493333pt;}
.y232{bottom:457.733333pt;}
.yf5{bottom:458.373333pt;}
.y2af{bottom:462.213333pt;}
.y9d{bottom:462.853333pt;}
.ye{bottom:463.813333pt;}
.yd3{bottom:465.093333pt;}
.yb8{bottom:465.733333pt;}
.y1e5{bottom:466.053333pt;}
.y2e{bottom:468.933333pt;}
.y28d{bottom:470.213333pt;}
.y26d{bottom:471.173333pt;}
.y1f2{bottom:472.453333pt;}
.y176{bottom:474.373333pt;}
.ye8{bottom:476.293333pt;}
.y49{bottom:478.213333pt;}
.y23f{bottom:478.533333pt;}
.y63{bottom:482.053333pt;}
.y11e{bottom:483.653333pt;}
.y250{bottom:485.253333pt;}
.y19c{bottom:486.853333pt;}
.y28c{bottom:488.773333pt;}
.y26c{bottom:490.053333pt;}
.y9c{bottom:490.373333pt;}
.yd2{bottom:492.613333pt;}
.y1e4{bottom:493.573333pt;}
.y14a{bottom:493.893333pt;}
.y109{bottom:496.133333pt;}
.y231{bottom:499.013333pt;}
.y1f1{bottom:499.973333pt;}
.y13a{bottom:503.813333pt;}
.ye7{bottom:504.773333pt;}
.yd{bottom:505.440000pt;}
.y23e{bottom:506.080000pt;}
.y152{bottom:506.400000pt;}
.y28b{bottom:507.360000pt;}
.y62{bottom:509.280000pt;}
.y2d{bottom:510.240000pt;}
.y1cf{bottom:511.200000pt;}
.y11d{bottom:511.840000pt;}
.y2ae{bottom:512.160000pt;}
.y24f{bottom:513.120000pt;}
.y209{bottom:513.440000pt;}
.y199{bottom:516.320000pt;}
.y9b{bottom:518.240000pt;}
.yd1{bottom:520.160000pt;}
.y1e3{bottom:521.120000pt;}
.y26b{bottom:521.440000pt;}
.yf4{bottom:522.720000pt;}
.y28a{bottom:525.280000pt;}
.y230{bottom:526.240000pt;}
.yb6{bottom:526.880000pt;}
.y2ad{bottom:530.720000pt;}
.y48{bottom:531.040000pt;}
.ye6{bottom:532.640000pt;}
.y7d{bottom:532.960000pt;}
.y23d{bottom:533.600000pt;}
.y149{bottom:534.880000pt;}
.y61{bottom:536.800000pt;}
.y108{bottom:537.120000pt;}
.y2c{bottom:537.440000pt;}
.y139{bottom:538.080000pt;}
.y11c{bottom:540.000000pt;}
.y24e{bottom:540.640000pt;}
.y1f0{bottom:541.280000pt;}
.y175{bottom:545.760000pt;}
.y9a{bottom:546.080000pt;}
.yc{bottom:546.720000pt;}
.y1b0{bottom:548.000000pt;}
.y2ac{bottom:549.280000pt;}
.y22f{bottom:554.080000pt;}
.y208{bottom:554.400000pt;}
.y197{bottom:556.960000pt;}
.y26a{bottom:558.560000pt;}
.y138{bottom:558.880000pt;}
.y7c{bottom:560.160000pt;}
.ye5{bottom:561.120000pt;}
.yd0{bottom:561.440000pt;}
.y1e2{bottom:562.400000pt;}
.y60{bottom:564.640000pt;}
.y2b{bottom:564.960000pt;}
.y2ab{bottom:567.520000pt;}
.yb4{bottom:571.040000pt;}
.y1af{bottom:575.520000pt;}
.y148{bottom:575.840000pt;}
.y1cc{bottom:576.160000pt;}
.y269{bottom:577.120000pt;}
.y107{bottom:578.080000pt;}
.y1fd{bottom:578.560000pt;}
.y1ef{bottom:578.720000pt;}
.y174{bottom:581.280000pt;}
.y22e{bottom:581.600000pt;}
.y24d{bottom:581.920000pt;}
.yf3{bottom:586.720000pt;}
.y7b{bottom:588.000000pt;}
.ye4{bottom:588.640000pt;}
.ycf{bottom:588.960000pt;}
.y1e1{bottom:589.600000pt;}
.y194{bottom:590.240000pt;}
.y5f{bottom:592.160000pt;}
.y47{bottom:592.480000pt;}
.y289{bottom:593.760000pt;}
.y137{bottom:594.080000pt;}
.yb{bottom:595.360000pt;}
.y2aa{bottom:598.880000pt;}
.y11b{bottom:599.520000pt;}
.y2a{bottom:606.240000pt;}
.y22d{bottom:609.120000pt;}
.y288{bottom:612.320000pt;}
.y99{bottom:615.200000pt;}
.y7a{bottom:615.520000pt;}
.yce{bottom:616.480000pt;}
.y147{bottom:616.800000pt;}
.y1e0{bottom:617.440000pt;}
.y106{bottom:619.066667pt;}
.y5e{bottom:619.706667pt;}
.y193{bottom:623.240000pt;}
.y268{bottom:626.746667pt;}
.y11a{bottom:627.066667pt;}
.ye3{bottom:630.906667pt;}
.y29{bottom:633.466667pt;}
.y172{bottom:634.440000pt;}
.y136{bottom:634.746667pt;}
.ya{bottom:636.026667pt;}
.y207{bottom:636.346667pt;}
.y22c{bottom:636.666667pt;}
.y79{bottom:643.066667pt;}
.ycd{bottom:644.026667pt;}
.y46{bottom:645.306667pt;}
.y5d{bottom:647.226667pt;}
.y287{bottom:649.466667pt;}
.y8c{bottom:651.066667pt;}
.y2a9{bottom:654.586667pt;}
.y119{bottom:654.906667pt;}
.y190{bottom:656.200000pt;}
.y1cb{bottom:656.840000pt;}
.ye2{bottom:658.426667pt;}
.y1df{bottom:658.746667pt;}
.y105{bottom:660.026667pt;}
.y28{bottom:661.306667pt;}
.y135{bottom:661.946667pt;}
.y267{bottom:663.866667pt;}
.y22b{bottom:664.506667pt;}
.y171{bottom:670.280000pt;}
.y78{bottom:670.586667pt;}
.ycc{bottom:671.546667pt;}
.y45{bottom:672.506667pt;}
.y5c{bottom:675.066667pt;}
.y9{bottom:676.986667pt;}
.y206{bottom:677.306667pt;}
.y8b{bottom:678.586667pt;}
.y286{bottom:680.826667pt;}
.y220{bottom:680.840000pt;}
.y118{bottom:682.426667pt;}
.ye1{bottom:685.946667pt;}
.y104{bottom:687.226667pt;}
.y18e{bottom:689.480000pt;}
.y134{bottom:689.786667pt;}
.y22a{bottom:692.026667pt;}
.y266{bottom:695.226667pt;}
.y98{bottom:698.106667pt;}
.y77{bottom:698.426667pt;}
.y146{bottom:699.066667pt;}
.yb1{bottom:699.386667pt;}
.y44{bottom:699.706667pt;}
.y27{bottom:702.586667pt;}
.y2a8{bottom:704.186667pt;}
.y16d{bottom:705.800000pt;}
.y8a{bottom:707.066667pt;}
.y117{bottom:709.946667pt;}
.ycb{bottom:712.826667pt;}
.y1de{bottom:713.466667pt;}
.y265{bottom:713.786667pt;}
.y205{bottom:714.426667pt;}
.y211{bottom:714.560000pt;}
.y103{bottom:715.066667pt;}
.y133{bottom:717.306667pt;}
.y285{bottom:717.626667pt;}
.y8{bottom:717.946667pt;}
.y18b{bottom:718.920000pt;}
.y229{bottom:719.546667pt;}
.y2a7{bottom:723.066667pt;}
.y97{bottom:725.626667pt;}
.y76{bottom:725.946667pt;}
.y43{bottom:726.906667pt;}
.ye0{bottom:727.226667pt;}
.y26{bottom:729.826667pt;}
.y5b{bottom:730.146667pt;}
.y264{bottom:732.066667pt;}
.y89{bottom:734.946667pt;}
.y284{bottom:735.906667pt;}
.y116{bottom:737.506667pt;}
.y1c9{bottom:738.800000pt;}
.yca{bottom:740.066667pt;}
.y2a6{bottom:741.346667pt;}
.y102{bottom:742.946667pt;}
.y132{bottom:744.866667pt;}
.y228{bottom:747.106667pt;}
.y189{bottom:750.640000pt;}
.y263{bottom:750.946667pt;}
.y75{bottom:753.506667pt;}
.y42{bottom:754.146667pt;}
.yb0{bottom:754.466667pt;}
.y1dd{bottom:754.786667pt;}
.y25{bottom:757.346667pt;}
.y7{bottom:758.946667pt;}
.y16a{bottom:758.960000pt;}
.y2a5{bottom:759.906667pt;}
.y24c{bottom:760.866667pt;}
.y88{bottom:763.426667pt;}
.yc9{bottom:767.906667pt;}
.y1ae{bottom:768.226667pt;}
.y5a{bottom:771.426667pt;}
.y131{bottom:772.386667pt;}
.y283{bottom:773.026667pt;}
.y227{bottom:774.946667pt;}
.y74{bottom:781.026667pt;}
.y41{bottom:781.346667pt;}
.yaf{bottom:781.986667pt;}
.y262{bottom:782.306667pt;}
.y101{bottom:784.226667pt;}
.y24{bottom:784.866667pt;}
.y24b{bottom:788.066667pt;}
.y87{bottom:791.266667pt;}
.yc8{bottom:795.426667pt;}
.ydf{bottom:795.746667pt;}
.y59{bottom:798.626667pt;}
.y261{bottom:800.546667pt;}
.y6{bottom:801.826667pt;}
.y226{bottom:802.466667pt;}
.y1c8{bottom:803.760000pt;}
.y188{bottom:805.346667pt;}
.y96{bottom:808.546667pt;}
.y40{bottom:808.866667pt;}
.y145{bottom:809.506667pt;}
.y167{bottom:812.400000pt;}
.y130{bottom:813.666667pt;}
.y24a{bottom:815.586667pt;}
.y260{bottom:819.426667pt;}
.y86{bottom:819.746667pt;}
.yc7{bottom:822.946667pt;}
.yae{bottom:823.266667pt;}
.y23{bottom:826.146667pt;}
.y58{bottom:826.466667pt;}
.y100{bottom:827.426667pt;}
.y2a4{bottom:828.386667pt;}
.y187{bottom:832.546667pt;}
.y3f{bottom:836.066667pt;}
.y73{bottom:836.386667pt;}
.y1ad{bottom:836.706667pt;}
.y1c6{bottom:836.720000pt;}
.y12f{bottom:840.866667pt;}
.y282{bottom:841.506667pt;}
.y249{bottom:843.453333pt;}
.y225{bottom:843.773333pt;}
.y2a3{bottom:846.653333pt;}
.y5{bottom:847.293333pt;}
.y85{bottom:847.613333pt;}
.y163{bottom:847.933333pt;}
.yad{bottom:850.493333pt;}
.y95{bottom:850.813333pt;}
.y22{bottom:853.373333pt;}
.yff{bottom:854.973333pt;}
.y281{bottom:859.773333pt;}
.y186{bottom:860.413333pt;}
.y3e{bottom:863.293333pt;}
.y72{bottom:863.933333pt;}
.yc6{bottom:864.253333pt;}
.y57{bottom:867.453333pt;}
.y12e{bottom:868.733333pt;}
.y25f{bottom:869.373333pt;}
.y1c5{bottom:869.693333pt;}
.y224{bottom:870.973333pt;}
.y84{bottom:876.093333pt;}
.y94{bottom:878.333333pt;}
.y280{bottom:878.653333pt;}
.y21{bottom:881.213333pt;}
.yfe{bottom:882.493333pt;}
.y25e{bottom:887.613333pt;}
.y3d{bottom:890.493333pt;}
.y4{bottom:890.813333pt;}
.y71{bottom:891.453333pt;}
.y115{bottom:891.773333pt;}
.y56{bottom:894.973333pt;}
.y12d{bottom:896.253333pt;}
.y2a2{bottom:896.573333pt;}
.y27f{bottom:896.893333pt;}
.y223{bottom:898.493333pt;}
.y161{bottom:901.053333pt;}
.y185{bottom:901.373333pt;}
.y83{bottom:904.893333pt;}
.yac{bottom:905.853333pt;}
.yde{bottom:906.173333pt;}
.y25d{bottom:906.493333pt;}
.y20{bottom:908.733333pt;}
.yfd{bottom:910.013333pt;}
.y27e{bottom:915.133333pt;}
.y2a1{bottom:915.453333pt;}
.y3c{bottom:917.693333pt;}
.y1c3{bottom:918.653333pt;}
.y70{bottom:919.293333pt;}
.y93{bottom:919.613333pt;}
.y55{bottom:922.813333pt;}
.y25c{bottom:924.733333pt;}
.y222{bottom:926.013333pt;}
.y184{bottom:928.893333pt;}
.y3{bottom:931.773333pt;}
.yab{bottom:933.373333pt;}
.y2a0{bottom:933.693333pt;}
.y1f{bottom:936.253333pt;}
.y3b{bottom:939.453333pt;}
.y12c{bottom:939.773333pt;}
.y25b{bottom:943.293333pt;}
.y6f{bottom:946.813333pt;}
.y82{bottom:947.133333pt;}
.y29f{bottom:952.253333pt;}
.y221{bottom:953.853333pt;}
.yfc{bottom:954.173333pt;}
.y114{bottom:954.533333pt;}
.y183{bottom:956.453333pt;}
.y144{bottom:960.933333pt;}
.y25a{bottom:961.253333pt;}
.y1e{bottom:963.813333pt;}
.y27d{bottom:965.093333pt;}
.y54{bottom:966.053333pt;}
.y12b{bottom:967.333333pt;}
.y1c2{bottom:967.653333pt;}
.y2{bottom:972.773333pt;}
.y6e{bottom:974.373333pt;}
.yaa{bottom:974.693333pt;}
.y29e{bottom:983.653333pt;}
.y27c{bottom:983.973333pt;}
.y1d{bottom:999.973333pt;}
.y113{bottom:1000.293333pt;}
.y6d{bottom:1001.893333pt;}
.y3a{bottom:1002.533333pt;}
.y1{bottom:1013.733333pt;}
.y1a{bottom:1020.773333pt;}
.y17{bottom:1042.533333pt;}
.hf{height:18.226667pt;}
.he{height:18.552000pt;}
.h43{height:22.386667pt;}
.h47{height:22.400000pt;}
.h29{height:23.026667pt;}
.h1c{height:24.632000pt;}
.h6{height:27.866667pt;}
.h2b{height:28.146667pt;}
.h31{height:28.186667pt;}
.h2d{height:31.666667pt;}
.h2f{height:31.680000pt;}
.h2c{height:31.698667pt;}
.h2e{height:31.712000pt;}
.h32{height:31.986667pt;}
.h25{height:35.186667pt;}
.h22{height:35.200000pt;}
.h26{height:35.506667pt;}
.h28{height:35.546667pt;}
.h1e{height:39.138750pt;}
.h30{height:39.360000pt;}
.h33{height:42.226667pt;}
.h11{height:42.866250pt;}
.h16{height:43.506667pt;}
.h13{height:43.520000pt;}
.h19{height:43.605000pt;}
.h37{height:43.628750pt;}
.h3f{height:43.826667pt;}
.h1b{height:43.913750pt;}
.h42{height:44.336250pt;}
.h45{height:44.441812pt;}
.h1d{height:47.026667pt;}
.h36{height:47.666667pt;}
.h35{height:47.680000pt;}
.h38{height:47.698667pt;}
.h3b{height:47.706667pt;}
.h21{height:48.195000pt;}
.h20{height:48.536250pt;}
.h9{height:48.558750pt;}
.h12{height:52.785000pt;}
.h1f{height:52.786667pt;}
.h24{height:52.818667pt;}
.h2a{height:52.826667pt;}
.h27{height:52.832000pt;}
.h23{height:53.106667pt;}
.h14{height:53.158750pt;}
.h2{height:57.375000pt;}
.hb{height:57.406250pt;}
.h4{height:57.781250pt;}
.h40{height:57.906250pt;}
.h10{height:57.952000pt;}
.hd{height:59.627500pt;}
.h17{height:59.787500pt;}
.h15{height:60.506667pt;}
.hc{height:62.567500pt;}
.h3a{height:63.352000pt;}
.h3e{height:63.386667pt;}
.h34{height:63.666667pt;}
.h3d{height:63.680000pt;}
.h39{height:63.698667pt;}
.h3{height:66.555000pt;}
.ha{height:67.026250pt;}
.h1a{height:69.746667pt;}
.h18{height:69.760000pt;}
.h46{height:72.562500pt;}
.h3c{height:79.392000pt;}
.h8{height:80.906250pt;}
.h7{height:83.531250pt;}
.h5{height:86.671875pt;}
.h41{height:190.720000pt;}
.h48{height:302.080000pt;}
.h44{height:314.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:35.544000pt;}
.w17{width:55.704000pt;}
.w10{width:58.584000pt;}
.w1a{width:79.698667pt;}
.w12{width:85.146667pt;}
.w13{width:94.464000pt;}
.w15{width:96.000000pt;}
.w1b{width:104.040000pt;}
.w3{width:119.680000pt;}
.w19{width:124.832000pt;}
.w9{width:128.026667pt;}
.wa{width:128.346667pt;}
.w11{width:141.760000pt;}
.w14{width:151.373333pt;}
.w7{width:224.720000pt;}
.w4{width:255.133333pt;}
.w18{width:278.797333pt;}
.w8{width:331.626667pt;}
.w1d{width:453.906667pt;}
.w1c{width:455.040000pt;}
.w2{width:460.018667pt;}
.w5{width:475.680000pt;}
.wb{width:514.080000pt;}
.w1e{width:519.040000pt;}
.w21{width:519.840000pt;}
.w1f{width:521.120000pt;}
.w20{width:521.280000pt;}
.we{width:545.440000pt;}
.w6{width:556.360000pt;}
.wc{width:581.640000pt;}
.wf{width:628.680000pt;}
.w16{width:643.120000pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xe{left:6.386667pt;}
.x1e{left:7.384000pt;}
.x46{left:8.626667pt;}
.x19{left:9.600000pt;}
.x2c{left:10.880000pt;}
.x55{left:11.826667pt;}
.x41{left:13.106667pt;}
.x2e{left:14.080000pt;}
.x3a{left:15.026667pt;}
.x30{left:16.960000pt;}
.x35{left:18.546667pt;}
.x3d{left:19.533333pt;}
.x2a{left:20.800000pt;}
.x44{left:22.392000pt;}
.x2f{left:24.320000pt;}
.xc{left:25.944000pt;}
.x4e{left:27.226667pt;}
.x5f{left:28.160000pt;}
.x28{left:29.440000pt;}
.x29{left:30.400000pt;}
.x5d{left:31.346667pt;}
.x3c{left:32.360000pt;}
.x2d{left:33.280000pt;}
.x3b{left:34.226667pt;}
.x3e{left:35.560000pt;}
.x47{left:36.826667pt;}
.x40{left:39.080000pt;}
.x45{left:40.306667pt;}
.x48{left:42.280000pt;}
.x42{left:43.506667pt;}
.x43{left:45.146667pt;}
.x32{left:46.066667pt;}
.x59{left:47.040000pt;}
.x6e{left:47.986667pt;}
.x5e{left:49.586667pt;}
.x3f{left:51.186667pt;}
.x60{left:52.173333pt;}
.x53{left:55.026667pt;}
.x31{left:56.320000pt;}
.x56{left:59.826667pt;}
.x4b{left:61.746667pt;}
.x5b{left:63.026667pt;}
.x57{left:73.266667pt;}
.x61{left:74.226667pt;}
.x49{left:75.560000pt;}
.x5c{left:76.466667pt;}
.x69{left:80.253333pt;}
.x54{left:81.613333pt;}
.x34{left:82.600000pt;}
.x52{left:86.093333pt;}
.x4f{left:87.693333pt;}
.x5a{left:89.293333pt;}
.x51{left:95.373333pt;}
.x6a{left:96.346667pt;}
.x58{left:99.533333pt;}
.xb{left:105.640000pt;}
.x50{left:110.413333pt;}
.x1{left:113.312000pt;}
.x1d{left:118.760000pt;}
.x3{left:120.352000pt;}
.x6f{left:122.912000pt;}
.x6d{left:127.773333pt;}
.x4a{left:131.280000pt;}
.x20{left:132.224000pt;}
.x6c{left:135.680000pt;}
.x21{left:137.346667pt;}
.x14{left:139.586667pt;}
.x33{left:142.160000pt;}
.x11{left:144.706667pt;}
.x70{left:146.626667pt;}
.x6{left:157.186667pt;}
.x10{left:160.386667pt;}
.x12{left:161.346667pt;}
.x1b{left:167.440000pt;}
.x22{left:169.026667pt;}
.x64{left:170.640000pt;}
.x23{left:184.386667pt;}
.x13{left:185.346667pt;}
.x68{left:187.226667pt;}
.x26{left:192.066667pt;}
.x5{left:194.946667pt;}
.x62{left:197.186667pt;}
.x15{left:209.346667pt;}
.x24{left:215.773333pt;}
.x25{left:232.413333pt;}
.x16{left:233.373333pt;}
.x7{left:254.813333pt;}
.x18{left:269.533333pt;}
.x4{left:279.133333pt;}
.x36{left:283.613333pt;}
.x9{left:290.653333pt;}
.x67{left:294.266667pt;}
.x8{left:299.973333pt;}
.x66{left:307.293333pt;}
.x2b{left:316.613333pt;}
.x27{left:317.573333pt;}
.xa{left:333.253333pt;}
.x1f{left:343.493333pt;}
.x37{left:368.773333pt;}
.x1c{left:389.600000pt;}
.xf{left:393.120000pt;}
.x2{left:396.960000pt;}
.x4c{left:410.080000pt;}
.x38{left:463.240000pt;}
.x17{left:511.866667pt;}
.x4d{left:534.920000pt;}
.xd{left:568.560000pt;}
.x39{left:614.640000pt;}
.x63{left:626.786667pt;}
.x65{left:658.813333pt;}
.x6b{left:659.773333pt;}
.x1a{left:662.973333pt;}
}




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