
    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_3a072916e0bfb02f7e07723d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5d59e513cd6d5217ea6fc1af.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_e95bbc7fc02c802fd8f0bb7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.081055;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_4d069fb269f615aecd931b0f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2d8401f76cc86302a4d50210.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_ae4021889060058f37d6e55b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_ee8dc56a7758546a4d26eab3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_239770794af5a4c3702c36be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_c1cb92042c4dd54900520fea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.937500;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_fab88240edf31b674feb9dbe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_a3ff7719db919ca5e9ef073e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.937500;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:-115.500000px;}
.v4{vertical-align:-88.500000px;}
.v3{vertical-align:-87.120000px;}
.v1{vertical-align:-82.500000px;}
.v5{vertical-align:-61.500000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-0.804000px;}
.lsd{letter-spacing:-0.516000px;}
.ls1c{letter-spacing:-0.492000px;}
.ls4{letter-spacing:-0.468000px;}
.ls3{letter-spacing:-0.036000px;}
.ls17{letter-spacing:-0.024000px;}
.ls19{letter-spacing:-0.018000px;}
.ls7{letter-spacing:-0.012000px;}
.lsf{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006000px;}
.ls9{letter-spacing:0.012000px;}
.lsa{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.024000px;}
.ls18{letter-spacing:0.138000px;}
.ls14{letter-spacing:0.462000px;}
.ls1f{letter-spacing:0.468000px;}
.ls27{letter-spacing:0.492000px;}
.ls2d{letter-spacing:0.516000px;}
.ls13{letter-spacing:0.522000px;}
.ls12{letter-spacing:0.696000px;}
.lse{letter-spacing:0.984000px;}
.ls16{letter-spacing:1.500000px;}
.ls1b{letter-spacing:1.524000px;}
.ls29{letter-spacing:3.000000px;}
.ls28{letter-spacing:4.500000px;}
.ls25{letter-spacing:9.000000px;}
.ls8{letter-spacing:9.312000px;}
.ls2b{letter-spacing:9.900000px;}
.ls26{letter-spacing:15.000000px;}
.ls1e{letter-spacing:23.484000px;}
.ls1d{letter-spacing:27.984000px;}
.ls15{letter-spacing:28.500000px;}
.ls21{letter-spacing:30.984000px;}
.ls20{letter-spacing:32.484000px;}
.ls22{letter-spacing:44.664000px;}
.ls23{letter-spacing:45.312000px;}
.ls1a{letter-spacing:63.984000px;}
.ls24{letter-spacing:67.152000px;}
.ls2c{letter-spacing:69.984000px;}
.ls2e{letter-spacing:70.134000px;}
.ls2f{letter-spacing:89.400000px;}
.ls2a{letter-spacing:177.492000px;}
.ls6{letter-spacing:846.450000px;}
.ls5{letter-spacing:919.980000px;}
.ls1{letter-spacing:1257.630000px;}
.ls0{letter-spacing:2534.730000px;}
.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;}
}
.ws3{word-spacing:-26.988000px;}
.ws4{word-spacing:-24.000000px;}
.wsd{word-spacing:-18.984000px;}
.ws13{word-spacing:-18.516000px;}
.ws12{word-spacing:-18.492000px;}
.ws10{word-spacing:-18.468000px;}
.ws11{word-spacing:-18.024000px;}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.532000px;}
.wsa{word-spacing:-17.484000px;}
.wsc{word-spacing:-17.196000px;}
.wsb{word-spacing:-16.500000px;}
.ws6{word-spacing:-13.524000px;}
.ws8{word-spacing:-13.518000px;}
.wsf{word-spacing:-13.512000px;}
.wse{word-spacing:-13.506000px;}
.ws5{word-spacing:-13.500000px;}
.ws7{word-spacing:-13.494000px;}
.ws9{word-spacing:-13.488000px;}
.ws0{word-spacing:0.000000px;}
._13{margin-left:-14.160000px;}
._16{margin-left:-11.346000px;}
._17{margin-left:-9.258000px;}
._14{margin-left:-8.208000px;}
._15{margin-left:-6.984000px;}
._1d{margin-left:-5.040000px;}
._10{margin-left:-3.996000px;}
._3{margin-left:-2.946000px;}
._1{margin-left:-1.080000px;}
._0{width:1.296000px;}
._2{width:2.340000px;}
._4{width:3.420000px;}
._d{width:4.968000px;}
._e{width:6.624000px;}
._7{width:7.920000px;}
._8{width:9.000000px;}
._25{width:10.050000px;}
._b{width:11.094000px;}
._c{width:12.144000px;}
._20{width:13.272000px;}
._a{width:14.472000px;}
._9{width:15.984000px;}
._f{width:16.992000px;}
._24{width:18.048000px;}
._5{width:19.080000px;}
._6{width:20.232000px;}
._21{width:21.960000px;}
._1e{width:23.040000px;}
._1f{width:24.048000px;}
._1a{width:25.128000px;}
._2c{width:26.316000px;}
._19{width:27.432000px;}
._1b{width:29.382000px;}
._1c{width:30.510000px;}
._26{width:32.340000px;}
._3a{width:33.456000px;}
._18{width:36.150000px;}
._4d{width:41.400000px;}
._3f{width:42.624000px;}
._28{width:43.632000px;}
._23{width:45.102000px;}
._22{width:46.662000px;}
._50{width:51.174000px;}
._49{width:53.034000px;}
._47{width:58.464000px;}
._48{width:59.472000px;}
._4e{width:65.232000px;}
._33{width:66.600000px;}
._32{width:67.968000px;}
._40{width:68.994000px;}
._41{width:70.848000px;}
._12{width:72.150000px;}
._3b{width:73.290000px;}
._2e{width:75.348000px;}
._4a{width:76.530000px;}
._27{width:77.538000px;}
._4b{width:82.872000px;}
._2d{width:85.500000px;}
._3c{width:109.998000px;}
._2a{width:117.324000px;}
._4c{width:120.384000px;}
._34{width:152.640000px;}
._35{width:153.882000px;}
._2f{width:157.176000px;}
._30{width:158.472000px;}
._45{width:164.232000px;}
._44{width:165.528000px;}
._46{width:166.680000px;}
._4f{width:183.240000px;}
._2b{width:207.504000px;}
._38{width:377.640000px;}
._39{width:378.792000px;}
._3d{width:401.544000px;}
._3e{width:402.912000px;}
._37{width:458.712000px;}
._42{width:606.744000px;}
._43{width:608.634000px;}
._36{width:614.736000px;}
._11{width:837.450000px;}
._29{width:848.232000px;}
._31{width:879.480000px;}
.fc8{color:rgb(109,45,158);}
.fc3{color:rgb(255,0,0);}
.fc7{color:rgb(5,99,193);}
.fc2{color:rgb(47,84,150);}
.fc1{color:transparent;}
.fc6{color:rgb(68,84,106);}
.fc5{color:rgb(102,102,102);}
.fc4{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:30.000000px;}
.fsf{font-size:33.000000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:39.000000px;}
.fs9{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fsb{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:78.000000px;}
.fsd{font-size:81.000000px;}
.fsc{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs10{font-size:99.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y14f{bottom:3.750000px;}
.y2fb{bottom:3.765000px;}
.y154{bottom:4.125000px;}
.y2ac{bottom:6.375000px;}
.y2db{bottom:6.735000px;}
.y2af{bottom:6.750000px;}
.y2aa{bottom:7.110000px;}
.y2bc{bottom:7.125000px;}
.y1d5{bottom:9.375000px;}
.y2ef{bottom:9.750000px;}
.y2a2{bottom:10.875000px;}
.y21b{bottom:12.750000px;}
.y181{bottom:13.125000px;}
.y294{bottom:13.500000px;}
.y213{bottom:13.860000px;}
.y1b0{bottom:13.875000px;}
.y196{bottom:14.250000px;}
.y1bd{bottom:14.265000px;}
.y1a1{bottom:14.295000px;}
.y29a{bottom:14.640000px;}
.y2ad{bottom:14.670000px;}
.y2eb{bottom:18.750000px;}
.y296{bottom:20.985000px;}
.y2b1{bottom:21.000000px;}
.y2ce{bottom:21.375000px;}
.y240{bottom:22.485000px;}
.y2f6{bottom:22.875000px;}
.y2fa{bottom:22.890000px;}
.y1d6{bottom:24.375000px;}
.y1d8{bottom:24.735000px;}
.y1b3{bottom:24.750000px;}
.y207{bottom:25.110000px;}
.y17e{bottom:25.125000px;}
.y227{bottom:25.140000px;}
.y297{bottom:28.860000px;}
.y2ee{bottom:28.875000px;}
.y2b2{bottom:29.625000px;}
.y2bf{bottom:30.030000px;}
.y2ae{bottom:30.375000px;}
.y2a9{bottom:30.735000px;}
.y2bb{bottom:30.750000px;}
.y2ea{bottom:34.500000px;}
.y1d1{bottom:34.875000px;}
.y1ae{bottom:35.250000px;}
.y18a{bottom:35.257500px;}
.y2c2{bottom:36.375000px;}
.y2e1{bottom:36.750000px;}
.y2df{bottom:36.780000px;}
.y2c5{bottom:36.795000px;}
.y29f{bottom:37.125000px;}
.y29c{bottom:37.875000px;}
.y2c0{bottom:37.905000px;}
.y299{bottom:38.625000px;}
.y2b0{bottom:39.000000px;}
.y2f3{bottom:41.625000px;}
.y1b6{bottom:41.670000px;}
.y20a{bottom:42.795000px;}
.y27{bottom:43.170000px;}
.y23f{bottom:43.500000px;}
.y1a0{bottom:44.295000px;}
.y2c3{bottom:45.000000px;}
.y1a4{bottom:45.007500px;}
.y1d9{bottom:45.360000px;}
.y1d3{bottom:45.375000px;}
.y29d{bottom:45.405000px;}
.y232{bottom:45.420000px;}
.y153{bottom:45.750000px;}
.y236{bottom:46.170000px;}
.y29b{bottom:46.875000px;}
.y2ed{bottom:47.655000px;}
.y2e9{bottom:49.875000px;}
.y2ba{bottom:54.375000px;}
.y2d0{bottom:54.405000px;}
.y2bd{bottom:54.750000px;}
.y2dc{bottom:54.780000px;}
.y2{bottom:56.625000px;}
.y2f0{bottom:57.030000px;}
.y2b4{bottom:57.750000px;}
.y2f2{bottom:60.750000px;}
.y2f9{bottom:60.795000px;}
.y2e7{bottom:62.250000px;}
.y2d1{bottom:63.030000px;}
.y23a{bottom:63.375000px;}
.y180{bottom:63.750000px;}
.y23e{bottom:64.125000px;}
.y21a{bottom:64.905000px;}
.y2e8{bottom:65.250000px;}
.y1d2{bottom:66.000000px;}
.y231{bottom:66.045000px;}
.y1ad{bottom:66.375000px;}
.y152{bottom:66.405000px;}
.y226{bottom:66.750000px;}
.y235{bottom:66.795000px;}
.y22d{bottom:67.125000px;}
.y2f7{bottom:69.375000px;}
.y2fc{bottom:69.420000px;}
.y2f4{bottom:70.485000px;}
.y19f{bottom:72.780000px;}
.y1{bottom:77.287500px;}
.y2b3{bottom:78.412500px;}
.y23d{bottom:84.780000px;}
.y22a{bottom:87.375000px;}
.y189{bottom:87.412500px;}
.y234{bottom:87.420000px;}
.y22c{bottom:87.750000px;}
.y1b5{bottom:92.295000px;}
.y209{bottom:93.405000px;}
.y21f{bottom:97.125000px;}
.y195{bottom:97.155000px;}
.y1a3{bottom:97.162500px;}
.y1ac{bottom:97.500000px;}
.y211{bottom:97.530000px;}
.y19e{bottom:101.295000px;}
.y239{bottom:105.030000px;}
.y23c{bottom:105.405000px;}
.y156{bottom:106.912500px;}
.y230{bottom:107.670000px;}
.y151{bottom:108.030000px;}
.y233{bottom:108.045000px;}
.y22b{bottom:108.375000px;}
.y89{bottom:109.162500px;}
.ye6{bottom:109.537500px;}
.y2fd{bottom:111.037500px;}
.y13d{bottom:112.537500px;}
.y14a{bottom:114.787500px;}
.y188{bottom:118.162500px;}
.y1ef{bottom:121.912500px;}
.y125{bottom:124.537500px;}
.y88{bottom:124.912500px;}
.y23b{bottom:126.030000px;}
.y25{bottom:127.162500px;}
.ye5{bottom:127.912500px;}
.y194{bottom:128.280000px;}
.y21e{bottom:128.295000px;}
.y210{bottom:128.655000px;}
.y1ab{bottom:128.670000px;}
.y229{bottom:129.045000px;}
.y101{bottom:129.412500px;}
.y19d{bottom:129.420000px;}
.y1a2{bottom:131.662500px;}
.y205{bottom:133.537500px;}
.y182{bottom:136.162500px;}
.y62{bottom:138.037500px;}
.y217{bottom:138.787500px;}
.y87{bottom:140.287500px;}
.ya3{bottom:140.662500px;}
.y86{bottom:144.787500px;}
.ya2{bottom:145.912500px;}
.y238{bottom:147.030000px;}
.ye4{bottom:147.037500px;}
.y187{bottom:149.287500px;}
.y22f{bottom:149.295000px;}
.y2f8{bottom:150.780000px;}
.ye3{bottom:152.280000px;}
.y1ee{bottom:153.045000px;}
.y85{bottom:155.655000px;}
.y274{bottom:157.170000px;}
.y19c{bottom:157.950000px;}
.ya1{bottom:158.280000px;}
.y1bb{bottom:159.405000px;}
.y1aa{bottom:159.420000px;}
.y193{bottom:159.435000px;}
.y13c{bottom:160.545000px;}
.y100{bottom:160.920000px;}
.y1dd{bottom:163.170000px;}
.ye2{bottom:165.780000px;}
.y131{bottom:166.170000px;}
.y24{bottom:166.920000px;}
.y1bc{bottom:167.280000px;}
.y162{bottom:167.670000px;}
.y204{bottom:170.295000px;}
.y264{bottom:171.045000px;}
.y84{bottom:171.420000px;}
.yaa{bottom:175.530000px;}
.y110{bottom:175.905000px;}
.y83{bottom:176.670000px;}
.y1dc{bottom:178.530000px;}
.y21d{bottom:180.420000px;}
.y186{bottom:180.457500px;}
.y1db{bottom:183.045000px;}
.y1ed{bottom:184.170000px;}
.y61{bottom:185.325000px;}
.yce{bottom:186.825000px;}
.y273{bottom:188.325000px;}
.y46{bottom:189.450000px;}
.y1a9{bottom:190.545000px;}
.ycd{bottom:191.325000px;}
.yff{bottom:192.450000px;}
.y216{bottom:195.825000px;}
.yfe{bottom:196.950000px;}
.y130{bottom:197.325000px;}
.y1b7{bottom:199.200000px;}
.y203{bottom:201.075000px;}
.y263{bottom:202.200000px;}
.ycc{bottom:202.575000px;}
.ye1{bottom:202.950000px;}
.ya9{bottom:203.700000px;}
.y13b{bottom:206.700000px;}
.y23{bottom:207.075000px;}
.y19b{bottom:208.575000px;}
.y192{bottom:211.560000px;}
.y185{bottom:211.567500px;}
.y20f{bottom:211.575000px;}
.y1ec{bottom:214.950000px;}
.ya0{bottom:215.700000px;}
.ycb{bottom:217.950000px;}
.y45{bottom:218.325000px;}
.y149{bottom:219.075000px;}
.y161{bottom:219.825000px;}
.y1ba{bottom:221.670000px;}
.y82{bottom:222.075000px;}
.yca{bottom:222.450000px;}
.y60{bottom:226.950000px;}
.y12f{bottom:228.075000px;}
.yfd{bottom:229.575000px;}
.y28e{bottom:230.700000px;}
.ya8{bottom:232.200000px;}
.y10f{bottom:233.325000px;}
.yc9{bottom:234.075000px;}
.y2f5{bottom:236.325000px;}
.y44{bottom:239.325000px;}
.y184{bottom:242.692500px;}
.y1a8{bottom:242.700000px;}
.y1eb{bottom:246.075000px;}
.y22{bottom:246.825000px;}
.y10e{bottom:249.075000px;}
.y272{bottom:250.200000px;}
.y160{bottom:250.950000px;}
.y81{bottom:252.825000px;}
.y215{bottom:253.200000px;}
.y10d{bottom:253.575000px;}
.y12e{bottom:259.200000px;}
.y43{bottom:259.950000px;}
.ya7{bottom:260.700000px;}
.y1da{bottom:263.325000px;}
.y191{bottom:263.685000px;}
.ye0{bottom:265.200000px;}
.y5f{bottom:268.575000px;}
.y243{bottom:269.325000px;}
.y148{bottom:270.825000px;}
.y1a7{bottom:273.825000px;}
.yc7{bottom:277.200000px;}
.y9f{bottom:277.575000px;}
.y28d{bottom:277.950000px;}
.y124{bottom:279.825000px;}
.y42{bottom:280.575000px;}
.y271{bottom:281.325000px;}
.y15f{bottom:281.700000px;}
.yc8{bottom:283.200000px;}
.y1b9{bottom:283.575000px;}
.y80{bottom:283.950000px;}
.y262{bottom:285.450000px;}
.y21{bottom:286.950000px;}
.y12d{bottom:290.325000px;}
.y202{bottom:294.450000px;}
.y183{bottom:294.457500px;}
.ydf{bottom:295.950000px;}
.y19a{bottom:298.575000px;}
.y242{bottom:300.450000px;}
.y41{bottom:301.200000px;}
.y2ab{bottom:304.200000px;}
.y1a6{bottom:304.950000px;}
.yc6{bottom:307.200000px;}
.y1ea{bottom:308.325000px;}
.y9e{bottom:308.700000px;}
.y5e{bottom:310.200000px;}
.y214{bottom:310.575000px;}
.y123{bottom:310.950000px;}
.ya6{bottom:311.325000px;}
.y270{bottom:312.495000px;}
.y15e{bottom:312.870000px;}
.y7f{bottom:315.120000px;}
.y190{bottom:315.480000px;}
.y261{bottom:316.620000px;}
.y28c{bottom:319.620000px;}
.y12c{bottom:321.480000px;}
.y2f1{bottom:321.870000px;}
.yfc{bottom:322.245000px;}
.y147{bottom:322.995000px;}
.y201{bottom:325.620000px;}
.y1d7{bottom:326.370000px;}
.y20{bottom:327.120000px;}
.y241{bottom:331.230000px;}
.y212{bottom:331.245000px;}
.y40{bottom:332.370000px;}
.yde{bottom:333.120000px;}
.yc5{bottom:335.370000px;}
.y1b8{bottom:335.700000px;}
.y20e{bottom:335.730000px;}
.y2a8{bottom:337.995000px;}
.y9c{bottom:338.745000px;}
.y1e9{bottom:339.495000px;}
.y122{bottom:342.120000px;}
.ya5{bottom:342.495000px;}
.y26f{bottom:343.620000px;}
.y9d{bottom:344.730000px;}
.y1f{bottom:346.245000px;}
.y18f{bottom:346.605000px;}
.y260{bottom:347.370000px;}
.y5d{bottom:351.855000px;}
.y12b{bottom:352.620000px;}
.yfb{bottom:353.370000px;}
.y146{bottom:354.120000px;}
.y200{bottom:356.370000px;}
.ydd{bottom:358.230000px;}
.y1e8{bottom:360.120000px;}
.y28b{bottom:361.230000px;}
.y20b{bottom:362.745000px;}
.y3f{bottom:363.495000px;}
.yc4{bottom:363.870000px;}
.y1e{bottom:364.980000px;}
.y20d{bottom:366.855000px;}
.y9b{bottom:367.245000px;}
.y237{bottom:369.870000px;}
.y121{bottom:373.245000px;}
.y26e{bottom:374.370000px;}
.y7e{bottom:377.370000px;}
.y18e{bottom:377.730000px;}
.y25f{bottom:378.480000px;}
.y280{bottom:383.370000px;}
.y1d{bottom:384.120000px;}
.yfa{bottom:384.495000px;}
.y145{bottom:385.230000px;}
.y1ff{bottom:387.495000px;}
.ydc{bottom:389.370000px;}
.y155{bottom:390.120000px;}
.y1e7{bottom:391.245000px;}
.yc3{bottom:392.355000px;}
.y5c{bottom:393.870000px;}
.y3e{bottom:394.620000px;}
.y9a{bottom:395.730000px;}
.y15d{bottom:396.120000px;}
.y2a7{bottom:398.355000px;}
.y28a{bottom:402.870000px;}
.y120{bottom:404.370000px;}
.y2cf{bottom:405.120000px;}
.y26d{bottom:405.495000px;}
.y7d{bottom:408.120000px;}
.y2ec{bottom:408.495000px;}
.y18d{bottom:408.885000px;}
.y25e{bottom:409.620000px;}
.y27f{bottom:414.495000px;}
.yf9{bottom:415.245000px;}
.y1fe{bottom:418.620000px;}
.y20c{bottom:418.980000px;}
.ydb{bottom:420.495000px;}
.yc2{bottom:420.870000px;}
.y289{bottom:423.870000px;}
.y99{bottom:424.245000px;}
.y1c{bottom:425.370000px;}
.y15c{bottom:427.245000px;}
.y11f{bottom:435.120000px;}
.y5b{bottom:435.495000px;}
.y26c{bottom:436.620000px;}
.y144{bottom:437.370000px;}
.y7c{bottom:439.245000px;}
.y25d{bottom:440.775000px;}
.y27e{bottom:445.650000px;}
.y1b{bottom:446.400000px;}
.y16f{bottom:446.775000px;}
.y1e6{bottom:447.525000px;}
.y17f{bottom:448.275000px;}
.y1fd{bottom:449.775000px;}
.yc1{bottom:450.525000px;}
.yda{bottom:451.275000px;}
.y1d4{bottom:452.400000px;}
.y98{bottom:452.775000px;}
.y2a6{bottom:453.525000px;}
.y288{bottom:454.650000px;}
.y3d{bottom:456.525000px;}
.y15b{bottom:458.025000px;}
.y18c{bottom:461.010000px;}
.y24a{bottom:461.400000px;}
.y11e{bottom:466.275000px;}
.y12a{bottom:466.650000px;}
.y1a{bottom:467.025000px;}
.yf8{bottom:467.400000px;}
.y26b{bottom:467.775000px;}
.y7b{bottom:470.400000px;}
.y25c{bottom:471.900000px;}
.y1e5{bottom:472.650000px;}
.y2a5{bottom:474.900000px;}
.y27d{bottom:476.775000px;}
.y5a{bottom:477.150000px;}
.y143{bottom:477.900000px;}
.y1fc{bottom:480.900000px;}
.y97{bottom:481.275000px;}
.yc0{bottom:481.650000px;}
.yd9{bottom:482.400000px;}
.y1d0{bottom:485.400000px;}
.y2cd{bottom:487.275000px;}
.y19{bottom:487.650000px;}
.y15a{bottom:489.150000px;}
.y11d{bottom:497.400000px;}
.y129{bottom:497.775000px;}
.yf7{bottom:498.525000px;}
.y26a{bottom:498.900000px;}
.y7a{bottom:501.525000px;}
.y25b{bottom:502.650000px;}
.y287{bottom:506.775000px;}
.y27c{bottom:507.900000px;}
.y18{bottom:508.275000px;}
.y16e{bottom:509.025000px;}
.y96{bottom:509.400000px;}
.y1fb{bottom:511.650000px;}
.y2a4{bottom:512.400000px;}
.ybf{bottom:512.775000px;}
.yd8{bottom:513.525000px;}
.y3c{bottom:518.775000px;}
.y159{bottom:520.275000px;}
.y142{bottom:522.150000px;}
.y199{bottom:524.775000px;}
.y2cc{bottom:527.775000px;}
.y11c{bottom:528.525000px;}
.y17{bottom:528.900000px;}
.yf6{bottom:529.650000px;}
.y79{bottom:532.650000px;}
.y25a{bottom:533.775000px;}
.y22e{bottom:534.525000px;}
.y95{bottom:537.900000px;}
.y27b{bottom:538.650000px;}
.y16d{bottom:540.150000px;}
.y1fa{bottom:542.775000px;}
.ybe{bottom:543.525000px;}
.y26{bottom:544.650000px;}
.y3b{bottom:549.900000px;}
.y16{bottom:551.775000px;}
.y1b4{bottom:552.525000px;}
.y286{bottom:558.900000px;}
.y11b{bottom:559.650000px;}
.y59{bottom:560.400000px;}
.yf5{bottom:560.775000px;}
.y78{bottom:563.400000px;}
.y259{bottom:564.900000px;}
.y94{bottom:566.400000px;}
.y1cf{bottom:569.070000px;}
.y27a{bottom:569.820000px;}
.y158{bottom:570.570000px;}
.y16c{bottom:571.320000px;}
.y1f9{bottom:573.945000px;}
.ybd{bottom:574.695000px;}
.y17d{bottom:576.195000px;}
.y3a{bottom:580.695000px;}
.y15{bottom:582.945000px;}
.y2a3{bottom:587.445000px;}
.y285{bottom:590.070000px;}
.y11a{bottom:590.445000px;}
.y128{bottom:590.820000px;}
.y249{bottom:591.195000px;}
.y269{bottom:591.945000px;}
.y2cb{bottom:592.320000px;}
.y77{bottom:594.570000px;}
.y93{bottom:594.945000px;}
.y258{bottom:596.070000px;}
.y2e6{bottom:598.320000px;}
.y279{bottom:600.945000px;}
.y39{bottom:601.695000px;}
.y58{bottom:602.070000px;}
.yd7{bottom:603.195000px;}
.y198{bottom:604.695000px;}
.y1f8{bottom:605.070000px;}
.ybc{bottom:605.820000px;}
.y17c{bottom:607.320000px;}
.yf3{bottom:611.445000px;}
.ya4{bottom:611.820000px;}
.y14{bottom:614.070000px;}
.y2e5{bottom:615.945000px;}
.y157{bottom:616.695000px;}
.yf4{bottom:617.445000px;}
.y13a{bottom:620.820000px;}
.y119{bottom:621.570000px;}
.y127{bottom:621.945000px;}
.y38{bottom:622.320000px;}
.y16b{bottom:623.070000px;}
.y92{bottom:623.445000px;}
.y2a1{bottom:624.945000px;}
.y76{bottom:625.695000px;}
.y257{bottom:627.195000px;}
.yd6{bottom:631.320000px;}
.y278{bottom:632.070000px;}
.y248{bottom:632.445000px;}
.y1ce{bottom:633.570000px;}
.y1f7{bottom:636.195000px;}
.y2e4{bottom:636.570000px;}
.ybb{bottom:636.945000px;}
.y17b{bottom:638.070000px;}
.yf2{bottom:639.945000px;}
.y37{bottom:642.945000px;}
.y57{bottom:644.070000px;}
.y150{bottom:645.945000px;}
.y197{bottom:646.320000px;}
.y91{bottom:651.945000px;}
.y118{bottom:652.695000px;}
.y126{bottom:653.070000px;}
.y247{bottom:653.445000px;}
.y10c{bottom:653.820000px;}
.y1cd{bottom:654.945000px;}
.y75{bottom:656.820000px;}
.y2e3{bottom:657.570000px;}
.yd5{bottom:659.820000px;}
.y1b2{bottom:662.445000px;}
.y277{bottom:662.820000px;}
.y36{bottom:663.570000px;}
.y1f6{bottom:666.945000px;}
.yba{bottom:667.695000px;}
.yf1{bottom:668.445000px;}
.y17a{bottom:669.195000px;}
.y13{bottom:674.070000px;}
.y16a{bottom:675.195000px;}
.y2ca{bottom:677.820000px;}
.y18b{bottom:678.195000px;}
.y256{bottom:678.945000px;}
.y90{bottom:681.570000px;}
.y139{bottom:683.070000px;}
.y117{bottom:683.820000px;}
.y35{bottom:684.195000px;}
.y56{bottom:685.695000px;}
.y74{bottom:687.945000px;}
.yd4{bottom:688.320000px;}
.y1cc{bottom:690.570000px;}
.y268{bottom:693.945000px;}
.y12{bottom:694.725000px;}
.y2a0{bottom:696.225000px;}
.yf0{bottom:696.975000px;}
.y1f5{bottom:698.100000px;}
.yb9{bottom:698.850000px;}
.y179{bottom:700.350000px;}
.y228{bottom:701.475000px;}
.y10b{bottom:702.600000px;}
.y2c9{bottom:704.100000px;}
.y34{bottom:704.850000px;}
.y169{bottom:706.350000px;}
.y255{bottom:710.100000px;}
.y1b1{bottom:711.975000px;}
.y8f{bottom:712.350000px;}
.y29e{bottom:712.725000px;}
.y55{bottom:713.850000px;}
.y138{bottom:714.225000px;}
.y116{bottom:714.600000px;}
.y2c8{bottom:714.975000px;}
.y11{bottom:715.350000px;}
.y224{bottom:716.475000px;}
.yd3{bottom:716.850000px;}
.y72{bottom:718.725000px;}
.y2e2{bottom:719.475000px;}
.y178{bottom:720.975000px;}
.y1cb{bottom:721.350000px;}
.y73{bottom:724.725000px;}
.y267{bottom:725.100000px;}
.yef{bottom:725.475000px;}
.y33{bottom:725.850000px;}
.y1f4{bottom:729.225000px;}
.yb8{bottom:729.975000px;}
.y2c7{bottom:732.225000px;}
.y10a{bottom:733.725000px;}
.y284{bottom:735.225000px;}
.y10{bottom:735.975000px;}
.y2e0{bottom:738.600000px;}
.y254{bottom:741.225000px;}
.y54{bottom:741.975000px;}
.y223{bottom:742.350000px;}
.y177{bottom:743.100000px;}
.yd2{bottom:745.350000px;}
.y276{bottom:746.100000px;}
.y32{bottom:746.475000px;}
.y71{bottom:749.850000px;}
.y1ca{bottom:751.350000px;}
.y8e{bottom:752.475000px;}
.yee{bottom:753.975000px;}
.y266{bottom:756.225000px;}
.y246{bottom:756.600000px;}
.y168{bottom:758.850000px;}
.y1f3{bottom:760.350000px;}
.yb7{bottom:761.100000px;}
.y222{bottom:763.350000px;}
.y109{bottom:764.850000px;}
.y283{bottom:766.350000px;}
.y115{bottom:766.725000px;}
.yf{bottom:767.100000px;}
.y53{bottom:770.100000px;}
.y14e{bottom:771.600000px;}
.y253{bottom:772.350000px;}
.yd1{bottom:773.850000px;}
.y8d{bottom:774.600000px;}
.y137{bottom:776.100000px;}
.y2c6{bottom:776.850000px;}
.y275{bottom:777.225000px;}
.y245{bottom:777.600000px;}
.y1c8{bottom:779.850000px;}
.y70{bottom:780.975000px;}
.y221{bottom:783.975000px;}
.y1c9{bottom:785.850000px;}
.y265{bottom:787.350000px;}
.y31{bottom:787.725000px;}
.y1f2{bottom:791.100000px;}
.yb6{bottom:792.225000px;}
.y2c4{bottom:793.725000px;}
.y282{bottom:797.100000px;}
.y114{bottom:797.850000px;}
.ye{bottom:798.225000px;}
.y52{bottom:798.600000px;}
.y208{bottom:799.350000px;}
.y176{bottom:800.850000px;}
.y220{bottom:801.600000px;}
.yd0{bottom:802.350000px;}
.y1af{bottom:802.725000px;}
.y2de{bottom:803.100000px;}
.yed{bottom:804.600000px;}
.y136{bottom:807.225000px;}
.y108{bottom:808.350000px;}
.y167{bottom:810.975000px;}
.y6e{bottom:812.100000px;}
.y6f{bottom:818.100000px;}
.y30{bottom:818.850000px;}
.y1f1{bottom:822.270000px;}
.y252{bottom:824.505000px;}
.y51{bottom:826.755000px;}
.y14d{bottom:828.255000px;}
.y113{bottom:829.020000px;}
.yd{bottom:829.380000px;}
.ycf{bottom:830.880000px;}
.y21c{bottom:833.505000px;}
.y1a5{bottom:834.255000px;}
.yec{bottom:835.395000px;}
.y1c7{bottom:836.880000px;}
.y135{bottom:838.380000px;}
.y107{bottom:839.130000px;}
.y8c{bottom:839.520000px;}
.y298{bottom:841.755000px;}
.y166{bottom:842.145000px;}
.y6d{bottom:842.895000px;}
.yb4{bottom:843.255000px;}
.y225{bottom:848.130000px;}
.yb5{bottom:849.255000px;}
.y2f{bottom:850.005000px;}
.y175{bottom:852.630000px;}
.y1f0{bottom:853.380000px;}
.y50{bottom:854.880000px;}
.y251{bottom:855.255000px;}
.y2c1{bottom:858.255000px;}
.yc{bottom:860.130000px;}
.y1c6{bottom:865.380000px;}
.y2dd{bottom:867.630000px;}
.y106{bottom:870.255000px;}
.yb3{bottom:871.380000px;}
.y165{bottom:873.270000px;}
.y6c{bottom:874.005000px;}
.yeb{bottom:878.880000px;}
.y14c{bottom:880.380000px;}
.y2e{bottom:881.130000px;}
.y4f{bottom:883.005000px;}
.y174{bottom:883.755000px;}
.y1e4{bottom:884.505000px;}
.y250{bottom:886.380000px;}
.y134{bottom:890.505000px;}
.y112{bottom:890.880000px;}
.yb{bottom:891.255000px;}
.y1c5{bottom:893.880000px;}
.yb2{bottom:899.880000px;}
.y105{bottom:901.380000px;}
.y244{bottom:901.755000px;}
.y6b{bottom:905.130000px;}
.y295{bottom:907.770000px;}
.y2da{bottom:908.145000px;}
.yea{bottom:910.005000px;}
.y206{bottom:910.395000px;}
.y4e{bottom:911.130000px;}
.y14b{bottom:911.505000px;}
.y2d{bottom:911.880000px;}
.y164{bottom:914.880000px;}
.y1e3{bottom:915.630000px;}
.y24f{bottom:917.505000px;}
.y111{bottom:922.005000px;}
.ya{bottom:922.380000px;}
.y2be{bottom:922.395000px;}
.yb1{bottom:928.380000px;}
.y281{bottom:932.505000px;}
.y6a{bottom:936.255000px;}
.y163{bottom:937.005000px;}
.y4d{bottom:939.630000px;}
.ye9{bottom:941.130000px;}
.y133{bottom:942.630000px;}
.y2c{bottom:943.005000px;}
.y173{bottom:946.005000px;}
.y1e2{bottom:946.380000px;}
.y1c4{bottom:950.925000px;}
.y9{bottom:953.550000px;}
.y293{bottom:955.800000px;}
.y141{bottom:963.675000px;}
.y69{bottom:967.425000px;}
.y4c{bottom:967.800000px;}
.y24e{bottom:969.675000px;}
.ye8{bottom:972.300000px;}
.y2b{bottom:974.175000px;}
.y1e1{bottom:977.550000px;}
.yb0{bottom:977.925000px;}
.y2b9{bottom:979.425000px;}
.y1c3{bottom:980.175000px;}
.y8{bottom:984.675000px;}
.y104{bottom:990.675000px;}
.y2d9{bottom:993.675000px;}
.y132{bottom:994.425000px;}
.y4b{bottom:995.925000px;}
.y68{bottom:998.175000px;}
.y292{bottom:999.300000px;}
.y24d{bottom:1000.800000px;}
.y2a{bottom:1005.300000px;}
.yaf{bottom:1006.425000px;}
.y1e0{bottom:1008.675000px;}
.y1c2{bottom:1011.300000px;}
.y291{bottom:1015.050000px;}
.y7{bottom:1015.425000px;}
.y2d8{bottom:1019.550000px;}
.y4a{bottom:1024.050000px;}
.y140{bottom:1025.550000px;}
.y172{bottom:1028.925000px;}
.y67{bottom:1029.300000px;}
.y2d7{bottom:1030.425000px;}
.y219{bottom:1031.550000px;}
.y290{bottom:1032.300000px;}
.yae{bottom:1034.925000px;}
.y29{bottom:1036.425000px;}
.y1df{bottom:1039.800000px;}
.y1c1{bottom:1042.425000px;}
.y6{bottom:1046.550000px;}
.y2d6{bottom:1047.675000px;}
.y28f{bottom:1049.925000px;}
.y49{bottom:1052.175000px;}
.y103{bottom:1052.550000px;}
.y13f{bottom:1056.675000px;}
.y171{bottom:1060.050000px;}
.y66{bottom:1060.425000px;}
.y24c{bottom:1062.675000px;}
.y2b8{bottom:1066.050000px;}
.y2d5{bottom:1066.425000px;}
.y28{bottom:1067.175000px;}
.y1de{bottom:1070.925000px;}
.y1c0{bottom:1073.550000px;}
.y8b{bottom:1077.705000px;}
.ye7{bottom:1083.705000px;}
.yad{bottom:1084.455000px;}
.y13e{bottom:1087.830000px;}
.y2b7{bottom:1090.455000px;}
.y170{bottom:1091.205000px;}
.y65{bottom:1091.580000px;}
.y2d4{bottom:1093.830000px;}
.y1bf{bottom:1094.205000px;}
.y5{bottom:1098.330000px;}
.y48{bottom:1101.330000px;}
.y2b6{bottom:1101.705000px;}
.y8a{bottom:1108.830000px;}
.y2d3{bottom:1111.830000px;}
.y64{bottom:1112.205000px;}
.yac{bottom:1112.955000px;}
.y24b{bottom:1113.705000px;}
.y218{bottom:1114.080000px;}
.y1be{bottom:1116.330000px;}
.y4{bottom:1118.955000px;}
.y2d2{bottom:1129.080000px;}
.y47{bottom:1131.705000px;}
.y63{bottom:1134.330000px;}
.y2b5{bottom:1137.705000px;}
.y3{bottom:1139.955000px;}
.yab{bottom:1141.455000px;}
.y102{bottom:1145.955000px;}
.h17{height:20.625000px;}
.h2a{height:21.000000px;}
.h44{height:29.443359px;}
.h32{height:30.750000px;}
.h25{height:30.787500px;}
.h20{height:31.110000px;}
.h29{height:31.162500px;}
.h41{height:31.537500px;}
.h2c{height:32.250000px;}
.h48{height:32.387695px;}
.h3c{height:34.875000px;}
.h3d{height:35.250000px;}
.h3e{height:35.287500px;}
.he{height:35.332031px;}
.h39{height:38.250000px;}
.hb{height:38.276367px;}
.hf{height:41.220703px;}
.h26{height:41.647500px;}
.h21{height:42.000000px;}
.h2f{height:42.022500px;}
.h1a{height:42.037500px;}
.h3a{height:45.772500px;}
.h43{height:46.500000px;}
.ha{height:47.109375px;}
.h16{height:52.971680px;}
.hd{height:52.998047px;}
.h4f{height:54.421875px;}
.h40{height:54.750000px;}
.h46{height:54.772500px;}
.h42{height:55.875000px;}
.h4{height:57.911133px;}
.hc{height:58.886719px;}
.h15{height:61.800293px;}
.h12{height:61.831055px;}
.h47{height:61.875000px;}
.h2e{height:62.250000px;}
.h2d{height:62.287500px;}
.h7{height:63.175781px;}
.h3b{height:63.750000px;}
.h10{height:64.546875px;}
.h3{height:64.775391px;}
.h1d{height:67.837600px;}
.h19{height:70.628906px;}
.h1{height:70.664062px;}
.h50{height:70.912500px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.h14{height:74.953125px;}
.h11{height:76.552734px;}
.h4a{height:78.750000px;}
.h4c{height:78.772500px;}
.h3f{height:79.497070px;}
.h45{height:79.875000px;}
.h4b{height:79.912500px;}
.h1c{height:80.625000px;}
.h33{height:81.787500px;}
.h49{height:82.441406px;}
.h2b{height:82.912500px;}
.h52{height:83.287500px;}
.h35{height:83.625000px;}
.h51{height:84.375000px;}
.h1b{height:84.656250px;}
.h4d{height:86.287500px;}
.h8{height:94.218750px;}
.h4e{height:97.163086px;}
.h9{height:98.672872px;}
.h5{height:99.412500px;}
.h2{height:108.843750px;}
.h27{height:109.162500px;}
.h30{height:110.287500px;}
.h18{height:124.912500px;}
.h36{height:145.912500px;}
.h38{height:163.905000px;}
.h23{height:166.170000px;}
.h37{height:166.200000px;}
.h34{height:197.280000px;}
.h22{height:225.450000px;}
.h1e{height:311.370000px;}
.h24{height:321.825000px;}
.h28{height:352.575000px;}
.h31{height:435.855000px;}
.h1f{height:477.885000px;}
.h0{height:1263.000000px;}
.w15{width:48.787500px;}
.w1b{width:49.125000px;}
.w1a{width:50.662500px;}
.w18{width:54.750000px;}
.w19{width:55.912500px;}
.w17{width:61.537500px;}
.w29{width:63.787500px;}
.w24{width:66.750000px;}
.w27{width:68.250000px;}
.w21{width:68.287500px;}
.w20{width:69.787500px;}
.w1e{width:72.750000px;}
.w1d{width:72.787500px;}
.w23{width:74.250000px;}
.w1f{width:74.287500px;}
.w2a{width:75.412500px;}
.w25{width:80.287500px;}
.w2c{width:81.787500px;}
.w2d{width:83.287500px;}
.w28{width:86.287500px;}
.wa{width:105.825000px;}
.w13{width:116.287500px;}
.wb{width:165.075000px;}
.w2b{width:165.825000px;}
.wc{width:181.575000px;}
.w22{width:209.370000px;}
.w1c{width:213.870000px;}
.wd{width:216.075000px;}
.w26{width:218.370000px;}
.w16{width:235.245000px;}
.w14{width:276.855000px;}
.w8{width:317.775000px;}
.w7{width:318.150000px;}
.w11{width:360.900000px;}
.wf{width:371.400000px;}
.w12{width:435.900000px;}
.w5{width:584.100000px;}
.w6{width:636.675000px;}
.w3{width:650.175000px;}
.w9{width:670.800000px;}
.w10{width:679.800000px;}
.we{width:690.300000px;}
.w4{width:892.874973px;}
.w2{width:892.874987px;}
.w0{width:892.875000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x58{left:6.735000px;}
.x36{left:7.875000px;}
.x10{left:10.500000px;}
.x4f{left:13.875000px;}
.x55{left:15.030000px;}
.x6a{left:16.125000px;}
.x73{left:17.985000px;}
.x6f{left:22.500000px;}
.x6b{left:24.000000px;}
.x4a{left:25.875000px;}
.x48{left:30.750000px;}
.x72{left:32.985000px;}
.x6d{left:39.045000px;}
.x4b{left:42.000000px;}
.x3c{left:61.530000px;}
.x4c{left:69.000000px;}
.x37{left:76.170000px;}
.x3d{left:88.530000px;}
.x5a{left:100.537487px;}
.x5b{left:108.037487px;}
.x5c{left:112.537500px;}
.xf{left:118.537500px;}
.x2{left:127.537487px;}
.x51{left:129.787500px;}
.x19{left:132.449987px;}
.x2f{left:136.574987px;}
.x45{left:139.575000px;}
.x46{left:144.045000px;}
.x35{left:149.325000px;}
.x12{left:154.574987px;}
.x9{left:159.074987px;}
.x2a{left:169.574973px;}
.xa{left:175.949987px;}
.x13{left:181.574987px;}
.x22{left:186.074987px;}
.x4e{left:198.075000px;}
.x30{left:208.574987px;}
.x4d{left:216.074987px;}
.x6{left:230.369987px;}
.x40{left:234.495000px;}
.x3b{left:235.619987px;}
.x32{left:239.744987px;}
.x44{left:260.744987px;}
.x69{left:280.620000px;}
.xd{left:288.869987px;}
.x8{left:301.619987px;}
.xc{left:311.399987px;}
.x4{left:316.274987px;}
.x3e{left:320.024973px;}
.x61{left:324.150000px;}
.x7{left:326.399987px;}
.x5{left:329.024987px;}
.x3f{left:330.524987px;}
.xe{left:332.024987px;}
.x65{left:333.150000px;}
.x18{left:343.649987px;}
.x34{left:347.024987px;}
.x1a{left:356.399973px;}
.x1b{left:361.649987px;}
.x6c{left:364.650000px;}
.x52{left:367.275000px;}
.x20{left:373.649973px;}
.x21{left:378.899987px;}
.xb{left:387.899987px;}
.x11{left:393.149987px;}
.x41{left:400.320000px;}
.x16{left:401.444973px;}
.x5d{left:403.695000px;}
.x23{left:405.569973px;}
.x17{left:407.444987px;}
.x24{left:411.569987px;}
.x53{left:431.070000px;}
.x3{left:446.444987px;}
.x6e{left:450.195000px;}
.x25{left:458.069973px;}
.x26{left:464.069987px;}
.x62{left:469.695000px;}
.x66{left:475.695000px;}
.x50{left:477.195000px;}
.x5e{left:478.695000px;}
.x54{left:488.070000px;}
.x14{left:498.599973px;}
.x15{left:504.599987px;}
.x70{left:534.225000px;}
.x56{left:546.225000px;}
.x1c{left:551.099973px;}
.x63{left:552.225000px;}
.x5f{left:555.225000px;}
.x1d{left:556.349987px;}
.x1e{left:561.974973px;}
.x67{left:564.225000px;}
.x1f{left:567.974987px;}
.x47{left:577.770000px;}
.x42{left:582.645000px;}
.x57{left:599.145000px;}
.x71{left:618.270000px;}
.x64{left:622.770000px;}
.x60{left:627.270000px;}
.x68{left:630.270000px;}
.x2b{left:641.879973px;}
.x33{left:643.004987px;}
.x2c{left:653.879987px;}
.x2d{left:670.424973px;}
.x2e{left:682.424987px;}
.x49{left:696.300000px;}
.x74{left:702.300000px;}
.x27{left:719.549973px;}
.x28{left:724.799987px;}
.x38{left:740.174987px;}
.x29{left:747.674987px;}
.x1{left:756.704987px;}
.x3a{left:765.329987px;}
.x39{left:766.829987px;}
.x59{left:774.719987px;}
.x43{left:792.329987px;}
.x31{left:820.829987px;}
@media print{
.v2{vertical-align:-102.666667pt;}
.v4{vertical-align:-78.666667pt;}
.v3{vertical-align:-77.440000pt;}
.v1{vertical-align:-73.333333pt;}
.v5{vertical-align:-54.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-0.714667pt;}
.lsd{letter-spacing:-0.458667pt;}
.ls1c{letter-spacing:-0.437333pt;}
.ls4{letter-spacing:-0.416000pt;}
.ls3{letter-spacing:-0.032000pt;}
.ls17{letter-spacing:-0.021333pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:-0.010667pt;}
.lsf{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005333pt;}
.ls9{letter-spacing:0.010667pt;}
.lsa{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.021333pt;}
.ls18{letter-spacing:0.122667pt;}
.ls14{letter-spacing:0.410667pt;}
.ls1f{letter-spacing:0.416000pt;}
.ls27{letter-spacing:0.437333pt;}
.ls2d{letter-spacing:0.458667pt;}
.ls13{letter-spacing:0.464000pt;}
.ls12{letter-spacing:0.618667pt;}
.lse{letter-spacing:0.874667pt;}
.ls16{letter-spacing:1.333333pt;}
.ls1b{letter-spacing:1.354667pt;}
.ls29{letter-spacing:2.666667pt;}
.ls28{letter-spacing:4.000000pt;}
.ls25{letter-spacing:8.000000pt;}
.ls8{letter-spacing:8.277333pt;}
.ls2b{letter-spacing:8.800000pt;}
.ls26{letter-spacing:13.333333pt;}
.ls1e{letter-spacing:20.874667pt;}
.ls1d{letter-spacing:24.874667pt;}
.ls15{letter-spacing:25.333333pt;}
.ls21{letter-spacing:27.541333pt;}
.ls20{letter-spacing:28.874667pt;}
.ls22{letter-spacing:39.701333pt;}
.ls23{letter-spacing:40.277333pt;}
.ls1a{letter-spacing:56.874667pt;}
.ls24{letter-spacing:59.690667pt;}
.ls2c{letter-spacing:62.208000pt;}
.ls2e{letter-spacing:62.341333pt;}
.ls2f{letter-spacing:79.466667pt;}
.ls2a{letter-spacing:157.770667pt;}
.ls6{letter-spacing:752.400000pt;}
.ls5{letter-spacing:817.760000pt;}
.ls1{letter-spacing:1117.893333pt;}
.ls0{letter-spacing:2253.093333pt;}
.ws3{word-spacing:-23.989333pt;}
.ws4{word-spacing:-21.333333pt;}
.wsd{word-spacing:-16.874667pt;}
.ws13{word-spacing:-16.458667pt;}
.ws12{word-spacing:-16.437333pt;}
.ws10{word-spacing:-16.416000pt;}
.ws11{word-spacing:-16.021333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.584000pt;}
.wsa{word-spacing:-15.541333pt;}
.wsc{word-spacing:-15.285333pt;}
.wsb{word-spacing:-14.666667pt;}
.ws6{word-spacing:-12.021333pt;}
.ws8{word-spacing:-12.016000pt;}
.wsf{word-spacing:-12.010667pt;}
.wse{word-spacing:-12.005333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws7{word-spacing:-11.994667pt;}
.ws9{word-spacing:-11.989333pt;}
.ws0{word-spacing:0.000000pt;}
._13{margin-left:-12.586667pt;}
._16{margin-left:-10.085333pt;}
._17{margin-left:-8.229333pt;}
._14{margin-left:-7.296000pt;}
._15{margin-left:-6.208000pt;}
._1d{margin-left:-4.480000pt;}
._10{margin-left:-3.552000pt;}
._3{margin-left:-2.618667pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._2{width:2.080000pt;}
._4{width:3.040000pt;}
._d{width:4.416000pt;}
._e{width:5.888000pt;}
._7{width:7.040000pt;}
._8{width:8.000000pt;}
._25{width:8.933333pt;}
._b{width:9.861333pt;}
._c{width:10.794667pt;}
._20{width:11.797333pt;}
._a{width:12.864000pt;}
._9{width:14.208000pt;}
._f{width:15.104000pt;}
._24{width:16.042667pt;}
._5{width:16.960000pt;}
._6{width:17.984000pt;}
._21{width:19.520000pt;}
._1e{width:20.480000pt;}
._1f{width:21.376000pt;}
._1a{width:22.336000pt;}
._2c{width:23.392000pt;}
._19{width:24.384000pt;}
._1b{width:26.117333pt;}
._1c{width:27.120000pt;}
._26{width:28.746667pt;}
._3a{width:29.738667pt;}
._18{width:32.133333pt;}
._4d{width:36.800000pt;}
._3f{width:37.888000pt;}
._28{width:38.784000pt;}
._23{width:40.090667pt;}
._22{width:41.477333pt;}
._50{width:45.488000pt;}
._49{width:47.141333pt;}
._47{width:51.968000pt;}
._48{width:52.864000pt;}
._4e{width:57.984000pt;}
._33{width:59.200000pt;}
._32{width:60.416000pt;}
._40{width:61.328000pt;}
._41{width:62.976000pt;}
._12{width:64.133333pt;}
._3b{width:65.146667pt;}
._2e{width:66.976000pt;}
._4a{width:68.026667pt;}
._27{width:68.922667pt;}
._4b{width:73.664000pt;}
._2d{width:76.000000pt;}
._3c{width:97.776000pt;}
._2a{width:104.288000pt;}
._4c{width:107.008000pt;}
._34{width:135.680000pt;}
._35{width:136.784000pt;}
._2f{width:139.712000pt;}
._30{width:140.864000pt;}
._45{width:145.984000pt;}
._44{width:147.136000pt;}
._46{width:148.160000pt;}
._4f{width:162.880000pt;}
._2b{width:184.448000pt;}
._38{width:335.680000pt;}
._39{width:336.704000pt;}
._3d{width:356.928000pt;}
._3e{width:358.144000pt;}
._37{width:407.744000pt;}
._42{width:539.328000pt;}
._43{width:541.008000pt;}
._36{width:546.432000pt;}
._11{width:744.400000pt;}
._29{width:753.984000pt;}
._31{width:781.760000pt;}
.fse{font-size:26.666667pt;}
.fsf{font-size:29.333333pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.666667pt;}
.fs9{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fsb{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.333333pt;}
.fsd{font-size:72.000000pt;}
.fsc{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs10{font-size:88.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y14f{bottom:3.333333pt;}
.y2fb{bottom:3.346667pt;}
.y154{bottom:3.666667pt;}
.y2ac{bottom:5.666667pt;}
.y2db{bottom:5.986667pt;}
.y2af{bottom:6.000000pt;}
.y2aa{bottom:6.320000pt;}
.y2bc{bottom:6.333333pt;}
.y1d5{bottom:8.333333pt;}
.y2ef{bottom:8.666667pt;}
.y2a2{bottom:9.666667pt;}
.y21b{bottom:11.333333pt;}
.y181{bottom:11.666667pt;}
.y294{bottom:12.000000pt;}
.y213{bottom:12.320000pt;}
.y1b0{bottom:12.333333pt;}
.y196{bottom:12.666667pt;}
.y1bd{bottom:12.680000pt;}
.y1a1{bottom:12.706667pt;}
.y29a{bottom:13.013333pt;}
.y2ad{bottom:13.040000pt;}
.y2eb{bottom:16.666667pt;}
.y296{bottom:18.653333pt;}
.y2b1{bottom:18.666667pt;}
.y2ce{bottom:19.000000pt;}
.y240{bottom:19.986667pt;}
.y2f6{bottom:20.333333pt;}
.y2fa{bottom:20.346667pt;}
.y1d6{bottom:21.666667pt;}
.y1d8{bottom:21.986667pt;}
.y1b3{bottom:22.000000pt;}
.y207{bottom:22.320000pt;}
.y17e{bottom:22.333333pt;}
.y227{bottom:22.346667pt;}
.y297{bottom:25.653333pt;}
.y2ee{bottom:25.666667pt;}
.y2b2{bottom:26.333333pt;}
.y2bf{bottom:26.693333pt;}
.y2ae{bottom:27.000000pt;}
.y2a9{bottom:27.320000pt;}
.y2bb{bottom:27.333333pt;}
.y2ea{bottom:30.666667pt;}
.y1d1{bottom:31.000000pt;}
.y1ae{bottom:31.333333pt;}
.y18a{bottom:31.340000pt;}
.y2c2{bottom:32.333333pt;}
.y2e1{bottom:32.666667pt;}
.y2df{bottom:32.693333pt;}
.y2c5{bottom:32.706667pt;}
.y29f{bottom:33.000000pt;}
.y29c{bottom:33.666667pt;}
.y2c0{bottom:33.693333pt;}
.y299{bottom:34.333333pt;}
.y2b0{bottom:34.666667pt;}
.y2f3{bottom:37.000000pt;}
.y1b6{bottom:37.040000pt;}
.y20a{bottom:38.040000pt;}
.y27{bottom:38.373333pt;}
.y23f{bottom:38.666667pt;}
.y1a0{bottom:39.373333pt;}
.y2c3{bottom:40.000000pt;}
.y1a4{bottom:40.006667pt;}
.y1d9{bottom:40.320000pt;}
.y1d3{bottom:40.333333pt;}
.y29d{bottom:40.360000pt;}
.y232{bottom:40.373333pt;}
.y153{bottom:40.666667pt;}
.y236{bottom:41.040000pt;}
.y29b{bottom:41.666667pt;}
.y2ed{bottom:42.360000pt;}
.y2e9{bottom:44.333333pt;}
.y2ba{bottom:48.333333pt;}
.y2d0{bottom:48.360000pt;}
.y2bd{bottom:48.666667pt;}
.y2dc{bottom:48.693333pt;}
.y2{bottom:50.333333pt;}
.y2f0{bottom:50.693333pt;}
.y2b4{bottom:51.333333pt;}
.y2f2{bottom:54.000000pt;}
.y2f9{bottom:54.040000pt;}
.y2e7{bottom:55.333333pt;}
.y2d1{bottom:56.026667pt;}
.y23a{bottom:56.333333pt;}
.y180{bottom:56.666667pt;}
.y23e{bottom:57.000000pt;}
.y21a{bottom:57.693333pt;}
.y2e8{bottom:58.000000pt;}
.y1d2{bottom:58.666667pt;}
.y231{bottom:58.706667pt;}
.y1ad{bottom:59.000000pt;}
.y152{bottom:59.026667pt;}
.y226{bottom:59.333333pt;}
.y235{bottom:59.373333pt;}
.y22d{bottom:59.666667pt;}
.y2f7{bottom:61.666667pt;}
.y2fc{bottom:61.706667pt;}
.y2f4{bottom:62.653333pt;}
.y19f{bottom:64.693333pt;}
.y1{bottom:68.700000pt;}
.y2b3{bottom:69.700000pt;}
.y23d{bottom:75.360000pt;}
.y22a{bottom:77.666667pt;}
.y189{bottom:77.700000pt;}
.y234{bottom:77.706667pt;}
.y22c{bottom:78.000000pt;}
.y1b5{bottom:82.040000pt;}
.y209{bottom:83.026667pt;}
.y21f{bottom:86.333333pt;}
.y195{bottom:86.360000pt;}
.y1a3{bottom:86.366667pt;}
.y1ac{bottom:86.666667pt;}
.y211{bottom:86.693333pt;}
.y19e{bottom:90.040000pt;}
.y239{bottom:93.360000pt;}
.y23c{bottom:93.693333pt;}
.y156{bottom:95.033333pt;}
.y230{bottom:95.706667pt;}
.y151{bottom:96.026667pt;}
.y233{bottom:96.040000pt;}
.y22b{bottom:96.333333pt;}
.y89{bottom:97.033333pt;}
.ye6{bottom:97.366667pt;}
.y2fd{bottom:98.700000pt;}
.y13d{bottom:100.033333pt;}
.y14a{bottom:102.033333pt;}
.y188{bottom:105.033333pt;}
.y1ef{bottom:108.366667pt;}
.y125{bottom:110.700000pt;}
.y88{bottom:111.033333pt;}
.y23b{bottom:112.026667pt;}
.y25{bottom:113.033333pt;}
.ye5{bottom:113.700000pt;}
.y194{bottom:114.026667pt;}
.y21e{bottom:114.040000pt;}
.y210{bottom:114.360000pt;}
.y1ab{bottom:114.373333pt;}
.y229{bottom:114.706667pt;}
.y101{bottom:115.033333pt;}
.y19d{bottom:115.040000pt;}
.y1a2{bottom:117.033333pt;}
.y205{bottom:118.700000pt;}
.y182{bottom:121.033333pt;}
.y62{bottom:122.700000pt;}
.y217{bottom:123.366667pt;}
.y87{bottom:124.700000pt;}
.ya3{bottom:125.033333pt;}
.y86{bottom:128.700000pt;}
.ya2{bottom:129.700000pt;}
.y238{bottom:130.693333pt;}
.ye4{bottom:130.700000pt;}
.y187{bottom:132.700000pt;}
.y22f{bottom:132.706667pt;}
.y2f8{bottom:134.026667pt;}
.ye3{bottom:135.360000pt;}
.y1ee{bottom:136.040000pt;}
.y85{bottom:138.360000pt;}
.y274{bottom:139.706667pt;}
.y19c{bottom:140.400000pt;}
.ya1{bottom:140.693333pt;}
.y1bb{bottom:141.693333pt;}
.y1aa{bottom:141.706667pt;}
.y193{bottom:141.720000pt;}
.y13c{bottom:142.706667pt;}
.y100{bottom:143.040000pt;}
.y1dd{bottom:145.040000pt;}
.ye2{bottom:147.360000pt;}
.y131{bottom:147.706667pt;}
.y24{bottom:148.373333pt;}
.y1bc{bottom:148.693333pt;}
.y162{bottom:149.040000pt;}
.y204{bottom:151.373333pt;}
.y264{bottom:152.040000pt;}
.y84{bottom:152.373333pt;}
.yaa{bottom:156.026667pt;}
.y110{bottom:156.360000pt;}
.y83{bottom:157.040000pt;}
.y1dc{bottom:158.693333pt;}
.y21d{bottom:160.373333pt;}
.y186{bottom:160.406667pt;}
.y1db{bottom:162.706667pt;}
.y1ed{bottom:163.706667pt;}
.y61{bottom:164.733333pt;}
.yce{bottom:166.066667pt;}
.y273{bottom:167.400000pt;}
.y46{bottom:168.400000pt;}
.y1a9{bottom:169.373333pt;}
.ycd{bottom:170.066667pt;}
.yff{bottom:171.066667pt;}
.y216{bottom:174.066667pt;}
.yfe{bottom:175.066667pt;}
.y130{bottom:175.400000pt;}
.y1b7{bottom:177.066667pt;}
.y203{bottom:178.733333pt;}
.y263{bottom:179.733333pt;}
.ycc{bottom:180.066667pt;}
.ye1{bottom:180.400000pt;}
.ya9{bottom:181.066667pt;}
.y13b{bottom:183.733333pt;}
.y23{bottom:184.066667pt;}
.y19b{bottom:185.400000pt;}
.y192{bottom:188.053333pt;}
.y185{bottom:188.060000pt;}
.y20f{bottom:188.066667pt;}
.y1ec{bottom:191.066667pt;}
.ya0{bottom:191.733333pt;}
.ycb{bottom:193.733333pt;}
.y45{bottom:194.066667pt;}
.y149{bottom:194.733333pt;}
.y161{bottom:195.400000pt;}
.y1ba{bottom:197.040000pt;}
.y82{bottom:197.400000pt;}
.yca{bottom:197.733333pt;}
.y60{bottom:201.733333pt;}
.y12f{bottom:202.733333pt;}
.yfd{bottom:204.066667pt;}
.y28e{bottom:205.066667pt;}
.ya8{bottom:206.400000pt;}
.y10f{bottom:207.400000pt;}
.yc9{bottom:208.066667pt;}
.y2f5{bottom:210.066667pt;}
.y44{bottom:212.733333pt;}
.y184{bottom:215.726667pt;}
.y1a8{bottom:215.733333pt;}
.y1eb{bottom:218.733333pt;}
.y22{bottom:219.400000pt;}
.y10e{bottom:221.400000pt;}
.y272{bottom:222.400000pt;}
.y160{bottom:223.066667pt;}
.y81{bottom:224.733333pt;}
.y215{bottom:225.066667pt;}
.y10d{bottom:225.400000pt;}
.y12e{bottom:230.400000pt;}
.y43{bottom:231.066667pt;}
.ya7{bottom:231.733333pt;}
.y1da{bottom:234.066667pt;}
.y191{bottom:234.386667pt;}
.ye0{bottom:235.733333pt;}
.y5f{bottom:238.733333pt;}
.y243{bottom:239.400000pt;}
.y148{bottom:240.733333pt;}
.y1a7{bottom:243.400000pt;}
.yc7{bottom:246.400000pt;}
.y9f{bottom:246.733333pt;}
.y28d{bottom:247.066667pt;}
.y124{bottom:248.733333pt;}
.y42{bottom:249.400000pt;}
.y271{bottom:250.066667pt;}
.y15f{bottom:250.400000pt;}
.yc8{bottom:251.733333pt;}
.y1b9{bottom:252.066667pt;}
.y80{bottom:252.400000pt;}
.y262{bottom:253.733333pt;}
.y21{bottom:255.066667pt;}
.y12d{bottom:258.066667pt;}
.y202{bottom:261.733333pt;}
.y183{bottom:261.740000pt;}
.ydf{bottom:263.066667pt;}
.y19a{bottom:265.400000pt;}
.y242{bottom:267.066667pt;}
.y41{bottom:267.733333pt;}
.y2ab{bottom:270.400000pt;}
.y1a6{bottom:271.066667pt;}
.yc6{bottom:273.066667pt;}
.y1ea{bottom:274.066667pt;}
.y9e{bottom:274.400000pt;}
.y5e{bottom:275.733333pt;}
.y214{bottom:276.066667pt;}
.y123{bottom:276.400000pt;}
.ya6{bottom:276.733333pt;}
.y270{bottom:277.773333pt;}
.y15e{bottom:278.106667pt;}
.y7f{bottom:280.106667pt;}
.y190{bottom:280.426667pt;}
.y261{bottom:281.440000pt;}
.y28c{bottom:284.106667pt;}
.y12c{bottom:285.760000pt;}
.y2f1{bottom:286.106667pt;}
.yfc{bottom:286.440000pt;}
.y147{bottom:287.106667pt;}
.y201{bottom:289.440000pt;}
.y1d7{bottom:290.106667pt;}
.y20{bottom:290.773333pt;}
.y241{bottom:294.426667pt;}
.y212{bottom:294.440000pt;}
.y40{bottom:295.440000pt;}
.yde{bottom:296.106667pt;}
.yc5{bottom:298.106667pt;}
.y1b8{bottom:298.400000pt;}
.y20e{bottom:298.426667pt;}
.y2a8{bottom:300.440000pt;}
.y9c{bottom:301.106667pt;}
.y1e9{bottom:301.773333pt;}
.y122{bottom:304.106667pt;}
.ya5{bottom:304.440000pt;}
.y26f{bottom:305.440000pt;}
.y9d{bottom:306.426667pt;}
.y1f{bottom:307.773333pt;}
.y18f{bottom:308.093333pt;}
.y260{bottom:308.773333pt;}
.y5d{bottom:312.760000pt;}
.y12b{bottom:313.440000pt;}
.yfb{bottom:314.106667pt;}
.y146{bottom:314.773333pt;}
.y200{bottom:316.773333pt;}
.ydd{bottom:318.426667pt;}
.y1e8{bottom:320.106667pt;}
.y28b{bottom:321.093333pt;}
.y20b{bottom:322.440000pt;}
.y3f{bottom:323.106667pt;}
.yc4{bottom:323.440000pt;}
.y1e{bottom:324.426667pt;}
.y20d{bottom:326.093333pt;}
.y9b{bottom:326.440000pt;}
.y237{bottom:328.773333pt;}
.y121{bottom:331.773333pt;}
.y26e{bottom:332.773333pt;}
.y7e{bottom:335.440000pt;}
.y18e{bottom:335.760000pt;}
.y25f{bottom:336.426667pt;}
.y280{bottom:340.773333pt;}
.y1d{bottom:341.440000pt;}
.yfa{bottom:341.773333pt;}
.y145{bottom:342.426667pt;}
.y1ff{bottom:344.440000pt;}
.ydc{bottom:346.106667pt;}
.y155{bottom:346.773333pt;}
.y1e7{bottom:347.773333pt;}
.yc3{bottom:348.760000pt;}
.y5c{bottom:350.106667pt;}
.y3e{bottom:350.773333pt;}
.y9a{bottom:351.760000pt;}
.y15d{bottom:352.106667pt;}
.y2a7{bottom:354.093333pt;}
.y28a{bottom:358.106667pt;}
.y120{bottom:359.440000pt;}
.y2cf{bottom:360.106667pt;}
.y26d{bottom:360.440000pt;}
.y7d{bottom:362.773333pt;}
.y2ec{bottom:363.106667pt;}
.y18d{bottom:363.453333pt;}
.y25e{bottom:364.106667pt;}
.y27f{bottom:368.440000pt;}
.yf9{bottom:369.106667pt;}
.y1fe{bottom:372.106667pt;}
.y20c{bottom:372.426667pt;}
.ydb{bottom:373.773333pt;}
.yc2{bottom:374.106667pt;}
.y289{bottom:376.773333pt;}
.y99{bottom:377.106667pt;}
.y1c{bottom:378.106667pt;}
.y15c{bottom:379.773333pt;}
.y11f{bottom:386.773333pt;}
.y5b{bottom:387.106667pt;}
.y26c{bottom:388.106667pt;}
.y144{bottom:388.773333pt;}
.y7c{bottom:390.440000pt;}
.y25d{bottom:391.800000pt;}
.y27e{bottom:396.133333pt;}
.y1b{bottom:396.800000pt;}
.y16f{bottom:397.133333pt;}
.y1e6{bottom:397.800000pt;}
.y17f{bottom:398.466667pt;}
.y1fd{bottom:399.800000pt;}
.yc1{bottom:400.466667pt;}
.yda{bottom:401.133333pt;}
.y1d4{bottom:402.133333pt;}
.y98{bottom:402.466667pt;}
.y2a6{bottom:403.133333pt;}
.y288{bottom:404.133333pt;}
.y3d{bottom:405.800000pt;}
.y15b{bottom:407.133333pt;}
.y18c{bottom:409.786667pt;}
.y24a{bottom:410.133333pt;}
.y11e{bottom:414.466667pt;}
.y12a{bottom:414.800000pt;}
.y1a{bottom:415.133333pt;}
.yf8{bottom:415.466667pt;}
.y26b{bottom:415.800000pt;}
.y7b{bottom:418.133333pt;}
.y25c{bottom:419.466667pt;}
.y1e5{bottom:420.133333pt;}
.y2a5{bottom:422.133333pt;}
.y27d{bottom:423.800000pt;}
.y5a{bottom:424.133333pt;}
.y143{bottom:424.800000pt;}
.y1fc{bottom:427.466667pt;}
.y97{bottom:427.800000pt;}
.yc0{bottom:428.133333pt;}
.yd9{bottom:428.800000pt;}
.y1d0{bottom:431.466667pt;}
.y2cd{bottom:433.133333pt;}
.y19{bottom:433.466667pt;}
.y15a{bottom:434.800000pt;}
.y11d{bottom:442.133333pt;}
.y129{bottom:442.466667pt;}
.yf7{bottom:443.133333pt;}
.y26a{bottom:443.466667pt;}
.y7a{bottom:445.800000pt;}
.y25b{bottom:446.800000pt;}
.y287{bottom:450.466667pt;}
.y27c{bottom:451.466667pt;}
.y18{bottom:451.800000pt;}
.y16e{bottom:452.466667pt;}
.y96{bottom:452.800000pt;}
.y1fb{bottom:454.800000pt;}
.y2a4{bottom:455.466667pt;}
.ybf{bottom:455.800000pt;}
.yd8{bottom:456.466667pt;}
.y3c{bottom:461.133333pt;}
.y159{bottom:462.466667pt;}
.y142{bottom:464.133333pt;}
.y199{bottom:466.466667pt;}
.y2cc{bottom:469.133333pt;}
.y11c{bottom:469.800000pt;}
.y17{bottom:470.133333pt;}
.yf6{bottom:470.800000pt;}
.y79{bottom:473.466667pt;}
.y25a{bottom:474.466667pt;}
.y22e{bottom:475.133333pt;}
.y95{bottom:478.133333pt;}
.y27b{bottom:478.800000pt;}
.y16d{bottom:480.133333pt;}
.y1fa{bottom:482.466667pt;}
.ybe{bottom:483.133333pt;}
.y26{bottom:484.133333pt;}
.y3b{bottom:488.800000pt;}
.y16{bottom:490.466667pt;}
.y1b4{bottom:491.133333pt;}
.y286{bottom:496.800000pt;}
.y11b{bottom:497.466667pt;}
.y59{bottom:498.133333pt;}
.yf5{bottom:498.466667pt;}
.y78{bottom:500.800000pt;}
.y259{bottom:502.133333pt;}
.y94{bottom:503.466667pt;}
.y1cf{bottom:505.840000pt;}
.y27a{bottom:506.506667pt;}
.y158{bottom:507.173333pt;}
.y16c{bottom:507.840000pt;}
.y1f9{bottom:510.173333pt;}
.ybd{bottom:510.840000pt;}
.y17d{bottom:512.173333pt;}
.y3a{bottom:516.173333pt;}
.y15{bottom:518.173333pt;}
.y2a3{bottom:522.173333pt;}
.y285{bottom:524.506667pt;}
.y11a{bottom:524.840000pt;}
.y128{bottom:525.173333pt;}
.y249{bottom:525.506667pt;}
.y269{bottom:526.173333pt;}
.y2cb{bottom:526.506667pt;}
.y77{bottom:528.506667pt;}
.y93{bottom:528.840000pt;}
.y258{bottom:529.840000pt;}
.y2e6{bottom:531.840000pt;}
.y279{bottom:534.173333pt;}
.y39{bottom:534.840000pt;}
.y58{bottom:535.173333pt;}
.yd7{bottom:536.173333pt;}
.y198{bottom:537.506667pt;}
.y1f8{bottom:537.840000pt;}
.ybc{bottom:538.506667pt;}
.y17c{bottom:539.840000pt;}
.yf3{bottom:543.506667pt;}
.ya4{bottom:543.840000pt;}
.y14{bottom:545.840000pt;}
.y2e5{bottom:547.506667pt;}
.y157{bottom:548.173333pt;}
.yf4{bottom:548.840000pt;}
.y13a{bottom:551.840000pt;}
.y119{bottom:552.506667pt;}
.y127{bottom:552.840000pt;}
.y38{bottom:553.173333pt;}
.y16b{bottom:553.840000pt;}
.y92{bottom:554.173333pt;}
.y2a1{bottom:555.506667pt;}
.y76{bottom:556.173333pt;}
.y257{bottom:557.506667pt;}
.yd6{bottom:561.173333pt;}
.y278{bottom:561.840000pt;}
.y248{bottom:562.173333pt;}
.y1ce{bottom:563.173333pt;}
.y1f7{bottom:565.506667pt;}
.y2e4{bottom:565.840000pt;}
.ybb{bottom:566.173333pt;}
.y17b{bottom:567.173333pt;}
.yf2{bottom:568.840000pt;}
.y37{bottom:571.506667pt;}
.y57{bottom:572.506667pt;}
.y150{bottom:574.173333pt;}
.y197{bottom:574.506667pt;}
.y91{bottom:579.506667pt;}
.y118{bottom:580.173333pt;}
.y126{bottom:580.506667pt;}
.y247{bottom:580.840000pt;}
.y10c{bottom:581.173333pt;}
.y1cd{bottom:582.173333pt;}
.y75{bottom:583.840000pt;}
.y2e3{bottom:584.506667pt;}
.yd5{bottom:586.506667pt;}
.y1b2{bottom:588.840000pt;}
.y277{bottom:589.173333pt;}
.y36{bottom:589.840000pt;}
.y1f6{bottom:592.840000pt;}
.yba{bottom:593.506667pt;}
.yf1{bottom:594.173333pt;}
.y17a{bottom:594.840000pt;}
.y13{bottom:599.173333pt;}
.y16a{bottom:600.173333pt;}
.y2ca{bottom:602.506667pt;}
.y18b{bottom:602.840000pt;}
.y256{bottom:603.506667pt;}
.y90{bottom:605.840000pt;}
.y139{bottom:607.173333pt;}
.y117{bottom:607.840000pt;}
.y35{bottom:608.173333pt;}
.y56{bottom:609.506667pt;}
.y74{bottom:611.506667pt;}
.yd4{bottom:611.840000pt;}
.y1cc{bottom:613.840000pt;}
.y268{bottom:616.840000pt;}
.y12{bottom:617.533333pt;}
.y2a0{bottom:618.866667pt;}
.yf0{bottom:619.533333pt;}
.y1f5{bottom:620.533333pt;}
.yb9{bottom:621.200000pt;}
.y179{bottom:622.533333pt;}
.y228{bottom:623.533333pt;}
.y10b{bottom:624.533333pt;}
.y2c9{bottom:625.866667pt;}
.y34{bottom:626.533333pt;}
.y169{bottom:627.866667pt;}
.y255{bottom:631.200000pt;}
.y1b1{bottom:632.866667pt;}
.y8f{bottom:633.200000pt;}
.y29e{bottom:633.533333pt;}
.y55{bottom:634.533333pt;}
.y138{bottom:634.866667pt;}
.y116{bottom:635.200000pt;}
.y2c8{bottom:635.533333pt;}
.y11{bottom:635.866667pt;}
.y224{bottom:636.866667pt;}
.yd3{bottom:637.200000pt;}
.y72{bottom:638.866667pt;}
.y2e2{bottom:639.533333pt;}
.y178{bottom:640.866667pt;}
.y1cb{bottom:641.200000pt;}
.y73{bottom:644.200000pt;}
.y267{bottom:644.533333pt;}
.yef{bottom:644.866667pt;}
.y33{bottom:645.200000pt;}
.y1f4{bottom:648.200000pt;}
.yb8{bottom:648.866667pt;}
.y2c7{bottom:650.866667pt;}
.y10a{bottom:652.200000pt;}
.y284{bottom:653.533333pt;}
.y10{bottom:654.200000pt;}
.y2e0{bottom:656.533333pt;}
.y254{bottom:658.866667pt;}
.y54{bottom:659.533333pt;}
.y223{bottom:659.866667pt;}
.y177{bottom:660.533333pt;}
.yd2{bottom:662.533333pt;}
.y276{bottom:663.200000pt;}
.y32{bottom:663.533333pt;}
.y71{bottom:666.533333pt;}
.y1ca{bottom:667.866667pt;}
.y8e{bottom:668.866667pt;}
.yee{bottom:670.200000pt;}
.y266{bottom:672.200000pt;}
.y246{bottom:672.533333pt;}
.y168{bottom:674.533333pt;}
.y1f3{bottom:675.866667pt;}
.yb7{bottom:676.533333pt;}
.y222{bottom:678.533333pt;}
.y109{bottom:679.866667pt;}
.y283{bottom:681.200000pt;}
.y115{bottom:681.533333pt;}
.yf{bottom:681.866667pt;}
.y53{bottom:684.533333pt;}
.y14e{bottom:685.866667pt;}
.y253{bottom:686.533333pt;}
.yd1{bottom:687.866667pt;}
.y8d{bottom:688.533333pt;}
.y137{bottom:689.866667pt;}
.y2c6{bottom:690.533333pt;}
.y275{bottom:690.866667pt;}
.y245{bottom:691.200000pt;}
.y1c8{bottom:693.200000pt;}
.y70{bottom:694.200000pt;}
.y221{bottom:696.866667pt;}
.y1c9{bottom:698.533333pt;}
.y265{bottom:699.866667pt;}
.y31{bottom:700.200000pt;}
.y1f2{bottom:703.200000pt;}
.yb6{bottom:704.200000pt;}
.y2c4{bottom:705.533333pt;}
.y282{bottom:708.533333pt;}
.y114{bottom:709.200000pt;}
.ye{bottom:709.533333pt;}
.y52{bottom:709.866667pt;}
.y208{bottom:710.533333pt;}
.y176{bottom:711.866667pt;}
.y220{bottom:712.533333pt;}
.yd0{bottom:713.200000pt;}
.y1af{bottom:713.533333pt;}
.y2de{bottom:713.866667pt;}
.yed{bottom:715.200000pt;}
.y136{bottom:717.533333pt;}
.y108{bottom:718.533333pt;}
.y167{bottom:720.866667pt;}
.y6e{bottom:721.866667pt;}
.y6f{bottom:727.200000pt;}
.y30{bottom:727.866667pt;}
.y1f1{bottom:730.906667pt;}
.y252{bottom:732.893333pt;}
.y51{bottom:734.893333pt;}
.y14d{bottom:736.226667pt;}
.y113{bottom:736.906667pt;}
.yd{bottom:737.226667pt;}
.ycf{bottom:738.560000pt;}
.y21c{bottom:740.893333pt;}
.y1a5{bottom:741.560000pt;}
.yec{bottom:742.573333pt;}
.y1c7{bottom:743.893333pt;}
.y135{bottom:745.226667pt;}
.y107{bottom:745.893333pt;}
.y8c{bottom:746.240000pt;}
.y298{bottom:748.226667pt;}
.y166{bottom:748.573333pt;}
.y6d{bottom:749.240000pt;}
.yb4{bottom:749.560000pt;}
.y225{bottom:753.893333pt;}
.yb5{bottom:754.893333pt;}
.y2f{bottom:755.560000pt;}
.y175{bottom:757.893333pt;}
.y1f0{bottom:758.560000pt;}
.y50{bottom:759.893333pt;}
.y251{bottom:760.226667pt;}
.y2c1{bottom:762.893333pt;}
.yc{bottom:764.560000pt;}
.y1c6{bottom:769.226667pt;}
.y2dd{bottom:771.226667pt;}
.y106{bottom:773.560000pt;}
.yb3{bottom:774.560000pt;}
.y165{bottom:776.240000pt;}
.y6c{bottom:776.893333pt;}
.yeb{bottom:781.226667pt;}
.y14c{bottom:782.560000pt;}
.y2e{bottom:783.226667pt;}
.y4f{bottom:784.893333pt;}
.y174{bottom:785.560000pt;}
.y1e4{bottom:786.226667pt;}
.y250{bottom:787.893333pt;}
.y134{bottom:791.560000pt;}
.y112{bottom:791.893333pt;}
.yb{bottom:792.226667pt;}
.y1c5{bottom:794.560000pt;}
.yb2{bottom:799.893333pt;}
.y105{bottom:801.226667pt;}
.y244{bottom:801.560000pt;}
.y6b{bottom:804.560000pt;}
.y295{bottom:806.906667pt;}
.y2da{bottom:807.240000pt;}
.yea{bottom:808.893333pt;}
.y206{bottom:809.240000pt;}
.y4e{bottom:809.893333pt;}
.y14b{bottom:810.226667pt;}
.y2d{bottom:810.560000pt;}
.y164{bottom:813.226667pt;}
.y1e3{bottom:813.893333pt;}
.y24f{bottom:815.560000pt;}
.y111{bottom:819.560000pt;}
.ya{bottom:819.893333pt;}
.y2be{bottom:819.906667pt;}
.yb1{bottom:825.226667pt;}
.y281{bottom:828.893333pt;}
.y6a{bottom:832.226667pt;}
.y163{bottom:832.893333pt;}
.y4d{bottom:835.226667pt;}
.ye9{bottom:836.560000pt;}
.y133{bottom:837.893333pt;}
.y2c{bottom:838.226667pt;}
.y173{bottom:840.893333pt;}
.y1e2{bottom:841.226667pt;}
.y1c4{bottom:845.266667pt;}
.y9{bottom:847.600000pt;}
.y293{bottom:849.600000pt;}
.y141{bottom:856.600000pt;}
.y69{bottom:859.933333pt;}
.y4c{bottom:860.266667pt;}
.y24e{bottom:861.933333pt;}
.ye8{bottom:864.266667pt;}
.y2b{bottom:865.933333pt;}
.y1e1{bottom:868.933333pt;}
.yb0{bottom:869.266667pt;}
.y2b9{bottom:870.600000pt;}
.y1c3{bottom:871.266667pt;}
.y8{bottom:875.266667pt;}
.y104{bottom:880.600000pt;}
.y2d9{bottom:883.266667pt;}
.y132{bottom:883.933333pt;}
.y4b{bottom:885.266667pt;}
.y68{bottom:887.266667pt;}
.y292{bottom:888.266667pt;}
.y24d{bottom:889.600000pt;}
.y2a{bottom:893.600000pt;}
.yaf{bottom:894.600000pt;}
.y1e0{bottom:896.600000pt;}
.y1c2{bottom:898.933333pt;}
.y291{bottom:902.266667pt;}
.y7{bottom:902.600000pt;}
.y2d8{bottom:906.266667pt;}
.y4a{bottom:910.266667pt;}
.y140{bottom:911.600000pt;}
.y172{bottom:914.600000pt;}
.y67{bottom:914.933333pt;}
.y2d7{bottom:915.933333pt;}
.y219{bottom:916.933333pt;}
.y290{bottom:917.600000pt;}
.yae{bottom:919.933333pt;}
.y29{bottom:921.266667pt;}
.y1df{bottom:924.266667pt;}
.y1c1{bottom:926.600000pt;}
.y6{bottom:930.266667pt;}
.y2d6{bottom:931.266667pt;}
.y28f{bottom:933.266667pt;}
.y49{bottom:935.266667pt;}
.y103{bottom:935.600000pt;}
.y13f{bottom:939.266667pt;}
.y171{bottom:942.266667pt;}
.y66{bottom:942.600000pt;}
.y24c{bottom:944.600000pt;}
.y2b8{bottom:947.600000pt;}
.y2d5{bottom:947.933333pt;}
.y28{bottom:948.600000pt;}
.y1de{bottom:951.933333pt;}
.y1c0{bottom:954.266667pt;}
.y8b{bottom:957.960000pt;}
.ye7{bottom:963.293333pt;}
.yad{bottom:963.960000pt;}
.y13e{bottom:966.960000pt;}
.y2b7{bottom:969.293333pt;}
.y170{bottom:969.960000pt;}
.y65{bottom:970.293333pt;}
.y2d4{bottom:972.293333pt;}
.y1bf{bottom:972.626667pt;}
.y5{bottom:976.293333pt;}
.y48{bottom:978.960000pt;}
.y2b6{bottom:979.293333pt;}
.y8a{bottom:985.626667pt;}
.y2d3{bottom:988.293333pt;}
.y64{bottom:988.626667pt;}
.yac{bottom:989.293333pt;}
.y24b{bottom:989.960000pt;}
.y218{bottom:990.293333pt;}
.y1be{bottom:992.293333pt;}
.y4{bottom:994.626667pt;}
.y2d2{bottom:1003.626667pt;}
.y47{bottom:1005.960000pt;}
.y63{bottom:1008.293333pt;}
.y2b5{bottom:1011.293333pt;}
.y3{bottom:1013.293333pt;}
.yab{bottom:1014.626667pt;}
.y102{bottom:1018.626667pt;}
.h17{height:18.333333pt;}
.h2a{height:18.666667pt;}
.h44{height:26.171875pt;}
.h32{height:27.333333pt;}
.h25{height:27.366667pt;}
.h20{height:27.653333pt;}
.h29{height:27.700000pt;}
.h41{height:28.033333pt;}
.h2c{height:28.666667pt;}
.h48{height:28.789062pt;}
.h3c{height:31.000000pt;}
.h3d{height:31.333333pt;}
.h3e{height:31.366667pt;}
.he{height:31.406250pt;}
.h39{height:34.000000pt;}
.hb{height:34.023438pt;}
.hf{height:36.640625pt;}
.h26{height:37.020000pt;}
.h21{height:37.333333pt;}
.h2f{height:37.353333pt;}
.h1a{height:37.366667pt;}
.h3a{height:40.686667pt;}
.h43{height:41.333333pt;}
.ha{height:41.875000pt;}
.h16{height:47.085938pt;}
.hd{height:47.109375pt;}
.h4f{height:48.375000pt;}
.h40{height:48.666667pt;}
.h46{height:48.686667pt;}
.h42{height:49.666667pt;}
.h4{height:51.476562pt;}
.hc{height:52.343750pt;}
.h15{height:54.933594pt;}
.h12{height:54.960938pt;}
.h47{height:55.000000pt;}
.h2e{height:55.333333pt;}
.h2d{height:55.366667pt;}
.h7{height:56.156250pt;}
.h3b{height:56.666667pt;}
.h10{height:57.375000pt;}
.h3{height:57.578125pt;}
.h1d{height:60.300089pt;}
.h19{height:62.781250pt;}
.h1{height:62.812500pt;}
.h50{height:63.033333pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.h14{height:66.625000pt;}
.h11{height:68.046875pt;}
.h4a{height:70.000000pt;}
.h4c{height:70.020000pt;}
.h3f{height:70.664062pt;}
.h45{height:71.000000pt;}
.h4b{height:71.033333pt;}
.h1c{height:71.666667pt;}
.h33{height:72.700000pt;}
.h49{height:73.281250pt;}
.h2b{height:73.700000pt;}
.h52{height:74.033333pt;}
.h35{height:74.333333pt;}
.h51{height:75.000000pt;}
.h1b{height:75.250000pt;}
.h4d{height:76.700000pt;}
.h8{height:83.750000pt;}
.h4e{height:86.367188pt;}
.h9{height:87.709220pt;}
.h5{height:88.366667pt;}
.h2{height:96.750000pt;}
.h27{height:97.033333pt;}
.h30{height:98.033333pt;}
.h18{height:111.033333pt;}
.h36{height:129.700000pt;}
.h38{height:145.693333pt;}
.h23{height:147.706667pt;}
.h37{height:147.733333pt;}
.h34{height:175.360000pt;}
.h22{height:200.400000pt;}
.h1e{height:276.773333pt;}
.h24{height:286.066667pt;}
.h28{height:313.400000pt;}
.h31{height:387.426667pt;}
.h1f{height:424.786667pt;}
.h0{height:1122.666667pt;}
.w15{width:43.366667pt;}
.w1b{width:43.666667pt;}
.w1a{width:45.033333pt;}
.w18{width:48.666667pt;}
.w19{width:49.700000pt;}
.w17{width:54.700000pt;}
.w29{width:56.700000pt;}
.w24{width:59.333333pt;}
.w27{width:60.666667pt;}
.w21{width:60.700000pt;}
.w20{width:62.033333pt;}
.w1e{width:64.666667pt;}
.w1d{width:64.700000pt;}
.w23{width:66.000000pt;}
.w1f{width:66.033333pt;}
.w2a{width:67.033333pt;}
.w25{width:71.366667pt;}
.w2c{width:72.700000pt;}
.w2d{width:74.033333pt;}
.w28{width:76.700000pt;}
.wa{width:94.066667pt;}
.w13{width:103.366667pt;}
.wb{width:146.733333pt;}
.w2b{width:147.400000pt;}
.wc{width:161.400000pt;}
.w22{width:186.106667pt;}
.w1c{width:190.106667pt;}
.wd{width:192.066667pt;}
.w26{width:194.106667pt;}
.w16{width:209.106667pt;}
.w14{width:246.093333pt;}
.w8{width:282.466667pt;}
.w7{width:282.800000pt;}
.w11{width:320.800000pt;}
.wf{width:330.133333pt;}
.w12{width:387.466667pt;}
.w5{width:519.200000pt;}
.w6{width:565.933333pt;}
.w3{width:577.933333pt;}
.w9{width:596.266667pt;}
.w10{width:604.266667pt;}
.we{width:613.600000pt;}
.w4{width:793.666643pt;}
.w2{width:793.666655pt;}
.w0{width:793.666667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x58{left:5.986667pt;}
.x36{left:7.000000pt;}
.x10{left:9.333333pt;}
.x4f{left:12.333333pt;}
.x55{left:13.360000pt;}
.x6a{left:14.333333pt;}
.x73{left:15.986667pt;}
.x6f{left:20.000000pt;}
.x6b{left:21.333333pt;}
.x4a{left:23.000000pt;}
.x48{left:27.333333pt;}
.x72{left:29.320000pt;}
.x6d{left:34.706667pt;}
.x4b{left:37.333333pt;}
.x3c{left:54.693333pt;}
.x4c{left:61.333333pt;}
.x37{left:67.706667pt;}
.x3d{left:78.693333pt;}
.x5a{left:89.366655pt;}
.x5b{left:96.033322pt;}
.x5c{left:100.033333pt;}
.xf{left:105.366667pt;}
.x2{left:113.366655pt;}
.x51{left:115.366667pt;}
.x19{left:117.733322pt;}
.x2f{left:121.399988pt;}
.x45{left:124.066667pt;}
.x46{left:128.040000pt;}
.x35{left:132.733333pt;}
.x12{left:137.399988pt;}
.x9{left:141.399988pt;}
.x2a{left:150.733310pt;}
.xa{left:156.399988pt;}
.x13{left:161.399988pt;}
.x22{left:165.399988pt;}
.x4e{left:176.066667pt;}
.x30{left:185.399988pt;}
.x4d{left:192.066655pt;}
.x6{left:204.773322pt;}
.x40{left:208.440000pt;}
.x3b{left:209.439988pt;}
.x32{left:213.106655pt;}
.x44{left:231.773322pt;}
.x69{left:249.440000pt;}
.xd{left:256.773322pt;}
.x8{left:268.106655pt;}
.xc{left:276.799988pt;}
.x4{left:281.133322pt;}
.x3e{left:284.466643pt;}
.x61{left:288.133333pt;}
.x7{left:290.133322pt;}
.x5{left:292.466655pt;}
.x3f{left:293.799988pt;}
.xe{left:295.133322pt;}
.x65{left:296.133333pt;}
.x18{left:305.466655pt;}
.x34{left:308.466655pt;}
.x1a{left:316.799976pt;}
.x1b{left:321.466655pt;}
.x6c{left:324.133333pt;}
.x52{left:326.466667pt;}
.x20{left:332.133310pt;}
.x21{left:336.799988pt;}
.xb{left:344.799988pt;}
.x11{left:349.466655pt;}
.x41{left:355.840000pt;}
.x16{left:356.839976pt;}
.x5d{left:358.840000pt;}
.x23{left:360.506643pt;}
.x17{left:362.173322pt;}
.x24{left:365.839988pt;}
.x53{left:383.173333pt;}
.x3{left:396.839988pt;}
.x6e{left:400.173333pt;}
.x25{left:407.173310pt;}
.x26{left:412.506655pt;}
.x62{left:417.506667pt;}
.x66{left:422.840000pt;}
.x50{left:424.173333pt;}
.x5e{left:425.506667pt;}
.x54{left:433.840000pt;}
.x14{left:443.199976pt;}
.x15{left:448.533322pt;}
.x70{left:474.866667pt;}
.x56{left:485.533333pt;}
.x1c{left:489.866643pt;}
.x63{left:490.866667pt;}
.x5f{left:493.533333pt;}
.x1d{left:494.533322pt;}
.x1e{left:499.533310pt;}
.x67{left:501.533333pt;}
.x1f{left:504.866655pt;}
.x47{left:513.573333pt;}
.x42{left:517.906667pt;}
.x57{left:532.573333pt;}
.x71{left:549.573333pt;}
.x64{left:553.573333pt;}
.x60{left:557.573333pt;}
.x68{left:560.240000pt;}
.x2b{left:570.559976pt;}
.x33{left:571.559988pt;}
.x2c{left:581.226655pt;}
.x2d{left:595.933310pt;}
.x2e{left:606.599988pt;}
.x49{left:618.933333pt;}
.x74{left:624.266667pt;}
.x27{left:639.599976pt;}
.x28{left:644.266655pt;}
.x38{left:657.933322pt;}
.x29{left:664.599988pt;}
.x1{left:672.626655pt;}
.x3a{left:680.293322pt;}
.x39{left:681.626655pt;}
.x59{left:688.639988pt;}
.x43{left:704.293322pt;}
.x31{left:729.626655pt;}
}




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