
    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_71cddfe728b1fde2d6ff4802.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_124503a64be30abbe89add84.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_a30d454d8a635563814edb85.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_39161f273a59c33285c10ddf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_41e4e29a41bc3198a2316236.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_980a76abc520706c37154b8e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.966797;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_e1140c89d2dcb232ef175156.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_70a3e4a7155eea3fa46f31ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774902;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_7af474c313d721bb6e23f325.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945312;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_de5ee53a9759336f466474de.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;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_ec176a651a05662e4066441b.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_fc4431fc33d36eb1661a9f23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.783691;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);}
.m2{transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250101,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-2.760420px;}
.ls1b{letter-spacing:-0.306600px;}
.ls9{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.144000px;}
.ls18{letter-spacing:-0.139800px;}
.lse{letter-spacing:-0.081600px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.026640px;}
.ls15{letter-spacing:0.045360px;}
.ls4{letter-spacing:0.048000px;}
.ls6{letter-spacing:0.053280px;}
.ls13{letter-spacing:0.067200px;}
.ls14{letter-spacing:0.090600px;}
.ls10{letter-spacing:0.090720px;}
.ls1d{letter-spacing:0.120000px;}
.ls12{letter-spacing:0.134400px;}
.ls1e{letter-spacing:0.139800px;}
.ls5{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.153600px;}
.ls1c{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.197400px;}
.ls23{letter-spacing:0.288000px;}
.ls21{letter-spacing:0.504000px;}
.ls0{letter-spacing:1.318680px;}
.ls1a{letter-spacing:1.440000px;}
.ls16{letter-spacing:1.800000px;}
.ls1{letter-spacing:4.632000px;}
.lsc{letter-spacing:37.485360px;}
.ls17{letter-spacing:54.864000px;}
.lsa{letter-spacing:60.525360px;}
.lsd{letter-spacing:69.525360px;}
.ls22{letter-spacing:74.304000px;}
.lsb{letter-spacing:97.725360px;}
.ls1f{letter-spacing:155.784000px;}
.ls20{letter-spacing:156.504000px;}
.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;}
}
.ws11{word-spacing:-72.000000px;}
.ws0{word-spacing:-34.645320px;}
.ws1a{word-spacing:-33.326640px;}
.wsb{word-spacing:-26.918760px;}
.ws8{word-spacing:-26.721360px;}
.ws9{word-spacing:-26.639760px;}
.ws1{word-spacing:-22.946640px;}
.ws19{word-spacing:-20.520000px;}
.ws1b{word-spacing:-20.304000px;}
.wsa{word-spacing:-20.160000px;}
.ws3{word-spacing:-20.016000px;}
.ws4{word-spacing:-19.944000px;}
.ws5{word-spacing:-19.872000px;}
.wsf{word-spacing:-18.449040px;}
.wse{word-spacing:-18.405240px;}
.ws10{word-spacing:-18.360000px;}
.wsd{word-spacing:-18.314640px;}
.ws18{word-spacing:-16.893360px;}
.wsc{word-spacing:-16.866960px;}
.ws16{word-spacing:-16.853160px;}
.ws12{word-spacing:-16.766640px;}
.ws14{word-spacing:-16.740000px;}
.ws6{word-spacing:-16.713360px;}
.ws13{word-spacing:-16.573560px;}
.ws7{word-spacing:-16.559760px;}
.ws15{word-spacing:-16.406760px;}
.ws17{word-spacing:-0.072000px;}
.ws2{word-spacing:0.000000px;}
._1f{margin-left:-26.041560px;}
._17{margin-left:-23.225280px;}
._1b{margin-left:-21.879240px;}
._1a{margin-left:-18.336000px;}
._1c{margin-left:-16.896000px;}
._19{margin-left:-15.336000px;}
._1d{margin-left:-13.080000px;}
._18{margin-left:-10.980600px;}
._8{margin-left:-7.312680px;}
._1e{margin-left:-6.000000px;}
._16{margin-left:-4.832520px;}
._a{margin-left:-3.816000px;}
._b{margin-left:-2.760000px;}
._c{margin-left:-1.061280px;}
._0{width:1.198800px;}
._1{width:2.229120px;}
._3{width:3.390240px;}
._2{width:4.677480px;}
._4{width:5.979360px;}
._15{width:7.066680px;}
._25{width:8.211360px;}
._20{width:9.235440px;}
._22{width:10.512000px;}
._23{width:11.520000px;}
._29{width:12.745200px;}
._9{width:14.256000px;}
._10{width:15.642000px;}
._21{width:16.831080px;}
._13{width:17.855640px;}
._14{width:19.074720px;}
._2a{width:21.672000px;}
._34{width:22.700640px;}
._39{width:23.704800px;}
._33{width:24.965280px;}
._d{width:26.154720px;}
._7{width:28.061280px;}
._28{width:29.603040px;}
._32{width:30.891840px;}
._35{width:32.104080px;}
._36{width:33.904560px;}
._3b{width:34.921800px;}
._26{width:36.594720px;}
._11{width:38.176200px;}
._12{width:39.318480px;}
._27{width:40.464000px;}
._3c{width:43.516800px;}
._38{width:44.784000px;}
._24{width:49.536000px;}
._31{width:52.752000px;}
._2c{width:60.460320px;}
._37{width:64.008000px;}
._30{width:68.592000px;}
._3a{width:72.144000px;}
._2e{width:111.651960px;}
._2f{width:139.829640px;}
._e{width:168.873120px;}
._2d{width:194.085360px;}
._f{width:195.686640px;}
._5{width:525.504000px;}
._3d{width:844.104000px;}
._2b{width:975.864000px;}
._6{width:1015.824000px;}
.fc9{color:rgb(68,114,196);}
.fc7{color:rgb(5,99,193);}
.fc6{color:rgb(7,62,135);}
.fc4{color:transparent;}
.fc3{color:rgb(243,149,120);}
.fc8{color:rgb(51,51,51);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(64,64,64);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:48.000000px;}
.fs2{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs7{font-size:66.190727px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:96.120000px;}
.fs3{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y2c2{bottom:0.000092px;}
.y2d{bottom:3.150000px;}
.y13{bottom:3.780000px;}
.y201{bottom:5.400000px;}
.y1ff{bottom:5.430000px;}
.y41{bottom:5.580000px;}
.y43{bottom:5.670000px;}
.y21c{bottom:5.850000px;}
.y1d{bottom:6.210000px;}
.y1b{bottom:6.300000px;}
.yf{bottom:6.390000px;}
.ye1{bottom:8.965835px;}
.y17{bottom:11.520000px;}
.y20b{bottom:11.700000px;}
.yc2{bottom:11.790000px;}
.yc9{bottom:11.820000px;}
.ybd{bottom:11.880000px;}
.yce{bottom:11.910000px;}
.y48{bottom:12.060000px;}
.y4b{bottom:12.090000px;}
.y3d{bottom:12.150000px;}
.yef{bottom:12.960000px;}
.yf7{bottom:13.050000px;}
.y34{bottom:20.340000px;}
.y31{bottom:20.430000px;}
.y37{bottom:20.460000px;}
.y3f{bottom:21.150000px;}
.y4c{bottom:21.180000px;}
.y12{bottom:24.480000px;}
.y1f{bottom:24.510000px;}
.y141{bottom:24.750000px;}
.ycd{bottom:24.780000px;}
.ybb{bottom:24.840000px;}
.y253{bottom:24.870000px;}
.y104{bottom:27.210000px;}
.y108{bottom:27.270000px;}
.y20e{bottom:29.070000px;}
.y16{bottom:32.220000px;}
.y47{bottom:35.190000px;}
.y30{bottom:37.620000px;}
.y1bc{bottom:37.650000px;}
.ybc{bottom:37.710000px;}
.yc8{bottom:37.740000px;}
.yff{bottom:41.400000px;}
.y106{bottom:41.430000px;}
.yf6{bottom:41.490000px;}
.y2c5{bottom:42.569908px;}
.y5{bottom:42.570000px;}
.y11{bottom:45.180000px;}
.y279{bottom:50.670000px;}
.y15{bottom:52.920000px;}
.y20f{bottom:54.900000px;}
.y102{bottom:55.620000px;}
.y107{bottom:55.710000px;}
.y103{bottom:55.740000px;}
.yc1{bottom:63.540000px;}
.yc7{bottom:63.570000px;}
.ycb{bottom:63.630000px;}
.y26e{bottom:63.660000px;}
.yfc{bottom:69.840000px;}
.yf3{bottom:69.930000px;}
.y105{bottom:69.960000px;}
.y101{bottom:84.060000px;}
.y2de{bottom:87.839908px;}
.yc6{bottom:89.400000px;}
.yc0{bottom:89.460000px;}
.y270{bottom:89.490000px;}
.y2cf{bottom:92.609908px;}
.y2e3{bottom:94.139908px;}
.yfb{bottom:98.370000px;}
.yf2{bottom:98.400000px;}
.y2c9{bottom:99.359908px;}
.y2cc{bottom:103.139908px;}
.y2dc{bottom:107.279908px;}
.y2d9{bottom:109.889908px;}
.y2ca{bottom:110.609908px;}
.y2dd{bottom:112.049908px;}
.y10c{bottom:112.620000px;}
.y2cd{bottom:112.859908px;}
.y2e0{bottom:114.029908px;}
.y2ce{bottom:115.109908px;}
.ybf{bottom:115.290000px;}
.yc5{bottom:115.320000px;}
.y26f{bottom:115.410000px;}
.y2d8{bottom:120.269908px;}
.yfe{bottom:126.810000px;}
.yf1{bottom:126.840000px;}
.y10e{bottom:126.930000px;}
.y71{bottom:133.200000px;}
.y2b7{bottom:133.650000px;}
.y247{bottom:134.010000px;}
.y1a4{bottom:134.550000px;}
.y2a5{bottom:135.810000px;}
.y1fb{bottom:136.440000px;}
.y12c{bottom:138.600000px;}
.y210{bottom:139.860000px;}
.yc4{bottom:141.150000px;}
.yd0{bottom:141.210000px;}
.y2df{bottom:141.419908px;}
.y33{bottom:142.200000px;}
.yf8{bottom:143.100000px;}
.y9a{bottom:143.730000px;}
.y159{bottom:144.000000px;}
.y143{bottom:145.440000px;}
.y292{bottom:146.250000px;}
.y1cc{bottom:146.970000px;}
.y10f{bottom:148.050000px;}
.y1be{bottom:149.220000px;}
.y236{bottom:149.940000px;}
.y2d7{bottom:151.319908px;}
.y59{bottom:154.620000px;}
.yb8{bottom:154.710000px;}
.yfd{bottom:155.250000px;}
.yf5{bottom:155.370000px;}
.y17b{bottom:156.600000px;}
.y284{bottom:160.470000px;}
.y26a{bottom:161.190000px;}
.y16c{bottom:161.280000px;}
.y18d{bottom:163.440000px;}
.yca{bottom:164.970000px;}
.y246{bottom:165.060000px;}
.y1a3{bottom:165.600000px;}
.y2a4{bottom:166.860000px;}
.y1e4{bottom:168.030000px;}
.y12b{bottom:169.650000px;}
.y10b{bottom:169.830000px;}
.y228{bottom:170.370000px;}
.y255{bottom:171.720000px;}
.y235{bottom:172.440000px;}
.y291{bottom:172.890000px;}
.y1cb{bottom:173.610000px;}
.y99{bottom:174.780000px;}
.y20d{bottom:175.050000px;}
.y32{bottom:177.390000px;}
.y70{bottom:178.830000px;}
.yf0{bottom:180.540000px;}
.y2d6{bottom:182.369908px;}
.yf4{bottom:183.810000px;}
.y58{bottom:185.670000px;}
.yb7{bottom:185.760000px;}
.y2b6{bottom:186.210000px;}
.y1fa{bottom:188.910000px;}
.y283{bottom:191.520000px;}
.y16b{bottom:192.330000px;}
.y1b0{bottom:193.140000px;}
.y18c{bottom:194.490000px;}
.y245{bottom:196.110000px;}
.y158{bottom:196.470000px;}
.y1a2{bottom:196.650000px;}
.y142{bottom:197.910000px;}
.y1e3{bottom:199.080000px;}
.y12a{bottom:200.700000px;}
.y1bd{bottom:201.690000px;}
.y269{bottom:201.870000px;}
.y227{bottom:202.590000px;}
.y9{bottom:202.680000px;}
.y98{bottom:205.830000px;}
.y17a{bottom:209.160000px;}
.y10d{bottom:212.250000px;}
.y2f{bottom:212.670000px;}
.y2d5{bottom:213.419908px;}
.y57{bottom:216.720000px;}
.yb6{bottom:216.810000px;}
.ydf{bottom:217.350000px;}
.y282{bottom:222.570000px;}
.y157{bottom:223.110000px;}
.y16a{bottom:223.290000px;}
.y6f{bottom:223.650000px;}
.y254{bottom:224.190000px;}
.y234{bottom:224.910000px;}
.y290{bottom:225.450000px;}
.y18b{bottom:225.540000px;}
.y1ca{bottom:226.080000px;}
.y244{bottom:227.160000px;}
.y275{bottom:227.610000px;}
.y1a1{bottom:227.700000px;}
.y2a3{bottom:228.960000px;}
.y1e2{bottom:230.130000px;}
.y129{bottom:231.750000px;}
.y268{bottom:232.920000px;}
.y226{bottom:233.550000px;}
.y97{bottom:236.970000px;}
.y2b5{bottom:238.680000px;}
.y1f9{bottom:241.470000px;}
.y8{bottom:243.180000px;}
.y2d4{bottom:244.469908px;}
.y20c{bottom:244.800000px;}
.y1af{bottom:245.610000px;}
.y56{bottom:247.680000px;}
.yb5{bottom:247.860000px;}
.y156{bottom:249.750000px;}
.y140{bottom:250.470000px;}
.y281{bottom:253.620000px;}
.y1bb{bottom:254.250000px;}
.y169{bottom:254.340000px;}
.yde{bottom:256.230000px;}
.y18a{bottom:256.590000px;}
.y25f{bottom:257.940000px;}
.y1a0{bottom:258.750000px;}
.y243{bottom:259.380000px;}
.y1e1{bottom:261.180000px;}
.y179{bottom:261.630000px;}
.y128{bottom:263.970000px;}
.y225{bottom:264.690000px;}
.y2e{bottom:265.140000px;}
.y96{bottom:267.930000px;}
.y1f8{bottom:268.020000px;}
.yc3{bottom:269.280000px;}
.y6e{bottom:274.050000px;}
.y2d3{bottom:275.519908px;}
.y25e{bottom:275.580000px;}
.y155{bottom:276.300000px;}
.y252{bottom:276.660000px;}
.y233{bottom:277.470000px;}
.y28f{bottom:277.950000px;}
.y1c9{bottom:278.580000px;}
.y55{bottom:278.760000px;}
.yb4{bottom:278.940000px;}
.y274{bottom:280.110000px;}
.y2c{bottom:283.170000px;}
.y168{bottom:285.420000px;}
.y29d{bottom:285.780000px;}
.y7{bottom:289.740000px;}
.y19f{bottom:289.830000px;}
.y242{bottom:290.460000px;}
.y2a2{bottom:292.260000px;}
.y1e0{bottom:293.430000px;}
.y1f7{bottom:294.690000px;}
.ydd{bottom:294.960000px;}
.y127{bottom:295.050000px;}
.y224{bottom:296.940000px;}
.y20a{bottom:297.390000px;}
.y1ae{bottom:298.200000px;}
.y95{bottom:299.010000px;}
.y25d{bottom:302.250000px;}
.y13f{bottom:302.970000px;}
.y2b{bottom:304.320000px;}
.y28e{bottom:304.590000px;}
.y2d2{bottom:306.569908px;}
.y1ba{bottom:306.750000px;}
.yb3{bottom:309.990000px;}
.y280{bottom:311.700000px;}
.y178{bottom:314.130000px;}
.y189{bottom:314.670000px;}
.y167{bottom:316.470000px;}
.y2b4{bottom:317.100000px;}
.y6d{bottom:319.710000px;}
.y54{bottom:320.700000px;}
.y19e{bottom:320.880000px;}
.y1f6{bottom:321.330000px;}
.y241{bottom:321.510000px;}
.y2a{bottom:321.600000px;}
.y2a1{bottom:323.310000px;}
.y1df{bottom:324.480000px;}
.ydc{bottom:325.920000px;}
.y126{bottom:326.100000px;}
.y223{bottom:327.990000px;}
.y251{bottom:329.250000px;}
.y232{bottom:329.970000px;}
.y94{bottom:330.060000px;}
.y1c8{bottom:331.140000px;}
.y209{bottom:332.580000px;}
.y2d1{bottom:337.619908px;}
.y29c{bottom:337.800000px;}
.y29{bottom:339.780000px;}
.y177{bottom:340.770000px;}
.yb2{bottom:341.040000px;}
.y6{bottom:341.490000px;}
.y2b3{bottom:343.740000px;}
.y166{bottom:347.520000px;}
.y1f5{bottom:347.970000px;}
.y1ad{bottom:350.670000px;}
.y6c{bottom:350.760000px;}
.y240{bottom:352.560000px;}
.y19d{bottom:353.100000px;}
.y2a0{bottom:354.360000px;}
.y25c{bottom:354.720000px;}
.y154{bottom:355.440000px;}
.y1de{bottom:355.530000px;}
.y231{bottom:356.610000px;}
.ydb{bottom:356.970000px;}
.y28d{bottom:357.060000px;}
.y125{bottom:357.150000px;}
.y1c7{bottom:357.690000px;}
.y222{bottom:359.040000px;}
.y1b9{bottom:359.220000px;}
.y93{bottom:361.110000px;}
.y53{bottom:361.200000px;}
.y27f{bottom:363.720000px;}
.y2d0{bottom:364.889908px;}
.y28{bottom:366.150000px;}
.y188{bottom:366.690000px;}
.y208{bottom:367.860000px;}
.yb1{bottom:372.090000px;}
.y1f4{bottom:374.610000px;}
.y165{bottom:378.570000px;}
.y13e{bottom:381.360000px;}
.y250{bottom:381.720000px;}
.y6b{bottom:381.810000px;}
.y230{bottom:383.250000px;}
.y28c{bottom:383.700000px;}
.y19c{bottom:384.150000px;}
.y187{bottom:384.330000px;}
.y23f{bottom:384.780000px;}
.y258{bottom:385.140000px;}
.y29f{bottom:385.410000px;}
.y1dd{bottom:386.670000px;}
.yda{bottom:388.110000px;}
.y267{bottom:388.200000px;}
.y124{bottom:388.290000px;}
.yee{bottom:388.830000px;}
.y221{bottom:390.090000px;}
.y92{bottom:392.160000px;}
.y27{bottom:392.430000px;}
.y176{bottom:393.240000px;}
.y27e{bottom:394.770000px;}
.y2b2{bottom:396.210000px;}
.y1f3{bottom:401.160000px;}
.y4{bottom:401.790000px;}
.yb0{bottom:403.140000px;}
.y10a{bottom:406.560000px;}
.y13d{bottom:407.910000px;}
.y153{bottom:408.000000px;}
.y164{bottom:409.620000px;}
.y1c6{bottom:410.250000px;}
.y1b8{bottom:411.690000px;}
.y27d{bottom:412.500000px;}
.y6a{bottom:412.860000px;}
.yd9{bottom:415.290000px;}
.ye0{bottom:415.320000px;}
.y23e{bottom:415.830000px;}
.y29e{bottom:416.460000px;}
.y26{bottom:418.620000px;}
.y1dc{bottom:418.890000px;}
.y266{bottom:419.250000px;}
.y175{bottom:419.880000px;}
.y207{bottom:420.330000px;}
.y123{bottom:420.510000px;}
.y2b1{bottom:422.850000px;}
.y91{bottom:423.210000px;}
.ybe{bottom:425.280000px;}
.y1f2{bottom:427.800000px;}
.y2c1{bottom:429.510000px;}
.y1ac{bottom:429.780000px;}
.y3{bottom:432.840000px;}
.yaf{bottom:434.190000px;}
.y152{bottom:434.640000px;}
.yed{bottom:435.180000px;}
.y22f{bottom:435.720000px;}
.y28b{bottom:436.170000px;}
.y186{bottom:436.890000px;}
.y273{bottom:437.610000px;}
.y1b7{bottom:438.330000px;}
.y163{bottom:440.670000px;}
.y69{bottom:443.910000px;}
.y109{bottom:444.000000px;}
.y25{bottom:445.800000px;}
.y23d{bottom:446.970000px;}
.y19b{bottom:447.510000px;}
.y220{bottom:448.140000px;}
.y13c{bottom:448.680000px;}
.y2b0{bottom:449.490000px;}
.y1db{bottom:449.940000px;}
.y265{bottom:450.390000px;}
.y122{bottom:451.560000px;}
.y90{bottom:454.260000px;}
.y2{bottom:460.110000px;}
.y29b{bottom:460.470000px;}
.y2c0{bottom:460.560000px;}
.y151{bottom:461.190000px;}
.y185{bottom:463.440000px;}
.y27c{bottom:464.970000px;}
.yae{bottom:465.240000px;}
.y206{bottom:472.800000px;}
.yec{bottom:473.790000px;}
.y68{bottom:474.960000px;}
.y24{bottom:475.410000px;}
.y2af{bottom:476.040000px;}
.y52{bottom:478.290000px;}
.y19a{bottom:478.560000px;}
.y23c{bottom:479.190000px;}
.y13b{bottom:479.730000px;}
.y1f1{bottom:480.360000px;}
.y1da{bottom:480.990000px;}
.y1ab{bottom:482.250000px;}
.y121{bottom:482.610000px;}
.y8f{bottom:485.310000px;}
.y24f{bottom:486.750000px;}
.y150{bottom:487.830000px;}
.y22e{bottom:488.190000px;}
.y28a{bottom:488.640000px;}
.y272{bottom:490.080000px;}
.yad{bottom:496.290000px;}
.y174{bottom:498.270000px;}
.y162{bottom:498.810000px;}
.y21f{bottom:500.160000px;}
.y2bf{bottom:500.610000px;}
.yeb{bottom:504.750000px;}
.y67{bottom:506.010000px;}
.y1f0{bottom:506.910000px;}
.y205{bottom:508.080000px;}
.y51{bottom:509.340000px;}
.y199{bottom:509.610000px;}
.y23b{bottom:510.240000px;}
.y13a{bottom:510.780000px;}
.y1d9{bottom:512.040000px;}
.y23{bottom:512.130000px;}
.y29a{bottom:512.940000px;}
.y120{bottom:513.660000px;}
.y14f{bottom:514.470000px;}
.y1c5{bottom:515.190000px;}
.y184{bottom:516.000000px;}
.y8e{bottom:516.360000px;}
.y1b6{bottom:516.720000px;}
.y27b{bottom:517.440000px;}
.y21e{bottom:517.800000px;}
.yac{bottom:527.340000px;}
.y204{bottom:530.580000px;}
.y2be{bottom:531.660000px;}
.y1ef{bottom:533.550000px;}
.yea{bottom:535.800000px;}
.y66{bottom:537.060000px;}
.y24e{bottom:539.220000px;}
.y25b{bottom:540.300000px;}
.y198{bottom:540.660000px;}
.y14e{bottom:541.110000px;}
.y289{bottom:541.200000px;}
.y23a{bottom:541.290000px;}
.y139{bottom:541.830000px;}
.y271{bottom:542.550000px;}
.y1d8{bottom:543.090000px;}
.y27a{bottom:544.080000px;}
.y11f{bottom:544.710000px;}
.y264{bottom:545.880000px;}
.y50{bottom:547.410000px;}
.y22{bottom:548.760000px;}
.y173{bottom:550.740000px;}
.y161{bottom:550.830000px;}
.y21d{bottom:553.080000px;}
.y2ae{bottom:554.430000px;}
.yba{bottom:555.330000px;}
.y1ee{bottom:560.190000px;}
.y1aa{bottom:560.640000px;}
.y2bd{bottom:562.710000px;}
.y2c8{bottom:564.539908px;}
.y299{bottom:565.500000px;}
.y203{bottom:565.860000px;}
.ye9{bottom:566.850000px;}
.y25a{bottom:566.940000px;}
.y1c4{bottom:567.750000px;}
.y65{bottom:568.110000px;}
.y160{bottom:568.470000px;}
.y197{bottom:571.710000px;}
.y239{bottom:572.340000px;}
.y138{bottom:572.880000px;}
.y1d7{bottom:574.140000px;}
.y11e{bottom:575.760000px;}
.y263{bottom:576.930000px;}
.y2db{bottom:577.589908px;}
.y8d{bottom:578.460000px;}
.yab{bottom:585.390000px;}
.y21{bottom:585.480000px;}
.y4f{bottom:588.810000px;}
.y24d{bottom:591.690000px;}
.y298{bottom:592.050000px;}
.y22d{bottom:593.220000px;}
.y14d{bottom:593.580000px;}
.y183{bottom:594.300000px;}
.y288{bottom:594.390000px;}
.y1b5{bottom:595.110000px;}
.ye8{bottom:597.900000px;}
.y64{bottom:599.160000px;}
.y202{bottom:601.050000px;}
.y2bc{bottom:602.760000px;}
.y172{bottom:603.300000px;}
.y137{bottom:603.930000px;}
.y2da{bottom:604.949908px;}
.y1d6{bottom:605.190000px;}
.y21b{bottom:605.550000px;}
.y11d{bottom:607.980000px;}
.y8c{bottom:609.510000px;}
.y1ed{bottom:612.660000px;}
.y24c{bottom:618.330000px;}
.y22c{bottom:619.860000px;}
.y14c{bottom:620.220000px;}
.y15f{bottom:620.940000px;}
.y287{bottom:621.030000px;}
.y20{bottom:622.110000px;}
.y278{bottom:622.470000px;}
.y2e2{bottom:622.589908px;}
.y4e{bottom:624.450000px;}
.y2c7{bottom:627.359908px;}
.y21a{bottom:628.860000px;}
.yb9{bottom:629.850000px;}
.y63{bottom:630.210000px;}
.y238{bottom:630.390000px;}
.y2ad{bottom:632.820000px;}
.y2bb{bottom:633.810000px;}
.y136{bottom:634.980000px;}
.y1d5{bottom:636.150000px;}
.yaa{bottom:637.410000px;}
.y11c{bottom:639.030000px;}
.y8b{bottom:640.560000px;}
.y297{bottom:644.610000px;}
.y259{bottom:646.050000px;}
.y14b{bottom:646.860000px;}
.y1b4{bottom:647.580000px;}
.y2e1{bottom:649.949908px;}
.y4d{bottom:651.810000px;}
.y2cb{bottom:652.289908px;}
.y200{bottom:653.610000px;}
.y171{bottom:655.770000px;}
.ye7{bottom:655.950000px;}
.y1e{bottom:658.830000px;}
.y62{bottom:661.260000px;}
.y1ec{bottom:665.220000px;}
.y135{bottom:666.030000px;}
.y1d4{bottom:667.200000px;}
.ya9{bottom:668.460000px;}
.yd8{bottom:669.000000px;}
.y11b{bottom:670.080000px;}
.y8a{bottom:671.610000px;}
.y182{bottom:672.690000px;}
.y14a{bottom:673.410000px;}
.y2ba{bottom:673.860000px;}
.y4a{bottom:675.840000px;}
.y1fe{bottom:676.110000px;}
.y2b9{bottom:680.910000px;}
.y219{bottom:681.360000px;}
.y170{bottom:682.440000px;}
.y2ac{bottom:685.320000px;}
.y1eb{bottom:691.800000px;}
.y61{bottom:692.340000px;}
.y24b{bottom:696.750000px;}
.y134{bottom:697.110000px;}
.y22b{bottom:698.190000px;}
.y1d3{bottom:698.280000px;}
.y1fd{bottom:698.640000px;}
.y257{bottom:699.360000px;}
.y286{bottom:699.450000px;}
.ya8{bottom:699.540000px;}
.y149{bottom:700.080000px;}
.y11a{bottom:701.160000px;}
.y89{bottom:702.690000px;}
.y81{bottom:704.940000px;}
.yd7{bottom:707.640000px;}
.y2c6{bottom:709.529908px;}
.y49{bottom:711.870000px;}
.y2ab{bottom:711.960000px;}
.y1c{bottom:713.760000px;}
.y218{bottom:716.640000px;}
.y1a9{bottom:717.450000px;}
.y1ea{bottom:718.440000px;}
.ye6{bottom:718.890000px;}
.y60{bottom:723.390000px;}
.y181{bottom:725.190000px;}
.y256{bottom:726.000000px;}
.y1b3{bottom:726.720000px;}
.y133{bottom:728.160000px;}
.y1d2{bottom:729.330000px;}
.ya7{bottom:730.590000px;}
.y119{bottom:732.210000px;}
.y262{bottom:733.380000px;}
.y88{bottom:733.740000px;}
.y16f{bottom:734.910000px;}
.y80{bottom:735.990000px;}
.y2aa{bottom:738.600000px;}
.yd6{bottom:738.690000px;}
.y46{bottom:747.870000px;}
.y296{bottom:749.580000px;}
.y1a{bottom:750.390000px;}
.y22a{bottom:750.750000px;}
.y1fc{bottom:751.110000px;}
.y285{bottom:751.920000px;}
.y148{bottom:752.640000px;}
.y100{bottom:755.700000px;}
.y196{bottom:759.210000px;}
.y132{bottom:760.380000px;}
.y1d1{bottom:760.470000px;}
.ya6{bottom:761.640000px;}
.y118{bottom:763.260000px;}
.y2c4{bottom:763.829908px;}
.y261{bottom:764.430000px;}
.y87{bottom:764.790000px;}
.y7f{bottom:767.040000px;}
.y5f{bottom:768.210000px;}
.y217{bottom:769.110000px;}
.yd5{bottom:769.740000px;}
.y24a{bottom:775.050000px;}
.ye5{bottom:776.580000px;}
.y180{bottom:777.750000px;}
.y237{bottom:778.470000px;}
.y277{bottom:779.190000px;}
.y19{bottom:783.780000px;}
.y16e{bottom:787.380000px;}
.y195{bottom:790.260000px;}
.y2a9{bottom:791.070000px;}
.y131{bottom:791.430000px;}
.ya5{bottom:792.690000px;}
.y117{bottom:794.310000px;}
.y2c3{bottom:794.789908px;}
.y260{bottom:795.480000px;}
.y1a8{bottom:795.750000px;}
.y86{bottom:795.840000px;}
.y45{bottom:795.930000px;}
.y7e{bottom:798.090000px;}
.yd4{bottom:800.790000px;}
.y295{bottom:802.140000px;}
.y26d{bottom:803.580000px;}
.y17f{bottom:804.390000px;}
.y147{bottom:805.110000px;}
.y18{bottom:807.000000px;}
.ye4{bottom:807.630000px;}
.y16d{bottom:814.020000px;}
.y5e{bottom:818.610000px;}
.y1e9{bottom:821.310000px;}
.y44{bottom:822.210000px;}
.y130{bottom:822.480000px;}
.ya4{bottom:823.740000px;}
.y116{bottom:826.530000px;}
.y85{bottom:826.890000px;}
.y294{bottom:828.690000px;}
.y7d{bottom:829.140000px;}
.y2b8{bottom:830.220000px;}
.y15e{bottom:830.940000px;}
.y1b2{bottom:831.750000px;}
.yd3{bottom:831.840000px;}
.y1{bottom:833.190000px;}
.y42{bottom:837.060000px;}
.ye3{bottom:838.680000px;}
.y216{bottom:839.580000px;}
.y14{bottom:843.810000px;}
.y1a7{bottom:848.310000px;}
.y1e8{bottom:852.360000px;}
.y249{bottom:853.440000px;}
.y12f{bottom:853.530000px;}
.ya3{bottom:854.790000px;}
.y293{bottom:855.330000px;}
.y1c3{bottom:856.050000px;}
.y17e{bottom:856.860000px;}
.y40{bottom:857.580000px;}
.y84{bottom:857.940000px;}
.y7c{bottom:860.190000px;}
.yd2{bottom:862.890000px;}
.ye2{bottom:865.860000px;}
.y5d{bottom:869.010000px;}
.y2a8{bottom:869.460000px;}
.y1a6{bottom:874.860000px;}
.y3e{bottom:878.010000px;}
.y26c{bottom:881.970000px;}
.y1e7{bottom:883.410000px;}
.y15d{bottom:883.500000px;}
.y276{bottom:884.220000px;}
.y12e{bottom:884.580000px;}
.ya2{bottom:885.840000px;}
.y115{bottom:888.630000px;}
.y83{bottom:888.990000px;}
.y7b{bottom:891.240000px;}
.y215{bottom:892.050000px;}
.yd1{bottom:893.940000px;}
.y248{bottom:905.910000px;}
.yfa{bottom:906.990000px;}
.y1c2{bottom:908.610000px;}
.y17d{bottom:909.330000px;}
.y146{bottom:910.050000px;}
.ycf{bottom:911.580000px;}
.y3c{bottom:914.010000px;}
.y1e6{bottom:914.460000px;}
.y5c{bottom:914.640000px;}
.y194{bottom:915.630000px;}
.y12d{bottom:915.720000px;}
.ya1{bottom:916.890000px;}
.y114{bottom:919.770000px;}
.y7a{bottom:922.290000px;}
.y10{bottom:927.060000px;}
.y214{bottom:927.330000px;}
.y26b{bottom:935.250000px;}
.y15c{bottom:935.970000px;}
.y76{bottom:941.640000px;}
.y1d0{bottom:943.890000px;}
.y193{bottom:946.680000px;}
.y229{bottom:946.770000px;}
.y82{bottom:947.040000px;}
.y2a7{bottom:947.850000px;}
.ya0{bottom:947.940000px;}
.y113{bottom:951.990000px;}
.y79{bottom:953.340000px;}
.y5b{bottom:959.460000px;}
.y1c1{bottom:961.080000px;}
.y17c{bottom:961.800000px;}
.y3b{bottom:962.160000px;}
.y145{bottom:962.610000px;}
.y75{bottom:972.690000px;}
.y192{bottom:977.730000px;}
.y9f{bottom:978.990000px;}
.y213{bottom:979.800000px;}
.y112{bottom:983.040000px;}
.y78{bottom:984.390000px;}
.y1c0{bottom:987.720000px;}
.y3a{bottom:988.440000px;}
.y1cf{bottom:995.910000px;}
.y2a6{bottom:1000.320000px;}
.ye{bottom:1002.660000px;}
.y74{bottom:1003.740000px;}
.y191{bottom:1008.780000px;}
.y1e5{bottom:1008.870000px;}
.y5a{bottom:1009.860000px;}
.y9e{bottom:1010.040000px;}
.y1ce{bottom:1013.550000px;}
.y111{bottom:1014.090000px;}
.y1bf{bottom:1014.360000px;}
.y39{bottom:1014.630000px;}
.y144{bottom:1015.080000px;}
.y77{bottom:1015.440000px;}
.y212{bottom:1032.360000px;}
.y73{bottom:1034.790000px;}
.y190{bottom:1039.830000px;}
.y1cd{bottom:1040.190000px;}
.y15b{bottom:1040.910000px;}
.y9d{bottom:1041.090000px;}
.y1b1{bottom:1041.720000px;}
.y38{bottom:1042.890000px;}
.y110{bottom:1045.140000px;}
.y36{bottom:1066.830000px;}
.ycc{bottom:1067.550000px;}
.y18f{bottom:1070.880000px;}
.y1a5{bottom:1070.970000px;}
.y9c{bottom:1072.140000px;}
.y211{bottom:1084.860000px;}
.yf9{bottom:1086.750000px;}
.yd{bottom:1091.970000px;}
.y15a{bottom:1093.500000px;}
.y72{bottom:1097.640000px;}
.y18e{bottom:1102.050000px;}
.y35{bottom:1102.140000px;}
.y9b{bottom:1103.220000px;}
.yc{bottom:1134.270000px;}
.yb{bottom:1165.230000px;}
.ya{bottom:1202.970000px;}
.h2{height:2.960186px;}
.h15{height:17.190000px;}
.h10{height:17.280000px;}
.h11{height:17.310000px;}
.h19{height:19.710000px;}
.h39{height:21.690000px;}
.h38{height:21.720000px;}
.h3a{height:21.780000px;}
.h3c{height:22.500000px;}
.hd{height:23.130000px;}
.hc{height:23.220000px;}
.h9{height:23.310000px;}
.h30{height:25.830000px;}
.h33{height:25.860000px;}
.h2f{height:25.920000px;}
.h32{height:25.950000px;}
.h27{height:28.440000px;}
.h14{height:34.470000px;}
.h16{height:34.500000px;}
.h13{height:34.560000px;}
.h1a{height:35.190000px;}
.h1b{height:35.220000px;}
.h18{height:35.280000px;}
.he{height:41.430000px;}
.h17{height:45.677109px;}
.h8{height:50.062500px;}
.h34{height:51.660000px;}
.h37{height:51.690000px;}
.h12{height:51.750000px;}
.h22{height:51.780000px;}
.h1d{height:53.121094px;}
.hf{height:59.797090px;}
.ha{height:62.100000px;}
.h4{height:62.703281px;}
.h25{height:65.835210px;}
.h7{height:68.710781px;}
.h3b{height:69.030000px;}
.hb{height:69.750000px;}
.h1e{height:74.004654px;}
.h26{height:74.953125px;}
.h3{height:75.093750px;}
.h31{height:77.580000px;}
.h36{height:77.610000px;}
.h35{height:77.670000px;}
.h2c{height:85.410000px;}
.h2b{height:85.440000px;}
.h1c{height:100.250156px;}
.h21{height:103.500000px;}
.h3e{height:103.530000px;}
.h5{height:107.470547px;}
.h2d{height:113.850000px;}
.h6{height:125.031094px;}
.h1f{height:129.330000px;}
.h3d{height:129.450000px;}
.h2a{height:142.290000px;}
.h20{height:155.190000px;}
.h23{height:155.250000px;}
.h29{height:170.760000px;}
.h28{height:199.290000px;}
.h2e{height:227.730000px;}
.h24{height:231.742489px;}
.h40{height:892.500000px;}
.h41{height:892.529908px;}
.h3f{height:892.530000px;}
.h0{height:1262.970000px;}
.h1{height:1263.000000px;}
.w7{width:52.110000px;}
.w12{width:77.580000px;}
.wb{width:91.530000px;}
.wa{width:94.620000px;}
.w10{width:105.240000px;}
.w11{width:105.480000px;}
.w8{width:116.220000px;}
.wf{width:116.310000px;}
.w2c{width:137.190000px;}
.w16{width:169.050000px;}
.w1c{width:169.410000px;}
.w13{width:176.250000px;}
.w26{width:180.030000px;}
.w1f{width:190.380000px;}
.w22{width:190.740000px;}
.w19{width:211.530000px;}
.w5{width:251.400000px;}
.w3{width:254.190000px;}
.w14{width:286.320000px;}
.wd{width:290.910000px;}
.we{width:296.850000px;}
.w9{width:467.040000px;}
.w4{width:480.030000px;}
.w6{width:483.270000px;}
.w15{width:507.750000px;}
.w1a{width:508.650000px;}
.w28{width:509.550000px;}
.w20{width:517.470000px;}
.w27{width:519.450000px;}
.w2f{width:520.260000px;}
.w23{width:530.430000px;}
.wc{width:530.970000px;}
.w29{width:539.790000px;}
.w17{width:542.040000px;}
.w1d{width:548.250000px;}
.w24{width:552.120000px;}
.w2d{width:558.960000px;}
.w2b{width:696.870000px;}
.w25{width:700.290000px;}
.w1e{width:708.570000px;}
.w2a{width:709.920000px;}
.w2e{width:711.360000px;}
.w1b{width:718.380000px;}
.w18{width:720.990000px;}
.w21{width:721.890000px;}
.w1{width:892.500000px;}
.w2{width:892.529987px;}
.w0{width:892.530000px;}
.w32{width:1262.969981px;}
.w30{width:1262.970000px;}
.w31{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:3.960000px;}
.x6{left:6.390000px;}
.x9{left:7.740000px;}
.x1b{left:11.070000px;}
.x26{left:15.210000px;}
.x23{left:18.000000px;}
.x31{left:19.890000px;}
.x1c{left:21.690000px;}
.x28{left:24.840000px;}
.x21{left:27.180000px;}
.x24{left:30.330000px;}
.x2b{left:32.670000px;}
.x27{left:40.050000px;}
.x2a{left:45.990000px;}
.x25{left:52.830000px;}
.x13{left:56.519987px;}
.x29{left:60.210000px;}
.x12{left:67.229987px;}
.x2c{left:77.160000px;}
.x2{left:85.049987px;}
.x10{left:103.049987px;}
.x33{left:106.379987px;}
.x36{left:109.799981px;}
.x14{left:112.049987px;}
.x22{left:119.250000px;}
.x11{left:121.049987px;}
.x34{left:127.619981px;}
.xa{left:138.600000px;}
.x2f{left:166.079987px;}
.x2d{left:170.129987px;}
.x1e{left:179.399987px;}
.xc{left:181.200000px;}
.x17{left:191.730000px;}
.x15{left:212.789987px;}
.x32{left:223.680000px;}
.xb{left:255.540000px;}
.x30{left:266.610000px;}
.x1d{left:269.669987px;}
.xd{left:273.450000px;}
.x2e{left:276.870000px;}
.x18{left:297.930000px;}
.x8{left:337.260000px;}
.x7{left:339.960000px;}
.x19{left:376.230000px;}
.xe{left:377.400000px;}
.x1f{left:508.536367px;}
.x1a{left:553.290000px;}
.xf{left:674.970000px;}
.x4{left:678.000000px;}
.x3{left:700.439987px;}
.x5{left:742.379987px;}
.x20{left:750.569987px;}
.x35{left:784.949981px;}
.x1{left:807.479987px;}
.x3b{left:912.929981px;}
.x39{left:975.929981px;}
.x3c{left:984.929981px;}
.x38{left:1043.459981px;}
.x44{left:1050.209981px;}
.x43{left:1068.209981px;}
.x40{left:1117.709981px;}
.x41{left:1119.959981px;}
.x42{left:1128.959981px;}
.x45{left:1131.479981px;}
.x3a{left:1137.959981px;}
.x37{left:1149.209981px;}
.x3d{left:1155.959981px;}
.x3f{left:1158.209981px;}
.x46{left:1169.459981px;}
.x3e{left:1173.959981px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-2.453707pt;}
.ls1b{letter-spacing:-0.272533pt;}
.ls9{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls18{letter-spacing:-0.124267pt;}
.lse{letter-spacing:-0.072533pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.023680pt;}
.ls15{letter-spacing:0.040320pt;}
.ls4{letter-spacing:0.042667pt;}
.ls6{letter-spacing:0.047360pt;}
.ls13{letter-spacing:0.059733pt;}
.ls14{letter-spacing:0.080533pt;}
.ls10{letter-spacing:0.080640pt;}
.ls1d{letter-spacing:0.106667pt;}
.ls12{letter-spacing:0.119467pt;}
.ls1e{letter-spacing:0.124267pt;}
.ls5{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.136533pt;}
.ls1c{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.175467pt;}
.ls23{letter-spacing:0.256000pt;}
.ls21{letter-spacing:0.448000pt;}
.ls0{letter-spacing:1.172160pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls16{letter-spacing:1.600000pt;}
.ls1{letter-spacing:4.117333pt;}
.lsc{letter-spacing:33.320320pt;}
.ls17{letter-spacing:48.768000pt;}
.lsa{letter-spacing:53.800320pt;}
.lsd{letter-spacing:61.800320pt;}
.ls22{letter-spacing:66.048000pt;}
.lsb{letter-spacing:86.866987pt;}
.ls1f{letter-spacing:138.474667pt;}
.ls20{letter-spacing:139.114667pt;}
.ws11{word-spacing:-64.000000pt;}
.ws0{word-spacing:-30.795840pt;}
.ws1a{word-spacing:-29.623680pt;}
.wsb{word-spacing:-23.927787pt;}
.ws8{word-spacing:-23.752320pt;}
.ws9{word-spacing:-23.679787pt;}
.ws1{word-spacing:-20.397013pt;}
.ws19{word-spacing:-18.240000pt;}
.ws1b{word-spacing:-18.048000pt;}
.wsa{word-spacing:-17.920000pt;}
.ws3{word-spacing:-17.792000pt;}
.ws4{word-spacing:-17.728000pt;}
.ws5{word-spacing:-17.664000pt;}
.wsf{word-spacing:-16.399147pt;}
.wse{word-spacing:-16.360213pt;}
.ws10{word-spacing:-16.320000pt;}
.wsd{word-spacing:-16.279680pt;}
.ws18{word-spacing:-15.016320pt;}
.wsc{word-spacing:-14.992853pt;}
.ws16{word-spacing:-14.980587pt;}
.ws12{word-spacing:-14.903680pt;}
.ws14{word-spacing:-14.880000pt;}
.ws6{word-spacing:-14.856320pt;}
.ws13{word-spacing:-14.732053pt;}
.ws7{word-spacing:-14.719787pt;}
.ws15{word-spacing:-14.583787pt;}
.ws17{word-spacing:-0.064000pt;}
.ws2{word-spacing:0.000000pt;}
._1f{margin-left:-23.148053pt;}
._17{margin-left:-20.644693pt;}
._1b{margin-left:-19.448213pt;}
._1a{margin-left:-16.298667pt;}
._1c{margin-left:-15.018667pt;}
._19{margin-left:-13.632000pt;}
._1d{margin-left:-11.626667pt;}
._18{margin-left:-9.760533pt;}
._8{margin-left:-6.500160pt;}
._1e{margin-left:-5.333333pt;}
._16{margin-left:-4.295573pt;}
._a{margin-left:-3.392000pt;}
._b{margin-left:-2.453333pt;}
._c{margin-left:-0.943360pt;}
._0{width:1.065600pt;}
._1{width:1.981440pt;}
._3{width:3.013547pt;}
._2{width:4.157760pt;}
._4{width:5.314987pt;}
._15{width:6.281493pt;}
._25{width:7.298987pt;}
._20{width:8.209280pt;}
._22{width:9.344000pt;}
._23{width:10.240000pt;}
._29{width:11.329067pt;}
._9{width:12.672000pt;}
._10{width:13.904000pt;}
._21{width:14.960960pt;}
._13{width:15.871680pt;}
._14{width:16.955307pt;}
._2a{width:19.264000pt;}
._34{width:20.178347pt;}
._39{width:21.070933pt;}
._33{width:22.191360pt;}
._d{width:23.248640pt;}
._7{width:24.943360pt;}
._28{width:26.313813pt;}
._32{width:27.459413pt;}
._35{width:28.536960pt;}
._36{width:30.137387pt;}
._3b{width:31.041600pt;}
._26{width:32.528640pt;}
._11{width:33.934400pt;}
._12{width:34.949760pt;}
._27{width:35.968000pt;}
._3c{width:38.681600pt;}
._38{width:39.808000pt;}
._24{width:44.032000pt;}
._31{width:46.890667pt;}
._2c{width:53.742507pt;}
._37{width:56.896000pt;}
._30{width:60.970667pt;}
._3a{width:64.128000pt;}
._2e{width:99.246187pt;}
._2f{width:124.293013pt;}
._e{width:150.109440pt;}
._2d{width:172.520320pt;}
._f{width:173.943680pt;}
._5{width:467.114667pt;}
._3d{width:750.314667pt;}
._2b{width:867.434667pt;}
._6{width:902.954667pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:42.666667pt;}
.fs2{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs7{font-size:58.836202pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.440000pt;}
.fs3{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y2c2{bottom:0.000081pt;}
.y2d{bottom:2.800000pt;}
.y13{bottom:3.360000pt;}
.y201{bottom:4.800000pt;}
.y1ff{bottom:4.826667pt;}
.y41{bottom:4.960000pt;}
.y43{bottom:5.040000pt;}
.y21c{bottom:5.200000pt;}
.y1d{bottom:5.520000pt;}
.y1b{bottom:5.600000pt;}
.yf{bottom:5.680000pt;}
.ye1{bottom:7.969631pt;}
.y17{bottom:10.240000pt;}
.y20b{bottom:10.400000pt;}
.yc2{bottom:10.480000pt;}
.yc9{bottom:10.506667pt;}
.ybd{bottom:10.560000pt;}
.yce{bottom:10.586667pt;}
.y48{bottom:10.720000pt;}
.y4b{bottom:10.746667pt;}
.y3d{bottom:10.800000pt;}
.yef{bottom:11.520000pt;}
.yf7{bottom:11.600000pt;}
.y34{bottom:18.080000pt;}
.y31{bottom:18.160000pt;}
.y37{bottom:18.186667pt;}
.y3f{bottom:18.800000pt;}
.y4c{bottom:18.826667pt;}
.y12{bottom:21.760000pt;}
.y1f{bottom:21.786667pt;}
.y141{bottom:22.000000pt;}
.ycd{bottom:22.026667pt;}
.ybb{bottom:22.080000pt;}
.y253{bottom:22.106667pt;}
.y104{bottom:24.186667pt;}
.y108{bottom:24.240000pt;}
.y20e{bottom:25.840000pt;}
.y16{bottom:28.640000pt;}
.y47{bottom:31.280000pt;}
.y30{bottom:33.440000pt;}
.y1bc{bottom:33.466667pt;}
.ybc{bottom:33.520000pt;}
.yc8{bottom:33.546667pt;}
.yff{bottom:36.800000pt;}
.y106{bottom:36.826667pt;}
.yf6{bottom:36.880000pt;}
.y2c5{bottom:37.839919pt;}
.y5{bottom:37.840000pt;}
.y11{bottom:40.160000pt;}
.y279{bottom:45.040000pt;}
.y15{bottom:47.040000pt;}
.y20f{bottom:48.800000pt;}
.y102{bottom:49.440000pt;}
.y107{bottom:49.520000pt;}
.y103{bottom:49.546667pt;}
.yc1{bottom:56.480000pt;}
.yc7{bottom:56.506667pt;}
.ycb{bottom:56.560000pt;}
.y26e{bottom:56.586667pt;}
.yfc{bottom:62.080000pt;}
.yf3{bottom:62.160000pt;}
.y105{bottom:62.186667pt;}
.y101{bottom:74.720000pt;}
.y2de{bottom:78.079919pt;}
.yc6{bottom:79.466667pt;}
.yc0{bottom:79.520000pt;}
.y270{bottom:79.546667pt;}
.y2cf{bottom:82.319919pt;}
.y2e3{bottom:83.679919pt;}
.yfb{bottom:87.440000pt;}
.yf2{bottom:87.466667pt;}
.y2c9{bottom:88.319919pt;}
.y2cc{bottom:91.679919pt;}
.y2dc{bottom:95.359919pt;}
.y2d9{bottom:97.679919pt;}
.y2ca{bottom:98.319919pt;}
.y2dd{bottom:99.599919pt;}
.y10c{bottom:100.106667pt;}
.y2cd{bottom:100.319919pt;}
.y2e0{bottom:101.359919pt;}
.y2ce{bottom:102.319919pt;}
.ybf{bottom:102.480000pt;}
.yc5{bottom:102.506667pt;}
.y26f{bottom:102.586667pt;}
.y2d8{bottom:106.906585pt;}
.yfe{bottom:112.720000pt;}
.yf1{bottom:112.746667pt;}
.y10e{bottom:112.826667pt;}
.y71{bottom:118.400000pt;}
.y2b7{bottom:118.800000pt;}
.y247{bottom:119.120000pt;}
.y1a4{bottom:119.600000pt;}
.y2a5{bottom:120.720000pt;}
.y1fb{bottom:121.280000pt;}
.y12c{bottom:123.200000pt;}
.y210{bottom:124.320000pt;}
.yc4{bottom:125.466667pt;}
.yd0{bottom:125.520000pt;}
.y2df{bottom:125.706585pt;}
.y33{bottom:126.400000pt;}
.yf8{bottom:127.200000pt;}
.y9a{bottom:127.760000pt;}
.y159{bottom:128.000000pt;}
.y143{bottom:129.280000pt;}
.y292{bottom:130.000000pt;}
.y1cc{bottom:130.640000pt;}
.y10f{bottom:131.600000pt;}
.y1be{bottom:132.640000pt;}
.y236{bottom:133.280000pt;}
.y2d7{bottom:134.506585pt;}
.y59{bottom:137.440000pt;}
.yb8{bottom:137.520000pt;}
.yfd{bottom:138.000000pt;}
.yf5{bottom:138.106667pt;}
.y17b{bottom:139.200000pt;}
.y284{bottom:142.640000pt;}
.y26a{bottom:143.280000pt;}
.y16c{bottom:143.360000pt;}
.y18d{bottom:145.280000pt;}
.yca{bottom:146.640000pt;}
.y246{bottom:146.720000pt;}
.y1a3{bottom:147.200000pt;}
.y2a4{bottom:148.320000pt;}
.y1e4{bottom:149.360000pt;}
.y12b{bottom:150.800000pt;}
.y10b{bottom:150.960000pt;}
.y228{bottom:151.440000pt;}
.y255{bottom:152.640000pt;}
.y235{bottom:153.280000pt;}
.y291{bottom:153.680000pt;}
.y1cb{bottom:154.320000pt;}
.y99{bottom:155.360000pt;}
.y20d{bottom:155.600000pt;}
.y32{bottom:157.680000pt;}
.y70{bottom:158.960000pt;}
.yf0{bottom:160.480000pt;}
.y2d6{bottom:162.106585pt;}
.yf4{bottom:163.386667pt;}
.y58{bottom:165.040000pt;}
.yb7{bottom:165.120000pt;}
.y2b6{bottom:165.520000pt;}
.y1fa{bottom:167.920000pt;}
.y283{bottom:170.240000pt;}
.y16b{bottom:170.960000pt;}
.y1b0{bottom:171.680000pt;}
.y18c{bottom:172.880000pt;}
.y245{bottom:174.320000pt;}
.y158{bottom:174.640000pt;}
.y1a2{bottom:174.800000pt;}
.y142{bottom:175.920000pt;}
.y1e3{bottom:176.960000pt;}
.y12a{bottom:178.400000pt;}
.y1bd{bottom:179.280000pt;}
.y269{bottom:179.440000pt;}
.y227{bottom:180.080000pt;}
.y9{bottom:180.160000pt;}
.y98{bottom:182.960000pt;}
.y17a{bottom:185.920000pt;}
.y10d{bottom:188.666667pt;}
.y2f{bottom:189.040000pt;}
.y2d5{bottom:189.706585pt;}
.y57{bottom:192.640000pt;}
.yb6{bottom:192.720000pt;}
.ydf{bottom:193.200000pt;}
.y282{bottom:197.840000pt;}
.y157{bottom:198.320000pt;}
.y16a{bottom:198.480000pt;}
.y6f{bottom:198.800000pt;}
.y254{bottom:199.280000pt;}
.y234{bottom:199.920000pt;}
.y290{bottom:200.400000pt;}
.y18b{bottom:200.480000pt;}
.y1ca{bottom:200.960000pt;}
.y244{bottom:201.920000pt;}
.y275{bottom:202.320000pt;}
.y1a1{bottom:202.400000pt;}
.y2a3{bottom:203.520000pt;}
.y1e2{bottom:204.560000pt;}
.y129{bottom:206.000000pt;}
.y268{bottom:207.040000pt;}
.y226{bottom:207.600000pt;}
.y97{bottom:210.640000pt;}
.y2b5{bottom:212.160000pt;}
.y1f9{bottom:214.640000pt;}
.y8{bottom:216.160000pt;}
.y2d4{bottom:217.306585pt;}
.y20c{bottom:217.600000pt;}
.y1af{bottom:218.320000pt;}
.y56{bottom:220.160000pt;}
.yb5{bottom:220.320000pt;}
.y156{bottom:222.000000pt;}
.y140{bottom:222.640000pt;}
.y281{bottom:225.440000pt;}
.y1bb{bottom:226.000000pt;}
.y169{bottom:226.080000pt;}
.yde{bottom:227.760000pt;}
.y18a{bottom:228.080000pt;}
.y25f{bottom:229.280000pt;}
.y1a0{bottom:230.000000pt;}
.y243{bottom:230.560000pt;}
.y1e1{bottom:232.160000pt;}
.y179{bottom:232.560000pt;}
.y128{bottom:234.640000pt;}
.y225{bottom:235.280000pt;}
.y2e{bottom:235.680000pt;}
.y96{bottom:238.160000pt;}
.y1f8{bottom:238.240000pt;}
.yc3{bottom:239.360000pt;}
.y6e{bottom:243.600000pt;}
.y2d3{bottom:244.906585pt;}
.y25e{bottom:244.960000pt;}
.y155{bottom:245.600000pt;}
.y252{bottom:245.920000pt;}
.y233{bottom:246.640000pt;}
.y28f{bottom:247.066667pt;}
.y1c9{bottom:247.626667pt;}
.y55{bottom:247.786667pt;}
.yb4{bottom:247.946667pt;}
.y274{bottom:248.986667pt;}
.y2c{bottom:251.706667pt;}
.y168{bottom:253.706667pt;}
.y29d{bottom:254.026667pt;}
.y7{bottom:257.546667pt;}
.y19f{bottom:257.626667pt;}
.y242{bottom:258.186667pt;}
.y2a2{bottom:259.786667pt;}
.y1e0{bottom:260.826667pt;}
.y1f7{bottom:261.946667pt;}
.ydd{bottom:262.186667pt;}
.y127{bottom:262.266667pt;}
.y224{bottom:263.946667pt;}
.y20a{bottom:264.346667pt;}
.y1ae{bottom:265.066667pt;}
.y95{bottom:265.786667pt;}
.y25d{bottom:268.666667pt;}
.y13f{bottom:269.306667pt;}
.y2b{bottom:270.506667pt;}
.y28e{bottom:270.746667pt;}
.y2d2{bottom:272.506585pt;}
.y1ba{bottom:272.666667pt;}
.yb3{bottom:275.546667pt;}
.y280{bottom:277.066667pt;}
.y178{bottom:279.226667pt;}
.y189{bottom:279.706667pt;}
.y167{bottom:281.306667pt;}
.y2b4{bottom:281.866667pt;}
.y6d{bottom:284.186667pt;}
.y54{bottom:285.066667pt;}
.y19e{bottom:285.226667pt;}
.y1f6{bottom:285.626667pt;}
.y241{bottom:285.786667pt;}
.y2a{bottom:285.866667pt;}
.y2a1{bottom:287.386667pt;}
.y1df{bottom:288.426667pt;}
.ydc{bottom:289.706667pt;}
.y126{bottom:289.866667pt;}
.y223{bottom:291.546667pt;}
.y251{bottom:292.666667pt;}
.y232{bottom:293.306667pt;}
.y94{bottom:293.386667pt;}
.y1c8{bottom:294.346667pt;}
.y209{bottom:295.626667pt;}
.y2d1{bottom:300.106585pt;}
.y29c{bottom:300.266667pt;}
.y29{bottom:302.026667pt;}
.y177{bottom:302.906667pt;}
.yb2{bottom:303.146667pt;}
.y6{bottom:303.546667pt;}
.y2b3{bottom:305.546667pt;}
.y166{bottom:308.906667pt;}
.y1f5{bottom:309.306667pt;}
.y1ad{bottom:311.706667pt;}
.y6c{bottom:311.786667pt;}
.y240{bottom:313.386667pt;}
.y19d{bottom:313.866667pt;}
.y2a0{bottom:314.986667pt;}
.y25c{bottom:315.306667pt;}
.y154{bottom:315.946667pt;}
.y1de{bottom:316.026667pt;}
.y231{bottom:316.986667pt;}
.ydb{bottom:317.306667pt;}
.y28d{bottom:317.386667pt;}
.y125{bottom:317.466667pt;}
.y1c7{bottom:317.946667pt;}
.y222{bottom:319.146667pt;}
.y1b9{bottom:319.306667pt;}
.y93{bottom:320.986667pt;}
.y53{bottom:321.066667pt;}
.y27f{bottom:323.306667pt;}
.y2d0{bottom:324.346585pt;}
.y28{bottom:325.466667pt;}
.y188{bottom:325.946667pt;}
.y208{bottom:326.986667pt;}
.yb1{bottom:330.746667pt;}
.y1f4{bottom:332.986667pt;}
.y165{bottom:336.506667pt;}
.y13e{bottom:338.986667pt;}
.y250{bottom:339.306667pt;}
.y6b{bottom:339.386667pt;}
.y230{bottom:340.666667pt;}
.y28c{bottom:341.066667pt;}
.y19c{bottom:341.466667pt;}
.y187{bottom:341.626667pt;}
.y23f{bottom:342.026667pt;}
.y258{bottom:342.346667pt;}
.y29f{bottom:342.586667pt;}
.y1dd{bottom:343.706667pt;}
.yda{bottom:344.986667pt;}
.y267{bottom:345.066667pt;}
.y124{bottom:345.146667pt;}
.yee{bottom:345.626667pt;}
.y221{bottom:346.746667pt;}
.y92{bottom:348.586667pt;}
.y27{bottom:348.826667pt;}
.y176{bottom:349.546667pt;}
.y27e{bottom:350.906667pt;}
.y2b2{bottom:352.186667pt;}
.y1f3{bottom:356.586667pt;}
.y4{bottom:357.146667pt;}
.yb0{bottom:358.346667pt;}
.y10a{bottom:361.386667pt;}
.y13d{bottom:362.586667pt;}
.y153{bottom:362.666667pt;}
.y164{bottom:364.106667pt;}
.y1c6{bottom:364.666667pt;}
.y1b8{bottom:365.946667pt;}
.y27d{bottom:366.666667pt;}
.y6a{bottom:366.986667pt;}
.yd9{bottom:369.146667pt;}
.ye0{bottom:369.173333pt;}
.y23e{bottom:369.626667pt;}
.y29e{bottom:370.186667pt;}
.y26{bottom:372.106667pt;}
.y1dc{bottom:372.346667pt;}
.y266{bottom:372.666667pt;}
.y175{bottom:373.226667pt;}
.y207{bottom:373.626667pt;}
.y123{bottom:373.786667pt;}
.y2b1{bottom:375.866667pt;}
.y91{bottom:376.186667pt;}
.ybe{bottom:378.026667pt;}
.y1f2{bottom:380.266667pt;}
.y2c1{bottom:381.786667pt;}
.y1ac{bottom:382.026667pt;}
.y3{bottom:384.746667pt;}
.yaf{bottom:385.946667pt;}
.y152{bottom:386.346667pt;}
.yed{bottom:386.826667pt;}
.y22f{bottom:387.306667pt;}
.y28b{bottom:387.706667pt;}
.y186{bottom:388.346667pt;}
.y273{bottom:388.986667pt;}
.y1b7{bottom:389.626667pt;}
.y163{bottom:391.706667pt;}
.y69{bottom:394.586667pt;}
.y109{bottom:394.666667pt;}
.y25{bottom:396.266667pt;}
.y23d{bottom:397.306667pt;}
.y19b{bottom:397.786667pt;}
.y220{bottom:398.346667pt;}
.y13c{bottom:398.826667pt;}
.y2b0{bottom:399.546667pt;}
.y1db{bottom:399.946667pt;}
.y265{bottom:400.346667pt;}
.y122{bottom:401.386667pt;}
.y90{bottom:403.786667pt;}
.y2{bottom:408.986667pt;}
.y29b{bottom:409.306667pt;}
.y2c0{bottom:409.386667pt;}
.y151{bottom:409.946667pt;}
.y185{bottom:411.946667pt;}
.y27c{bottom:413.306667pt;}
.yae{bottom:413.546667pt;}
.y206{bottom:420.266667pt;}
.yec{bottom:421.146667pt;}
.y68{bottom:422.186667pt;}
.y24{bottom:422.586667pt;}
.y2af{bottom:423.146667pt;}
.y52{bottom:425.146667pt;}
.y19a{bottom:425.386667pt;}
.y23c{bottom:425.946667pt;}
.y13b{bottom:426.426667pt;}
.y1f1{bottom:426.986667pt;}
.y1da{bottom:427.546667pt;}
.y1ab{bottom:428.666667pt;}
.y121{bottom:428.986667pt;}
.y8f{bottom:431.386667pt;}
.y24f{bottom:432.666667pt;}
.y150{bottom:433.626667pt;}
.y22e{bottom:433.946667pt;}
.y28a{bottom:434.346667pt;}
.y272{bottom:435.626667pt;}
.yad{bottom:441.146667pt;}
.y174{bottom:442.906667pt;}
.y162{bottom:443.386667pt;}
.y21f{bottom:444.586667pt;}
.y2bf{bottom:444.986667pt;}
.yeb{bottom:448.666667pt;}
.y67{bottom:449.786667pt;}
.y1f0{bottom:450.586667pt;}
.y205{bottom:451.626667pt;}
.y51{bottom:452.746667pt;}
.y199{bottom:452.986667pt;}
.y23b{bottom:453.546667pt;}
.y13a{bottom:454.026667pt;}
.y1d9{bottom:455.146667pt;}
.y23{bottom:455.226667pt;}
.y29a{bottom:455.946667pt;}
.y120{bottom:456.586667pt;}
.y14f{bottom:457.306667pt;}
.y1c5{bottom:457.946667pt;}
.y184{bottom:458.666667pt;}
.y8e{bottom:458.986667pt;}
.y1b6{bottom:459.306667pt;}
.y27b{bottom:459.946667pt;}
.y21e{bottom:460.266667pt;}
.yac{bottom:468.746667pt;}
.y204{bottom:471.626667pt;}
.y2be{bottom:472.586667pt;}
.y1ef{bottom:474.266667pt;}
.yea{bottom:476.266667pt;}
.y66{bottom:477.386667pt;}
.y24e{bottom:479.306667pt;}
.y25b{bottom:480.266667pt;}
.y198{bottom:480.586667pt;}
.y14e{bottom:480.986667pt;}
.y289{bottom:481.066667pt;}
.y23a{bottom:481.146667pt;}
.y139{bottom:481.626667pt;}
.y271{bottom:482.266667pt;}
.y1d8{bottom:482.746667pt;}
.y27a{bottom:483.626667pt;}
.y11f{bottom:484.186667pt;}
.y264{bottom:485.226667pt;}
.y50{bottom:486.586667pt;}
.y22{bottom:487.786667pt;}
.y173{bottom:489.546667pt;}
.y161{bottom:489.626667pt;}
.y21d{bottom:491.626667pt;}
.y2ae{bottom:492.826667pt;}
.yba{bottom:493.626667pt;}
.y1ee{bottom:497.946667pt;}
.y1aa{bottom:498.346667pt;}
.y2bd{bottom:500.186667pt;}
.y2c8{bottom:501.813252pt;}
.y299{bottom:502.666667pt;}
.y203{bottom:502.986667pt;}
.ye9{bottom:503.866667pt;}
.y25a{bottom:503.946667pt;}
.y1c4{bottom:504.666667pt;}
.y65{bottom:504.986667pt;}
.y160{bottom:505.306667pt;}
.y197{bottom:508.186667pt;}
.y239{bottom:508.746667pt;}
.y138{bottom:509.226667pt;}
.y1d7{bottom:510.346667pt;}
.y11e{bottom:511.786667pt;}
.y263{bottom:512.826667pt;}
.y2db{bottom:513.413252pt;}
.y8d{bottom:514.186667pt;}
.yab{bottom:520.346667pt;}
.y21{bottom:520.426667pt;}
.y4f{bottom:523.386667pt;}
.y24d{bottom:525.946667pt;}
.y298{bottom:526.266667pt;}
.y22d{bottom:527.306667pt;}
.y14d{bottom:527.626667pt;}
.y183{bottom:528.266667pt;}
.y288{bottom:528.346667pt;}
.y1b5{bottom:528.986667pt;}
.ye8{bottom:531.466667pt;}
.y64{bottom:532.586667pt;}
.y202{bottom:534.266667pt;}
.y2bc{bottom:535.786667pt;}
.y172{bottom:536.266667pt;}
.y137{bottom:536.826667pt;}
.y2da{bottom:537.733252pt;}
.y1d6{bottom:537.946667pt;}
.y21b{bottom:538.266667pt;}
.y11d{bottom:540.426667pt;}
.y8c{bottom:541.786667pt;}
.y1ed{bottom:544.586667pt;}
.y24c{bottom:549.626667pt;}
.y22c{bottom:550.986667pt;}
.y14c{bottom:551.306667pt;}
.y15f{bottom:551.946667pt;}
.y287{bottom:552.026667pt;}
.y20{bottom:552.986667pt;}
.y278{bottom:553.306667pt;}
.y2e2{bottom:553.413252pt;}
.y4e{bottom:555.066667pt;}
.y2c7{bottom:557.653252pt;}
.y21a{bottom:558.986667pt;}
.yb9{bottom:559.866667pt;}
.y63{bottom:560.186667pt;}
.y238{bottom:560.346667pt;}
.y2ad{bottom:562.506667pt;}
.y2bb{bottom:563.386667pt;}
.y136{bottom:564.426667pt;}
.y1d5{bottom:565.466667pt;}
.yaa{bottom:566.586667pt;}
.y11c{bottom:568.026667pt;}
.y8b{bottom:569.386667pt;}
.y297{bottom:572.986667pt;}
.y259{bottom:574.266667pt;}
.y14b{bottom:574.986667pt;}
.y1b4{bottom:575.626667pt;}
.y2e1{bottom:577.733252pt;}
.y4d{bottom:579.386667pt;}
.y2cb{bottom:579.813252pt;}
.y200{bottom:580.986667pt;}
.y171{bottom:582.906667pt;}
.ye7{bottom:583.066667pt;}
.y1e{bottom:585.626667pt;}
.y62{bottom:587.786667pt;}
.y1ec{bottom:591.306667pt;}
.y135{bottom:592.026667pt;}
.y1d4{bottom:593.066667pt;}
.ya9{bottom:594.186667pt;}
.yd8{bottom:594.666667pt;}
.y11b{bottom:595.626667pt;}
.y8a{bottom:596.986667pt;}
.y182{bottom:597.946667pt;}
.y14a{bottom:598.586667pt;}
.y2ba{bottom:598.986667pt;}
.y4a{bottom:600.746667pt;}
.y1fe{bottom:600.986667pt;}
.y2b9{bottom:605.253333pt;}
.y219{bottom:605.653333pt;}
.y170{bottom:606.613333pt;}
.y2ac{bottom:609.173333pt;}
.y1eb{bottom:614.933333pt;}
.y61{bottom:615.413333pt;}
.y24b{bottom:619.333333pt;}
.y134{bottom:619.653333pt;}
.y22b{bottom:620.613333pt;}
.y1d3{bottom:620.693333pt;}
.y1fd{bottom:621.013333pt;}
.y257{bottom:621.653333pt;}
.y286{bottom:621.733333pt;}
.ya8{bottom:621.813333pt;}
.y149{bottom:622.293333pt;}
.y11a{bottom:623.253333pt;}
.y89{bottom:624.613333pt;}
.y81{bottom:626.613333pt;}
.yd7{bottom:629.013333pt;}
.y2c6{bottom:630.693252pt;}
.y49{bottom:632.773333pt;}
.y2ab{bottom:632.853333pt;}
.y1c{bottom:634.453333pt;}
.y218{bottom:637.013333pt;}
.y1a9{bottom:637.733333pt;}
.y1ea{bottom:638.613333pt;}
.ye6{bottom:639.013333pt;}
.y60{bottom:643.013333pt;}
.y181{bottom:644.613333pt;}
.y256{bottom:645.333333pt;}
.y1b3{bottom:645.973333pt;}
.y133{bottom:647.253333pt;}
.y1d2{bottom:648.293333pt;}
.ya7{bottom:649.413333pt;}
.y119{bottom:650.853333pt;}
.y262{bottom:651.893333pt;}
.y88{bottom:652.213333pt;}
.y16f{bottom:653.253333pt;}
.y80{bottom:654.213333pt;}
.y2aa{bottom:656.533333pt;}
.yd6{bottom:656.613333pt;}
.y46{bottom:664.773333pt;}
.y296{bottom:666.293333pt;}
.y1a{bottom:667.013333pt;}
.y22a{bottom:667.333333pt;}
.y1fc{bottom:667.653333pt;}
.y285{bottom:668.373333pt;}
.y148{bottom:669.013333pt;}
.y100{bottom:671.733333pt;}
.y196{bottom:674.853333pt;}
.y132{bottom:675.893333pt;}
.y1d1{bottom:675.973333pt;}
.ya6{bottom:677.013333pt;}
.y118{bottom:678.453333pt;}
.y2c4{bottom:678.959919pt;}
.y261{bottom:679.493333pt;}
.y87{bottom:679.813333pt;}
.y7f{bottom:681.813333pt;}
.y5f{bottom:682.853333pt;}
.y217{bottom:683.653333pt;}
.yd5{bottom:684.213333pt;}
.y24a{bottom:688.933333pt;}
.ye5{bottom:690.293333pt;}
.y180{bottom:691.333333pt;}
.y237{bottom:691.973333pt;}
.y277{bottom:692.613333pt;}
.y19{bottom:696.693333pt;}
.y16e{bottom:699.893333pt;}
.y195{bottom:702.453333pt;}
.y2a9{bottom:703.173333pt;}
.y131{bottom:703.493333pt;}
.ya5{bottom:704.613333pt;}
.y117{bottom:706.053333pt;}
.y2c3{bottom:706.479919pt;}
.y260{bottom:707.093333pt;}
.y1a8{bottom:707.333333pt;}
.y86{bottom:707.413333pt;}
.y45{bottom:707.493333pt;}
.y7e{bottom:709.413333pt;}
.yd4{bottom:711.813333pt;}
.y295{bottom:713.013333pt;}
.y26d{bottom:714.293333pt;}
.y17f{bottom:715.013333pt;}
.y147{bottom:715.653333pt;}
.y18{bottom:717.333333pt;}
.ye4{bottom:717.893333pt;}
.y16d{bottom:723.573333pt;}
.y5e{bottom:727.653333pt;}
.y1e9{bottom:730.053333pt;}
.y44{bottom:730.853333pt;}
.y130{bottom:731.093333pt;}
.ya4{bottom:732.213333pt;}
.y116{bottom:734.693333pt;}
.y85{bottom:735.013333pt;}
.y294{bottom:736.613333pt;}
.y7d{bottom:737.013333pt;}
.y2b8{bottom:737.973333pt;}
.y15e{bottom:738.613333pt;}
.y1b2{bottom:739.333333pt;}
.yd3{bottom:739.413333pt;}
.y1{bottom:740.613333pt;}
.y42{bottom:744.053333pt;}
.ye3{bottom:745.493333pt;}
.y216{bottom:746.293333pt;}
.y14{bottom:750.053333pt;}
.y1a7{bottom:754.053333pt;}
.y1e8{bottom:757.653333pt;}
.y249{bottom:758.613333pt;}
.y12f{bottom:758.693333pt;}
.ya3{bottom:759.813333pt;}
.y293{bottom:760.293333pt;}
.y1c3{bottom:760.933333pt;}
.y17e{bottom:761.653333pt;}
.y40{bottom:762.293333pt;}
.y84{bottom:762.613333pt;}
.y7c{bottom:764.613333pt;}
.yd2{bottom:767.013333pt;}
.ye2{bottom:769.653333pt;}
.y5d{bottom:772.453333pt;}
.y2a8{bottom:772.853333pt;}
.y1a6{bottom:777.653333pt;}
.y3e{bottom:780.453333pt;}
.y26c{bottom:783.973333pt;}
.y1e7{bottom:785.253333pt;}
.y15d{bottom:785.333333pt;}
.y276{bottom:785.973333pt;}
.y12e{bottom:786.293333pt;}
.ya2{bottom:787.413333pt;}
.y115{bottom:789.893333pt;}
.y83{bottom:790.213333pt;}
.y7b{bottom:792.213333pt;}
.y215{bottom:792.933333pt;}
.yd1{bottom:794.613333pt;}
.y248{bottom:805.253333pt;}
.yfa{bottom:806.213333pt;}
.y1c2{bottom:807.653333pt;}
.y17d{bottom:808.293333pt;}
.y146{bottom:808.933333pt;}
.ycf{bottom:810.293333pt;}
.y3c{bottom:812.453333pt;}
.y1e6{bottom:812.853333pt;}
.y5c{bottom:813.013333pt;}
.y194{bottom:813.893333pt;}
.y12d{bottom:813.973333pt;}
.ya1{bottom:815.013333pt;}
.y114{bottom:817.573333pt;}
.y7a{bottom:819.813333pt;}
.y10{bottom:824.053333pt;}
.y214{bottom:824.293333pt;}
.y26b{bottom:831.333333pt;}
.y15c{bottom:831.973333pt;}
.y76{bottom:837.013333pt;}
.y1d0{bottom:839.013333pt;}
.y193{bottom:841.493333pt;}
.y229{bottom:841.573333pt;}
.y82{bottom:841.813333pt;}
.y2a7{bottom:842.533333pt;}
.ya0{bottom:842.613333pt;}
.y113{bottom:846.213333pt;}
.y79{bottom:847.413333pt;}
.y5b{bottom:852.853333pt;}
.y1c1{bottom:854.293333pt;}
.y17c{bottom:854.933333pt;}
.y3b{bottom:855.253333pt;}
.y145{bottom:855.653333pt;}
.y75{bottom:864.613333pt;}
.y192{bottom:869.093333pt;}
.y9f{bottom:870.213333pt;}
.y213{bottom:870.933333pt;}
.y112{bottom:873.813333pt;}
.y78{bottom:875.013333pt;}
.y1c0{bottom:877.973333pt;}
.y3a{bottom:878.613333pt;}
.y1cf{bottom:885.253333pt;}
.y2a6{bottom:889.173333pt;}
.ye{bottom:891.253333pt;}
.y74{bottom:892.213333pt;}
.y191{bottom:896.693333pt;}
.y1e5{bottom:896.773333pt;}
.y5a{bottom:897.653333pt;}
.y9e{bottom:897.813333pt;}
.y1ce{bottom:900.933333pt;}
.y111{bottom:901.413333pt;}
.y1bf{bottom:901.653333pt;}
.y39{bottom:901.893333pt;}
.y144{bottom:902.293333pt;}
.y77{bottom:902.613333pt;}
.y212{bottom:917.653333pt;}
.y73{bottom:919.813333pt;}
.y190{bottom:924.293333pt;}
.y1cd{bottom:924.613333pt;}
.y15b{bottom:925.253333pt;}
.y9d{bottom:925.413333pt;}
.y1b1{bottom:925.973333pt;}
.y38{bottom:927.013333pt;}
.y110{bottom:929.013333pt;}
.y36{bottom:948.293333pt;}
.ycc{bottom:948.933333pt;}
.y18f{bottom:951.893333pt;}
.y1a5{bottom:951.973333pt;}
.y9c{bottom:953.013333pt;}
.y211{bottom:964.320000pt;}
.yf9{bottom:966.000000pt;}
.yd{bottom:970.640000pt;}
.y15a{bottom:972.000000pt;}
.y72{bottom:975.680000pt;}
.y18e{bottom:979.600000pt;}
.y35{bottom:979.680000pt;}
.y9b{bottom:980.640000pt;}
.yc{bottom:1008.240000pt;}
.yb{bottom:1035.760000pt;}
.ya{bottom:1069.306667pt;}
.h2{height:2.631277pt;}
.h15{height:15.280000pt;}
.h10{height:15.360000pt;}
.h11{height:15.386667pt;}
.h19{height:17.520000pt;}
.h39{height:19.280000pt;}
.h38{height:19.306667pt;}
.h3a{height:19.360000pt;}
.h3c{height:20.000000pt;}
.hd{height:20.560000pt;}
.hc{height:20.640000pt;}
.h9{height:20.720000pt;}
.h30{height:22.960000pt;}
.h33{height:22.986667pt;}
.h2f{height:23.040000pt;}
.h32{height:23.066667pt;}
.h27{height:25.280000pt;}
.h14{height:30.640000pt;}
.h16{height:30.666667pt;}
.h13{height:30.720000pt;}
.h1a{height:31.280000pt;}
.h1b{height:31.306667pt;}
.h18{height:31.360000pt;}
.he{height:36.826667pt;}
.h17{height:40.601875pt;}
.h8{height:44.500000pt;}
.h34{height:45.920000pt;}
.h37{height:45.946667pt;}
.h12{height:46.000000pt;}
.h22{height:46.026667pt;}
.h1d{height:47.218750pt;}
.hf{height:53.152969pt;}
.ha{height:55.200000pt;}
.h4{height:55.736250pt;}
.h25{height:58.520187pt;}
.h7{height:61.076250pt;}
.h3b{height:61.360000pt;}
.hb{height:62.000000pt;}
.h1e{height:65.781915pt;}
.h26{height:66.625000pt;}
.h3{height:66.750000pt;}
.h31{height:68.960000pt;}
.h36{height:68.986667pt;}
.h35{height:69.040000pt;}
.h2c{height:75.920000pt;}
.h2b{height:75.946667pt;}
.h1c{height:89.111250pt;}
.h21{height:92.000000pt;}
.h3e{height:92.026667pt;}
.h5{height:95.529375pt;}
.h2d{height:101.200000pt;}
.h6{height:111.138750pt;}
.h1f{height:114.960000pt;}
.h3d{height:115.066667pt;}
.h2a{height:126.480000pt;}
.h20{height:137.946667pt;}
.h23{height:138.000000pt;}
.h29{height:151.786667pt;}
.h28{height:177.146667pt;}
.h2e{height:202.426667pt;}
.h24{height:205.993323pt;}
.h40{height:793.333333pt;}
.h41{height:793.359919pt;}
.h3f{height:793.360000pt;}
.h0{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.320000pt;}
.w12{width:68.960000pt;}
.wb{width:81.360000pt;}
.wa{width:84.106667pt;}
.w10{width:93.546667pt;}
.w11{width:93.760000pt;}
.w8{width:103.306667pt;}
.wf{width:103.386667pt;}
.w2c{width:121.946667pt;}
.w16{width:150.266667pt;}
.w1c{width:150.586667pt;}
.w13{width:156.666667pt;}
.w26{width:160.026667pt;}
.w1f{width:169.226667pt;}
.w22{width:169.546667pt;}
.w19{width:188.026667pt;}
.w5{width:223.466667pt;}
.w3{width:225.946667pt;}
.w14{width:254.506667pt;}
.wd{width:258.586667pt;}
.we{width:263.866667pt;}
.w9{width:415.146667pt;}
.w4{width:426.693333pt;}
.w6{width:429.573333pt;}
.w15{width:451.333333pt;}
.w1a{width:452.133333pt;}
.w28{width:452.933333pt;}
.w20{width:459.973333pt;}
.w27{width:461.733333pt;}
.w2f{width:462.453333pt;}
.w23{width:471.493333pt;}
.wc{width:471.973333pt;}
.w29{width:479.813333pt;}
.w17{width:481.813333pt;}
.w1d{width:487.333333pt;}
.w24{width:490.773333pt;}
.w2d{width:496.853333pt;}
.w2b{width:619.440000pt;}
.w25{width:622.480000pt;}
.w1e{width:629.840000pt;}
.w2a{width:631.040000pt;}
.w2e{width:632.320000pt;}
.w1b{width:638.560000pt;}
.w18{width:640.880000pt;}
.w21{width:641.680000pt;}
.w1{width:793.333333pt;}
.w2{width:793.359988pt;}
.w0{width:793.360000pt;}
.w32{width:1122.639983pt;}
.w30{width:1122.640000pt;}
.w31{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:3.520000pt;}
.x6{left:5.680000pt;}
.x9{left:6.880000pt;}
.x1b{left:9.840000pt;}
.x26{left:13.520000pt;}
.x23{left:16.000000pt;}
.x31{left:17.680000pt;}
.x1c{left:19.280000pt;}
.x28{left:22.080000pt;}
.x21{left:24.160000pt;}
.x24{left:26.960000pt;}
.x2b{left:29.040000pt;}
.x27{left:35.600000pt;}
.x2a{left:40.880000pt;}
.x25{left:46.960000pt;}
.x13{left:50.239988pt;}
.x29{left:53.520000pt;}
.x12{left:59.759988pt;}
.x2c{left:68.586667pt;}
.x2{left:75.599988pt;}
.x10{left:91.599988pt;}
.x33{left:94.559988pt;}
.x36{left:97.599983pt;}
.x14{left:99.599988pt;}
.x22{left:106.000000pt;}
.x11{left:107.599988pt;}
.x34{left:113.439983pt;}
.xa{left:123.200000pt;}
.x2f{left:147.626655pt;}
.x2d{left:151.226655pt;}
.x1e{left:159.466655pt;}
.xc{left:161.066667pt;}
.x17{left:170.426667pt;}
.x15{left:189.146655pt;}
.x32{left:198.826667pt;}
.xb{left:227.146667pt;}
.x30{left:236.986667pt;}
.x1d{left:239.706655pt;}
.xd{left:243.066667pt;}
.x2e{left:246.106667pt;}
.x18{left:264.826667pt;}
.x8{left:299.786667pt;}
.x7{left:302.186667pt;}
.x19{left:334.426667pt;}
.xe{left:335.466667pt;}
.x1f{left:452.032327pt;}
.x1a{left:491.813333pt;}
.xf{left:599.973333pt;}
.x4{left:602.666667pt;}
.x3{left:622.613322pt;}
.x5{left:659.893322pt;}
.x20{left:667.173322pt;}
.x35{left:697.733317pt;}
.x1{left:717.759988pt;}
.x3b{left:811.493317pt;}
.x39{left:867.493317pt;}
.x3c{left:875.493317pt;}
.x38{left:927.519983pt;}
.x44{left:933.519983pt;}
.x43{left:949.519983pt;}
.x40{left:993.519983pt;}
.x41{left:995.519983pt;}
.x42{left:1003.519983pt;}
.x45{left:1005.759983pt;}
.x3a{left:1011.519983pt;}
.x37{left:1021.519983pt;}
.x3d{left:1027.519983pt;}
.x3f{left:1029.519983pt;}
.x46{left:1039.519983pt;}
.x3e{left:1043.519983pt;}
}




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