
    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_a70b9f1ccb2ee6a42eb35795.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_569377739af61c35687e4f5f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_711821865f461088ecb4526f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.945801;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_c087493bdd24dc6833f94b71.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_1a031424243190ad18a990ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.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_208d2c4a68993e2a4dd372af.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2fb6220919953fd1ddac2d2b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;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_522909d285027ce9409fd861.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_1bb3536cdf0f461d94cbc26b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_707ce9dc4ea08897fbe5e2a8.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_07ef28d7c2affaf5a07b33e4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.955078;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:fff;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.fff{font-family:fff;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-79.920000px;}
.v2{vertical-align:-69.120000px;}
.v3{vertical-align:-65.520000px;}
.v0{vertical-align:0.000000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls2a{letter-spacing:-0.774000px;}
.ls1e{letter-spacing:-0.666000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.342000px;}
.lsa{letter-spacing:-0.303600px;}
.ls30{letter-spacing:-0.269400px;}
.ls1f{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.053280px;}
.ls22{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.014400px;}
.ls11{letter-spacing:0.018000px;}
.ls21{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls2f{letter-spacing:0.108000px;}
.ls0{letter-spacing:0.131040px;}
.ls3{letter-spacing:0.149760px;}
.lsb{letter-spacing:0.155400px;}
.ls5{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.188400px;}
.ls2c{letter-spacing:0.198000px;}
.ls17{letter-spacing:0.234000px;}
.ls6{letter-spacing:0.257040px;}
.ls23{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.276480px;}
.ls28{letter-spacing:0.298800px;}
.ls29{letter-spacing:0.305400px;}
.ls8{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.468000px;}
.ls1d{letter-spacing:0.513600px;}
.ls1a{letter-spacing:0.540000px;}
.ls27{letter-spacing:0.666000px;}
.ls24{letter-spacing:0.828000px;}
.lse{letter-spacing:0.900000px;}
.ls1b{letter-spacing:1.080000px;}
.ls2b{letter-spacing:4.500000px;}
.lsf{letter-spacing:8.586720px;}
.ls13{letter-spacing:8.706720px;}
.ls7{letter-spacing:11.700000px;}
.ls26{letter-spacing:15.066720px;}
.ls25{letter-spacing:44.562720px;}
.ls20{letter-spacing:114.096000px;}
.ls4{letter-spacing:195.996000px;}
.ls15{letter-spacing:604.956000px;}
.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;}
}
.ws8{word-spacing:-70.560000px;}
.wsb{word-spacing:-59.760000px;}
.ws1c{word-spacing:-16.269240px;}
.ws3{word-spacing:-16.119240px;}
.ws1b{word-spacing:-16.020000px;}
.wse{word-spacing:-15.978240px;}
.ws19{word-spacing:-15.768000px;}
.ws1a{word-spacing:-15.606000px;}
.ws14{word-spacing:-15.453600px;}
.ws7{word-spacing:-15.300000px;}
.ws1e{word-spacing:-15.238800px;}
.ws1d{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.274000px;}
.ws1f{word-spacing:-13.968000px;}
.ws11{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.734000px;}
.ws12{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.ws16{word-spacing:-13.140000px;}
.ws6{word-spacing:-12.780000px;}
.ws13{word-spacing:-12.672000px;}
.ws20{word-spacing:-11.790600px;}
.ws0{word-spacing:-11.625840px;}
.ws2{word-spacing:-10.064160px;}
.ws1{word-spacing:-9.760560px;}
.ws9{word-spacing:0.000000px;}
._32{margin-left:-16.097280px;}
._15{margin-left:-3.373920px;}
._19{margin-left:-2.243520px;}
._1{margin-left:-1.153440px;}
._0{width:1.041360px;}
._3{width:2.301600px;}
._2{width:3.381600px;}
._16{width:4.482720px;}
._14{width:5.623200px;}
._1a{width:6.648480px;}
._12{width:7.747920px;}
._1b{width:8.859600px;}
._20{width:9.920160px;}
._10{width:11.684160px;}
._1d{width:13.034400px;}
._9{width:14.620320px;}
._6{width:16.307280px;}
._a{width:18.096480px;}
._b{width:19.227600px;}
._7{width:21.112560px;}
._8{width:22.163760px;}
._e{width:23.873040px;}
._d{width:25.435440px;}
._11{width:27.403680px;}
._5{width:28.933920px;}
._f{width:30.620880px;}
._c{width:31.981440px;}
._18{width:33.074640px;}
._2a{width:34.246560px;}
._21{width:35.335440px;}
._17{width:36.653040px;}
._2e{width:37.705200px;}
._1f{width:38.844000px;}
._31{width:39.919680px;}
._24{width:40.935600px;}
._1c{width:42.369840px;}
._1e{width:43.907040px;}
._22{width:46.015200px;}
._23{width:47.150640px;}
._2d{width:48.584880px;}
._2c{width:50.019120px;}
._4{width:51.728160px;}
._25{width:53.126640px;}
._2b{width:54.960720px;}
._27{width:56.234160px;}
._26{width:60.606480px;}
._29{width:62.084640px;}
._28{width:63.357600px;}
._2f{width:64.720080px;}
._30{width:65.892720px;}
._13{width:68.040720px;}
.fc2{color:transparent;}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsb{font-size:5.760000px;}
.fs6{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsa{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.y27e{bottom:0.180000px;}
.y75{bottom:1.980000px;}
.y154{bottom:2.700000px;}
.yc6{bottom:2.880000px;}
.y14f{bottom:3.060000px;}
.y152{bottom:3.240000px;}
.y20a{bottom:3.285000px;}
.y71{bottom:3.600000px;}
.y1fa{bottom:3.780000px;}
.y209{bottom:3.825000px;}
.y3{bottom:4.320000px;}
.y138{bottom:4.680000px;}
.y2{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.y73{bottom:7.200000px;}
.y144{bottom:9.000000px;}
.y15e{bottom:9.900000px;}
.y212{bottom:10.080000px;}
.y1da{bottom:10.260000px;}
.y1d2{bottom:10.440000px;}
.y13b{bottom:10.620000px;}
.y16a{bottom:10.800000px;}
.y1b1{bottom:11.160000px;}
.y15b{bottom:11.520000px;}
.y27f{bottom:12.060000px;}
.y74{bottom:12.240000px;}
.y14c{bottom:12.420000px;}
.y143{bottom:15.120000px;}
.y16f{bottom:16.740000px;}
.y1d5{bottom:17.820000px;}
.y1d3{bottom:18.000000px;}
.y1e0{bottom:18.045000px;}
.yc5{bottom:18.360000px;}
.y1cc{bottom:18.390000px;}
.y140{bottom:18.540000px;}
.y1ad{bottom:19.080000px;}
.y137{bottom:20.160000px;}
.y222{bottom:20.340000px;}
.y20f{bottom:21.600000px;}
.y219{bottom:22.140000px;}
.y1d8{bottom:25.380000px;}
.y1dd{bottom:25.560000px;}
.y1b3{bottom:26.100000px;}
.y1ca{bottom:26.130000px;}
.y169{bottom:26.280000px;}
.y1b0{bottom:26.820000px;}
.y15a{bottom:27.000000px;}
.y14b{bottom:27.900000px;}
.y1f8{bottom:32.760000px;}
.y8{bottom:32.940000px;}
.y1dc{bottom:33.120000px;}
.yc4{bottom:33.840000px;}
.y1cb{bottom:33.870000px;}
.y13f{bottom:34.020000px;}
.y1c5{bottom:34.065000px;}
.y1ac{bottom:34.560000px;}
.y1a9{bottom:35.145000px;}
.y136{bottom:35.640000px;}
.y221{bottom:35.820000px;}
.y20e{bottom:37.080000px;}
.y218{bottom:37.620000px;}
.y1d7{bottom:40.500000px;}
.y203{bottom:41.445000px;}
.yc7{bottom:41.760000px;}
.y1af{bottom:42.300000px;}
.y159{bottom:42.480000px;}
.y1a2{bottom:43.380000px;}
.y14a{bottom:43.560000px;}
.y157{bottom:46.980000px;}
.y1d6{bottom:48.060000px;}
.y1f7{bottom:48.240000px;}
.y6{bottom:48.600000px;}
.y276{bottom:49.320000px;}
.yc3{bottom:49.500000px;}
.y1a6{bottom:50.805000px;}
.y135{bottom:51.120000px;}
.y148{bottom:51.300000px;}
.y220{bottom:51.480000px;}
.y20d{bottom:52.740000px;}
.y217{bottom:53.100000px;}
.y202{bottom:56.925000px;}
.y1b5{bottom:57.240000px;}
.y168{bottom:57.285000px;}
.y158{bottom:58.140000px;}
.y19f{bottom:58.860000px;}
.y149{bottom:59.040000px;}
.y1f6{bottom:63.720000px;}
.yc2{bottom:64.980000px;}
.y16c{bottom:65.025000px;}
.y1b6{bottom:65.160000px;}
.y1a8{bottom:66.285000px;}
.y134{bottom:66.780000px;}
.y20c{bottom:68.220000px;}
.y216{bottom:68.580000px;}
.y201{bottom:72.585000px;}
.y5{bottom:72.900000px;}
.y167{bottom:72.945000px;}
.y1a1{bottom:74.520000px;}
.y1f5{bottom:79.200000px;}
.yc1{bottom:80.460000px;}
.y16b{bottom:80.685000px;}
.y19c{bottom:89.100000px;}
.y1f2{bottom:89.640000px;}
.y242{bottom:90.540000px;}
.y150{bottom:91.080000px;}
.y281{bottom:91.260000px;}
.y280{bottom:93.060000px;}
.y147{bottom:93.600000px;}
.y24f{bottom:94.320000px;}
.y27d{bottom:94.500000px;}
.y24e{bottom:95.580000px;}
.ye8{bottom:99.180000px;}
.y4b{bottom:99.360000px;}
.yaf{bottom:102.420000px;}
.y273{bottom:105.480000px;}
.y19b{bottom:106.380000px;}
.y1f1{bottom:106.920000px;}
.y241{bottom:107.820000px;}
.y14e{bottom:110.340000px;}
.y103{bottom:111.420000px;}
.y24d{bottom:112.860000px;}
.y4a{bottom:114.120000px;}
.ye7{bottom:116.460000px;}
.y6f{bottom:116.640000px;}
.yae{bottom:119.700000px;}
.y1cf{bottom:121.680000px;}
.y272{bottom:122.760000px;}
.y19a{bottom:123.480000px;}
.y1f0{bottom:124.200000px;}
.y240{bottom:125.100000px;}
.y102{bottom:128.700000px;}
.y49{bottom:128.880000px;}
.y24c{bottom:130.140000px;}
.y27c{bottom:130.500000px;}
.y6e{bottom:133.920000px;}
.ye6{bottom:134.820000px;}
.yad{bottom:136.980000px;}
.y1ce{bottom:138.960000px;}
.y271{bottom:140.040000px;}
.y199{bottom:140.760000px;}
.y1ef{bottom:141.300000px;}
.y23f{bottom:142.380000px;}
.y14d{bottom:142.560000px;}
.y48{bottom:143.460000px;}
.y101{bottom:145.980000px;}
.y24b{bottom:147.420000px;}
.y27b{bottom:147.780000px;}
.y6d{bottom:151.200000px;}
.ye5{bottom:152.100000px;}
.yac{bottom:154.260000px;}
.y1cd{bottom:156.240000px;}
.y270{bottom:157.140000px;}
.y198{bottom:158.040000px;}
.y47{bottom:158.220000px;}
.y1ee{bottom:158.580000px;}
.y146{bottom:159.120000px;}
.y23e{bottom:159.480000px;}
.y100{bottom:163.260000px;}
.y24a{bottom:164.700000px;}
.y27a{bottom:164.880000px;}
.y6c{bottom:168.480000px;}
.ye4{bottom:169.200000px;}
.y1c9{bottom:171.360000px;}
.yab{bottom:171.540000px;}
.y46{bottom:172.800000px;}
.y26f{bottom:174.420000px;}
.y197{bottom:175.320000px;}
.y145{bottom:175.860000px;}
.y23d{bottom:176.760000px;}
.yff{bottom:180.540000px;}
.y249{bottom:181.980000px;}
.y279{bottom:182.160000px;}
.y6b{bottom:185.610000px;}
.ye3{bottom:186.510000px;}
.y45{bottom:187.590000px;}
.yaa{bottom:188.670000px;}
.y26e{bottom:191.730000px;}
.y13e{bottom:192.450000px;}
.y196{bottom:192.630000px;}
.y1ed{bottom:193.170000px;}
.y23c{bottom:194.070000px;}
.y278{bottom:196.230000px;}
.yfe{bottom:197.670000px;}
.y248{bottom:199.110000px;}
.y44{bottom:202.170000px;}
.y6a{bottom:202.890000px;}
.ye2{bottom:203.790000px;}
.ya9{bottom:205.950000px;}
.y26d{bottom:209.010000px;}
.y195{bottom:209.730000px;}
.y1ec{bottom:210.450000px;}
.y23b{bottom:211.350000px;}
.yfd{bottom:214.950000px;}
.y247{bottom:216.390000px;}
.y43{bottom:216.930000px;}
.y1c8{bottom:219.090000px;}
.y69{bottom:220.170000px;}
.ye1{bottom:221.070000px;}
.y142{bottom:221.250000px;}
.ya8{bottom:223.230000px;}
.y26c{bottom:226.290000px;}
.y194{bottom:227.010000px;}
.y1eb{bottom:227.730000px;}
.y23a{bottom:228.630000px;}
.y42{bottom:231.510000px;}
.yfc{bottom:232.230000px;}
.y246{bottom:233.670000px;}
.y68{bottom:237.450000px;}
.y141{bottom:237.990000px;}
.ye0{bottom:239.430000px;}
.ya7{bottom:240.510000px;}
.y26b{bottom:243.570000px;}
.y193{bottom:244.290000px;}
.y1ea{bottom:244.830000px;}
.y239{bottom:245.910000px;}
.y41{bottom:246.270000px;}
.yfb{bottom:249.510000px;}
.y245{bottom:250.950000px;}
.y13d{bottom:254.550000px;}
.y67{bottom:254.730000px;}
.ydf{bottom:256.530000px;}
.ya6{bottom:257.790000px;}
.y277{bottom:258.330000px;}
.y26a{bottom:260.670000px;}
.y40{bottom:260.850000px;}
.y192{bottom:261.570000px;}
.y1e9{bottom:262.110000px;}
.y238{bottom:263.010000px;}
.yfa{bottom:266.790000px;}
.y244{bottom:268.230000px;}
.y13c{bottom:271.290000px;}
.y66{bottom:272.010000px;}
.yde{bottom:273.810000px;}
.ya5{bottom:275.070000px;}
.y3f{bottom:275.430000px;}
.y269{bottom:277.950000px;}
.y191{bottom:278.850000px;}
.y1e8{bottom:279.390000px;}
.y237{bottom:280.290000px;}
.y243{bottom:282.270000px;}
.yf9{bottom:284.070000px;}
.y133{bottom:287.850000px;}
.y65{bottom:289.110000px;}
.y275{bottom:289.470000px;}
.y3e{bottom:290.190000px;}
.ydd{bottom:291.090000px;}
.ya4{bottom:292.170000px;}
.y268{bottom:295.230000px;}
.y190{bottom:296.130000px;}
.y1e7{bottom:296.670000px;}
.y236{bottom:297.570000px;}
.yf8{bottom:301.170000px;}
.y3d{bottom:304.770000px;}
.y64{bottom:306.390000px;}
.ydc{bottom:308.370000px;}
.ya3{bottom:309.450000px;}
.y267{bottom:312.510000px;}
.y18f{bottom:313.230000px;}
.y1e6{bottom:313.950000px;}
.y1c7{bottom:314.490000px;}
.y235{bottom:314.850000px;}
.yf7{bottom:318.450000px;}
.y3c{bottom:319.530000px;}
.y13a{bottom:320.070000px;}
.y63{bottom:323.670000px;}
.ya2{bottom:326.730000px;}
.y266{bottom:329.790000px;}
.y18e{bottom:330.510000px;}
.y1e5{bottom:331.230000px;}
.y234{bottom:332.130000px;}
.y3b{bottom:334.110000px;}
.yf6{bottom:335.730000px;}
.y139{bottom:336.630000px;}
.y62{bottom:340.950000px;}
.ya1{bottom:344.010000px;}
.y265{bottom:347.070000px;}
.y18d{bottom:347.790000px;}
.y1e4{bottom:348.330000px;}
.y3a{bottom:348.870000px;}
.y233{bottom:349.230000px;}
.y274{bottom:351.390000px;}
.yf5{bottom:353.010000px;}
.y132{bottom:353.370000px;}
.y61{bottom:358.230000px;}
.ydb{bottom:361.110000px;}
.ya0{bottom:361.290000px;}
.y1c6{bottom:362.190000px;}
.y39{bottom:363.450000px;}
.y264{bottom:364.170000px;}
.y18c{bottom:365.070000px;}
.y1e3{bottom:365.610000px;}
.y232{bottom:366.510000px;}
.y131{bottom:369.930000px;}
.yf4{bottom:370.290000px;}
.y60{bottom:375.330000px;}
.y38{bottom:378.210000px;}
.yda{bottom:378.390000px;}
.y9f{bottom:378.570000px;}
.y263{bottom:381.450000px;}
.y18b{bottom:382.350000px;}
.y1e2{bottom:382.530000px;}
.y231{bottom:383.790000px;}
.y130{bottom:386.670000px;}
.yf3{bottom:387.570000px;}
.y5f{bottom:392.610000px;}
.y37{bottom:392.790000px;}
.y1c4{bottom:394.230000px;}
.y9e{bottom:395.670000px;}
.y1e1{bottom:398.370000px;}
.y262{bottom:398.730000px;}
.y18a{bottom:399.630000px;}
.y230{bottom:401.070000px;}
.y12f{bottom:403.230000px;}
.yf2{bottom:404.670000px;}
.y36{bottom:407.550000px;}
.y5e{bottom:409.890000px;}
.y9d{bottom:412.950000px;}
.y1df{bottom:413.490000px;}
.yd9{bottom:414.030000px;}
.y261{bottom:416.010000px;}
.y189{bottom:416.730000px;}
.y22f{bottom:418.350000px;}
.yf1{bottom:421.950000px;}
.y35{bottom:422.130000px;}
.y5d{bottom:427.215000px;}
.y9c{bottom:430.275000px;}
.yd8{bottom:431.355000px;}
.y260{bottom:433.335000px;}
.y188{bottom:434.055000px;}
.y22e{bottom:435.675000px;}
.y34{bottom:436.755000px;}
.y12e{bottom:438.195000px;}
.yf0{bottom:439.275000px;}
.y1c3{bottom:441.975000px;}
.y5c{bottom:444.495000px;}
.y1de{bottom:444.855000px;}
.y9b{bottom:447.555000px;}
.yd7{bottom:448.635000px;}
.y187{bottom:451.335000px;}
.y33{bottom:451.515000px;}
.y22d{bottom:452.775000px;}
.yef{bottom:456.555000px;}
.y5b{bottom:461.775000px;}
.y9a{bottom:464.835000px;}
.yd6{bottom:465.735000px;}
.y32{bottom:466.095000px;}
.y186{bottom:468.615000px;}
.y22c{bottom:470.055000px;}
.y12d{bottom:472.755000px;}
.yee{bottom:473.835000px;}
.y1c2{bottom:476.895000px;}
.y5a{bottom:478.875000px;}
.y31{bottom:480.855000px;}
.y99{bottom:481.935000px;}
.yd5{bottom:483.015000px;}
.y185{bottom:485.895000px;}
.y22b{bottom:487.335000px;}
.y25f{bottom:488.055000px;}
.y12c{bottom:490.035000px;}
.yed{bottom:490.935000px;}
.y1c1{bottom:494.175000px;}
.y30{bottom:495.435000px;}
.y59{bottom:496.155000px;}
.y98{bottom:499.215000px;}
.yd4{bottom:500.295000px;}
.y184{bottom:503.175000px;}
.y22a{bottom:504.615000px;}
.y106{bottom:506.055000px;}
.y1db{bottom:506.235000px;}
.y12b{bottom:507.135000px;}
.yec{bottom:508.215000px;}
.y2f{bottom:510.195000px;}
.y1c0{bottom:511.455000px;}
.y58{bottom:513.435000px;}
.y97{bottom:516.495000px;}
.yd3{bottom:518.655000px;}
.y183{bottom:520.275000px;}
.y229{bottom:521.895000px;}
.y105{bottom:524.415000px;}
.y2e{bottom:524.775000px;}
.yeb{bottom:525.495000px;}
.y1bf{bottom:528.735000px;}
.y57{bottom:530.715000px;}
.y96{bottom:533.775000px;}
.yd2{bottom:535.935000px;}
.y182{bottom:537.555000px;}
.y228{bottom:539.175000px;}
.y2d{bottom:539.535000px;}
.y104{bottom:541.695000px;}
.yea{bottom:542.775000px;}
.y1be{bottom:545.835000px;}
.y56{bottom:547.995000px;}
.y95{bottom:551.055000px;}
.y1d9{bottom:552.675000px;}
.yd1{bottom:553.035000px;}
.y2c{bottom:554.115000px;}
.y181{bottom:554.835000px;}
.ybf{bottom:555.555000px;}
.y227{bottom:556.095000px;}
.y12a{bottom:558.975000px;}
.ye9{bottom:560.055000px;}
.y1bd{bottom:563.115000px;}
.y55{bottom:565.275000px;}
.y94{bottom:568.335000px;}
.y2b{bottom:568.695000px;}
.yd0{bottom:570.315000px;}
.y226{bottom:571.935000px;}
.y180{bottom:572.115000px;}
.y129{bottom:576.255000px;}
.ybe{bottom:577.335000px;}
.y1bc{bottom:580.395000px;}
.y54{bottom:582.375000px;}
.y2a{bottom:583.455000px;}
.y93{bottom:585.435000px;}
.y21f{bottom:587.055000px;}
.ycf{bottom:587.595000px;}
.y17f{bottom:589.395000px;}
.y128{bottom:593.355000px;}
.ybd{bottom:594.435000px;}
.y1bb{bottom:597.675000px;}
.y29{bottom:598.035000px;}
.y53{bottom:599.655000px;}
.y92{bottom:602.715000px;}
.y225{bottom:603.255000px;}
.yce{bottom:604.875000px;}
.y17e{bottom:606.495000px;}
.y127{bottom:610.635000px;}
.ybc{bottom:611.715000px;}
.y28{bottom:612.795000px;}
.y1d4{bottom:614.055000px;}
.y1ba{bottom:614.955000px;}
.y52{bottom:616.935000px;}
.y91{bottom:619.995000px;}
.y224{bottom:621.255000px;}
.ycd{bottom:622.155000px;}
.y17d{bottom:623.775000px;}
.y27{bottom:627.375000px;}
.y126{bottom:627.915000px;}
.ybb{bottom:628.995000px;}
.y1b9{bottom:632.235000px;}
.y51{bottom:634.215000px;}
.y90{bottom:637.275000px;}
.ycc{bottom:639.435000px;}
.y17c{bottom:641.055000px;}
.y26{bottom:642.135000px;}
.y125{bottom:645.195000px;}
.yba{bottom:646.275000px;}
.y1b8{bottom:649.335000px;}
.y50{bottom:651.495000px;}
.y223{bottom:653.115000px;}
.y8f{bottom:654.555000px;}
.ycb{bottom:656.535000px;}
.y25{bottom:656.715000px;}
.y17b{bottom:658.335000px;}
.y124{bottom:662.475000px;}
.yb9{bottom:663.555000px;}
.y1b7{bottom:666.645000px;}
.y4f{bottom:668.625000px;}
.y215{bottom:669.345000px;}
.y24{bottom:671.505000px;}
.y8e{bottom:671.865000px;}
.yca{bottom:673.845000px;}
.y1d1{bottom:675.465000px;}
.y17a{bottom:675.645000px;}
.y123{bottom:679.785000px;}
.yb8{bottom:680.865000px;}
.y1b4{bottom:681.765000px;}
.y21e{bottom:685.725000px;}
.y4e{bottom:685.905000px;}
.y23{bottom:686.085000px;}
.y8d{bottom:688.965000px;}
.yc9{bottom:691.125000px;}
.y179{bottom:692.925000px;}
.y122{bottom:696.885000px;}
.yb7{bottom:697.965000px;}
.y22{bottom:700.665000px;}
.y4d{bottom:703.185000px;}
.y21d{bottom:703.725000px;}
.y8c{bottom:706.245000px;}
.yc8{bottom:708.405000px;}
.y178{bottom:710.025000px;}
.y70{bottom:710.745000px;}
.y121{bottom:714.165000px;}
.yb6{bottom:715.245000px;}
.y21{bottom:717.765000px;}
.y21c{bottom:719.925000px;}
.y4c{bottom:720.465000px;}
.yc0{bottom:722.445000px;}
.y8b{bottom:723.525000px;}
.y177{bottom:727.305000px;}
.y120{bottom:731.445000px;}
.yb5{bottom:732.525000px;}
.y21b{bottom:736.125000px;}
.y1d0{bottom:736.845000px;}
.y20{bottom:737.745000px;}
.y8a{bottom:740.805000px;}
.y176{bottom:744.585000px;}
.y11f{bottom:748.725000px;}
.yb4{bottom:749.805000px;}
.y21a{bottom:752.505000px;}
.y1f{bottom:755.025000px;}
.y89{bottom:758.085000px;}
.y1b2{bottom:760.605000px;}
.y175{bottom:761.865000px;}
.y11e{bottom:766.005000px;}
.yb3{bottom:767.085000px;}
.y1e{bottom:770.505000px;}
.y88{bottom:775.365000px;}
.y174{bottom:779.145000px;}
.y1d{bottom:780.765000px;}
.y11d{bottom:783.285000px;}
.yb2{bottom:784.365000px;}
.y214{bottom:786.705000px;}
.y87{bottom:792.465000px;}
.y173{bottom:796.425000px;}
.y1c{bottom:798.045000px;}
.y11c{bottom:800.385000px;}
.yb1{bottom:801.465000px;}
.y213{bottom:803.085000px;}
.y25e{bottom:809.745000px;}
.y172{bottom:813.525000px;}
.y86{bottom:814.245000px;}
.y1b{bottom:815.325000px;}
.y11b{bottom:817.665000px;}
.yb0{bottom:818.745000px;}
.y211{bottom:821.085000px;}
.y1ab{bottom:823.785000px;}
.y25d{bottom:827.025000px;}
.y171{bottom:829.185000px;}
.y1a{bottom:832.605000px;}
.y11a{bottom:834.945000px;}
.y85{bottom:836.025000px;}
.y170{bottom:839.445000px;}
.y25c{bottom:844.305000px;}
.y19{bottom:849.885000px;}
.y119{bottom:852.225000px;}
.y210{bottom:852.765000px;}
.y84{bottom:853.305000px;}
.y166{bottom:854.565000px;}
.y1ae{bottom:856.005000px;}
.y25b{bottom:861.585000px;}
.y18{bottom:866.985000px;}
.y118{bottom:869.505000px;}
.y83{bottom:870.585000px;}
.y200{bottom:870.765000px;}
.y25a{bottom:878.685000px;}
.y17{bottom:884.265000px;}
.y117{bottom:886.605000px;}
.y20b{bottom:887.145000px;}
.y82{bottom:887.685000px;}
.y1a5{bottom:888.045000px;}
.y259{bottom:895.965000px;}
.y16e{bottom:898.845000px;}
.y16{bottom:901.545000px;}
.y116{bottom:903.885000px;}
.y81{bottom:904.965000px;}
.y208{bottom:905.145000px;}
.y258{bottom:913.290000px;}
.y16d{bottom:915.630000px;}
.y15{bottom:918.870000px;}
.y1aa{bottom:920.310000px;}
.y115{bottom:921.210000px;}
.y80{bottom:922.290000px;}
.y207{bottom:923.190000px;}
.y257{bottom:930.570000px;}
.y165{bottom:932.190000px;}
.y14{bottom:936.150000px;}
.y114{bottom:938.490000px;}
.y7f{bottom:939.570000px;}
.y206{bottom:941.190000px;}
.y256{bottom:947.850000px;}
.y164{bottom:948.930000px;}
.y1a7{bottom:952.530000px;}
.y13{bottom:953.430000px;}
.y113{bottom:955.770000px;}
.y7e{bottom:956.850000px;}
.y205{bottom:959.190000px;}
.y255{bottom:965.130000px;}
.y161{bottom:965.490000px;}
.y12{bottom:971.250000px;}
.y112{bottom:973.050000px;}
.y7d{bottom:974.130000px;}
.y204{bottom:977.190000px;}
.y163{bottom:982.230000px;}
.y111{bottom:990.150000px;}
.y7c{bottom:991.230000px;}
.y11{bottom:991.950000px;}
.y1f4{bottom:995.190000px;}
.y162{bottom:998.790000px;}
.y254{bottom:999.510000px;}
.y19e{bottom:1000.230000px;}
.y110{bottom:1007.430000px;}
.y7b{bottom:1008.510000px;}
.y10{bottom:1012.650000px;}
.y1ff{bottom:1013.190000px;}
.y160{bottom:1015.530000px;}
.y253{bottom:1016.790000px;}
.y10f{bottom:1024.710000px;}
.y7a{bottom:1025.790000px;}
.y1fe{bottom:1029.390000px;}
.y15f{bottom:1032.090000px;}
.y1a4{bottom:1032.450000px;}
.yf{bottom:1033.350000px;}
.y252{bottom:1034.070000px;}
.y10e{bottom:1041.990000px;}
.y79{bottom:1043.070000px;}
.y1fd{bottom:1045.590000px;}
.y156{bottom:1048.830000px;}
.y251{bottom:1051.350000px;}
.ye{bottom:1054.050000px;}
.y10d{bottom:1059.270000px;}
.y78{bottom:1060.350000px;}
.y1fc{bottom:1063.590000px;}
.y1a3{bottom:1064.490000px;}
.y250{bottom:1072.950000px;}
.y10c{bottom:1076.550000px;}
.y77{bottom:1077.630000px;}
.y15d{bottom:1079.250000px;}
.y1fb{bottom:1081.590000px;}
.y10b{bottom:1093.650000px;}
.yd{bottom:1094.730000px;}
.y15c{bottom:1095.990000px;}
.y1a0{bottom:1096.710000px;}
.y1f9{bottom:1099.590000px;}
.y10a{bottom:1110.930000px;}
.yc{bottom:1112.010000px;}
.y155{bottom:1112.550000px;}
.y1f3{bottom:1117.590000px;}
.y109{bottom:1128.210000px;}
.y19d{bottom:1128.930000px;}
.yb{bottom:1129.290000px;}
.y108{bottom:1145.490000px;}
.y153{bottom:1145.850000px;}
.ya{bottom:1146.570000px;}
.y151{bottom:1161.360000px;}
.y107{bottom:1162.800000px;}
.y9{bottom:1163.880000px;}
.y4{bottom:1184.940000px;}
.y76{bottom:1187.820000px;}
.y72{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h25{height:5.653125px;}
.h4f{height:5.729063px;}
.h27{height:14.796000px;}
.h1e{height:15.480000px;}
.h23{height:15.516000px;}
.h24{height:15.660000px;}
.h2c{height:15.696000px;}
.h26{height:16.560000px;}
.h45{height:17.100000px;}
.h47{height:17.136000px;}
.h43{height:17.280000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h17{height:20.520000px;}
.h8{height:21.420000px;}
.h18{height:27.210938px;}
.h19{height:27.228516px;}
.h22{height:27.720000px;}
.h29{height:29.340000px;}
.h2e{height:29.678906px;}
.h3c{height:30.060000px;}
.h41{height:30.240000px;}
.h40{height:30.276000px;}
.hf{height:30.476250px;}
.h20{height:30.960000px;}
.h31{height:31.140000px;}
.h34{height:31.176000px;}
.h4d{height:32.760000px;}
.h5{height:36.462656px;}
.h3{height:40.964766px;}
.h3b{height:40.985156px;}
.h12{height:42.134062px;}
.h2d{height:43.200000px;}
.h3f{height:45.180000px;}
.h13{height:45.828281px;}
.h39{height:46.440000px;}
.h3a{height:46.476000px;}
.h33{height:46.620000px;}
.h38{height:46.656000px;}
.h1a{height:47.344922px;}
.h4e{height:48.616875px;}
.h9{height:50.068125px;}
.h11{height:50.146523px;}
.h14{height:50.171484px;}
.h4b{height:52.971680px;}
.h4{height:52.998047px;}
.h2f{height:53.573906px;}
.h44{height:53.709961px;}
.he{height:58.621992px;}
.hb{height:58.651172px;}
.h6{height:59.439023px;}
.h1b{height:60.226875px;}
.h3e{height:60.300000px;}
.h3d{height:60.336000px;}
.h1d{height:61.423863px;}
.h4c{height:61.920000px;}
.h36{height:62.100000px;}
.hd{height:62.261719px;}
.h35{height:63.180000px;}
.h2a{height:65.520000px;}
.ha{height:65.884219px;}
.h10{height:70.628906px;}
.hc{height:72.562500px;}
.h15{height:73.080000px;}
.h21{height:77.580000px;}
.h37{height:77.760000px;}
.h28{height:79.380000px;}
.h1f{height:81.000000px;}
.h4a{height:81.576000px;}
.h1c{height:93.060000px;}
.h2b{height:93.276000px;}
.h48{height:99.540000px;}
.h49{height:100.440000px;}
.h32{height:111.096000px;}
.h42{height:121.680000px;}
.h46{height:123.516000px;}
.h30{height:127.620000px;}
.h16{height:284.445000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.060000px;}
.wc{width:32.040000px;}
.w7{width:65.736000px;}
.wd{width:67.680000px;}
.w16{width:68.220000px;}
.w27{width:84.960000px;}
.w23{width:87.480000px;}
.w1f{width:106.920000px;}
.w17{width:118.476000px;}
.wf{width:121.500000px;}
.w13{width:121.680000px;}
.w1b{width:124.920000px;}
.w10{width:144.576000px;}
.w14{width:144.756000px;}
.w19{width:146.376000px;}
.w1c{width:149.436000px;}
.w20{width:167.970000px;}
.w1a{width:169.590000px;}
.w18{width:171.180000px;}
.w1d{width:178.230000px;}
.w21{width:199.110000px;}
.w22{width:201.090000px;}
.w24{width:219.090000px;}
.w1e{width:222.510000px;}
.w4{width:223.230000px;}
.w3{width:228.450000px;}
.w2{width:228.630000px;}
.w8{width:229.530000px;}
.wb{width:295.410000px;}
.we{width:341.355000px;}
.w12{width:341.895000px;}
.w25{width:370.875000px;}
.wa{width:434.055000px;}
.w28{width:595.545000px;}
.w11{width:678.165000px;}
.w15{width:679.245000px;}
.w6{width:680.325000px;}
.w26{width:680.505000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:1.620000px;}
.x16{left:2.880000px;}
.x3e{left:4.680000px;}
.x33{left:5.760000px;}
.x43{left:7.020000px;}
.x2{left:8.100000px;}
.x19{left:9.180000px;}
.x41{left:10.260000px;}
.x4d{left:11.340000px;}
.x38{left:12.600000px;}
.x40{left:13.860000px;}
.x2c{left:15.660000px;}
.x32{left:17.100000px;}
.x36{left:18.360000px;}
.x1f{left:19.980000px;}
.x5e{left:21.420000px;}
.x1e{left:22.680000px;}
.x1d{left:24.120000px;}
.x3d{left:26.100000px;}
.x47{left:28.440000px;}
.x2d{left:30.420000px;}
.x44{left:32.085000px;}
.x4a{left:33.660000px;}
.x56{left:34.740000px;}
.x4b{left:36.000000px;}
.x2a{left:38.160000px;}
.x4f{left:39.810000px;}
.x39{left:41.985000px;}
.x4e{left:43.380000px;}
.x55{left:44.460000px;}
.x4c{left:46.830000px;}
.x57{left:48.780000px;}
.x53{left:50.940000px;}
.x5a{left:54.000000px;}
.x34{left:55.665000px;}
.x2f{left:57.240000px;}
.x3c{left:60.840000px;}
.x5d{left:62.280000px;}
.x5c{left:66.060000px;}
.x58{left:67.680000px;}
.x30{left:68.805000px;}
.x4{left:70.740000px;}
.x5f{left:72.180000px;}
.x50{left:73.260000px;}
.x21{left:79.194000px;}
.x20{left:84.594000px;}
.x54{left:98.820000px;}
.x17{left:104.256000px;}
.x1{left:106.416000px;}
.x25{left:107.496000px;}
.x28{left:111.645000px;}
.x51{left:112.895987px;}
.x9{left:114.155987px;}
.x63{left:115.950000px;}
.x7{left:119.915987px;}
.x12{left:127.655987px;}
.x69{left:133.235987px;}
.x45{left:150.329987px;}
.x1b{left:152.490000px;}
.x6a{left:159.869987px;}
.x2e{left:167.265000px;}
.x27{left:176.250000px;}
.x65{left:181.829987px;}
.xa{left:191.729987px;}
.x61{left:195.330000px;}
.x6b{left:199.470000px;}
.x59{left:215.490000px;}
.x60{left:227.189987px;}
.x1c{left:232.770000px;}
.x31{left:238.179000px;}
.x35{left:249.339000px;}
.x37{left:257.979000px;}
.x24{left:266.429987px;}
.x42{left:270.759000px;}
.x3f{left:274.899000px;}
.x3b{left:276.159000px;}
.x46{left:296.355000px;}
.x23{left:330.339000px;}
.x6{left:331.419000px;}
.x18{left:333.795000px;}
.x3{left:335.055000px;}
.x67{left:344.594987px;}
.x1a{left:354.855000px;}
.x66{left:366.914987px;}
.x52{left:383.835000px;}
.xb{left:391.034987px;}
.x22{left:401.835000px;}
.x62{left:415.155000px;}
.x68{left:418.574987px;}
.xc{left:432.434987px;}
.x8{left:446.474987px;}
.x11{left:457.094987px;}
.x14{left:459.254987px;}
.x48{left:468.615000px;}
.x15{left:480.524987px;}
.x29{left:518.505000px;}
.x13{left:522.644987px;}
.x3a{left:534.309000px;}
.x5{left:563.505000px;}
.x5b{left:584.565000px;}
.xe{left:587.984987px;}
.xd{left:596.984987px;}
.x49{left:616.065000px;}
.x2b{left:641.085000px;}
.x10{left:661.244987px;}
.x64{left:784.409987px;}
.xf{left:786.749987px;}
@media print{
.v1{vertical-align:-71.040000pt;}
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls2a{letter-spacing:-0.688000pt;}
.ls1e{letter-spacing:-0.592000pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.304000pt;}
.lsa{letter-spacing:-0.269867pt;}
.ls30{letter-spacing:-0.239467pt;}
.ls1f{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls22{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.012800pt;}
.ls11{letter-spacing:0.016000pt;}
.ls21{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls2f{letter-spacing:0.096000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls3{letter-spacing:0.133120pt;}
.lsb{letter-spacing:0.138133pt;}
.ls5{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.167467pt;}
.ls2c{letter-spacing:0.176000pt;}
.ls17{letter-spacing:0.208000pt;}
.ls6{letter-spacing:0.228480pt;}
.ls23{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.245760pt;}
.ls28{letter-spacing:0.265600pt;}
.ls29{letter-spacing:0.271467pt;}
.ls8{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.416000pt;}
.ls1d{letter-spacing:0.456533pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls27{letter-spacing:0.592000pt;}
.ls24{letter-spacing:0.736000pt;}
.lse{letter-spacing:0.800000pt;}
.ls1b{letter-spacing:0.960000pt;}
.ls2b{letter-spacing:4.000000pt;}
.lsf{letter-spacing:7.632640pt;}
.ls13{letter-spacing:7.739307pt;}
.ls7{letter-spacing:10.400000pt;}
.ls26{letter-spacing:13.392640pt;}
.ls25{letter-spacing:39.611307pt;}
.ls20{letter-spacing:101.418667pt;}
.ls4{letter-spacing:174.218667pt;}
.ls15{letter-spacing:537.738667pt;}
.ws8{word-spacing:-62.720000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws1c{word-spacing:-14.461547pt;}
.ws3{word-spacing:-14.328213pt;}
.ws1b{word-spacing:-14.240000pt;}
.wse{word-spacing:-14.202880pt;}
.ws19{word-spacing:-14.016000pt;}
.ws1a{word-spacing:-13.872000pt;}
.ws14{word-spacing:-13.736533pt;}
.ws7{word-spacing:-13.600000pt;}
.ws1e{word-spacing:-13.545600pt;}
.ws1d{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.688000pt;}
.ws1f{word-spacing:-12.416000pt;}
.ws11{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.208000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws16{word-spacing:-11.680000pt;}
.ws6{word-spacing:-11.360000pt;}
.ws13{word-spacing:-11.264000pt;}
.ws20{word-spacing:-10.480533pt;}
.ws0{word-spacing:-10.334080pt;}
.ws2{word-spacing:-8.945920pt;}
.ws1{word-spacing:-8.676053pt;}
.ws9{word-spacing:0.000000pt;}
._32{margin-left:-14.308693pt;}
._15{margin-left:-2.999040pt;}
._19{margin-left:-1.994240pt;}
._1{margin-left:-1.025280pt;}
._0{width:0.925653pt;}
._3{width:2.045867pt;}
._2{width:3.005867pt;}
._16{width:3.984640pt;}
._14{width:4.998400pt;}
._1a{width:5.909760pt;}
._12{width:6.887040pt;}
._1b{width:7.875200pt;}
._20{width:8.817920pt;}
._10{width:10.385920pt;}
._1d{width:11.586133pt;}
._9{width:12.995840pt;}
._6{width:14.495360pt;}
._a{width:16.085760pt;}
._b{width:17.091200pt;}
._7{width:18.766720pt;}
._8{width:19.701120pt;}
._e{width:21.220480pt;}
._d{width:22.609280pt;}
._11{width:24.358827pt;}
._5{width:25.719040pt;}
._f{width:27.218560pt;}
._c{width:28.427947pt;}
._18{width:29.399680pt;}
._2a{width:30.441387pt;}
._21{width:31.409280pt;}
._17{width:32.580480pt;}
._2e{width:33.515733pt;}
._1f{width:34.528000pt;}
._31{width:35.484160pt;}
._24{width:36.387200pt;}
._1c{width:37.662080pt;}
._1e{width:39.028480pt;}
._22{width:40.902400pt;}
._23{width:41.911680pt;}
._2d{width:43.186560pt;}
._2c{width:44.461440pt;}
._4{width:45.980587pt;}
._25{width:47.223680pt;}
._2b{width:48.853973pt;}
._27{width:49.985920pt;}
._26{width:53.872427pt;}
._29{width:55.186347pt;}
._28{width:56.317867pt;}
._2f{width:57.528960pt;}
._30{width:58.571307pt;}
._13{width:60.480640pt;}
.fsb{font-size:5.120000pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsa{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.y27e{bottom:0.160000pt;}
.y75{bottom:1.760000pt;}
.y154{bottom:2.400000pt;}
.yc6{bottom:2.560000pt;}
.y14f{bottom:2.720000pt;}
.y152{bottom:2.880000pt;}
.y20a{bottom:2.920000pt;}
.y71{bottom:3.200000pt;}
.y1fa{bottom:3.360000pt;}
.y209{bottom:3.400000pt;}
.y3{bottom:3.840000pt;}
.y138{bottom:4.160000pt;}
.y2{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.y73{bottom:6.400000pt;}
.y144{bottom:8.000000pt;}
.y15e{bottom:8.800000pt;}
.y212{bottom:8.960000pt;}
.y1da{bottom:9.120000pt;}
.y1d2{bottom:9.280000pt;}
.y13b{bottom:9.440000pt;}
.y16a{bottom:9.600000pt;}
.y1b1{bottom:9.920000pt;}
.y15b{bottom:10.240000pt;}
.y27f{bottom:10.720000pt;}
.y74{bottom:10.880000pt;}
.y14c{bottom:11.040000pt;}
.y143{bottom:13.440000pt;}
.y16f{bottom:14.880000pt;}
.y1d5{bottom:15.840000pt;}
.y1d3{bottom:16.000000pt;}
.y1e0{bottom:16.040000pt;}
.yc5{bottom:16.320000pt;}
.y1cc{bottom:16.346667pt;}
.y140{bottom:16.480000pt;}
.y1ad{bottom:16.960000pt;}
.y137{bottom:17.920000pt;}
.y222{bottom:18.080000pt;}
.y20f{bottom:19.200000pt;}
.y219{bottom:19.680000pt;}
.y1d8{bottom:22.560000pt;}
.y1dd{bottom:22.720000pt;}
.y1b3{bottom:23.200000pt;}
.y1ca{bottom:23.226667pt;}
.y169{bottom:23.360000pt;}
.y1b0{bottom:23.840000pt;}
.y15a{bottom:24.000000pt;}
.y14b{bottom:24.800000pt;}
.y1f8{bottom:29.120000pt;}
.y8{bottom:29.280000pt;}
.y1dc{bottom:29.440000pt;}
.yc4{bottom:30.080000pt;}
.y1cb{bottom:30.106667pt;}
.y13f{bottom:30.240000pt;}
.y1c5{bottom:30.280000pt;}
.y1ac{bottom:30.720000pt;}
.y1a9{bottom:31.240000pt;}
.y136{bottom:31.680000pt;}
.y221{bottom:31.840000pt;}
.y20e{bottom:32.960000pt;}
.y218{bottom:33.440000pt;}
.y1d7{bottom:36.000000pt;}
.y203{bottom:36.840000pt;}
.yc7{bottom:37.120000pt;}
.y1af{bottom:37.600000pt;}
.y159{bottom:37.760000pt;}
.y1a2{bottom:38.560000pt;}
.y14a{bottom:38.720000pt;}
.y157{bottom:41.760000pt;}
.y1d6{bottom:42.720000pt;}
.y1f7{bottom:42.880000pt;}
.y6{bottom:43.200000pt;}
.y276{bottom:43.840000pt;}
.yc3{bottom:44.000000pt;}
.y1a6{bottom:45.160000pt;}
.y135{bottom:45.440000pt;}
.y148{bottom:45.600000pt;}
.y220{bottom:45.760000pt;}
.y20d{bottom:46.880000pt;}
.y217{bottom:47.200000pt;}
.y202{bottom:50.600000pt;}
.y1b5{bottom:50.880000pt;}
.y168{bottom:50.920000pt;}
.y158{bottom:51.680000pt;}
.y19f{bottom:52.320000pt;}
.y149{bottom:52.480000pt;}
.y1f6{bottom:56.640000pt;}
.yc2{bottom:57.760000pt;}
.y16c{bottom:57.800000pt;}
.y1b6{bottom:57.920000pt;}
.y1a8{bottom:58.920000pt;}
.y134{bottom:59.360000pt;}
.y20c{bottom:60.640000pt;}
.y216{bottom:60.960000pt;}
.y201{bottom:64.520000pt;}
.y5{bottom:64.800000pt;}
.y167{bottom:64.840000pt;}
.y1a1{bottom:66.240000pt;}
.y1f5{bottom:70.400000pt;}
.yc1{bottom:71.520000pt;}
.y16b{bottom:71.720000pt;}
.y19c{bottom:79.200000pt;}
.y1f2{bottom:79.680000pt;}
.y242{bottom:80.480000pt;}
.y150{bottom:80.960000pt;}
.y281{bottom:81.120000pt;}
.y280{bottom:82.720000pt;}
.y147{bottom:83.200000pt;}
.y24f{bottom:83.840000pt;}
.y27d{bottom:84.000000pt;}
.y24e{bottom:84.960000pt;}
.ye8{bottom:88.160000pt;}
.y4b{bottom:88.320000pt;}
.yaf{bottom:91.040000pt;}
.y273{bottom:93.760000pt;}
.y19b{bottom:94.560000pt;}
.y1f1{bottom:95.040000pt;}
.y241{bottom:95.840000pt;}
.y14e{bottom:98.080000pt;}
.y103{bottom:99.040000pt;}
.y24d{bottom:100.320000pt;}
.y4a{bottom:101.440000pt;}
.ye7{bottom:103.520000pt;}
.y6f{bottom:103.680000pt;}
.yae{bottom:106.400000pt;}
.y1cf{bottom:108.160000pt;}
.y272{bottom:109.120000pt;}
.y19a{bottom:109.760000pt;}
.y1f0{bottom:110.400000pt;}
.y240{bottom:111.200000pt;}
.y102{bottom:114.400000pt;}
.y49{bottom:114.560000pt;}
.y24c{bottom:115.680000pt;}
.y27c{bottom:116.000000pt;}
.y6e{bottom:119.040000pt;}
.ye6{bottom:119.840000pt;}
.yad{bottom:121.760000pt;}
.y1ce{bottom:123.520000pt;}
.y271{bottom:124.480000pt;}
.y199{bottom:125.120000pt;}
.y1ef{bottom:125.600000pt;}
.y23f{bottom:126.560000pt;}
.y14d{bottom:126.720000pt;}
.y48{bottom:127.520000pt;}
.y101{bottom:129.760000pt;}
.y24b{bottom:131.040000pt;}
.y27b{bottom:131.360000pt;}
.y6d{bottom:134.400000pt;}
.ye5{bottom:135.200000pt;}
.yac{bottom:137.120000pt;}
.y1cd{bottom:138.880000pt;}
.y270{bottom:139.680000pt;}
.y198{bottom:140.480000pt;}
.y47{bottom:140.640000pt;}
.y1ee{bottom:140.960000pt;}
.y146{bottom:141.440000pt;}
.y23e{bottom:141.760000pt;}
.y100{bottom:145.120000pt;}
.y24a{bottom:146.400000pt;}
.y27a{bottom:146.560000pt;}
.y6c{bottom:149.760000pt;}
.ye4{bottom:150.400000pt;}
.y1c9{bottom:152.320000pt;}
.yab{bottom:152.480000pt;}
.y46{bottom:153.600000pt;}
.y26f{bottom:155.040000pt;}
.y197{bottom:155.840000pt;}
.y145{bottom:156.320000pt;}
.y23d{bottom:157.120000pt;}
.yff{bottom:160.480000pt;}
.y249{bottom:161.760000pt;}
.y279{bottom:161.920000pt;}
.y6b{bottom:164.986667pt;}
.ye3{bottom:165.786667pt;}
.y45{bottom:166.746667pt;}
.yaa{bottom:167.706667pt;}
.y26e{bottom:170.426667pt;}
.y13e{bottom:171.066667pt;}
.y196{bottom:171.226667pt;}
.y1ed{bottom:171.706667pt;}
.y23c{bottom:172.506667pt;}
.y278{bottom:174.426667pt;}
.yfe{bottom:175.706667pt;}
.y248{bottom:176.986667pt;}
.y44{bottom:179.706667pt;}
.y6a{bottom:180.346667pt;}
.ye2{bottom:181.146667pt;}
.ya9{bottom:183.066667pt;}
.y26d{bottom:185.786667pt;}
.y195{bottom:186.426667pt;}
.y1ec{bottom:187.066667pt;}
.y23b{bottom:187.866667pt;}
.yfd{bottom:191.066667pt;}
.y247{bottom:192.346667pt;}
.y43{bottom:192.826667pt;}
.y1c8{bottom:194.746667pt;}
.y69{bottom:195.706667pt;}
.ye1{bottom:196.506667pt;}
.y142{bottom:196.666667pt;}
.ya8{bottom:198.426667pt;}
.y26c{bottom:201.146667pt;}
.y194{bottom:201.786667pt;}
.y1eb{bottom:202.426667pt;}
.y23a{bottom:203.226667pt;}
.y42{bottom:205.786667pt;}
.yfc{bottom:206.426667pt;}
.y246{bottom:207.706667pt;}
.y68{bottom:211.066667pt;}
.y141{bottom:211.546667pt;}
.ye0{bottom:212.826667pt;}
.ya7{bottom:213.786667pt;}
.y26b{bottom:216.506667pt;}
.y193{bottom:217.146667pt;}
.y1ea{bottom:217.626667pt;}
.y239{bottom:218.586667pt;}
.y41{bottom:218.906667pt;}
.yfb{bottom:221.786667pt;}
.y245{bottom:223.066667pt;}
.y13d{bottom:226.266667pt;}
.y67{bottom:226.426667pt;}
.ydf{bottom:228.026667pt;}
.ya6{bottom:229.146667pt;}
.y277{bottom:229.626667pt;}
.y26a{bottom:231.706667pt;}
.y40{bottom:231.866667pt;}
.y192{bottom:232.506667pt;}
.y1e9{bottom:232.986667pt;}
.y238{bottom:233.786667pt;}
.yfa{bottom:237.146667pt;}
.y244{bottom:238.426667pt;}
.y13c{bottom:241.146667pt;}
.y66{bottom:241.786667pt;}
.yde{bottom:243.386667pt;}
.ya5{bottom:244.506667pt;}
.y3f{bottom:244.826667pt;}
.y269{bottom:247.066667pt;}
.y191{bottom:247.866667pt;}
.y1e8{bottom:248.346667pt;}
.y237{bottom:249.146667pt;}
.y243{bottom:250.906667pt;}
.yf9{bottom:252.506667pt;}
.y133{bottom:255.866667pt;}
.y65{bottom:256.986667pt;}
.y275{bottom:257.306667pt;}
.y3e{bottom:257.946667pt;}
.ydd{bottom:258.746667pt;}
.ya4{bottom:259.706667pt;}
.y268{bottom:262.426667pt;}
.y190{bottom:263.226667pt;}
.y1e7{bottom:263.706667pt;}
.y236{bottom:264.506667pt;}
.yf8{bottom:267.706667pt;}
.y3d{bottom:270.906667pt;}
.y64{bottom:272.346667pt;}
.ydc{bottom:274.106667pt;}
.ya3{bottom:275.066667pt;}
.y267{bottom:277.786667pt;}
.y18f{bottom:278.426667pt;}
.y1e6{bottom:279.066667pt;}
.y1c7{bottom:279.546667pt;}
.y235{bottom:279.866667pt;}
.yf7{bottom:283.066667pt;}
.y3c{bottom:284.026667pt;}
.y13a{bottom:284.506667pt;}
.y63{bottom:287.706667pt;}
.ya2{bottom:290.426667pt;}
.y266{bottom:293.146667pt;}
.y18e{bottom:293.786667pt;}
.y1e5{bottom:294.426667pt;}
.y234{bottom:295.226667pt;}
.y3b{bottom:296.986667pt;}
.yf6{bottom:298.426667pt;}
.y139{bottom:299.226667pt;}
.y62{bottom:303.066667pt;}
.ya1{bottom:305.786667pt;}
.y265{bottom:308.506667pt;}
.y18d{bottom:309.146667pt;}
.y1e4{bottom:309.626667pt;}
.y3a{bottom:310.106667pt;}
.y233{bottom:310.426667pt;}
.y274{bottom:312.346667pt;}
.yf5{bottom:313.786667pt;}
.y132{bottom:314.106667pt;}
.y61{bottom:318.426667pt;}
.ydb{bottom:320.986667pt;}
.ya0{bottom:321.146667pt;}
.y1c6{bottom:321.946667pt;}
.y39{bottom:323.066667pt;}
.y264{bottom:323.706667pt;}
.y18c{bottom:324.506667pt;}
.y1e3{bottom:324.986667pt;}
.y232{bottom:325.786667pt;}
.y131{bottom:328.826667pt;}
.yf4{bottom:329.146667pt;}
.y60{bottom:333.626667pt;}
.y38{bottom:336.186667pt;}
.yda{bottom:336.346667pt;}
.y9f{bottom:336.506667pt;}
.y263{bottom:339.066667pt;}
.y18b{bottom:339.866667pt;}
.y1e2{bottom:340.026667pt;}
.y231{bottom:341.146667pt;}
.y130{bottom:343.706667pt;}
.yf3{bottom:344.506667pt;}
.y5f{bottom:348.986667pt;}
.y37{bottom:349.146667pt;}
.y1c4{bottom:350.426667pt;}
.y9e{bottom:351.706667pt;}
.y1e1{bottom:354.106667pt;}
.y262{bottom:354.426667pt;}
.y18a{bottom:355.226667pt;}
.y230{bottom:356.506667pt;}
.y12f{bottom:358.426667pt;}
.yf2{bottom:359.706667pt;}
.y36{bottom:362.266667pt;}
.y5e{bottom:364.346667pt;}
.y9d{bottom:367.066667pt;}
.y1df{bottom:367.546667pt;}
.yd9{bottom:368.026667pt;}
.y261{bottom:369.786667pt;}
.y189{bottom:370.426667pt;}
.y22f{bottom:371.866667pt;}
.yf1{bottom:375.066667pt;}
.y35{bottom:375.226667pt;}
.y5d{bottom:379.746667pt;}
.y9c{bottom:382.466667pt;}
.yd8{bottom:383.426667pt;}
.y260{bottom:385.186667pt;}
.y188{bottom:385.826667pt;}
.y22e{bottom:387.266667pt;}
.y34{bottom:388.226667pt;}
.y12e{bottom:389.506667pt;}
.yf0{bottom:390.466667pt;}
.y1c3{bottom:392.866667pt;}
.y5c{bottom:395.106667pt;}
.y1de{bottom:395.426667pt;}
.y9b{bottom:397.826667pt;}
.yd7{bottom:398.786667pt;}
.y187{bottom:401.186667pt;}
.y33{bottom:401.346667pt;}
.y22d{bottom:402.466667pt;}
.yef{bottom:405.826667pt;}
.y5b{bottom:410.466667pt;}
.y9a{bottom:413.186667pt;}
.yd6{bottom:413.986667pt;}
.y32{bottom:414.306667pt;}
.y186{bottom:416.546667pt;}
.y22c{bottom:417.826667pt;}
.y12d{bottom:420.226667pt;}
.yee{bottom:421.186667pt;}
.y1c2{bottom:423.906667pt;}
.y5a{bottom:425.666667pt;}
.y31{bottom:427.426667pt;}
.y99{bottom:428.386667pt;}
.yd5{bottom:429.346667pt;}
.y185{bottom:431.906667pt;}
.y22b{bottom:433.186667pt;}
.y25f{bottom:433.826667pt;}
.y12c{bottom:435.586667pt;}
.yed{bottom:436.386667pt;}
.y1c1{bottom:439.266667pt;}
.y30{bottom:440.386667pt;}
.y59{bottom:441.026667pt;}
.y98{bottom:443.746667pt;}
.yd4{bottom:444.706667pt;}
.y184{bottom:447.266667pt;}
.y22a{bottom:448.546667pt;}
.y106{bottom:449.826667pt;}
.y1db{bottom:449.986667pt;}
.y12b{bottom:450.786667pt;}
.yec{bottom:451.746667pt;}
.y2f{bottom:453.506667pt;}
.y1c0{bottom:454.626667pt;}
.y58{bottom:456.386667pt;}
.y97{bottom:459.106667pt;}
.yd3{bottom:461.026667pt;}
.y183{bottom:462.466667pt;}
.y229{bottom:463.906667pt;}
.y105{bottom:466.146667pt;}
.y2e{bottom:466.466667pt;}
.yeb{bottom:467.106667pt;}
.y1bf{bottom:469.986667pt;}
.y57{bottom:471.746667pt;}
.y96{bottom:474.466667pt;}
.yd2{bottom:476.386667pt;}
.y182{bottom:477.826667pt;}
.y228{bottom:479.266667pt;}
.y2d{bottom:479.586667pt;}
.y104{bottom:481.506667pt;}
.yea{bottom:482.466667pt;}
.y1be{bottom:485.186667pt;}
.y56{bottom:487.106667pt;}
.y95{bottom:489.826667pt;}
.y1d9{bottom:491.266667pt;}
.yd1{bottom:491.586667pt;}
.y2c{bottom:492.546667pt;}
.y181{bottom:493.186667pt;}
.ybf{bottom:493.826667pt;}
.y227{bottom:494.306667pt;}
.y12a{bottom:496.866667pt;}
.ye9{bottom:497.826667pt;}
.y1bd{bottom:500.546667pt;}
.y55{bottom:502.466667pt;}
.y94{bottom:505.186667pt;}
.y2b{bottom:505.506667pt;}
.yd0{bottom:506.946667pt;}
.y226{bottom:508.386667pt;}
.y180{bottom:508.546667pt;}
.y129{bottom:512.226667pt;}
.ybe{bottom:513.186667pt;}
.y1bc{bottom:515.906667pt;}
.y54{bottom:517.666667pt;}
.y2a{bottom:518.626667pt;}
.y93{bottom:520.386667pt;}
.y21f{bottom:521.826667pt;}
.ycf{bottom:522.306667pt;}
.y17f{bottom:523.906667pt;}
.y128{bottom:527.426667pt;}
.ybd{bottom:528.386667pt;}
.y1bb{bottom:531.266667pt;}
.y29{bottom:531.586667pt;}
.y53{bottom:533.026667pt;}
.y92{bottom:535.746667pt;}
.y225{bottom:536.226667pt;}
.yce{bottom:537.666667pt;}
.y17e{bottom:539.106667pt;}
.y127{bottom:542.786667pt;}
.ybc{bottom:543.746667pt;}
.y28{bottom:544.706667pt;}
.y1d4{bottom:545.826667pt;}
.y1ba{bottom:546.626667pt;}
.y52{bottom:548.386667pt;}
.y91{bottom:551.106667pt;}
.y224{bottom:552.226667pt;}
.ycd{bottom:553.026667pt;}
.y17d{bottom:554.466667pt;}
.y27{bottom:557.666667pt;}
.y126{bottom:558.146667pt;}
.ybb{bottom:559.106667pt;}
.y1b9{bottom:561.986667pt;}
.y51{bottom:563.746667pt;}
.y90{bottom:566.466667pt;}
.ycc{bottom:568.386667pt;}
.y17c{bottom:569.826667pt;}
.y26{bottom:570.786667pt;}
.y125{bottom:573.506667pt;}
.yba{bottom:574.466667pt;}
.y1b8{bottom:577.186667pt;}
.y50{bottom:579.106667pt;}
.y223{bottom:580.546667pt;}
.y8f{bottom:581.826667pt;}
.ycb{bottom:583.586667pt;}
.y25{bottom:583.746667pt;}
.y17b{bottom:585.186667pt;}
.y124{bottom:588.866667pt;}
.yb9{bottom:589.826667pt;}
.y1b7{bottom:592.573333pt;}
.y4f{bottom:594.333333pt;}
.y215{bottom:594.973333pt;}
.y24{bottom:596.893333pt;}
.y8e{bottom:597.213333pt;}
.yca{bottom:598.973333pt;}
.y1d1{bottom:600.413333pt;}
.y17a{bottom:600.573333pt;}
.y123{bottom:604.253333pt;}
.yb8{bottom:605.213333pt;}
.y1b4{bottom:606.013333pt;}
.y21e{bottom:609.533333pt;}
.y4e{bottom:609.693333pt;}
.y23{bottom:609.853333pt;}
.y8d{bottom:612.413333pt;}
.yc9{bottom:614.333333pt;}
.y179{bottom:615.933333pt;}
.y122{bottom:619.453333pt;}
.yb7{bottom:620.413333pt;}
.y22{bottom:622.813333pt;}
.y4d{bottom:625.053333pt;}
.y21d{bottom:625.533333pt;}
.y8c{bottom:627.773333pt;}
.yc8{bottom:629.693333pt;}
.y178{bottom:631.133333pt;}
.y70{bottom:631.773333pt;}
.y121{bottom:634.813333pt;}
.yb6{bottom:635.773333pt;}
.y21{bottom:638.013333pt;}
.y21c{bottom:639.933333pt;}
.y4c{bottom:640.413333pt;}
.yc0{bottom:642.173333pt;}
.y8b{bottom:643.133333pt;}
.y177{bottom:646.493333pt;}
.y120{bottom:650.173333pt;}
.yb5{bottom:651.133333pt;}
.y21b{bottom:654.333333pt;}
.y1d0{bottom:654.973333pt;}
.y20{bottom:655.773333pt;}
.y8a{bottom:658.493333pt;}
.y176{bottom:661.853333pt;}
.y11f{bottom:665.533333pt;}
.yb4{bottom:666.493333pt;}
.y21a{bottom:668.893333pt;}
.y1f{bottom:671.133333pt;}
.y89{bottom:673.853333pt;}
.y1b2{bottom:676.093333pt;}
.y175{bottom:677.213333pt;}
.y11e{bottom:680.893333pt;}
.yb3{bottom:681.853333pt;}
.y1e{bottom:684.893333pt;}
.y88{bottom:689.213333pt;}
.y174{bottom:692.573333pt;}
.y1d{bottom:694.013333pt;}
.y11d{bottom:696.253333pt;}
.yb2{bottom:697.213333pt;}
.y214{bottom:699.293333pt;}
.y87{bottom:704.413333pt;}
.y173{bottom:707.933333pt;}
.y1c{bottom:709.373333pt;}
.y11c{bottom:711.453333pt;}
.yb1{bottom:712.413333pt;}
.y213{bottom:713.853333pt;}
.y25e{bottom:719.773333pt;}
.y172{bottom:723.133333pt;}
.y86{bottom:723.773333pt;}
.y1b{bottom:724.733333pt;}
.y11b{bottom:726.813333pt;}
.yb0{bottom:727.773333pt;}
.y211{bottom:729.853333pt;}
.y1ab{bottom:732.253333pt;}
.y25d{bottom:735.133333pt;}
.y171{bottom:737.053333pt;}
.y1a{bottom:740.093333pt;}
.y11a{bottom:742.173333pt;}
.y85{bottom:743.133333pt;}
.y170{bottom:746.173333pt;}
.y25c{bottom:750.493333pt;}
.y19{bottom:755.453333pt;}
.y119{bottom:757.533333pt;}
.y210{bottom:758.013333pt;}
.y84{bottom:758.493333pt;}
.y166{bottom:759.613333pt;}
.y1ae{bottom:760.893333pt;}
.y25b{bottom:765.853333pt;}
.y18{bottom:770.653333pt;}
.y118{bottom:772.893333pt;}
.y83{bottom:773.853333pt;}
.y200{bottom:774.013333pt;}
.y25a{bottom:781.053333pt;}
.y17{bottom:786.013333pt;}
.y117{bottom:788.093333pt;}
.y20b{bottom:788.573333pt;}
.y82{bottom:789.053333pt;}
.y1a5{bottom:789.373333pt;}
.y259{bottom:796.413333pt;}
.y16e{bottom:798.973333pt;}
.y16{bottom:801.373333pt;}
.y116{bottom:803.453333pt;}
.y81{bottom:804.413333pt;}
.y208{bottom:804.573333pt;}
.y258{bottom:811.813333pt;}
.y16d{bottom:813.893333pt;}
.y15{bottom:816.773333pt;}
.y1aa{bottom:818.053333pt;}
.y115{bottom:818.853333pt;}
.y80{bottom:819.813333pt;}
.y207{bottom:820.613333pt;}
.y257{bottom:827.173333pt;}
.y165{bottom:828.613333pt;}
.y14{bottom:832.133333pt;}
.y114{bottom:834.213333pt;}
.y7f{bottom:835.173333pt;}
.y206{bottom:836.613333pt;}
.y256{bottom:842.533333pt;}
.y164{bottom:843.493333pt;}
.y1a7{bottom:846.693333pt;}
.y13{bottom:847.493333pt;}
.y113{bottom:849.573333pt;}
.y7e{bottom:850.533333pt;}
.y205{bottom:852.613333pt;}
.y255{bottom:857.893333pt;}
.y161{bottom:858.213333pt;}
.y12{bottom:863.333333pt;}
.y112{bottom:864.933333pt;}
.y7d{bottom:865.893333pt;}
.y204{bottom:868.613333pt;}
.y163{bottom:873.093333pt;}
.y111{bottom:880.133333pt;}
.y7c{bottom:881.093333pt;}
.y11{bottom:881.733333pt;}
.y1f4{bottom:884.613333pt;}
.y162{bottom:887.813333pt;}
.y254{bottom:888.453333pt;}
.y19e{bottom:889.093333pt;}
.y110{bottom:895.493333pt;}
.y7b{bottom:896.453333pt;}
.y10{bottom:900.133333pt;}
.y1ff{bottom:900.613333pt;}
.y160{bottom:902.693333pt;}
.y253{bottom:903.813333pt;}
.y10f{bottom:910.853333pt;}
.y7a{bottom:911.813333pt;}
.y1fe{bottom:915.013333pt;}
.y15f{bottom:917.413333pt;}
.y1a4{bottom:917.733333pt;}
.yf{bottom:918.533333pt;}
.y252{bottom:919.173333pt;}
.y10e{bottom:926.213333pt;}
.y79{bottom:927.173333pt;}
.y1fd{bottom:929.413333pt;}
.y156{bottom:932.293333pt;}
.y251{bottom:934.533333pt;}
.ye{bottom:936.933333pt;}
.y10d{bottom:941.573333pt;}
.y78{bottom:942.533333pt;}
.y1fc{bottom:945.413333pt;}
.y1a3{bottom:946.213333pt;}
.y250{bottom:953.733333pt;}
.y10c{bottom:956.933333pt;}
.y77{bottom:957.893333pt;}
.y15d{bottom:959.333333pt;}
.y1fb{bottom:961.413333pt;}
.y10b{bottom:972.133333pt;}
.yd{bottom:973.093333pt;}
.y15c{bottom:974.213333pt;}
.y1a0{bottom:974.853333pt;}
.y1f9{bottom:977.413333pt;}
.y10a{bottom:987.493333pt;}
.yc{bottom:988.453333pt;}
.y155{bottom:988.933333pt;}
.y1f3{bottom:993.413333pt;}
.y109{bottom:1002.853333pt;}
.y19d{bottom:1003.493333pt;}
.yb{bottom:1003.813333pt;}
.y108{bottom:1018.213333pt;}
.y153{bottom:1018.533333pt;}
.ya{bottom:1019.173333pt;}
.y151{bottom:1032.320000pt;}
.y107{bottom:1033.600000pt;}
.y9{bottom:1034.560000pt;}
.y4{bottom:1053.280000pt;}
.y76{bottom:1055.840000pt;}
.y72{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h25{height:5.025000pt;}
.h4f{height:5.092500pt;}
.h27{height:13.152000pt;}
.h1e{height:13.760000pt;}
.h23{height:13.792000pt;}
.h24{height:13.920000pt;}
.h2c{height:13.952000pt;}
.h26{height:14.720000pt;}
.h45{height:15.200000pt;}
.h47{height:15.232000pt;}
.h43{height:15.360000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h17{height:18.240000pt;}
.h8{height:19.040000pt;}
.h18{height:24.187500pt;}
.h19{height:24.203125pt;}
.h22{height:24.640000pt;}
.h29{height:26.080000pt;}
.h2e{height:26.381250pt;}
.h3c{height:26.720000pt;}
.h41{height:26.880000pt;}
.h40{height:26.912000pt;}
.hf{height:27.090000pt;}
.h20{height:27.520000pt;}
.h31{height:27.680000pt;}
.h34{height:27.712000pt;}
.h4d{height:29.120000pt;}
.h5{height:32.411250pt;}
.h3{height:36.413125pt;}
.h3b{height:36.431250pt;}
.h12{height:37.452500pt;}
.h2d{height:38.400000pt;}
.h3f{height:40.160000pt;}
.h13{height:40.736250pt;}
.h39{height:41.280000pt;}
.h3a{height:41.312000pt;}
.h33{height:41.440000pt;}
.h38{height:41.472000pt;}
.h1a{height:42.084375pt;}
.h4e{height:43.215000pt;}
.h9{height:44.505000pt;}
.h11{height:44.574687pt;}
.h14{height:44.596875pt;}
.h4b{height:47.085938pt;}
.h4{height:47.109375pt;}
.h2f{height:47.621250pt;}
.h44{height:47.742188pt;}
.he{height:52.108438pt;}
.hb{height:52.134375pt;}
.h6{height:52.834688pt;}
.h1b{height:53.535000pt;}
.h3e{height:53.600000pt;}
.h3d{height:53.632000pt;}
.h1d{height:54.598989pt;}
.h4c{height:55.040000pt;}
.h36{height:55.200000pt;}
.hd{height:55.343750pt;}
.h35{height:56.160000pt;}
.h2a{height:58.240000pt;}
.ha{height:58.563750pt;}
.h10{height:62.781250pt;}
.hc{height:64.500000pt;}
.h15{height:64.960000pt;}
.h21{height:68.960000pt;}
.h37{height:69.120000pt;}
.h28{height:70.560000pt;}
.h1f{height:72.000000pt;}
.h4a{height:72.512000pt;}
.h1c{height:82.720000pt;}
.h2b{height:82.912000pt;}
.h48{height:88.480000pt;}
.h49{height:89.280000pt;}
.h32{height:98.752000pt;}
.h42{height:108.160000pt;}
.h46{height:109.792000pt;}
.h30{height:113.440000pt;}
.h16{height:252.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.720000pt;}
.wc{width:28.480000pt;}
.w7{width:58.432000pt;}
.wd{width:60.160000pt;}
.w16{width:60.640000pt;}
.w27{width:75.520000pt;}
.w23{width:77.760000pt;}
.w1f{width:95.040000pt;}
.w17{width:105.312000pt;}
.wf{width:108.000000pt;}
.w13{width:108.160000pt;}
.w1b{width:111.040000pt;}
.w10{width:128.512000pt;}
.w14{width:128.672000pt;}
.w19{width:130.112000pt;}
.w1c{width:132.832000pt;}
.w20{width:149.306667pt;}
.w1a{width:150.746667pt;}
.w18{width:152.160000pt;}
.w1d{width:158.426667pt;}
.w21{width:176.986667pt;}
.w22{width:178.746667pt;}
.w24{width:194.746667pt;}
.w1e{width:197.786667pt;}
.w4{width:198.426667pt;}
.w3{width:203.066667pt;}
.w2{width:203.226667pt;}
.w8{width:204.026667pt;}
.wb{width:262.586667pt;}
.we{width:303.426667pt;}
.w12{width:303.906667pt;}
.w25{width:329.666667pt;}
.wa{width:385.826667pt;}
.w28{width:529.373333pt;}
.w11{width:602.813333pt;}
.w15{width:603.773333pt;}
.w6{width:604.733333pt;}
.w26{width:604.893333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:1.440000pt;}
.x16{left:2.560000pt;}
.x3e{left:4.160000pt;}
.x33{left:5.120000pt;}
.x43{left:6.240000pt;}
.x2{left:7.200000pt;}
.x19{left:8.160000pt;}
.x41{left:9.120000pt;}
.x4d{left:10.080000pt;}
.x38{left:11.200000pt;}
.x40{left:12.320000pt;}
.x2c{left:13.920000pt;}
.x32{left:15.200000pt;}
.x36{left:16.320000pt;}
.x1f{left:17.760000pt;}
.x5e{left:19.040000pt;}
.x1e{left:20.160000pt;}
.x1d{left:21.440000pt;}
.x3d{left:23.200000pt;}
.x47{left:25.280000pt;}
.x2d{left:27.040000pt;}
.x44{left:28.520000pt;}
.x4a{left:29.920000pt;}
.x56{left:30.880000pt;}
.x4b{left:32.000000pt;}
.x2a{left:33.920000pt;}
.x4f{left:35.386667pt;}
.x39{left:37.320000pt;}
.x4e{left:38.560000pt;}
.x55{left:39.520000pt;}
.x4c{left:41.626667pt;}
.x57{left:43.360000pt;}
.x53{left:45.280000pt;}
.x5a{left:48.000000pt;}
.x34{left:49.480000pt;}
.x2f{left:50.880000pt;}
.x3c{left:54.080000pt;}
.x5d{left:55.360000pt;}
.x5c{left:58.720000pt;}
.x58{left:60.160000pt;}
.x30{left:61.160000pt;}
.x4{left:62.880000pt;}
.x5f{left:64.160000pt;}
.x50{left:65.120000pt;}
.x21{left:70.394667pt;}
.x20{left:75.194667pt;}
.x54{left:87.840000pt;}
.x17{left:92.672000pt;}
.x1{left:94.592000pt;}
.x25{left:95.552000pt;}
.x28{left:99.240000pt;}
.x51{left:100.351988pt;}
.x9{left:101.471988pt;}
.x63{left:103.066667pt;}
.x7{left:106.591988pt;}
.x12{left:113.471988pt;}
.x69{left:118.431988pt;}
.x45{left:133.626655pt;}
.x1b{left:135.546667pt;}
.x6a{left:142.106655pt;}
.x2e{left:148.680000pt;}
.x27{left:156.666667pt;}
.x65{left:161.626655pt;}
.xa{left:170.426655pt;}
.x61{left:173.626667pt;}
.x6b{left:177.306667pt;}
.x59{left:191.546667pt;}
.x60{left:201.946655pt;}
.x1c{left:206.906667pt;}
.x31{left:211.714667pt;}
.x35{left:221.634667pt;}
.x37{left:229.314667pt;}
.x24{left:236.826655pt;}
.x42{left:240.674667pt;}
.x3f{left:244.354667pt;}
.x3b{left:245.474667pt;}
.x46{left:263.426667pt;}
.x23{left:293.634667pt;}
.x6{left:294.594667pt;}
.x18{left:296.706667pt;}
.x3{left:297.826667pt;}
.x67{left:306.306655pt;}
.x1a{left:315.426667pt;}
.x66{left:326.146655pt;}
.x52{left:341.186667pt;}
.xb{left:347.586655pt;}
.x22{left:357.186667pt;}
.x62{left:369.026667pt;}
.x68{left:372.066655pt;}
.xc{left:384.386655pt;}
.x8{left:396.866655pt;}
.x11{left:406.306655pt;}
.x14{left:408.226655pt;}
.x48{left:416.546667pt;}
.x15{left:427.133322pt;}
.x29{left:460.893333pt;}
.x13{left:464.573322pt;}
.x3a{left:474.941333pt;}
.x5{left:500.893333pt;}
.x5b{left:519.613333pt;}
.xe{left:522.653322pt;}
.xd{left:530.653322pt;}
.x49{left:547.613333pt;}
.x2b{left:569.853333pt;}
.x10{left:587.773322pt;}
.x64{left:697.253322pt;}
.xf{left:699.333322pt;}
}




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