
    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_2b9618fce1732a1a8ff7cc61.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_bce7e869644b61cb8603301d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_9ede29250f5fa8c1a5d279b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a04226482c2bde4e25729ffa.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_dde9a9d1cccedc7725062c47.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_4579bff5bdad0c7d4e6fe997.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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_3fe6b4a401a5a89f916ad818.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7c797c9fb5e1c07f63f0a4a0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aad5a7624f2623d3725b00fb.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.977539;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:-21.060000px;}
.v9{vertical-align:-11.520000px;}
.v7{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.760000px;}
.va{vertical-align:11.520000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v6{vertical-align:65.520000px;}
.ls32{letter-spacing:-1.698000px;}
.ls30{letter-spacing:-1.548000px;}
.ls26{letter-spacing:-1.386000px;}
.ls25{letter-spacing:-1.332000px;}
.ls1b{letter-spacing:-1.302000px;}
.ls2a{letter-spacing:-1.284000px;}
.ls2d{letter-spacing:-1.236000px;}
.ls1a{letter-spacing:-1.182000px;}
.ls24{letter-spacing:-1.134000px;}
.ls19{letter-spacing:-1.080000px;}
.ls23{letter-spacing:-0.978000px;}
.ls31{letter-spacing:-0.828000px;}
.ls2{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.666000px;}
.ls39{letter-spacing:-0.540000px;}
.ls36{letter-spacing:-0.460200px;}
.ls27{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.259800px;}
.ls2e{letter-spacing:-0.233400px;}
.ls3{letter-spacing:-0.208200px;}
.ls7{letter-spacing:-0.206400px;}
.ls12{letter-spacing:-0.106800px;}
.ls10{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.109440px;}
.ls22{letter-spacing:0.135600px;}
.ls2f{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.180000px;}
.ls34{letter-spacing:0.197280px;}
.ls5{letter-spacing:0.259800px;}
.ls2c{letter-spacing:0.301200px;}
.ls18{letter-spacing:0.306600px;}
.ls1e{letter-spacing:0.311760px;}
.ls37{letter-spacing:0.336000px;}
.ls16{letter-spacing:0.360000px;}
.ls2b{letter-spacing:0.466800px;}
.ls17{letter-spacing:0.496800px;}
.ls4{letter-spacing:0.511800px;}
.ls1d{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.774000px;}
.lsc{letter-spacing:0.900000px;}
.ls9{letter-spacing:7.866720px;}
.lse{letter-spacing:11.466720px;}
.ls13{letter-spacing:12.420000px;}
.lsd{letter-spacing:15.066720px;}
.ls38{letter-spacing:16.506720px;}
.ls1f{letter-spacing:19.089600px;}
.ls21{letter-spacing:19.389600px;}
.ls20{letter-spacing:19.533600px;}
.ls1c{letter-spacing:19.809600px;}
.ls15{letter-spacing:22.986720px;}
.ls14{letter-spacing:24.426720px;}
.ls0{letter-spacing:31.626720px;}
.ls28{letter-spacing:32.700960px;}
.ls35{letter-spacing:46.026720px;}
.lsf{letter-spacing:58.500000px;}
.ls29{letter-spacing:85.260960px;}
.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;}
}
.ws19{word-spacing:-42.061200px;}
.ws18{word-spacing:-41.760000px;}
.ws0{word-spacing:-37.756800px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.714000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.246600px;}
.ws15{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.093600px;}
.wsb{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.833200px;}
.ws7{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws20{word-spacing:-14.274000px;}
.ws1e{word-spacing:-14.112000px;}
.ws11{word-spacing:-13.962000px;}
.wse{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.806000px;}
.wsf{word-spacing:-13.758000px;}
.ws1a{word-spacing:-13.704000px;}
.ws17{word-spacing:-13.656000px;}
.ws13{word-spacing:-13.608000px;}
.ws16{word-spacing:-13.554000px;}
.ws1d{word-spacing:-13.392000px;}
.ws1f{word-spacing:-13.242000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws1b{word-spacing:-7.326600px;}
.ws8{word-spacing:0.000000px;}
.ws10{word-spacing:7.756560px;}
._2{margin-left:-2128.661760px;}
._3{margin-left:-1629.524160px;}
._4{margin-left:-1171.774080px;}
._27{margin-left:-15.225840px;}
._a{margin-left:-3.949680px;}
._6{margin-left:-2.233920px;}
._1{margin-left:-1.010880px;}
._0{width:1.158240px;}
._14{width:2.188080px;}
._5{width:3.192000px;}
._26{width:4.206000px;}
._f{width:5.295840px;}
._7{width:6.334560px;}
._9{width:7.913040px;}
._8{width:9.322560px;}
._13{width:10.329840px;}
._17{width:11.428320px;}
._12{width:13.163040px;}
._b{width:16.112400px;}
._e{width:17.449920px;}
._10{width:18.741840px;}
._11{width:19.780560px;}
._23{width:21.072480px;}
._d{width:22.290480px;}
._c{width:23.366160px;}
._21{width:24.621120px;}
._20{width:25.995600px;}
._22{width:27.530640px;}
._18{width:29.199840px;}
._19{width:30.696480px;}
._16{width:32.219760px;}
._15{width:33.226560px;}
._32{width:34.720560px;}
._1e{width:35.856000px;}
._1f{width:37.088160px;}
._34{width:38.365920px;}
._25{width:40.104000px;}
._24{width:41.767200px;}
._1a{width:43.565040px;}
._33{width:45.596880px;}
._37{width:46.829040px;}
._1b{width:48.106800px;}
._35{width:50.855760px;}
._36{width:52.028160px;}
._31{width:56.206800px;}
._38{width:60.955200px;}
._1d{width:64.085520px;}
._1c{width:65.235120px;}
._29{width:70.020000px;}
._2b{width:82.707840px;}
._2f{width:94.806720px;}
._28{width:112.906800px;}
._2a{width:114.081840px;}
._2e{width:117.414720px;}
._2d{width:134.820480px;}
._30{width:157.600080px;}
._2c{width:172.586880px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(75,172,198);}
.fc4{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:7.200000px;}
.fs9{font-size:30.240000px;}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:77.760000px;}
.fs1{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y1ab{bottom:3.345000px;}
.y1a9{bottom:3.525000px;}
.ya1{bottom:5.760000px;}
.y9f{bottom:5.940000px;}
.yff{bottom:5.970000px;}
.y9d{bottom:6.120000px;}
.y7{bottom:6.300000px;}
.y104{bottom:6.660000px;}
.y113{bottom:7.560000px;}
.y160{bottom:7.740000px;}
.y155{bottom:7.920000px;}
.y128{bottom:8.280000px;}
.y125{bottom:9.360000px;}
.y161{bottom:9.720000px;}
.y158{bottom:9.900000px;}
.y15a{bottom:10.080000px;}
.y132{bottom:10.440000px;}
.y224{bottom:11.340000px;}
.y22e{bottom:11.385000px;}
.y227{bottom:11.520000px;}
.ye4{bottom:15.660000px;}
.yac{bottom:15.840000px;}
.yfd{bottom:15.870000px;}
.y9a{bottom:16.020000px;}
.y244{bottom:16.560000px;}
.yf6{bottom:16.740000px;}
.yeb{bottom:16.920000px;}
.y22d{bottom:16.965000px;}
.y226{bottom:17.100000px;}
.y242{bottom:17.130000px;}
.y133{bottom:17.460000px;}
.y17a{bottom:20.025000px;}
.y152{bottom:20.520000px;}
.y188{bottom:21.960000px;}
.y130{bottom:22.500000px;}
.ya0{bottom:25.560000px;}
.y138{bottom:25.590000px;}
.ya9{bottom:25.740000px;}
.yfe{bottom:25.770000px;}
.y9c{bottom:25.920000px;}
.y105{bottom:26.100000px;}
.y103{bottom:26.460000px;}
.y111{bottom:26.505000px;}
.y222{bottom:27.180000px;}
.y112{bottom:27.405000px;}
.y18b{bottom:29.520000px;}
.y179{bottom:29.925000px;}
.y12e{bottom:30.240000px;}
.y153{bottom:30.600000px;}
.y135{bottom:30.780000px;}
.y189{bottom:31.860000px;}
.yab{bottom:35.640000px;}
.y99{bottom:35.820000px;}
.y11f{bottom:35.850000px;}
.yea{bottom:36.720000px;}
.y8{bottom:39.780000px;}
.y151{bottom:40.500000px;}
.y187{bottom:41.760000px;}
.ya3{bottom:45.360000px;}
.yaa{bottom:45.585000px;}
.y9b{bottom:45.900000px;}
.yee{bottom:46.620000px;}
.y131{bottom:50.040000px;}
.y6{bottom:55.440000px;}
.ye9{bottom:56.520000px;}
.yed{bottom:66.420000px;}
.ye8{bottom:76.320000px;}
.y6e{bottom:82.620000px;}
.y15d{bottom:84.600000px;}
.yd1{bottom:85.320000px;}
.y102{bottom:85.680000px;}
.yec{bottom:86.220000px;}
.y139{bottom:86.760000px;}
.y25a{bottom:91.620000px;}
.y1c3{bottom:93.420000px;}
.y1f7{bottom:94.680000px;}
.y23a{bottom:94.860000px;}
.y1a7{bottom:95.400000px;}
.y36{bottom:95.760000px;}
.yf5{bottom:96.120000px;}
.ye7{bottom:96.300000px;}
.y211{bottom:99.540000px;}
.y123{bottom:102.285000px;}
.y6d{bottom:102.420000px;}
.y1db{bottom:103.140000px;}
.y185{bottom:104.400000px;}
.yd0{bottom:105.120000px;}
.y101{bottom:106.380000px;}
.y15c{bottom:109.440000px;}
.y259{bottom:111.420000px;}
.y1c2{bottom:113.220000px;}
.y1f6{bottom:114.480000px;}
.y239{bottom:114.660000px;}
.y97{bottom:115.200000px;}
.y35{bottom:115.560000px;}
.yf4{bottom:115.920000px;}
.ye6{bottom:116.100000px;}
.y210{bottom:119.520000px;}
.y122{bottom:122.085000px;}
.y6c{bottom:122.220000px;}
.y1da{bottom:122.940000px;}
.y184{bottom:124.200000px;}
.ycf{bottom:124.920000px;}
.y100{bottom:126.900000px;}
.y137{bottom:127.260000px;}
.y258{bottom:131.220000px;}
.y1a6{bottom:131.940000px;}
.y1c1{bottom:133.020000px;}
.y15b{bottom:134.100000px;}
.y1f5{bottom:134.280000px;}
.y238{bottom:134.460000px;}
.y96{bottom:135.000000px;}
.y34{bottom:135.540000px;}
.y20f{bottom:139.320000px;}
.y6b{bottom:142.200000px;}
.y1d9{bottom:142.740000px;}
.y183{bottom:144.000000px;}
.yce{bottom:144.900000px;}
.yfc{bottom:147.420000px;}
.y257{bottom:151.200000px;}
.y1c0{bottom:152.850000px;}
.y1f4{bottom:154.110000px;}
.y237{bottom:154.290000px;}
.y253{bottom:154.470000px;}
.y95{bottom:154.830000px;}
.y33{bottom:155.370000px;}
.y159{bottom:158.790000px;}
.y20e{bottom:159.150000px;}
.y6a{bottom:162.030000px;}
.y1d8{bottom:162.570000px;}
.y182{bottom:163.830000px;}
.ycd{bottom:164.730000px;}
.y136{bottom:167.610000px;}
.y256{bottom:171.030000px;}
.y1bf{bottom:172.830000px;}
.y1f3{bottom:173.910000px;}
.y236{bottom:174.090000px;}
.y252{bottom:174.270000px;}
.y94{bottom:174.630000px;}
.y32{bottom:175.170000px;}
.y20d{bottom:178.950000px;}
.y69{bottom:181.830000px;}
.y1d7{bottom:182.550000px;}
.y157{bottom:183.630000px;}
.ycc{bottom:184.530000px;}
.y134{bottom:189.930000px;}
.y255{bottom:190.830000px;}
.y1be{bottom:192.630000px;}
.yfb{bottom:193.710000px;}
.y1f2{bottom:193.890000px;}
.y235{bottom:194.070000px;}
.y93{bottom:194.430000px;}
.y31{bottom:194.970000px;}
.y20c{bottom:198.750000px;}
.y68{bottom:201.630000px;}
.y1d6{bottom:202.350000px;}
.y181{bottom:203.610000px;}
.ycb{bottom:204.330000px;}
.y150{bottom:208.290000px;}
.y254{bottom:210.630000px;}
.y1bd{bottom:212.430000px;}
.yfa{bottom:213.510000px;}
.y1f1{bottom:213.690000px;}
.y234{bottom:213.870000px;}
.y92{bottom:214.410000px;}
.y30{bottom:214.770000px;}
.y20b{bottom:218.730000px;}
.y1d5{bottom:222.150000px;}
.yca{bottom:224.130000px;}
.y156{bottom:228.810000px;}
.y1bc{bottom:228.990000px;}
.y67{bottom:230.430000px;}
.yf9{bottom:233.490000px;}
.y233{bottom:233.670000px;}
.y91{bottom:234.210000px;}
.y2f{bottom:234.750000px;}
.y180{bottom:236.370000px;}
.y20a{bottom:238.530000px;}
.y1d4{bottom:241.950000px;}
.yc9{bottom:244.110000px;}
.y66{bottom:250.410000px;}
.y1f0{bottom:253.290000px;}
.y154{bottom:253.470000px;}
.y251{bottom:253.650000px;}
.y2e{bottom:254.550000px;}
.y209{bottom:258.330000px;}
.y17f{bottom:261.210000px;}
.y1d3{bottom:261.750000px;}
.y90{bottom:263.010000px;}
.yc8{bottom:263.910000px;}
.yf3{bottom:266.250000px;}
.y232{bottom:268.230000px;}
.y65{bottom:270.210000px;}
.y12d{bottom:270.750000px;}
.y1ef{bottom:273.090000px;}
.y250{bottom:273.450000px;}
.y2d{bottom:274.350000px;}
.y208{bottom:278.130000px;}
.y1d2{bottom:281.730000px;}
.y8f{bottom:282.810000px;}
.yc7{bottom:283.710000px;}
.y14f{bottom:284.070000px;}
.y17e{bottom:286.050000px;}
.yf8{bottom:286.770000px;}
.y64{bottom:290.010000px;}
.y1ee{bottom:293.070000px;}
.y24f{bottom:293.250000px;}
.y2c{bottom:294.150000px;}
.y207{bottom:297.930000px;}
.y1d1{bottom:298.290000px;}
.y231{bottom:300.090000px;}
.y8e{bottom:302.610000px;}
.y12f{bottom:302.970000px;}
.yc6{bottom:303.510000px;}
.y14e{bottom:303.870000px;}
.y1a5{bottom:304.230000px;}
.y63{bottom:309.810000px;}
.y17d{bottom:310.890000px;}
.y1ed{bottom:312.870000px;}
.y24e{bottom:313.050000px;}
.y2b{bottom:313.950000px;}
.y206{bottom:317.910000px;}
.y8d{bottom:322.590000px;}
.y14d{bottom:323.850000px;}
.y1a4{bottom:324.030000px;}
.yf7{bottom:327.270000px;}
.y1ec{bottom:329.430000px;}
.y62{bottom:329.610000px;}
.y230{bottom:331.950000px;}
.yc5{bottom:332.310000px;}
.y24d{bottom:332.850000px;}
.y2a{bottom:333.930000px;}
.y17c{bottom:335.730000px;}
.y205{bottom:337.710000px;}
.y8c{bottom:342.390000px;}
.y14c{bottom:343.650000px;}
.y1a3{bottom:343.830000px;}
.y12c{bottom:345.990000px;}
.y61{bottom:349.590000px;}
.yc4{bottom:352.290000px;}
.y24c{bottom:352.830000px;}
.y29{bottom:353.730000px;}
.y204{bottom:354.270000px;}
.y17b{bottom:360.750000px;}
.y8b{bottom:362.190000px;}
.y14b{bottom:363.450000px;}
.y22f{bottom:363.630000px;}
.y1a2{bottom:363.810000px;}
.y12b{bottom:365.790000px;}
.yf2{bottom:367.590000px;}
.y60{bottom:369.390000px;}
.yc3{bottom:372.090000px;}
.y24b{bottom:372.630000px;}
.y28{bottom:373.530000px;}
.y121{bottom:380.730000px;}
.y8a{bottom:381.990000px;}
.y14a{bottom:383.250000px;}
.y1a1{bottom:383.610000px;}
.y178{bottom:385.590000px;}
.y5f{bottom:389.190000px;}
.yc2{bottom:391.890000px;}
.y24a{bottom:392.430000px;}
.y27{bottom:393.330000px;}
.y22c{bottom:395.490000px;}
.y89{bottom:401.835000px;}
.y149{bottom:403.095000px;}
.y1a0{bottom:403.455000px;}
.y12a{bottom:405.075000px;}
.yf1{bottom:408.135000px;}
.y5e{bottom:409.035000px;}
.y220{bottom:409.935000px;}
.yc1{bottom:411.735000px;}
.y249{bottom:412.275000px;}
.y26{bottom:413.175000px;}
.y88{bottom:421.815000px;}
.y148{bottom:423.075000px;}
.y19f{bottom:423.255000px;}
.y22b{bottom:427.215000px;}
.ye5{bottom:428.655000px;}
.y5d{bottom:428.835000px;}
.yc0{bottom:431.535000px;}
.y248{bottom:432.075000px;}
.y25{bottom:433.155000px;}
.y177{bottom:440.535000px;}
.y87{bottom:441.615000px;}
.y147{bottom:442.875000px;}
.y19e{bottom:443.055000px;}
.y129{bottom:445.395000px;}
.y247{bottom:446.835000px;}
.y5c{bottom:448.815000px;}
.yf0{bottom:449.355000px;}
.ybf{bottom:451.515000px;}
.y24{bottom:452.955000px;}
.y22a{bottom:458.895000px;}
.y176{bottom:460.335000px;}
.y86{bottom:461.415000px;}
.y146{bottom:462.675000px;}
.y19d{bottom:463.035000px;}
.y1bb{bottom:466.635000px;}
.y5b{bottom:468.615000px;}
.ybe{bottom:471.315000px;}
.y23{bottom:472.755000px;}
.y246{bottom:478.515000px;}
.y175{bottom:480.135000px;}
.y85{bottom:481.215000px;}
.y145{bottom:482.475000px;}
.y19c{bottom:482.835000px;}
.y127{bottom:485.895000px;}
.y1ba{bottom:486.435000px;}
.y5a{bottom:488.415000px;}
.yef{bottom:489.675000px;}
.y229{bottom:490.575000px;}
.y22{bottom:492.555000px;}
.ybd{bottom:500.115000px;}
.y84{bottom:501.015000px;}
.y144{bottom:502.275000px;}
.y19b{bottom:502.635000px;}
.y1b9{bottom:506.235000px;}
.y59{bottom:508.215000px;}
.y126{bottom:508.935000px;}
.y245{bottom:510.375000px;}
.y21{bottom:512.355000px;}
.ybc{bottom:519.915000px;}
.y83{bottom:520.995000px;}
.y143{bottom:522.255000px;}
.y19a{bottom:522.435000px;}
.y1b8{bottom:526.215000px;}
.y58{bottom:528.015000px;}
.y1d0{bottom:529.095000px;}
.ye3{bottom:530.175000px;}
.y20{bottom:532.335000px;}
.ybb{bottom:539.715000px;}
.y142{bottom:542.055000px;}
.y199{bottom:542.235000px;}
.y1eb{bottom:545.655000px;}
.y1b7{bottom:546.015000px;}
.y57{bottom:547.995000px;}
.y1cf{bottom:548.895000px;}
.y124{bottom:549.435000px;}
.y82{bottom:549.795000px;}
.y1f{bottom:552.135000px;}
.y228{bottom:554.115000px;}
.yba{bottom:559.695000px;}
.y141{bottom:561.855000px;}
.y198{bottom:562.215000px;}
.y174{bottom:565.455000px;}
.y1b6{bottom:565.815000px;}
.y56{bottom:567.795000px;}
.y1ce{bottom:568.875000px;}
.y81{bottom:569.595000px;}
.ye2{bottom:570.495000px;}
.y1e{bottom:571.935000px;}
.y173{bottom:573.015000px;}
.y120{bottom:573.735000px;}
.yb9{bottom:579.495000px;}
.y140{bottom:581.655000px;}
.y197{bottom:582.015000px;}
.y1ea{bottom:585.435000px;}
.y1b5{bottom:585.615000px;}
.y225{bottom:585.795000px;}
.y55{bottom:587.595000px;}
.y1cd{bottom:588.675000px;}
.y80{bottom:589.395000px;}
.ye0{bottom:591.195000px;}
.y1d{bottom:591.735000px;}
.y172{bottom:596.595000px;}
.yb8{bottom:599.295000px;}
.y13f{bottom:601.455000px;}
.y196{bottom:601.815000px;}
.y1e9{bottom:605.235000px;}
.y1b4{bottom:605.415000px;}
.y243{bottom:605.775000px;}
.y54{bottom:607.395000px;}
.y1cc{bottom:608.475000px;}
.y7f{bottom:609.195000px;}
.y1c{bottom:611.535000px;}
.ye1{bottom:611.715000px;}
.y11e{bottom:614.055000px;}
.y171{bottom:616.395000px;}
.y221{bottom:617.655000px;}
.y195{bottom:618.375000px;}
.y13e{bottom:621.435000px;}
.y1e8{bottom:625.035000px;}
.y1b3{bottom:625.395000px;}
.y53{bottom:627.195000px;}
.yb7{bottom:628.095000px;}
.y1cb{bottom:628.275000px;}
.y7e{bottom:629.175000px;}
.y1b{bottom:633.675000px;}
.y170{bottom:636.195000px;}
.y241{bottom:637.275000px;}
.ydf{bottom:638.175000px;}
.y13d{bottom:641.235000px;}
.y1b2{bottom:645.195000px;}
.y52{bottom:647.175000px;}
.yb6{bottom:647.895000px;}
.y1ca{bottom:648.075000px;}
.y7d{bottom:648.975000px;}
.y223{bottom:649.365000px;}
.y203{bottom:652.605000px;}
.y1a{bottom:653.505000px;}
.y1e7{bottom:653.865000px;}
.y16f{bottom:656.205000px;}
.yde{bottom:658.005000px;}
.y13c{bottom:661.065000px;}
.y1b1{bottom:665.025000px;}
.y21f{bottom:665.565000px;}
.y51{bottom:667.005000px;}
.yb5{bottom:667.905000px;}
.y7c{bottom:668.805000px;}
.y240{bottom:669.165000px;}
.y202{bottom:672.405000px;}
.y19{bottom:673.485000px;}
.y1e6{bottom:673.665000px;}
.y16e{bottom:676.005000px;}
.ydd{bottom:677.805000px;}
.y11d{bottom:680.505000px;}
.y13b{bottom:680.865000px;}
.y1b0{bottom:684.825000px;}
.y21e{bottom:685.365000px;}
.y50{bottom:686.805000px;}
.yb4{bottom:687.705000px;}
.y1c9{bottom:687.885000px;}
.y7b{bottom:688.605000px;}
.y201{bottom:692.385000px;}
.y18{bottom:693.285000px;}
.y1e5{bottom:693.645000px;}
.y16d{bottom:695.805000px;}
.ydc{bottom:697.605000px;}
.y11c{bottom:700.305000px;}
.y13a{bottom:700.665000px;}
.y23f{bottom:700.845000px;}
.y1af{bottom:701.385000px;}
.y21d{bottom:705.345000px;}
.y4f{bottom:706.605000px;}
.yb3{bottom:707.505000px;}
.y1c8{bottom:707.685000px;}
.y7a{bottom:708.405000px;}
.y200{bottom:712.185000px;}
.y16c{bottom:712.365000px;}
.y17{bottom:713.085000px;}
.y1e4{bottom:713.445000px;}
.ydb{bottom:717.405000px;}
.y11b{bottom:720.105000px;}
.y21c{bottom:725.145000px;}
.y4e{bottom:726.405000px;}
.y1c7{bottom:727.485000px;}
.y79{bottom:728.385000px;}
.yb2{bottom:731.265000px;}
.y1ff{bottom:731.985000px;}
.y23e{bottom:732.705000px;}
.y16{bottom:732.885000px;}
.y1e3{bottom:733.245000px;}
.y1ae{bottom:736.380000px;}
.yda{bottom:737.385000px;}
.y11a{bottom:740.085000px;}
.y21b{bottom:744.945000px;}
.y4d{bottom:746.385000px;}
.y1c6{bottom:747.285000px;}
.y78{bottom:748.185000px;}
.yb1{bottom:751.785000px;}
.y15{bottom:752.685000px;}
.y1e2{bottom:753.045000px;}
.yd9{bottom:757.185000px;}
.y119{bottom:759.885000px;}
.y1a8{bottom:764.280000px;}
.y23d{bottom:764.385000px;}
.y21a{bottom:764.745000px;}
.y4c{bottom:766.185000px;}
.y1c5{bottom:767.085000px;}
.y1fe{bottom:771.585000px;}
.yb0{bottom:772.485000px;}
.y14{bottom:772.665000px;}
.y1e1{bottom:772.845000px;}
.y77{bottom:776.985000px;}
.y118{bottom:779.685000px;}
.y1c4{bottom:783.645000px;}
.y219{bottom:784.545000px;}
.y4b{bottom:785.985000px;}
.y1fd{bottom:791.565000px;}
.y1ad{bottom:792.180000px;}
.y13{bottom:792.465000px;}
.y1e0{bottom:792.825000px;}
.yaf{bottom:793.005000px;}
.y23b{bottom:796.245000px;}
.y76{bottom:796.785000px;}
.y117{bottom:799.485000px;}
.y218{bottom:804.525000px;}
.y4a{bottom:805.785000px;}
.y1fc{bottom:811.365000px;}
.y12{bottom:812.265000px;}
.y1df{bottom:812.625000px;}
.yae{bottom:813.705000px;}
.y75{bottom:816.585000px;}
.y116{bottom:819.285000px;}
.y1aa{bottom:820.980000px;}
.y217{bottom:824.325000px;}
.y49{bottom:825.585000px;}
.y23c{bottom:827.925000px;}
.y194{bottom:829.005000px;}
.y1fb{bottom:831.165000px;}
.y11{bottom:832.065000px;}
.y1de{bottom:832.425000px;}
.yad{bottom:834.225000px;}
.y74{bottom:836.565000px;}
.y115{bottom:839.265000px;}
.y1ac{bottom:842.580000px;}
.y216{bottom:844.125000px;}
.y48{bottom:845.565000px;}
.y193{bottom:848.805000px;}
.y1fa{bottom:850.965000px;}
.y10{bottom:851.865000px;}
.y1dd{bottom:852.225000px;}
.ya8{bottom:854.745000px;}
.y73{bottom:856.365000px;}
.y114{bottom:859.065000px;}
.y215{bottom:863.925000px;}
.y47{bottom:865.365000px;}
.y192{bottom:868.605000px;}
.y1dc{bottom:868.965000px;}
.y1f9{bottom:870.765000px;}
.y110{bottom:873.825000px;}
.yf{bottom:874.005000px;}
.y72{bottom:876.165000px;}
.y191{bottom:883.545000px;}
.y214{bottom:883.725000px;}
.y46{bottom:885.165000px;}
.y1f8{bottom:887.325000px;}
.y16b{bottom:893.805000px;}
.y71{bottom:895.965000px;}
.ye{bottom:899.070000px;}
.y213{bottom:903.750000px;}
.y45{bottom:905.010000px;}
.y190{bottom:907.710000px;}
.y16a{bottom:913.650000px;}
.yd{bottom:914.190000px;}
.y70{bottom:915.810000px;}
.y10f{bottom:916.170000px;}
.y212{bottom:920.130000px;}
.ya7{bottom:920.850000px;}
.y44{bottom:924.810000px;}
.y18f{bottom:931.830000px;}
.y169{bottom:933.450000px;}
.yc{bottom:935.610000px;}
.y6f{bottom:935.790000px;}
.ya6{bottom:940.650000px;}
.y43{bottom:944.790000px;}
.y168{bottom:953.250000px;}
.yd8{bottom:955.590000px;}
.y18e{bottom:956.130000px;}
.yb{bottom:959.010000px;}
.ya5{bottom:960.630000px;}
.y10e{bottom:962.250000px;}
.y42{bottom:964.590000px;}
.y167{bottom:973.050000px;}
.ya4{bottom:975.390000px;}
.y18d{bottom:980.250000px;}
.y10d{bottom:982.050000px;}
.y41{bottom:984.390000px;}
.ya{bottom:990.690000px;}
.y166{bottom:993.030000px;}
.yd7{bottom:995.190000px;}
.ya2{bottom:996.090000px;}
.y10c{bottom:1002.030000px;}
.y40{bottom:1004.190000px;}
.y18c{bottom:1004.550000px;}
.y165{bottom:1012.830000px;}
.yd6{bottom:1014.990000px;}
.y10b{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y3f{bottom:1023.990000px;}
.y164{bottom:1032.630000px;}
.yd5{bottom:1034.970000px;}
.y10a{bottom:1041.630000px;}
.y3e{bottom:1043.970000px;}
.y186{bottom:1044.870000px;}
.y5{bottom:1050.630000px;}
.y163{bottom:1052.430000px;}
.yd4{bottom:1054.770000px;}
.y98{bottom:1056.390000px;}
.y109{bottom:1061.430000px;}
.y3d{bottom:1063.770000px;}
.y162{bottom:1067.190000px;}
.y18a{bottom:1069.170000px;}
.yd3{bottom:1074.570000px;}
.y108{bottom:1081.230000px;}
.y4{bottom:1081.950000px;}
.y3c{bottom:1083.570000px;}
.yd2{bottom:1094.370000px;}
.y107{bottom:1096.170000px;}
.y9e{bottom:1096.710000px;}
.y3b{bottom:1103.370000px;}
.y15f{bottom:1107.690000px;}
.y3{bottom:1112.730000px;}
.y3a{bottom:1123.170000px;}
.y15e{bottom:1132.350000px;}
.y106{bottom:1136.490000px;}
.y39{bottom:1143.150000px;}
.y2{bottom:1143.690000px;}
.y38{bottom:1172.520000px;}
.y1{bottom:1177.560000px;}
.y37{bottom:1194.300000px;}
.h35{height:10.800000px;}
.h33{height:10.980000px;}
.h13{height:19.800000px;}
.h1a{height:19.836000px;}
.hf{height:19.980000px;}
.h34{height:21.114844px;}
.h24{height:21.600000px;}
.h5{height:21.780000px;}
.h1f{height:22.320000px;}
.h1e{height:23.400000px;}
.h20{height:23.436000px;}
.h32{height:23.580000px;}
.h2b{height:23.760000px;}
.h28{height:23.940000px;}
.h2a{height:23.976000px;}
.h27{height:24.120000px;}
.h9{height:27.147656px;}
.h3c{height:30.780000px;}
.h37{height:30.960000px;}
.h39{height:30.996000px;}
.h38{height:31.140000px;}
.h3d{height:31.176000px;}
.h23{height:31.500000px;}
.h22{height:36.540000px;}
.h10{height:39.600000px;}
.h25{height:39.636000px;}
.h16{height:39.780000px;}
.h17{height:39.816000px;}
.h14{height:40.320000px;}
.h19{height:40.500000px;}
.h1b{height:41.436000px;}
.h4{height:41.726953px;}
.h8{height:42.164648px;}
.ha{height:43.506914px;}
.hd{height:45.549492px;}
.hb{height:46.251562px;}
.h3{height:46.736719px;}
.h3a{height:47.486953px;}
.h31{height:47.520000px;}
.h29{height:48.027656px;}
.h2f{height:48.456000px;}
.hc{height:48.496641px;}
.h6{height:53.224453px;}
.h11{height:59.400000px;}
.h12{height:59.616000px;}
.h1c{height:59.976000px;}
.he{height:60.300000px;}
.h3b{height:62.460000px;}
.h36{height:62.676000px;}
.h7{height:65.884219px;}
.h2{height:67.565039px;}
.h21{height:68.760000px;}
.h26{height:69.300000px;}
.h2c{height:70.474219px;}
.h30{height:71.820000px;}
.h2e{height:71.966953px;}
.h2d{height:100.714219px;}
.h15{height:141.120000px;}
.h18{height:141.156000px;}
.h1d{height:232.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:22.140000px;}
.w7{width:30.960000px;}
.w1c{width:31.140000px;}
.w23{width:31.176000px;}
.w1a{width:31.320000px;}
.w39{width:37.260000px;}
.w3c{width:37.296000px;}
.w38{width:38.160000px;}
.w37{width:38.196000px;}
.w3b{width:38.340000px;}
.wb{width:41.580000px;}
.wc{width:41.616000px;}
.wd{width:41.760000px;}
.we{width:42.120000px;}
.w10{width:43.776000px;}
.w2b{width:44.280000px;}
.w5{width:44.676000px;}
.w45{width:46.296000px;}
.w47{width:47.160000px;}
.w48{width:47.340000px;}
.w34{width:47.880000px;}
.w36{width:47.916000px;}
.w3a{width:48.240000px;}
.w42{width:48.960000px;}
.w46{width:50.040000px;}
.w18{width:50.256000px;}
.w3e{width:52.200000px;}
.w20{width:52.380000px;}
.w26{width:52.416000px;}
.w32{width:52.596000px;}
.wa{width:53.100000px;}
.w3{width:55.296000px;}
.w29{width:55.440000px;}
.w2a{width:55.476000px;}
.w4b{width:57.060000px;}
.w31{width:58.680000px;}
.w44{width:59.796000px;}
.w19{width:63.000000px;}
.w33{width:68.220000px;}
.w2f{width:68.256000px;}
.w41{width:68.940000px;}
.w12{width:71.640000px;}
.w11{width:73.620000px;}
.w8{width:74.196000px;}
.w24{width:76.680000px;}
.w1e{width:76.860000px;}
.w1b{width:77.256000px;}
.w14{width:82.440000px;}
.w2c{width:82.980000px;}
.w3d{width:89.316000px;}
.w25{width:91.800000px;}
.w1f{width:91.836000px;}
.w49{width:94.860000px;}
.w2e{width:95.040000px;}
.w13{width:95.076000px;}
.w3f{width:99.756000px;}
.wf{width:105.876000px;}
.w27{width:109.980000px;}
.w21{width:110.196000px;}
.w40{width:110.520000px;}
.w17{width:115.560000px;}
.w28{width:125.136000px;}
.w2d{width:127.296000px;}
.w43{width:187.230000px;}
.w35{width:203.070000px;}
.w9{width:211.710000px;}
.w30{width:218.190000px;}
.w4a{width:269.535000px;}
.w4c{width:276.330000px;}
.w15{width:286.455000px;}
.w1d{width:363.495000px;}
.w22{width:365.295000px;}
.w4{width:716.370000px;}
.w6{width:727.170000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.080000px;}
.x3c{left:6.555000px;}
.x3{left:8.100000px;}
.x62{left:10.980000px;}
.x64{left:15.840000px;}
.x2d{left:19.800000px;}
.x2e{left:25.740000px;}
.x14{left:50.940000px;}
.x1c{left:52.200000px;}
.x1{left:54.179987px;}
.x37{left:56.340000px;}
.x68{left:58.679987px;}
.x56{left:59.940000px;}
.x2{left:62.100000px;}
.x6{left:66.239987px;}
.x63{left:67.320000px;}
.xc{left:70.199987px;}
.x21{left:75.599987px;}
.x6b{left:81.179987px;}
.x15{left:82.620000px;}
.x2f{left:86.076000px;}
.xf{left:87.335987px;}
.x1d{left:96.876000px;}
.x11{left:107.496000px;}
.x54{left:109.655987px;}
.xb{left:111.635987px;}
.x4{left:118.296000px;}
.x7{left:121.895987px;}
.x3d{left:123.336000px;}
.x69{left:129.815987px;}
.x76{left:144.756000px;}
.x57{left:149.976000px;}
.x16{left:157.530000px;}
.x55{left:160.769987px;}
.x30{left:163.470000px;}
.x1e{left:171.210000px;}
.x4e{left:172.290000px;}
.x33{left:179.670000px;}
.x40{left:182.730000px;}
.x38{left:184.350000px;}
.x53{left:187.589987px;}
.x77{left:197.850000px;}
.x18{left:200.010000px;}
.x5{left:202.719000px;}
.x10{left:207.209987px;}
.x71{left:209.369987px;}
.x4f{left:211.350000px;}
.x12{left:213.339000px;}
.xa{left:218.549987px;}
.x34{left:236.010000px;}
.x39{left:237.630000px;}
.x8{left:238.709987px;}
.x19{left:242.310000px;}
.x1f{left:243.570000px;}
.x50{left:250.230000px;}
.x31{left:255.990000px;}
.x1a{left:284.655000px;}
.x41{left:289.155000px;}
.x3a{left:290.775000px;}
.x35{left:292.215000px;}
.x58{left:303.555000px;}
.x32{left:309.315000px;}
.x3b{left:322.635000px;}
.x1b{left:327.135000px;}
.x36{left:337.215000px;}
.x20{left:339.375000px;}
.x3e{left:342.255000px;}
.x70{left:345.494987px;}
.x72{left:359.534987px;}
.x78{left:367.995000px;}
.x17{left:369.975000px;}
.x51{left:376.095000px;}
.x6a{left:383.474987px;}
.x3f{left:384.915000px;}
.x52{left:416.234987px;}
.x67{left:418.574987px;}
.x9{left:446.504987px;}
.xd{left:473.144987px;}
.x22{left:474.405000px;}
.x60{left:479.804987px;}
.x66{left:482.504987px;}
.x6d{left:484.844987px;}
.xe{left:489.344987px;}
.x5d{left:490.424987px;}
.x13{left:494.744987px;}
.x23{left:497.445000px;}
.x43{left:500.144987px;}
.x2a{left:505.005000px;}
.x45{left:527.144987px;}
.x46{left:537.044987px;}
.x47{left:542.805000px;}
.x73{left:568.905000px;}
.x2b{left:582.585000px;}
.x5e{left:585.284987px;}
.x48{left:591.405000px;}
.x61{left:607.064987px;}
.x24{left:613.905000px;}
.x74{left:622.005000px;}
.x6e{left:628.529987px;}
.x4a{left:630.510000px;}
.x5a{left:638.970000px;}
.x44{left:656.069987px;}
.x25{left:664.890000px;}
.x4b{left:669.390000px;}
.x2c{left:675.150000px;}
.x5b{left:684.150000px;}
.x29{left:696.750000px;}
.x4c{left:707.370000px;}
.x27{left:728.610000px;}
.x4d{left:746.250000px;}
.x28{left:760.650000px;}
.x59{left:779.910000px;}
.x75{left:786.030000px;}
.x6c{left:787.649987px;}
.x49{left:795.210000px;}
.x6f{left:812.519987px;}
.x65{left:819.719987px;}
.x5f{left:836.279987px;}
.x5c{left:837.719987px;}
.x42{left:848.879987px;}
@media print{
.v2{vertical-align:-18.720000pt;}
.v9{vertical-align:-10.240000pt;}
.v7{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.120000pt;}
.va{vertical-align:10.240000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v6{vertical-align:58.240000pt;}
.ls32{letter-spacing:-1.509333pt;}
.ls30{letter-spacing:-1.376000pt;}
.ls26{letter-spacing:-1.232000pt;}
.ls25{letter-spacing:-1.184000pt;}
.ls1b{letter-spacing:-1.157333pt;}
.ls2a{letter-spacing:-1.141333pt;}
.ls2d{letter-spacing:-1.098667pt;}
.ls1a{letter-spacing:-1.050667pt;}
.ls24{letter-spacing:-1.008000pt;}
.ls19{letter-spacing:-0.960000pt;}
.ls23{letter-spacing:-0.869333pt;}
.ls31{letter-spacing:-0.736000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.592000pt;}
.ls39{letter-spacing:-0.480000pt;}
.ls36{letter-spacing:-0.409067pt;}
.ls27{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls2e{letter-spacing:-0.207467pt;}
.ls3{letter-spacing:-0.185067pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls12{letter-spacing:-0.094933pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.097280pt;}
.ls22{letter-spacing:0.120533pt;}
.ls2f{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.160000pt;}
.ls34{letter-spacing:0.175360pt;}
.ls5{letter-spacing:0.230933pt;}
.ls2c{letter-spacing:0.267733pt;}
.ls18{letter-spacing:0.272533pt;}
.ls1e{letter-spacing:0.277120pt;}
.ls37{letter-spacing:0.298667pt;}
.ls16{letter-spacing:0.320000pt;}
.ls2b{letter-spacing:0.414933pt;}
.ls17{letter-spacing:0.441600pt;}
.ls4{letter-spacing:0.454933pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.688000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls9{letter-spacing:6.992640pt;}
.lse{letter-spacing:10.192640pt;}
.ls13{letter-spacing:11.040000pt;}
.lsd{letter-spacing:13.392640pt;}
.ls38{letter-spacing:14.672640pt;}
.ls1f{letter-spacing:16.968533pt;}
.ls21{letter-spacing:17.235200pt;}
.ls20{letter-spacing:17.363200pt;}
.ls1c{letter-spacing:17.608533pt;}
.ls15{letter-spacing:20.432640pt;}
.ls14{letter-spacing:21.712640pt;}
.ls0{letter-spacing:28.112640pt;}
.ls28{letter-spacing:29.067520pt;}
.ls35{letter-spacing:40.912640pt;}
.lsf{letter-spacing:52.000000pt;}
.ls29{letter-spacing:75.787520pt;}
.ws19{word-spacing:-37.387733pt;}
.ws18{word-spacing:-37.120000pt;}
.ws0{word-spacing:-33.561600pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.968000pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.552533pt;}
.ws15{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws14{word-spacing:-13.185067pt;}
.ws7{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws20{word-spacing:-12.688000pt;}
.ws1e{word-spacing:-12.544000pt;}
.ws11{word-spacing:-12.410667pt;}
.wse{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.272000pt;}
.wsf{word-spacing:-12.229333pt;}
.ws1a{word-spacing:-12.181333pt;}
.ws17{word-spacing:-12.138667pt;}
.ws13{word-spacing:-12.096000pt;}
.ws16{word-spacing:-12.048000pt;}
.ws1d{word-spacing:-11.904000pt;}
.ws1f{word-spacing:-11.770667pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-6.512533pt;}
.ws8{word-spacing:0.000000pt;}
.ws10{word-spacing:6.894720pt;}
._2{margin-left:-1892.143787pt;}
._3{margin-left:-1448.465920pt;}
._4{margin-left:-1041.576960pt;}
._27{margin-left:-13.534080pt;}
._a{margin-left:-3.510827pt;}
._6{margin-left:-1.985707pt;}
._1{margin-left:-0.898560pt;}
._0{width:1.029547pt;}
._14{width:1.944960pt;}
._5{width:2.837333pt;}
._26{width:3.738667pt;}
._f{width:4.707413pt;}
._7{width:5.630720pt;}
._9{width:7.033813pt;}
._8{width:8.286720pt;}
._13{width:9.182080pt;}
._17{width:10.158507pt;}
._12{width:11.700480pt;}
._b{width:14.322133pt;}
._e{width:15.511040pt;}
._10{width:16.659413pt;}
._11{width:17.582720pt;}
._23{width:18.731093pt;}
._d{width:19.813760pt;}
._c{width:20.769920pt;}
._21{width:21.885440pt;}
._20{width:23.107200pt;}
._22{width:24.471680pt;}
._18{width:25.955413pt;}
._19{width:27.285760pt;}
._16{width:28.639787pt;}
._15{width:29.534720pt;}
._32{width:30.862720pt;}
._1e{width:31.872000pt;}
._1f{width:32.967253pt;}
._34{width:34.103040pt;}
._25{width:35.648000pt;}
._24{width:37.126400pt;}
._1a{width:38.724480pt;}
._33{width:40.530560pt;}
._37{width:41.625813pt;}
._1b{width:42.761600pt;}
._35{width:45.205120pt;}
._36{width:46.247253pt;}
._31{width:49.961600pt;}
._38{width:54.182400pt;}
._1d{width:56.964907pt;}
._1c{width:57.986773pt;}
._29{width:62.240000pt;}
._2b{width:73.518080pt;}
._2f{width:84.272640pt;}
._28{width:100.361600pt;}
._2a{width:101.406080pt;}
._2e{width:104.368640pt;}
._2d{width:119.840427pt;}
._30{width:140.088960pt;}
._2c{width:153.410560pt;}
.fs8{font-size:6.400000pt;}
.fs9{font-size:26.880000pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:69.120000pt;}
.fs1{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y1ab{bottom:2.973333pt;}
.y1a9{bottom:3.133333pt;}
.ya1{bottom:5.120000pt;}
.y9f{bottom:5.280000pt;}
.yff{bottom:5.306667pt;}
.y9d{bottom:5.440000pt;}
.y7{bottom:5.600000pt;}
.y104{bottom:5.920000pt;}
.y113{bottom:6.720000pt;}
.y160{bottom:6.880000pt;}
.y155{bottom:7.040000pt;}
.y128{bottom:7.360000pt;}
.y125{bottom:8.320000pt;}
.y161{bottom:8.640000pt;}
.y158{bottom:8.800000pt;}
.y15a{bottom:8.960000pt;}
.y132{bottom:9.280000pt;}
.y224{bottom:10.080000pt;}
.y22e{bottom:10.120000pt;}
.y227{bottom:10.240000pt;}
.ye4{bottom:13.920000pt;}
.yac{bottom:14.080000pt;}
.yfd{bottom:14.106667pt;}
.y9a{bottom:14.240000pt;}
.y244{bottom:14.720000pt;}
.yf6{bottom:14.880000pt;}
.yeb{bottom:15.040000pt;}
.y22d{bottom:15.080000pt;}
.y226{bottom:15.200000pt;}
.y242{bottom:15.226667pt;}
.y133{bottom:15.520000pt;}
.y17a{bottom:17.800000pt;}
.y152{bottom:18.240000pt;}
.y188{bottom:19.520000pt;}
.y130{bottom:20.000000pt;}
.ya0{bottom:22.720000pt;}
.y138{bottom:22.746667pt;}
.ya9{bottom:22.880000pt;}
.yfe{bottom:22.906667pt;}
.y9c{bottom:23.040000pt;}
.y105{bottom:23.200000pt;}
.y103{bottom:23.520000pt;}
.y111{bottom:23.560000pt;}
.y222{bottom:24.160000pt;}
.y112{bottom:24.360000pt;}
.y18b{bottom:26.240000pt;}
.y179{bottom:26.600000pt;}
.y12e{bottom:26.880000pt;}
.y153{bottom:27.200000pt;}
.y135{bottom:27.360000pt;}
.y189{bottom:28.320000pt;}
.yab{bottom:31.680000pt;}
.y99{bottom:31.840000pt;}
.y11f{bottom:31.866667pt;}
.yea{bottom:32.640000pt;}
.y8{bottom:35.360000pt;}
.y151{bottom:36.000000pt;}
.y187{bottom:37.120000pt;}
.ya3{bottom:40.320000pt;}
.yaa{bottom:40.520000pt;}
.y9b{bottom:40.800000pt;}
.yee{bottom:41.440000pt;}
.y131{bottom:44.480000pt;}
.y6{bottom:49.280000pt;}
.ye9{bottom:50.240000pt;}
.yed{bottom:59.040000pt;}
.ye8{bottom:67.840000pt;}
.y6e{bottom:73.440000pt;}
.y15d{bottom:75.200000pt;}
.yd1{bottom:75.840000pt;}
.y102{bottom:76.160000pt;}
.yec{bottom:76.640000pt;}
.y139{bottom:77.120000pt;}
.y25a{bottom:81.440000pt;}
.y1c3{bottom:83.040000pt;}
.y1f7{bottom:84.160000pt;}
.y23a{bottom:84.320000pt;}
.y1a7{bottom:84.800000pt;}
.y36{bottom:85.120000pt;}
.yf5{bottom:85.440000pt;}
.ye7{bottom:85.600000pt;}
.y211{bottom:88.480000pt;}
.y123{bottom:90.920000pt;}
.y6d{bottom:91.040000pt;}
.y1db{bottom:91.680000pt;}
.y185{bottom:92.800000pt;}
.yd0{bottom:93.440000pt;}
.y101{bottom:94.560000pt;}
.y15c{bottom:97.280000pt;}
.y259{bottom:99.040000pt;}
.y1c2{bottom:100.640000pt;}
.y1f6{bottom:101.760000pt;}
.y239{bottom:101.920000pt;}
.y97{bottom:102.400000pt;}
.y35{bottom:102.720000pt;}
.yf4{bottom:103.040000pt;}
.ye6{bottom:103.200000pt;}
.y210{bottom:106.240000pt;}
.y122{bottom:108.520000pt;}
.y6c{bottom:108.640000pt;}
.y1da{bottom:109.280000pt;}
.y184{bottom:110.400000pt;}
.ycf{bottom:111.040000pt;}
.y100{bottom:112.800000pt;}
.y137{bottom:113.120000pt;}
.y258{bottom:116.640000pt;}
.y1a6{bottom:117.280000pt;}
.y1c1{bottom:118.240000pt;}
.y15b{bottom:119.200000pt;}
.y1f5{bottom:119.360000pt;}
.y238{bottom:119.520000pt;}
.y96{bottom:120.000000pt;}
.y34{bottom:120.480000pt;}
.y20f{bottom:123.840000pt;}
.y6b{bottom:126.400000pt;}
.y1d9{bottom:126.880000pt;}
.y183{bottom:128.000000pt;}
.yce{bottom:128.800000pt;}
.yfc{bottom:131.040000pt;}
.y257{bottom:134.400000pt;}
.y1c0{bottom:135.866667pt;}
.y1f4{bottom:136.986667pt;}
.y237{bottom:137.146667pt;}
.y253{bottom:137.306667pt;}
.y95{bottom:137.626667pt;}
.y33{bottom:138.106667pt;}
.y159{bottom:141.146667pt;}
.y20e{bottom:141.466667pt;}
.y6a{bottom:144.026667pt;}
.y1d8{bottom:144.506667pt;}
.y182{bottom:145.626667pt;}
.ycd{bottom:146.426667pt;}
.y136{bottom:148.986667pt;}
.y256{bottom:152.026667pt;}
.y1bf{bottom:153.626667pt;}
.y1f3{bottom:154.586667pt;}
.y236{bottom:154.746667pt;}
.y252{bottom:154.906667pt;}
.y94{bottom:155.226667pt;}
.y32{bottom:155.706667pt;}
.y20d{bottom:159.066667pt;}
.y69{bottom:161.626667pt;}
.y1d7{bottom:162.266667pt;}
.y157{bottom:163.226667pt;}
.ycc{bottom:164.026667pt;}
.y134{bottom:168.826667pt;}
.y255{bottom:169.626667pt;}
.y1be{bottom:171.226667pt;}
.yfb{bottom:172.186667pt;}
.y1f2{bottom:172.346667pt;}
.y235{bottom:172.506667pt;}
.y93{bottom:172.826667pt;}
.y31{bottom:173.306667pt;}
.y20c{bottom:176.666667pt;}
.y68{bottom:179.226667pt;}
.y1d6{bottom:179.866667pt;}
.y181{bottom:180.986667pt;}
.ycb{bottom:181.626667pt;}
.y150{bottom:185.146667pt;}
.y254{bottom:187.226667pt;}
.y1bd{bottom:188.826667pt;}
.yfa{bottom:189.786667pt;}
.y1f1{bottom:189.946667pt;}
.y234{bottom:190.106667pt;}
.y92{bottom:190.586667pt;}
.y30{bottom:190.906667pt;}
.y20b{bottom:194.426667pt;}
.y1d5{bottom:197.466667pt;}
.yca{bottom:199.226667pt;}
.y156{bottom:203.386667pt;}
.y1bc{bottom:203.546667pt;}
.y67{bottom:204.826667pt;}
.yf9{bottom:207.546667pt;}
.y233{bottom:207.706667pt;}
.y91{bottom:208.186667pt;}
.y2f{bottom:208.666667pt;}
.y180{bottom:210.106667pt;}
.y20a{bottom:212.026667pt;}
.y1d4{bottom:215.066667pt;}
.yc9{bottom:216.986667pt;}
.y66{bottom:222.586667pt;}
.y1f0{bottom:225.146667pt;}
.y154{bottom:225.306667pt;}
.y251{bottom:225.466667pt;}
.y2e{bottom:226.266667pt;}
.y209{bottom:229.626667pt;}
.y17f{bottom:232.186667pt;}
.y1d3{bottom:232.666667pt;}
.y90{bottom:233.786667pt;}
.yc8{bottom:234.586667pt;}
.yf3{bottom:236.666667pt;}
.y232{bottom:238.426667pt;}
.y65{bottom:240.186667pt;}
.y12d{bottom:240.666667pt;}
.y1ef{bottom:242.746667pt;}
.y250{bottom:243.066667pt;}
.y2d{bottom:243.866667pt;}
.y208{bottom:247.226667pt;}
.y1d2{bottom:250.426667pt;}
.y8f{bottom:251.386667pt;}
.yc7{bottom:252.186667pt;}
.y14f{bottom:252.506667pt;}
.y17e{bottom:254.266667pt;}
.yf8{bottom:254.906667pt;}
.y64{bottom:257.786667pt;}
.y1ee{bottom:260.506667pt;}
.y24f{bottom:260.666667pt;}
.y2c{bottom:261.466667pt;}
.y207{bottom:264.826667pt;}
.y1d1{bottom:265.146667pt;}
.y231{bottom:266.746667pt;}
.y8e{bottom:268.986667pt;}
.y12f{bottom:269.306667pt;}
.yc6{bottom:269.786667pt;}
.y14e{bottom:270.106667pt;}
.y1a5{bottom:270.426667pt;}
.y63{bottom:275.386667pt;}
.y17d{bottom:276.346667pt;}
.y1ed{bottom:278.106667pt;}
.y24e{bottom:278.266667pt;}
.y2b{bottom:279.066667pt;}
.y206{bottom:282.586667pt;}
.y8d{bottom:286.746667pt;}
.y14d{bottom:287.866667pt;}
.y1a4{bottom:288.026667pt;}
.yf7{bottom:290.906667pt;}
.y1ec{bottom:292.826667pt;}
.y62{bottom:292.986667pt;}
.y230{bottom:295.066667pt;}
.yc5{bottom:295.386667pt;}
.y24d{bottom:295.866667pt;}
.y2a{bottom:296.826667pt;}
.y17c{bottom:298.426667pt;}
.y205{bottom:300.186667pt;}
.y8c{bottom:304.346667pt;}
.y14c{bottom:305.466667pt;}
.y1a3{bottom:305.626667pt;}
.y12c{bottom:307.546667pt;}
.y61{bottom:310.746667pt;}
.yc4{bottom:313.146667pt;}
.y24c{bottom:313.626667pt;}
.y29{bottom:314.426667pt;}
.y204{bottom:314.906667pt;}
.y17b{bottom:320.666667pt;}
.y8b{bottom:321.946667pt;}
.y14b{bottom:323.066667pt;}
.y22f{bottom:323.226667pt;}
.y1a2{bottom:323.386667pt;}
.y12b{bottom:325.146667pt;}
.yf2{bottom:326.746667pt;}
.y60{bottom:328.346667pt;}
.yc3{bottom:330.746667pt;}
.y24b{bottom:331.226667pt;}
.y28{bottom:332.026667pt;}
.y121{bottom:338.426667pt;}
.y8a{bottom:339.546667pt;}
.y14a{bottom:340.666667pt;}
.y1a1{bottom:340.986667pt;}
.y178{bottom:342.746667pt;}
.y5f{bottom:345.946667pt;}
.yc2{bottom:348.346667pt;}
.y24a{bottom:348.826667pt;}
.y27{bottom:349.626667pt;}
.y22c{bottom:351.546667pt;}
.y89{bottom:357.186667pt;}
.y149{bottom:358.306667pt;}
.y1a0{bottom:358.626667pt;}
.y12a{bottom:360.066667pt;}
.yf1{bottom:362.786667pt;}
.y5e{bottom:363.586667pt;}
.y220{bottom:364.386667pt;}
.yc1{bottom:365.986667pt;}
.y249{bottom:366.466667pt;}
.y26{bottom:367.266667pt;}
.y88{bottom:374.946667pt;}
.y148{bottom:376.066667pt;}
.y19f{bottom:376.226667pt;}
.y22b{bottom:379.746667pt;}
.ye5{bottom:381.026667pt;}
.y5d{bottom:381.186667pt;}
.yc0{bottom:383.586667pt;}
.y248{bottom:384.066667pt;}
.y25{bottom:385.026667pt;}
.y177{bottom:391.586667pt;}
.y87{bottom:392.546667pt;}
.y147{bottom:393.666667pt;}
.y19e{bottom:393.826667pt;}
.y129{bottom:395.906667pt;}
.y247{bottom:397.186667pt;}
.y5c{bottom:398.946667pt;}
.yf0{bottom:399.426667pt;}
.ybf{bottom:401.346667pt;}
.y24{bottom:402.626667pt;}
.y22a{bottom:407.906667pt;}
.y176{bottom:409.186667pt;}
.y86{bottom:410.146667pt;}
.y146{bottom:411.266667pt;}
.y19d{bottom:411.586667pt;}
.y1bb{bottom:414.786667pt;}
.y5b{bottom:416.546667pt;}
.ybe{bottom:418.946667pt;}
.y23{bottom:420.226667pt;}
.y246{bottom:425.346667pt;}
.y175{bottom:426.786667pt;}
.y85{bottom:427.746667pt;}
.y145{bottom:428.866667pt;}
.y19c{bottom:429.186667pt;}
.y127{bottom:431.906667pt;}
.y1ba{bottom:432.386667pt;}
.y5a{bottom:434.146667pt;}
.yef{bottom:435.266667pt;}
.y229{bottom:436.066667pt;}
.y22{bottom:437.826667pt;}
.ybd{bottom:444.546667pt;}
.y84{bottom:445.346667pt;}
.y144{bottom:446.466667pt;}
.y19b{bottom:446.786667pt;}
.y1b9{bottom:449.986667pt;}
.y59{bottom:451.746667pt;}
.y126{bottom:452.386667pt;}
.y245{bottom:453.666667pt;}
.y21{bottom:455.426667pt;}
.ybc{bottom:462.146667pt;}
.y83{bottom:463.106667pt;}
.y143{bottom:464.226667pt;}
.y19a{bottom:464.386667pt;}
.y1b8{bottom:467.746667pt;}
.y58{bottom:469.346667pt;}
.y1d0{bottom:470.306667pt;}
.ye3{bottom:471.266667pt;}
.y20{bottom:473.186667pt;}
.ybb{bottom:479.746667pt;}
.y142{bottom:481.826667pt;}
.y199{bottom:481.986667pt;}
.y1eb{bottom:485.026667pt;}
.y1b7{bottom:485.346667pt;}
.y57{bottom:487.106667pt;}
.y1cf{bottom:487.906667pt;}
.y124{bottom:488.386667pt;}
.y82{bottom:488.706667pt;}
.y1f{bottom:490.786667pt;}
.y228{bottom:492.546667pt;}
.yba{bottom:497.506667pt;}
.y141{bottom:499.426667pt;}
.y198{bottom:499.746667pt;}
.y174{bottom:502.626667pt;}
.y1b6{bottom:502.946667pt;}
.y56{bottom:504.706667pt;}
.y1ce{bottom:505.666667pt;}
.y81{bottom:506.306667pt;}
.ye2{bottom:507.106667pt;}
.y1e{bottom:508.386667pt;}
.y173{bottom:509.346667pt;}
.y120{bottom:509.986667pt;}
.yb9{bottom:515.106667pt;}
.y140{bottom:517.026667pt;}
.y197{bottom:517.346667pt;}
.y1ea{bottom:520.386667pt;}
.y1b5{bottom:520.546667pt;}
.y225{bottom:520.706667pt;}
.y55{bottom:522.306667pt;}
.y1cd{bottom:523.266667pt;}
.y80{bottom:523.906667pt;}
.ye0{bottom:525.506667pt;}
.y1d{bottom:525.986667pt;}
.y172{bottom:530.306667pt;}
.yb8{bottom:532.706667pt;}
.y13f{bottom:534.626667pt;}
.y196{bottom:534.946667pt;}
.y1e9{bottom:537.986667pt;}
.y1b4{bottom:538.146667pt;}
.y243{bottom:538.466667pt;}
.y54{bottom:539.906667pt;}
.y1cc{bottom:540.866667pt;}
.y7f{bottom:541.506667pt;}
.y1c{bottom:543.586667pt;}
.ye1{bottom:543.746667pt;}
.y11e{bottom:545.826667pt;}
.y171{bottom:547.906667pt;}
.y221{bottom:549.026667pt;}
.y195{bottom:549.666667pt;}
.y13e{bottom:552.386667pt;}
.y1e8{bottom:555.586667pt;}
.y1b3{bottom:555.906667pt;}
.y53{bottom:557.506667pt;}
.yb7{bottom:558.306667pt;}
.y1cb{bottom:558.466667pt;}
.y7e{bottom:559.266667pt;}
.y1b{bottom:563.266667pt;}
.y170{bottom:565.506667pt;}
.y241{bottom:566.466667pt;}
.ydf{bottom:567.266667pt;}
.y13d{bottom:569.986667pt;}
.y1b2{bottom:573.506667pt;}
.y52{bottom:575.266667pt;}
.yb6{bottom:575.906667pt;}
.y1ca{bottom:576.066667pt;}
.y7d{bottom:576.866667pt;}
.y223{bottom:577.213333pt;}
.y203{bottom:580.093333pt;}
.y1a{bottom:580.893333pt;}
.y1e7{bottom:581.213333pt;}
.y16f{bottom:583.293333pt;}
.yde{bottom:584.893333pt;}
.y13c{bottom:587.613333pt;}
.y1b1{bottom:591.133333pt;}
.y21f{bottom:591.613333pt;}
.y51{bottom:592.893333pt;}
.yb5{bottom:593.693333pt;}
.y7c{bottom:594.493333pt;}
.y240{bottom:594.813333pt;}
.y202{bottom:597.693333pt;}
.y19{bottom:598.653333pt;}
.y1e6{bottom:598.813333pt;}
.y16e{bottom:600.893333pt;}
.ydd{bottom:602.493333pt;}
.y11d{bottom:604.893333pt;}
.y13b{bottom:605.213333pt;}
.y1b0{bottom:608.733333pt;}
.y21e{bottom:609.213333pt;}
.y50{bottom:610.493333pt;}
.yb4{bottom:611.293333pt;}
.y1c9{bottom:611.453333pt;}
.y7b{bottom:612.093333pt;}
.y201{bottom:615.453333pt;}
.y18{bottom:616.253333pt;}
.y1e5{bottom:616.573333pt;}
.y16d{bottom:618.493333pt;}
.ydc{bottom:620.093333pt;}
.y11c{bottom:622.493333pt;}
.y13a{bottom:622.813333pt;}
.y23f{bottom:622.973333pt;}
.y1af{bottom:623.453333pt;}
.y21d{bottom:626.973333pt;}
.y4f{bottom:628.093333pt;}
.yb3{bottom:628.893333pt;}
.y1c8{bottom:629.053333pt;}
.y7a{bottom:629.693333pt;}
.y200{bottom:633.053333pt;}
.y16c{bottom:633.213333pt;}
.y17{bottom:633.853333pt;}
.y1e4{bottom:634.173333pt;}
.ydb{bottom:637.693333pt;}
.y11b{bottom:640.093333pt;}
.y21c{bottom:644.573333pt;}
.y4e{bottom:645.693333pt;}
.y1c7{bottom:646.653333pt;}
.y79{bottom:647.453333pt;}
.yb2{bottom:650.013333pt;}
.y1ff{bottom:650.653333pt;}
.y23e{bottom:651.293333pt;}
.y16{bottom:651.453333pt;}
.y1e3{bottom:651.773333pt;}
.y1ae{bottom:654.560000pt;}
.yda{bottom:655.453333pt;}
.y11a{bottom:657.853333pt;}
.y21b{bottom:662.173333pt;}
.y4d{bottom:663.453333pt;}
.y1c6{bottom:664.253333pt;}
.y78{bottom:665.053333pt;}
.yb1{bottom:668.253333pt;}
.y15{bottom:669.053333pt;}
.y1e2{bottom:669.373333pt;}
.yd9{bottom:673.053333pt;}
.y119{bottom:675.453333pt;}
.y1a8{bottom:679.360000pt;}
.y23d{bottom:679.453333pt;}
.y21a{bottom:679.773333pt;}
.y4c{bottom:681.053333pt;}
.y1c5{bottom:681.853333pt;}
.y1fe{bottom:685.853333pt;}
.yb0{bottom:686.653333pt;}
.y14{bottom:686.813333pt;}
.y1e1{bottom:686.973333pt;}
.y77{bottom:690.653333pt;}
.y118{bottom:693.053333pt;}
.y1c4{bottom:696.573333pt;}
.y219{bottom:697.373333pt;}
.y4b{bottom:698.653333pt;}
.y1fd{bottom:703.613333pt;}
.y1ad{bottom:704.160000pt;}
.y13{bottom:704.413333pt;}
.y1e0{bottom:704.733333pt;}
.yaf{bottom:704.893333pt;}
.y23b{bottom:707.773333pt;}
.y76{bottom:708.253333pt;}
.y117{bottom:710.653333pt;}
.y218{bottom:715.133333pt;}
.y4a{bottom:716.253333pt;}
.y1fc{bottom:721.213333pt;}
.y12{bottom:722.013333pt;}
.y1df{bottom:722.333333pt;}
.yae{bottom:723.293333pt;}
.y75{bottom:725.853333pt;}
.y116{bottom:728.253333pt;}
.y1aa{bottom:729.760000pt;}
.y217{bottom:732.733333pt;}
.y49{bottom:733.853333pt;}
.y23c{bottom:735.933333pt;}
.y194{bottom:736.893333pt;}
.y1fb{bottom:738.813333pt;}
.y11{bottom:739.613333pt;}
.y1de{bottom:739.933333pt;}
.yad{bottom:741.533333pt;}
.y74{bottom:743.613333pt;}
.y115{bottom:746.013333pt;}
.y1ac{bottom:748.960000pt;}
.y216{bottom:750.333333pt;}
.y48{bottom:751.613333pt;}
.y193{bottom:754.493333pt;}
.y1fa{bottom:756.413333pt;}
.y10{bottom:757.213333pt;}
.y1dd{bottom:757.533333pt;}
.ya8{bottom:759.773333pt;}
.y73{bottom:761.213333pt;}
.y114{bottom:763.613333pt;}
.y215{bottom:767.933333pt;}
.y47{bottom:769.213333pt;}
.y192{bottom:772.093333pt;}
.y1dc{bottom:772.413333pt;}
.y1f9{bottom:774.013333pt;}
.y110{bottom:776.733333pt;}
.yf{bottom:776.893333pt;}
.y72{bottom:778.813333pt;}
.y191{bottom:785.373333pt;}
.y214{bottom:785.533333pt;}
.y46{bottom:786.813333pt;}
.y1f8{bottom:788.733333pt;}
.y16b{bottom:794.493333pt;}
.y71{bottom:796.413333pt;}
.ye{bottom:799.173333pt;}
.y213{bottom:803.333333pt;}
.y45{bottom:804.453333pt;}
.y190{bottom:806.853333pt;}
.y16a{bottom:812.133333pt;}
.yd{bottom:812.613333pt;}
.y70{bottom:814.053333pt;}
.y10f{bottom:814.373333pt;}
.y212{bottom:817.893333pt;}
.ya7{bottom:818.533333pt;}
.y44{bottom:822.053333pt;}
.y18f{bottom:828.293333pt;}
.y169{bottom:829.733333pt;}
.yc{bottom:831.653333pt;}
.y6f{bottom:831.813333pt;}
.ya6{bottom:836.133333pt;}
.y43{bottom:839.813333pt;}
.y168{bottom:847.333333pt;}
.yd8{bottom:849.413333pt;}
.y18e{bottom:849.893333pt;}
.yb{bottom:852.453333pt;}
.ya5{bottom:853.893333pt;}
.y10e{bottom:855.333333pt;}
.y42{bottom:857.413333pt;}
.y167{bottom:864.933333pt;}
.ya4{bottom:867.013333pt;}
.y18d{bottom:871.333333pt;}
.y10d{bottom:872.933333pt;}
.y41{bottom:875.013333pt;}
.ya{bottom:880.613333pt;}
.y166{bottom:882.693333pt;}
.yd7{bottom:884.613333pt;}
.ya2{bottom:885.413333pt;}
.y10c{bottom:890.693333pt;}
.y40{bottom:892.613333pt;}
.y18c{bottom:892.933333pt;}
.y165{bottom:900.293333pt;}
.yd6{bottom:902.213333pt;}
.y10b{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y3f{bottom:910.213333pt;}
.y164{bottom:917.893333pt;}
.yd5{bottom:919.973333pt;}
.y10a{bottom:925.893333pt;}
.y3e{bottom:927.973333pt;}
.y186{bottom:928.773333pt;}
.y5{bottom:933.893333pt;}
.y163{bottom:935.493333pt;}
.yd4{bottom:937.573333pt;}
.y98{bottom:939.013333pt;}
.y109{bottom:943.493333pt;}
.y3d{bottom:945.573333pt;}
.y162{bottom:948.613333pt;}
.y18a{bottom:950.373333pt;}
.yd3{bottom:955.173333pt;}
.y108{bottom:961.093333pt;}
.y4{bottom:961.733333pt;}
.y3c{bottom:963.173333pt;}
.yd2{bottom:972.773333pt;}
.y107{bottom:974.373333pt;}
.y9e{bottom:974.853333pt;}
.y3b{bottom:980.773333pt;}
.y15f{bottom:984.613333pt;}
.y3{bottom:989.093333pt;}
.y3a{bottom:998.373333pt;}
.y15e{bottom:1006.533333pt;}
.y106{bottom:1010.213333pt;}
.y39{bottom:1016.133333pt;}
.y2{bottom:1016.613333pt;}
.y38{bottom:1042.240000pt;}
.y1{bottom:1046.720000pt;}
.y37{bottom:1061.600000pt;}
.h35{height:9.600000pt;}
.h33{height:9.760000pt;}
.h13{height:17.600000pt;}
.h1a{height:17.632000pt;}
.hf{height:17.760000pt;}
.h34{height:18.768750pt;}
.h24{height:19.200000pt;}
.h5{height:19.360000pt;}
.h1f{height:19.840000pt;}
.h1e{height:20.800000pt;}
.h20{height:20.832000pt;}
.h32{height:20.960000pt;}
.h2b{height:21.120000pt;}
.h28{height:21.280000pt;}
.h2a{height:21.312000pt;}
.h27{height:21.440000pt;}
.h9{height:24.131250pt;}
.h3c{height:27.360000pt;}
.h37{height:27.520000pt;}
.h39{height:27.552000pt;}
.h38{height:27.680000pt;}
.h3d{height:27.712000pt;}
.h23{height:28.000000pt;}
.h22{height:32.480000pt;}
.h10{height:35.200000pt;}
.h25{height:35.232000pt;}
.h16{height:35.360000pt;}
.h17{height:35.392000pt;}
.h14{height:35.840000pt;}
.h19{height:36.000000pt;}
.h1b{height:36.832000pt;}
.h4{height:37.090625pt;}
.h8{height:37.479688pt;}
.ha{height:38.672812pt;}
.hd{height:40.488438pt;}
.hb{height:41.112500pt;}
.h3{height:41.543750pt;}
.h3a{height:42.210625pt;}
.h31{height:42.240000pt;}
.h29{height:42.691250pt;}
.h2f{height:43.072000pt;}
.hc{height:43.108125pt;}
.h6{height:47.310625pt;}
.h11{height:52.800000pt;}
.h12{height:52.992000pt;}
.h1c{height:53.312000pt;}
.he{height:53.600000pt;}
.h3b{height:55.520000pt;}
.h36{height:55.712000pt;}
.h7{height:58.563750pt;}
.h2{height:60.057813pt;}
.h21{height:61.120000pt;}
.h26{height:61.600000pt;}
.h2c{height:62.643750pt;}
.h30{height:63.840000pt;}
.h2e{height:63.970625pt;}
.h2d{height:89.523750pt;}
.h15{height:125.440000pt;}
.h18{height:125.472000pt;}
.h1d{height:206.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:19.680000pt;}
.w7{width:27.520000pt;}
.w1c{width:27.680000pt;}
.w23{width:27.712000pt;}
.w1a{width:27.840000pt;}
.w39{width:33.120000pt;}
.w3c{width:33.152000pt;}
.w38{width:33.920000pt;}
.w37{width:33.952000pt;}
.w3b{width:34.080000pt;}
.wb{width:36.960000pt;}
.wc{width:36.992000pt;}
.wd{width:37.120000pt;}
.we{width:37.440000pt;}
.w10{width:38.912000pt;}
.w2b{width:39.360000pt;}
.w5{width:39.712000pt;}
.w45{width:41.152000pt;}
.w47{width:41.920000pt;}
.w48{width:42.080000pt;}
.w34{width:42.560000pt;}
.w36{width:42.592000pt;}
.w3a{width:42.880000pt;}
.w42{width:43.520000pt;}
.w46{width:44.480000pt;}
.w18{width:44.672000pt;}
.w3e{width:46.400000pt;}
.w20{width:46.560000pt;}
.w26{width:46.592000pt;}
.w32{width:46.752000pt;}
.wa{width:47.200000pt;}
.w3{width:49.152000pt;}
.w29{width:49.280000pt;}
.w2a{width:49.312000pt;}
.w4b{width:50.720000pt;}
.w31{width:52.160000pt;}
.w44{width:53.152000pt;}
.w19{width:56.000000pt;}
.w33{width:60.640000pt;}
.w2f{width:60.672000pt;}
.w41{width:61.280000pt;}
.w12{width:63.680000pt;}
.w11{width:65.440000pt;}
.w8{width:65.952000pt;}
.w24{width:68.160000pt;}
.w1e{width:68.320000pt;}
.w1b{width:68.672000pt;}
.w14{width:73.280000pt;}
.w2c{width:73.760000pt;}
.w3d{width:79.392000pt;}
.w25{width:81.600000pt;}
.w1f{width:81.632000pt;}
.w49{width:84.320000pt;}
.w2e{width:84.480000pt;}
.w13{width:84.512000pt;}
.w3f{width:88.672000pt;}
.wf{width:94.112000pt;}
.w27{width:97.760000pt;}
.w21{width:97.952000pt;}
.w40{width:98.240000pt;}
.w17{width:102.720000pt;}
.w28{width:111.232000pt;}
.w2d{width:113.152000pt;}
.w43{width:166.426667pt;}
.w35{width:180.506667pt;}
.w9{width:188.186667pt;}
.w30{width:193.946667pt;}
.w4a{width:239.586667pt;}
.w4c{width:245.626667pt;}
.w15{width:254.626667pt;}
.w1d{width:323.106667pt;}
.w22{width:324.706667pt;}
.w4{width:636.773333pt;}
.w6{width:646.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:0.960000pt;}
.x3c{left:5.826667pt;}
.x3{left:7.200000pt;}
.x62{left:9.760000pt;}
.x64{left:14.080000pt;}
.x2d{left:17.600000pt;}
.x2e{left:22.880000pt;}
.x14{left:45.280000pt;}
.x1c{left:46.400000pt;}
.x1{left:48.159988pt;}
.x37{left:50.080000pt;}
.x68{left:52.159988pt;}
.x56{left:53.280000pt;}
.x2{left:55.200000pt;}
.x6{left:58.879988pt;}
.x63{left:59.840000pt;}
.xc{left:62.399988pt;}
.x21{left:67.199988pt;}
.x6b{left:72.159988pt;}
.x15{left:73.440000pt;}
.x2f{left:76.512000pt;}
.xf{left:77.631988pt;}
.x1d{left:86.112000pt;}
.x11{left:95.552000pt;}
.x54{left:97.471988pt;}
.xb{left:99.231988pt;}
.x4{left:105.152000pt;}
.x7{left:108.351988pt;}
.x3d{left:109.632000pt;}
.x69{left:115.391988pt;}
.x76{left:128.672000pt;}
.x57{left:133.312000pt;}
.x16{left:140.026667pt;}
.x55{left:142.906655pt;}
.x30{left:145.306667pt;}
.x1e{left:152.186667pt;}
.x4e{left:153.146667pt;}
.x33{left:159.706667pt;}
.x40{left:162.426667pt;}
.x38{left:163.866667pt;}
.x53{left:166.746655pt;}
.x77{left:175.866667pt;}
.x18{left:177.786667pt;}
.x5{left:180.194667pt;}
.x10{left:184.186655pt;}
.x71{left:186.106655pt;}
.x4f{left:187.866667pt;}
.x12{left:189.634667pt;}
.xa{left:194.266655pt;}
.x34{left:209.786667pt;}
.x39{left:211.226667pt;}
.x8{left:212.186655pt;}
.x19{left:215.386667pt;}
.x1f{left:216.506667pt;}
.x50{left:222.426667pt;}
.x31{left:227.546667pt;}
.x1a{left:253.026667pt;}
.x41{left:257.026667pt;}
.x3a{left:258.466667pt;}
.x35{left:259.746667pt;}
.x58{left:269.826667pt;}
.x32{left:274.946667pt;}
.x3b{left:286.786667pt;}
.x1b{left:290.786667pt;}
.x36{left:299.746667pt;}
.x20{left:301.666667pt;}
.x3e{left:304.226667pt;}
.x70{left:307.106655pt;}
.x72{left:319.586655pt;}
.x78{left:327.106667pt;}
.x17{left:328.866667pt;}
.x51{left:334.306667pt;}
.x6a{left:340.866655pt;}
.x3f{left:342.146667pt;}
.x52{left:369.986655pt;}
.x67{left:372.066655pt;}
.x9{left:396.893322pt;}
.xd{left:420.573322pt;}
.x22{left:421.693333pt;}
.x60{left:426.493322pt;}
.x66{left:428.893322pt;}
.x6d{left:430.973322pt;}
.xe{left:434.973322pt;}
.x5d{left:435.933322pt;}
.x13{left:439.773322pt;}
.x23{left:442.173333pt;}
.x43{left:444.573322pt;}
.x2a{left:448.893333pt;}
.x45{left:468.573322pt;}
.x46{left:477.373322pt;}
.x47{left:482.493333pt;}
.x73{left:505.693333pt;}
.x2b{left:517.853333pt;}
.x5e{left:520.253322pt;}
.x48{left:525.693333pt;}
.x61{left:539.613322pt;}
.x24{left:545.693333pt;}
.x74{left:552.893333pt;}
.x6e{left:558.693322pt;}
.x4a{left:560.453333pt;}
.x5a{left:567.973333pt;}
.x44{left:583.173322pt;}
.x25{left:591.013333pt;}
.x4b{left:595.013333pt;}
.x2c{left:600.133333pt;}
.x5b{left:608.133333pt;}
.x29{left:619.333333pt;}
.x4c{left:628.773333pt;}
.x27{left:647.653333pt;}
.x4d{left:663.333333pt;}
.x28{left:676.133333pt;}
.x59{left:693.253333pt;}
.x75{left:698.693333pt;}
.x6c{left:700.133322pt;}
.x49{left:706.853333pt;}
.x6f{left:722.239988pt;}
.x65{left:728.639988pt;}
.x5f{left:743.359988pt;}
.x5c{left:744.639988pt;}
.x42{left:754.559988pt;}
}




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