
    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_8733f029d497a61824ad45fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b57d93228c3c07861073a3c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f4775c8e732c67b7901f7a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.969000;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_cbe788aa5417040d79af5009.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_e0b64a46904d85eb2acfac5b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9151db8fee1491ef46161d20.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b43f33b9416300e13020cb60.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3717ec42f613588df3d1e304.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c1ed0e4cbb539ac346d68cfd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3040e2ac82e5e1d40d45d692.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_745b7db1549d743be667b0b4.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_25af734de39c6d0da944ca6a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_45b267224c3f37154ddf1d43.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v6{vertical-align:-145.440000px;}
.v2{vertical-align:-54.720000px;}
.v2e{vertical-align:-48.960000px;}
.v2d{vertical-align:-46.080000px;}
.v3b{vertical-align:-44.640000px;}
.v2b{vertical-align:-43.200000px;}
.v2a{vertical-align:-41.760000px;}
.v29{vertical-align:-40.320000px;}
.v28{vertical-align:-38.880000px;}
.v27{vertical-align:-37.440000px;}
.v26{vertical-align:-36.000000px;}
.v25{vertical-align:-34.560000px;}
.v24{vertical-align:-33.120000px;}
.v34{vertical-align:-31.680000px;}
.v32{vertical-align:-30.240000px;}
.v31{vertical-align:-28.800000px;}
.v33{vertical-align:-27.360000px;}
.v30{vertical-align:-25.920000px;}
.v2f{vertical-align:-24.480000px;}
.v23{vertical-align:-23.040000px;}
.v21{vertical-align:-21.600000px;}
.v22{vertical-align:-20.160000px;}
.v38{vertical-align:-18.720000px;}
.v2c{vertical-align:-17.280000px;}
.ve{vertical-align:-15.840000px;}
.v20{vertical-align:-14.400000px;}
.vf{vertical-align:-12.960000px;}
.v1d{vertical-align:-11.520000px;}
.v1f{vertical-align:-10.080000px;}
.v1e{vertical-align:-8.640000px;}
.v1a{vertical-align:-7.200000px;}
.v1b{vertical-align:-5.760000px;}
.v8{vertical-align:-4.320000px;}
.v5{vertical-align:-2.880000px;}
.v3{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.440000px;}
.v7{vertical-align:2.880000px;}
.vc{vertical-align:4.320000px;}
.vb{vertical-align:5.760000px;}
.va{vertical-align:7.200000px;}
.v1c{vertical-align:8.640000px;}
.v9{vertical-align:10.080000px;}
.v19{vertical-align:11.520000px;}
.v12{vertical-align:12.960000px;}
.vd{vertical-align:14.400000px;}
.v18{vertical-align:15.840000px;}
.v16{vertical-align:17.280000px;}
.v10{vertical-align:18.720000px;}
.v17{vertical-align:20.160000px;}
.v11{vertical-align:21.600000px;}
.v15{vertical-align:23.040000px;}
.v13{vertical-align:24.480000px;}
.v14{vertical-align:25.920000px;}
.v36{vertical-align:27.360000px;}
.v37{vertical-align:28.800000px;}
.v35{vertical-align:30.240000px;}
.v3a{vertical-align:31.680000px;}
.v39{vertical-align:33.120000px;}
.v3d{vertical-align:34.560000px;}
.v3e{vertical-align:36.000000px;}
.v41{vertical-align:43.200000px;}
.v3f{vertical-align:44.640000px;}
.v46{vertical-align:46.080000px;}
.v42{vertical-align:47.520000px;}
.v40{vertical-align:48.960000px;}
.v43{vertical-align:50.400000px;}
.v3c{vertical-align:51.840000px;}
.v44{vertical-align:60.480000px;}
.v45{vertical-align:61.920000px;}
.v1{vertical-align:64.800000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:178.785000px;}
.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;}
}
.ws4{word-spacing:-13.344000px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:396.180000px;}
.ws2{word-spacing:2307.990000px;}
.ws3{word-spacing:2325.270000px;}
.ws5{word-spacing:2333.910000px;}
.ws7{word-spacing:2338.080000px;}
.ws6{word-spacing:2348.160000px;}
.ws1{word-spacing:2351.190000px;}
._16{margin-left:-2328.492000px;}
._14{margin-left:-8.460000px;}
._18{margin-left:-7.323000px;}
._d{margin-left:-5.697000px;}
._e{margin-left:-3.474000px;}
._17{margin-left:-1.338000px;}
._1{width:1.494000px;}
._0{width:2.640000px;}
._5{width:4.215000px;}
._3{width:6.102000px;}
._8{width:7.284000px;}
._6{width:8.298000px;}
._9{width:10.230000px;}
._2{width:12.096000px;}
._b{width:13.677000px;}
._7{width:15.333000px;}
._4{width:16.650000px;}
._f{width:17.724000px;}
._10{width:18.786000px;}
._c{width:19.800000px;}
._a{width:21.780000px;}
._12{width:22.854000px;}
._13{width:24.795000px;}
._19{width:27.216000px;}
._11{width:28.530000px;}
._15{width:58.740000px;}
._1a{width:88.362000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:transparent;}
.fs2c{font-size:15.000000px;}
.fs2e{font-size:21.000000px;}
.fs2a{font-size:24.000000px;}
.fs28{font-size:27.000000px;}
.fs27{font-size:30.000000px;}
.fs25{font-size:33.000000px;}
.fs4{font-size:36.000000px;}
.fs0{font-size:39.000000px;}
.fs1c{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fse{font-size:48.000000px;}
.fsc{font-size:51.000000px;}
.fsd{font-size:54.000000px;}
.fs14{font-size:57.000000px;}
.fs15{font-size:60.000000px;}
.fs5{font-size:63.000000px;}
.fs23{font-size:66.000000px;}
.fs24{font-size:69.000000px;}
.fs21{font-size:72.000000px;}
.fs1b{font-size:75.000000px;}
.fs20{font-size:78.000000px;}
.fs1e{font-size:81.000000px;}
.fs1d{font-size:84.000000px;}
.fs1f{font-size:87.000000px;}
.fsf{font-size:93.000000px;}
.fs1a{font-size:96.000000px;}
.fs12{font-size:102.000000px;}
.fs13{font-size:108.000000px;}
.fs11{font-size:111.000000px;}
.fs3{font-size:114.000000px;}
.fs10{font-size:117.000000px;}
.fs2{font-size:120.000000px;}
.fsa{font-size:123.000000px;}
.fsb{font-size:126.000000px;}
.fs1{font-size:132.000000px;}
.fs9{font-size:135.000000px;}
.fs8{font-size:141.000000px;}
.fs7{font-size:144.000000px;}
.fs19{font-size:150.000000px;}
.fs18{font-size:153.000000px;}
.fs26{font-size:189.000000px;}
.fs22{font-size:204.000000px;}
.fs2b{font-size:258.000000px;}
.fs29{font-size:261.000000px;}
.fs2f{font-size:267.000000px;}
.fs30{font-size:279.000000px;}
.fs2d{font-size:285.000000px;}
.fs17{font-size:315.000000px;}
.fs16{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:32.448150px;}
.ycc{bottom:33.888150px;}
.yff{bottom:34.968150px;}
.y19d{bottom:36.048150px;}
.y1f4{bottom:36.408150px;}
.y9b{bottom:37.128150px;}
.y13e{bottom:38.928150px;}
.y1bc{bottom:39.288150px;}
.y211{bottom:39.648150px;}
.y21c{bottom:40.728150px;}
.y1d9{bottom:41.448150px;}
.yd{bottom:47.568150px;}
.y33{bottom:74.208150px;}
.ye6{bottom:75.648150px;}
.y1f3{bottom:76.368150px;}
.y1bb{bottom:77.448150px;}
.yfe{bottom:78.528150px;}
.y199{bottom:78.888150px;}
.y11f{bottom:79.248150px;}
.y77{bottom:79.968150px;}
.y9a{bottom:80.328150px;}
.y13d{bottom:86.448150px;}
.y58{bottom:86.808150px;}
.y1d8{bottom:88.248150px;}
.y32{bottom:88.608150px;}
.y170{bottom:88.968150px;}
.ycb{bottom:90.048150px;}
.y15d{bottom:91.848150px;}
.y1ba{bottom:92.208150px;}
.y11e{bottom:93.648150px;}
.y1f2{bottom:94.728150px;}
.yfd{bottom:99.048150px;}
.y99{bottom:99.768150px;}
.y13c{bottom:100.128150px;}
.y57{bottom:100.488150px;}
.y31{bottom:103.008150px;}
.yb5{bottom:103.728150px;}
.y76{bottom:104.448150px;}
.y1d7{bottom:105.888150px;}
.y1b9{bottom:106.968150px;}
.y210{bottom:107.688150px;}
.y21b{bottom:108.048150px;}
.y11d{bottom:108.408150px;}
.ye5{bottom:108.768150px;}
.y16f{bottom:112.728150px;}
.yca{bottom:113.088150px;}
.y56{bottom:114.888150px;}
.yfc{bottom:117.048150px;}
.y30{bottom:117.768150px;}
.y98{bottom:118.128150px;}
.yb4{bottom:118.488150px;}
.y1f1{bottom:118.848150px;}
.y19c{bottom:120.288150px;}
.y1b8{bottom:121.728150px;}
.y75{bottom:122.088150px;}
.y16e{bottom:126.408150px;}
.y21a{bottom:126.768150px;}
.y11c{bottom:127.128150px;}
.y55{bottom:129.288150px;}
.y1d6{bottom:130.008150px;}
.yc9{bottom:131.448150px;}
.y17{bottom:132.528150px;}
.y20f{bottom:133.968150px;}
.y2f{bottom:136.128150px;}
.yb3{bottom:136.488150px;}
.y1f0{bottom:137.208150px;}
.y1b7{bottom:137.568150px;}
.yc{bottom:137.928150px;}
.y97{bottom:140.808150px;}
.y15c{bottom:142.968150px;}
.y19b{bottom:144.408150px;}
.y16d{bottom:144.768150px;}
.ye4{bottom:145.848150px;}
.y13b{bottom:146.568150px;}
.y54{bottom:147.648150px;}
.y1d5{bottom:148.368150px;}
.yc8{bottom:149.088150px;}
.y74{bottom:149.808150px;}
.y219{bottom:150.168150px;}
.y11b{bottom:150.528150px;}
.y198{bottom:151.248150px;}
.y96{bottom:153.408150px;}
.yfb{bottom:153.768150px;}
.y1b6{bottom:154.128150px;}
.y16{bottom:154.848150px;}
.y20e{bottom:155.208150px;}
.yb2{bottom:160.248150px;}
.y1ef{bottom:160.968150px;}
.y19a{bottom:162.408150px;}
.y11a{bottom:165.288150px;}
.y16c{bottom:167.808150px;}
.y218{bottom:168.888150px;}
.y95{bottom:169.608150px;}
.y13a{bottom:169.968150px;}
.yb{bottom:171.408150px;}
.ye3{bottom:172.128150px;}
.y15b{bottom:173.208150px;}
.y73{bottom:173.568150px;}
.yb1{bottom:174.648150px;}
.y1ee{bottom:175.368150px;}
.y19{bottom:176.448150px;}
.y15{bottom:177.528150px;}
.y197{bottom:178.968150px;}
.yfa{bottom:179.328150px;}
.y119{bottom:179.688150px;}
.y1b5{bottom:181.848150px;}
.y94{bottom:184.008150px;}
.y20d{bottom:184.368150px;}
.y16b{bottom:186.168150px;}
.y53{bottom:189.048150px;}
.y1ed{bottom:190.128150px;}
.y72{bottom:191.928150px;}
.yb0{bottom:193.368150px;}
.y15a{bottom:194.808150px;}
.ye2{bottom:197.328150px;}
.y118{bottom:198.408150px;}
.y14{bottom:199.848150px;}
.y93{bottom:202.368150px;}
.yf9{bottom:204.528150px;}
.yc7{bottom:204.888150px;}
.y196{bottom:208.848150px;}
.y20c{bottom:209.208150px;}
.y16a{bottom:209.568150px;}
.y52{bottom:212.448150px;}
.y18{bottom:215.688150px;}
.yaf{bottom:217.128150px;}
.y71{bottom:219.648150px;}
.ya{bottom:221.088150px;}
.y117{bottom:222.168150px;}
.ye1{bottom:223.608150px;}
.y17a{bottom:224.328150px;}
.y92{bottom:225.768150px;}
.y139{bottom:227.208150px;}
.y169{bottom:227.928150px;}
.y1ec{bottom:229.728150px;}
.yf8{bottom:230.448150px;}
.yc6{bottom:231.168150px;}
.y51{bottom:231.528150px;}
.y138{bottom:232.608150px;}
.y195{bottom:234.768150px;}
.y20b{bottom:235.128150px;}
.yae{bottom:235.488150px;}
.y116{bottom:236.568150px;}
.y1b4{bottom:237.648150px;}
.y91{bottom:244.128150px;}
.y159{bottom:246.288150px;}
.y1eb{bottom:247.368150px;}
.ye0{bottom:248.808150px;}
.y179{bottom:249.528150px;}
.y50{bottom:251.688150px;}
.y115{bottom:254.928150px;}
.yf7{bottom:255.288150px;}
.y137{bottom:255.648150px;}
.yc5{bottom:256.008150px;}
.y9{bottom:258.528150px;}
.y1d4{bottom:258.888150px;}
.y20a{bottom:259.608150px;}
.y194{bottom:259.968150px;}
.y13{bottom:260.688150px;}
.y1ea{bottom:261.768150px;}
.y90{bottom:267.168150px;}
.y136{bottom:270.408150px;}
.y4f{bottom:270.768150px;}
.y158{bottom:272.568150px;}
.yad{bottom:274.008150px;}
.ydf{bottom:275.448150px;}
.y178{bottom:275.808150px;}
.y1b3{bottom:277.248150px;}
.y1e9{bottom:280.128150px;}
.y168{bottom:281.208150px;}
.y8f{bottom:281.568150px;}
.y135{bottom:284.448150px;}
.y1d3{bottom:285.168150px;}
.y193{bottom:285.528150px;}
.y209{bottom:285.888150px;}
.y4e{bottom:290.568150px;}
.y8e{bottom:295.968150px;}
.y157{bottom:298.128150px;}
.yac{bottom:299.208150px;}
.yde{bottom:300.288150px;}
.y70{bottom:300.648150px;}
.y177{bottom:301.368150px;}
.y1b2{bottom:302.448150px;}
.y167{bottom:306.048150px;}
.yc4{bottom:306.408150px;}
.y208{bottom:306.768150px;}
.y4d{bottom:310.008150px;}
.y192{bottom:310.728150px;}
.y134{bottom:313.608150px;}
.y12{bottom:314.328150px;}
.y156{bottom:324.408150px;}
.y8d{bottom:324.768150px;}
.yab{bottom:325.848150px;}
.y6f{bottom:326.928150px;}
.y176{bottom:327.288150px;}
.y1e8{bottom:327.648150px;}
.y1b1{bottom:328.728150px;}
.y4c{bottom:329.448150px;}
.y114{bottom:330.528150px;}
.y133{bottom:331.608150px;}
.yf6{bottom:332.328150px;}
.yc3{bottom:332.688150px;}
.y1d2{bottom:336.288150px;}
.y191{bottom:336.648150px;}
.y8c{bottom:339.168150px;}
.y4b{bottom:348.888150px;}
.y155{bottom:349.608150px;}
.yaa{bottom:350.688150px;}
.ydd{bottom:352.128150px;}
.y6e{bottom:352.488150px;}
.y8b{bottom:353.208150px;}
.y1b0{bottom:353.928150px;}
.y11{bottom:354.288150px;}
.y113{bottom:355.728150px;}
.yf5{bottom:356.808150px;}
.yc2{bottom:357.528150px;}
.y1d1{bottom:361.128150px;}
.y190{bottom:361.488150px;}
.y4a{bottom:368.688150px;}
.y8a{bottom:371.568150px;}
.y154{bottom:376.248150px;}
.ya9{bottom:377.328150px;}
.ydc{bottom:378.408150px;}
.y6d{bottom:378.768150px;}
.y1e7{bottom:379.488150px;}
.y1af{bottom:380.568150px;}
.y112{bottom:382.008150px;}
.y166{bottom:383.088150px;}
.yc1{bottom:383.448150px;}
.y132{bottom:384.888150px;}
.y1d0{bottom:387.408150px;}
.y18f{bottom:387.768150px;}
.y49{bottom:388.488150px;}
.y1ae{bottom:395.688150px;}
.y153{bottom:401.448150px;}
.ya8{bottom:402.528150px;}
.ydb{bottom:403.608150px;}
.y6c{bottom:403.968150px;}
.y175{bottom:404.688150px;}
.y111{bottom:407.208150px;}
.y48{bottom:407.928150px;}
.y89{bottom:408.288150px;}
.y131{bottom:410.088150px;}
.y1cf{bottom:412.248150px;}
.y18e{bottom:412.608150px;}
.y47{bottom:427.368150px;}
.y152{bottom:427.728150px;}
.ya7{bottom:429.168150px;}
.yda{bottom:430.248150px;}
.y6b{bottom:430.608150px;}
.y1e6{bottom:431.328150px;}
.y1ad{bottom:432.408150px;}
.y110{bottom:433.848150px;}
.yf4{bottom:434.208150px;}
.y88{bottom:434.568150px;}
.y130{bottom:436.008150px;}
.y207{bottom:438.168150px;}
.y18d{bottom:438.528150px;}
.y46{bottom:447.528150px;}
.y151{bottom:452.928150px;}
.ya6{bottom:454.008150px;}
.yd9{bottom:455.448150px;}
.y6a{bottom:455.808150px;}
.y1ac{bottom:457.248150px;}
.y165{bottom:458.688150px;}
.y87{bottom:459.048150px;}
.y1e5{bottom:459.768150px;}
.yc0{bottom:460.128150px;}
.y12f{bottom:461.208150px;}
.y206{bottom:463.008150px;}
.y18c{bottom:463.368150px;}
.y1ce{bottom:463.728150px;}
.y45{bottom:466.608150px;}
.y150{bottom:479.568150px;}
.ya5{bottom:480.648150px;}
.yd8{bottom:482.088150px;}
.y69{bottom:482.448150px;}
.y1e4{bottom:483.528150px;}
.y1ab{bottom:483.888150px;}
.yf3{bottom:484.968150px;}
.y86{bottom:485.328150px;}
.y44{bottom:486.048150px;}
.y12e{bottom:487.128150px;}
.y205{bottom:488.928150px;}
.y1cd{bottom:489.648150px;}
.y18b{bottom:490.008150px;}
.y14f{bottom:504.408150px;}
.y43{bottom:505.488150px;}
.ya4{bottom:505.848150px;}
.ybf{bottom:506.208150px;}
.yd7{bottom:506.928150px;}
.y68{bottom:507.288150px;}
.y1e3{bottom:508.368150px;}
.y1aa{bottom:508.728150px;}
.y85{bottom:510.168150px;}
.y10f{bottom:510.528150px;}
.y12d{bottom:511.968150px;}
.y204{bottom:513.768150px;}
.y18a{bottom:514.488150px;}
.y1cc{bottom:514.848150px;}
.y42{bottom:525.288150px;}
.y14e{bottom:530.688150px;}
.ya3{bottom:532.128150px;}
.yd6{bottom:533.568150px;}
.y67{bottom:533.928150px;}
.y1e2{bottom:535.008150px;}
.y1a9{bottom:535.368150px;}
.y84{bottom:536.088150px;}
.y10e{bottom:536.808150px;}
.y12c{bottom:538.248150px;}
.y203{bottom:540.048150px;}
.y189{bottom:540.768150px;}
.y1cb{bottom:541.128150px;}
.y41{bottom:544.728150px;}
.y14d{bottom:555.888150px;}
.y2e{bottom:557.328150px;}
.y66{bottom:558.768150px;}
.y1e1{bottom:559.848150px;}
.yf2{bottom:560.568150px;}
.ybe{bottom:560.928150px;}
.y83{bottom:561.288150px;}
.y10d{bottom:562.008150px;}
.y217{bottom:562.368150px;}
.y12b{bottom:563.088150px;}
.y40{bottom:564.168150px;}
.y202{bottom:564.528150px;}
.y188{bottom:565.248150px;}
.y1ca{bottom:565.968150px;}
.y14c{bottom:582.528150px;}
.y2d{bottom:583.968150px;}
.yd5{bottom:585.048150px;}
.y174{bottom:585.408150px;}
.y65{bottom:585.768150px;}
.yf1{bottom:586.488150px;}
.y1a8{bottom:586.848150px;}
.y82{bottom:587.208150px;}
.y10c{bottom:588.648150px;}
.y12a{bottom:589.368150px;}
.y201{bottom:590.808150px;}
.y187{bottom:591.528150px;}
.y1c9{bottom:592.248150px;}
.y3f{bottom:603.408150px;}
.y14b{bottom:607.368150px;}
.y2c{bottom:608.808150px;}
.yd4{bottom:609.888150px;}
.y173{bottom:610.248150px;}
.y64{bottom:610.608150px;}
.yf0{bottom:611.328150px;}
.ybd{bottom:611.688150px;}
.y81{bottom:612.048150px;}
.y10b{bottom:613.488150px;}
.y129{bottom:614.208150px;}
.y200{bottom:615.288150px;}
.y186{bottom:616.008150px;}
.y1c8{bottom:617.808150px;}
.y3e{bottom:622.848150px;}
.y14a{bottom:634.008150px;}
.y2b{bottom:635.088150px;}
.y63{bottom:636.888150px;}
.yef{bottom:637.248150px;}
.y164{bottom:637.608150px;}
.y80{bottom:637.968150px;}
.y1a7{bottom:638.328150px;}
.yd3{bottom:639.048150px;}
.y10a{bottom:640.128150px;}
.y1ff{bottom:641.208150px;}
.y1c7{bottom:643.728150px;}
.y185{bottom:646.248150px;}
.y3d{bottom:646.968150px;}
.y2a{bottom:656.688150px;}
.y149{bottom:658.848150px;}
.ya2{bottom:660.648150px;}
.yd2{bottom:661.728150px;}
.y62{bottom:662.088150px;}
.y163{bottom:662.448150px;}
.y1e0{bottom:662.808150px;}
.y7f{bottom:663.168150px;}
.y1a6{bottom:663.528150px;}
.y109{bottom:664.968150px;}
.y1fe{bottom:666.048150px;}
.y184{bottom:667.128150px;}
.y1c6{bottom:668.208150px;}
.y148{bottom:685.488150px;}
.y29{bottom:686.928150px;}
.ybc{bottom:688.008150px;}
.y162{bottom:688.368150px;}
.y61{bottom:688.728150px;}
.y1df{bottom:689.088150px;}
.y3c{bottom:689.808150px;}
.y108{bottom:691.248150px;}
.y216{bottom:691.608150px;}
.y1fd{bottom:691.968150px;}
.y183{bottom:693.048150px;}
.y1c5{bottom:694.488150px;}
.y8{bottom:708.888150px;}
.y147{bottom:710.688150px;}
.y28{bottom:712.128150px;}
.yee{bottom:712.848150px;}
.ybb{bottom:713.208150px;}
.y60{bottom:713.568150px;}
.y3b{bottom:714.288150px;}
.y1a5{bottom:715.008150px;}
.y128{bottom:715.728150px;}
.y107{bottom:716.448150px;}
.y1fc{bottom:716.808150px;}
.y182{bottom:718.248150px;}
.y1c4{bottom:719.328150px;}
.y146{bottom:736.968150px;}
.y27{bottom:738.048150px;}
.ya1{bottom:738.408150px;}
.yed{bottom:738.768150px;}
.yba{bottom:739.128150px;}
.y7e{bottom:739.488150px;}
.yd1{bottom:739.848150px;}
.y3a{bottom:740.208150px;}
.y1de{bottom:740.568150px;}
.y1a4{bottom:741.648150px;}
.y127{bottom:742.368150px;}
.y106{bottom:743.088150px;}
.y181{bottom:744.168150px;}
.y1c3{bottom:745.248150px;}
.y145{bottom:762.168150px;}
.y26{bottom:763.248150px;}
.ya0{bottom:763.608150px;}
.yb9{bottom:763.968150px;}
.y161{bottom:764.328150px;}
.y39{bottom:765.048150px;}
.y7d{bottom:765.408150px;}
.y1dd{bottom:765.768150px;}
.y1a3{bottom:766.488150px;}
.y126{bottom:767.208150px;}
.y1fb{bottom:767.928150px;}
.yec{bottom:768.288150px;}
.y180{bottom:769.008150px;}
.y1c2{bottom:770.448150px;}
.y7{bottom:771.528150px;}
.y144{bottom:788.448150px;}
.y25{bottom:789.888150px;}
.y7c{bottom:790.608150px;}
.y172{bottom:790.968150px;}
.y38{bottom:791.328150px;}
.y5f{bottom:791.688150px;}
.y1dc{bottom:792.408150px;}
.y125{bottom:793.128150px;}
.y105{bottom:794.568150px;}
.y215{bottom:794.928150px;}
.y1c1{bottom:797.088150px;}
.y17f{bottom:800.328150px;}
.y143{bottom:813.648150px;}
.yeb{bottom:814.728150px;}
.y24{bottom:815.448150px;}
.y160{bottom:815.808150px;}
.y37{bottom:816.528150px;}
.y5e{bottom:816.888150px;}
.y1db{bottom:817.608150px;}
.y1a2{bottom:818.328150px;}
.y1fa{bottom:819.048150px;}
.y104{bottom:819.768150px;}
.y7b{bottom:820.128150px;}
.y17e{bottom:821.568150px;}
.y124{bottom:821.928150px;}
.y6{bottom:826.248150px;}
.y10{bottom:829.488150px;}
.y142{bottom:839.928150px;}
.y9f{bottom:841.728150px;}
.yea{bottom:842.088150px;}
.y23{bottom:842.448150px;}
.yd0{bottom:843.168150px;}
.y5d{bottom:843.528150px;}
.y123{bottom:844.248150px;}
.y1a1{bottom:844.608150px;}
.y1e{bottom:845.071650px;}
.y1f9{bottom:845.688150px;}
.y103{bottom:846.048150px;}
.y214{bottom:846.408150px;}
.y1c0{bottom:848.208150px;}
.y17d{bottom:852.168150px;}
.y5{bottom:864.768150px;}
.y141{bottom:865.488150px;}
.ye9{bottom:865.848150px;}
.y1d{bottom:866.671650px;}
.yb8{bottom:866.928150px;}
.y7a{bottom:867.288150px;}
.y36{bottom:868.008150px;}
.y22{bottom:868.368150px;}
.y5c{bottom:868.728150px;}
.y122{bottom:869.448150px;}
.y1a0{bottom:870.168150px;}
.y1f8{bottom:870.528150px;}
.y102{bottom:871.608150px;}
.y213{bottom:871.968150px;}
.y1bf{bottom:873.408150px;}
.y4{bottom:877.368150px;}
.y1f6{bottom:884.208150px;}
.y1c{bottom:888.271650px;}
.y15f{bottom:889.248150px;}
.yf{bottom:889.968150px;}
.yb7{bottom:892.128150px;}
.ye8{bottom:892.488150px;}
.y19f{bottom:892.848150px;}
.y79{bottom:893.208150px;}
.y9e{bottom:893.568150px;}
.y21{bottom:894.288150px;}
.y15e{bottom:894.648150px;}
.ycf{bottom:895.008150px;}
.y5b{bottom:895.368150px;}
.y121{bottom:895.728150px;}
.y3{bottom:896.088150px;}
.y35{bottom:898.248150px;}
.y1be{bottom:900.048150px;}
.y17c{bottom:904.008150px;}
.y1f7{bottom:904.368150px;}
.y1b{bottom:909.871650px;}
.y9d{bottom:915.168150px;}
.yb6{bottom:916.968150px;}
.ye7{bottom:917.688150px;}
.y140{bottom:918.408150px;}
.y78{bottom:918.768150px;}
.y20{bottom:919.128150px;}
.yce{bottom:920.208150px;}
.y34{bottom:920.928150px;}
.y1da{bottom:921.288150px;}
.y1f5{bottom:921.648150px;}
.y19e{bottom:922.008150px;}
.y120{bottom:922.368150px;}
.y101{bottom:923.448150px;}
.y212{bottom:923.808150px;}
.y1bd{bottom:925.248150px;}
.y17b{bottom:929.208150px;}
.y1a{bottom:931.471650px;}
.y2{bottom:932.448150px;}
.y1{bottom:964.848150px;}
.y13f{bottom:968.448150px;}
.y100{bottom:971.328150px;}
.y171{bottom:971.688150px;}
.ycd{bottom:976.368150px;}
.y9c{bottom:979.248150px;}
.y5a{bottom:983.928150px;}
.y1f{bottom:987.168150px;}
.ye{bottom:990.408150px;}
.h95{height:25.582500px;}
.hc0{height:28.160156px;}
.h75{height:28.462500px;}
.he8{height:30.151406px;}
.hd5{height:31.289062px;}
.h97{height:34.417969px;}
.h76{height:37.546875px;}
.h74{height:39.733594px;}
.h96{height:39.982500px;}
.h2{height:40.675781px;}
.hbd{height:41.422500px;}
.h6e{height:42.169219px;}
.h44{height:43.804688px;}
.h77{height:43.858125px;}
.hba{height:44.302500px;}
.hbb{height:44.551406px;}
.ha2{height:45.742500px;}
.h6{height:46.933594px;}
.h6f{height:47.431406px;}
.hf3{height:47.680313px;}
.h70{height:48.871406px;}
.h17{height:50.062500px;}
.hb2{height:50.560313px;}
.h71{height:50.809219px;}
.h1d{height:51.264000px;}
.h82{height:51.502500px;}
.h85{height:51.751406px;}
.hd6{height:51.804844px;}
.hd4{height:52.000313px;}
.h72{height:52.249219px;}
.h73{height:52.498125px;}
.hbc{height:52.747031px;}
.h42{height:53.191406px;}
.h92{height:53.689219px;}
.h104{height:53.938125px;}
.h2e{height:54.382500px;}
.h105{height:54.435938px;}
.h5e{height:54.631406px;}
.ha9{height:54.880312px;}
.hbf{height:54.933750px;}
.h43{height:55.129219px;}
.he3{height:55.378125px;}
.h1a{height:55.822500px;}
.h7c{height:56.071406px;}
.ha{height:56.320312px;}
.hb9{height:56.569219px;}
.h38{height:56.818125px;}
.hd7{height:57.013594px;}
.h102{height:57.511406px;}
.h2b{height:58.258125px;}
.he5{height:58.951406px;}
.h94{height:59.004844px;}
.hae{height:59.200313px;}
.h14{height:59.449219px;}
.h41{height:59.698125px;}
.h5c{height:60.142500px;}
.h2c{height:60.391406px;}
.h106{height:60.444844px;}
.h29{height:60.640313px;}
.ha8{height:60.889219px;}
.hd{height:61.138125px;}
.hfb{height:61.387031px;}
.hb4{height:61.582500px;}
.hb1{height:61.635937px;}
.h93{height:61.884844px;}
.h6b{height:62.080312px;}
.h59{height:62.329219px;}
.h19{height:62.578125px;}
.h5d{height:62.773594px;}
.h40{height:62.827031px;}
.h90{height:63.075937px;}
.h10b{height:63.271406px;}
.h3f{height:63.324844px;}
.h62{height:63.520312px;}
.h6c{height:63.769219px;}
.h6d{height:64.018125px;}
.h100{height:64.213594px;}
.hf7{height:64.267031px;}
.h87{height:64.462500px;}
.hb3{height:64.515937px;}
.h84{height:64.711406px;}
.h26{height:64.960312px;}
.hb7{height:65.209219px;}
.h3d{height:65.458125px;}
.h5{height:65.707031px;}
.haa{height:65.955937px;}
.h86{height:66.151406px;}
.h6a{height:66.400313px;}
.he4{height:66.453750px;}
.h8e{height:66.649219px;}
.h20{height:66.898125px;}
.h8c{height:67.342500px;}
.h9c{height:67.395937px;}
.h83{height:67.591406px;}
.h9e{height:67.840312px;}
.h1f{height:68.089219px;}
.h24{height:68.338125px;}
.hb8{height:68.835938px;}
.had{height:69.031406px;}
.h9b{height:69.280312px;}
.h8d{height:69.529219px;}
.hab{height:69.582656px;}
.h3b{height:69.778125px;}
.hfa{height:70.027031px;}
.he9{height:70.222500px;}
.h101{height:70.275938px;}
.hff{height:70.471406px;}
.he0{height:70.524844px;}
.h7e{height:70.720313px;}
.h9a{height:70.969219px;}
.haf{height:71.218125px;}
.h22{height:71.467031px;}
.hf4{height:71.911406px;}
.hb6{height:71.964844px;}
.ha1{height:72.160313px;}
.hd2{height:72.213750px;}
.h7d{height:72.409219px;}
.h3c{height:72.658125px;}
.hb0{height:72.907031px;}
.h21{height:73.155938px;}
.he7{height:73.351406px;}
.h28{height:73.404844px;}
.h66{height:73.600313px;}
.h67{height:73.849219px;}
.h39{height:74.098125px;}
.h25{height:74.347031px;}
.hf5{height:74.791406px;}
.h65{height:75.040313px;}
.hfe{height:75.093750px;}
.h36{height:75.289219px;}
.h91{height:75.342656px;}
.h9f{height:75.538125px;}
.hdd{height:75.787031px;}
.h2d{height:76.035938px;}
.h32{height:76.231406px;}
.he2{height:76.284844px;}
.h2f{height:76.480313px;}
.h2a{height:76.533750px;}
.hd1{height:76.729219px;}
.h7b{height:76.978125px;}
.h80{height:77.227031px;}
.hd3{height:77.280469px;}
.hbe{height:77.422500px;}
.h81{height:77.475938px;}
.h5b{height:77.671406px;}
.hcb{height:77.920312px;}
.h8a{height:78.169219px;}
.h3e{height:78.222656px;}
.h7a{height:78.418125px;}
.h68{height:78.667031px;}
.h8f{height:78.720469px;}
.h99{height:78.915937px;}
.hcd{height:79.360312px;}
.hc9{height:79.609219px;}
.h63{height:79.858125px;}
.h37{height:80.107031px;}
.hf8{height:80.355937px;}
.h9d{height:80.604844px;}
.h23{height:80.853750px;}
.hc6{height:81.049219px;}
.hb5{height:81.298125px;}
.h45{height:81.547031px;}
.ha7{height:81.795938px;}
.h108{height:81.991406px;}
.ha6{height:82.044844px;}
.h103{height:82.240313px;}
.h61{height:82.489219px;}
.ha0{height:82.542656px;}
.ha5{height:82.738125px;}
.h3a{height:82.987031px;}
.hf6{height:83.235937px;}
.hf1{height:83.431406px;}
.h69{height:83.484844px;}
.ha3{height:83.680312px;}
.h30{height:83.929219px;}
.h33{height:84.178125px;}
.hde{height:84.427031px;}
.h1c{height:84.480469px;}
.hfc{height:84.675937px;}
.hc2{height:84.924844px;}
.hed{height:85.120312px;}
.hf9{height:85.173750px;}
.h57{height:85.369219px;}
.h53{height:85.618125px;}
.h8b{height:85.867031px;}
.h5a{height:85.920469px;}
.hdf{height:86.115938px;}
.hef{height:86.311406px;}
.h55{height:86.809219px;}
.he1{height:86.862656px;}
.h109{height:87.058125px;}
.h51{height:87.307031px;}
.hc3{height:87.555937px;}
.h7f{height:87.804844px;}
.h1b{height:87.858281px;}
.h47{height:88.000313px;}
.h10a{height:88.053750px;}
.h54{height:88.249219px;}
.h18{height:88.302656px;}
.h4d{height:88.498125px;}
.ha4{height:88.747031px;}
.h64{height:88.995937px;}
.hdc{height:89.244844px;}
.h48{height:89.440312px;}
.h35{height:89.493750px;}
.h49{height:89.689219px;}
.h4b{height:89.938125px;}
.h58{height:90.187031px;}
.h50{height:90.435938px;}
.hdb{height:90.933750px;}
.heb{height:91.129219px;}
.h4a{height:91.378125px;}
.hc7{height:91.627031px;}
.h27{height:91.875937px;}
.hec{height:92.569219px;}
.hda{height:92.622656px;}
.h89{height:92.818125px;}
.h4f{height:93.067031px;}
.hd0{height:93.120469px;}
.h107{height:93.315938px;}
.h34{height:93.813750px;}
.h4e{height:94.507031px;}
.hca{height:94.560469px;}
.h4c{height:94.755938px;}
.hc5{height:95.004844px;}
.hd9{height:95.253750px;}
.hc4{height:95.502656px;}
.h52{height:95.947031px;}
.h5f{height:96.195938px;}
.hcf{height:96.693750px;}
.h79{height:97.387031px;}
.h31{height:97.884844px;}
.hf2{height:98.133750px;}
.hce{height:99.075938px;}
.hcc{height:99.822656px;}
.h56{height:100.764844px;}
.hc8{height:101.760469px;}
.hfd{height:102.702656px;}
.h88{height:103.644844px;}
.h60{height:104.142656px;}
.hee{height:105.582656px;}
.he6{height:108.160313px;}
.hea{height:108.409219px;}
.hc{height:115.769531px;}
.h9{height:118.898438px;}
.hb{height:123.467344px;}
.h16{height:125.156250px;}
.h15{height:125.405156px;}
.hf0{height:126.187031px;}
.h13{height:131.414062px;}
.h3{height:137.671875px;}
.h8{height:147.058594px;}
.h7{height:150.187500px;}
.h12{height:159.574219px;}
.h4{height:183.698438px;}
.h46{height:197.121094px;}
.h1e{height:212.765625px;}
.h98{height:269.085938px;}
.h78{height:272.214844px;}
.hc1{height:278.472656px;}
.hd8{height:290.988281px;}
.hac{height:297.246094px;}
.h11{height:328.535156px;}
.he{height:337.921875px;}
.h10{height:985.500000px;}
.hf{height:985.843650px;}
.h0{height:1007.104650px;}
.h1{height:1007.250000px;}
.w0{width:692.776500px;}
.w1{width:693.000000px;}
.w3{width:1292.250000px;}
.w2{width:1292.400000px;}
.x0{left:0.000000px;}
.x4f{left:34.920000px;}
.x50{left:36.000000px;}
.x51{left:38.520000px;}
.x15{left:40.035000px;}
.x1a{left:41.040000px;}
.x1b{left:42.120000px;}
.x1c{left:43.200000px;}
.x12{left:44.640000px;}
.x4b{left:45.720000px;}
.x17{left:47.520000px;}
.x25{left:48.960000px;}
.x26{left:50.040000px;}
.x27{left:51.120000px;}
.x29{left:52.200000px;}
.x2a{left:53.280000px;}
.x2b{left:54.360000px;}
.x2c{left:55.440000px;}
.x28{left:56.880000px;}
.x2e{left:58.320000px;}
.x2d{left:60.120000px;}
.x38{left:61.200000px;}
.x39{left:62.640000px;}
.x3b{left:63.720000px;}
.x3c{left:64.800000px;}
.x3a{left:69.120000px;}
.x53{left:74.880000px;}
.x52{left:84.960000px;}
.x48{left:93.960000px;}
.x6{left:107.640000px;}
.x47{left:110.160000px;}
.x5{left:124.560000px;}
.xa{left:130.680000px;}
.x9{left:133.920000px;}
.x18{left:187.920000px;}
.x7{left:219.240000px;}
.x8{left:221.400000px;}
.x4a{left:253.440000px;}
.x3{left:307.440000px;}
.x2{left:308.880000px;}
.x1{left:310.680000px;}
.xb{left:318.600000px;}
.x54{left:326.520000px;}
.x24{left:327.960000px;}
.x4{left:335.880000px;}
.x4c{left:338.400000px;}
.x36{left:339.480000px;}
.x45{left:342.000000px;}
.x2f{left:344.160000px;}
.x59{left:348.120000px;}
.x40{left:349.560000px;}
.x19{left:459.360000px;}
.x46{left:628.560000px;}
.x44{left:630.720000px;}
.x30{left:632.160000px;}
.x37{left:634.320000px;}
.x16{left:635.400000px;}
.x56{left:639.360000px;}
.xc{left:640.800000px;}
.x57{left:651.960000px;}
.x23{left:653.760000px;}
.x22{left:654.840000px;}
.x21{left:655.920000px;}
.x1f{left:657.000000px;}
.x1e{left:658.080000px;}
.x20{left:659.520000px;}
.x33{left:660.960000px;}
.x1d{left:662.040000px;}
.x3e{left:663.120000px;}
.x31{left:664.200000px;}
.x34{left:665.280000px;}
.x43{left:666.360000px;}
.x32{left:667.440000px;}
.x3d{left:668.520000px;}
.x41{left:670.320000px;}
.x42{left:671.760000px;}
.x4d{left:673.200000px;}
.xd{left:674.280000px;}
.x13{left:696.960000px;}
.x49{left:700.200000px;}
.x35{left:703.080000px;}
.x55{left:709.920000px;}
.x11{left:721.080000px;}
.xf{left:811.800000px;}
.x10{left:814.680000px;}
.x14{left:872.280000px;}
.xe{left:913.680000px;}
.x58{left:931.320000px;}
.x5a{left:942.480000px;}
.x3f{left:944.640000px;}
.x4e{left:950.760000px;}
@media print{
.v6{vertical-align:-129.280000pt;}
.v2{vertical-align:-48.640000pt;}
.v2e{vertical-align:-43.520000pt;}
.v2d{vertical-align:-40.960000pt;}
.v3b{vertical-align:-39.680000pt;}
.v2b{vertical-align:-38.400000pt;}
.v2a{vertical-align:-37.120000pt;}
.v29{vertical-align:-35.840000pt;}
.v28{vertical-align:-34.560000pt;}
.v27{vertical-align:-33.280000pt;}
.v26{vertical-align:-32.000000pt;}
.v25{vertical-align:-30.720000pt;}
.v24{vertical-align:-29.440000pt;}
.v34{vertical-align:-28.160000pt;}
.v32{vertical-align:-26.880000pt;}
.v31{vertical-align:-25.600000pt;}
.v33{vertical-align:-24.320000pt;}
.v30{vertical-align:-23.040000pt;}
.v2f{vertical-align:-21.760000pt;}
.v23{vertical-align:-20.480000pt;}
.v21{vertical-align:-19.200000pt;}
.v22{vertical-align:-17.920000pt;}
.v38{vertical-align:-16.640000pt;}
.v2c{vertical-align:-15.360000pt;}
.ve{vertical-align:-14.080000pt;}
.v20{vertical-align:-12.800000pt;}
.vf{vertical-align:-11.520000pt;}
.v1d{vertical-align:-10.240000pt;}
.v1f{vertical-align:-8.960000pt;}
.v1e{vertical-align:-7.680000pt;}
.v1a{vertical-align:-6.400000pt;}
.v1b{vertical-align:-5.120000pt;}
.v8{vertical-align:-3.840000pt;}
.v5{vertical-align:-2.560000pt;}
.v3{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.280000pt;}
.v7{vertical-align:2.560000pt;}
.vc{vertical-align:3.840000pt;}
.vb{vertical-align:5.120000pt;}
.va{vertical-align:6.400000pt;}
.v1c{vertical-align:7.680000pt;}
.v9{vertical-align:8.960000pt;}
.v19{vertical-align:10.240000pt;}
.v12{vertical-align:11.520000pt;}
.vd{vertical-align:12.800000pt;}
.v18{vertical-align:14.080000pt;}
.v16{vertical-align:15.360000pt;}
.v10{vertical-align:16.640000pt;}
.v17{vertical-align:17.920000pt;}
.v11{vertical-align:19.200000pt;}
.v15{vertical-align:20.480000pt;}
.v13{vertical-align:21.760000pt;}
.v14{vertical-align:23.040000pt;}
.v36{vertical-align:24.320000pt;}
.v37{vertical-align:25.600000pt;}
.v35{vertical-align:26.880000pt;}
.v3a{vertical-align:28.160000pt;}
.v39{vertical-align:29.440000pt;}
.v3d{vertical-align:30.720000pt;}
.v3e{vertical-align:32.000000pt;}
.v41{vertical-align:38.400000pt;}
.v3f{vertical-align:39.680000pt;}
.v46{vertical-align:40.960000pt;}
.v42{vertical-align:42.240000pt;}
.v40{vertical-align:43.520000pt;}
.v43{vertical-align:44.800000pt;}
.v3c{vertical-align:46.080000pt;}
.v44{vertical-align:53.760000pt;}
.v45{vertical-align:55.040000pt;}
.v1{vertical-align:57.600000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:158.920000pt;}
.ws4{word-spacing:-11.861333pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:352.160000pt;}
.ws2{word-spacing:2051.546667pt;}
.ws3{word-spacing:2066.906667pt;}
.ws5{word-spacing:2074.586667pt;}
.ws7{word-spacing:2078.293333pt;}
.ws6{word-spacing:2087.253333pt;}
.ws1{word-spacing:2089.946667pt;}
._16{margin-left:-2069.770667pt;}
._14{margin-left:-7.520000pt;}
._18{margin-left:-6.509333pt;}
._d{margin-left:-5.064000pt;}
._e{margin-left:-3.088000pt;}
._17{margin-left:-1.189333pt;}
._1{width:1.328000pt;}
._0{width:2.346667pt;}
._5{width:3.746667pt;}
._3{width:5.424000pt;}
._8{width:6.474667pt;}
._6{width:7.376000pt;}
._9{width:9.093333pt;}
._2{width:10.752000pt;}
._b{width:12.157333pt;}
._7{width:13.629333pt;}
._4{width:14.800000pt;}
._f{width:15.754667pt;}
._10{width:16.698667pt;}
._c{width:17.600000pt;}
._a{width:19.360000pt;}
._12{width:20.314667pt;}
._13{width:22.040000pt;}
._19{width:24.192000pt;}
._11{width:25.360000pt;}
._15{width:52.213333pt;}
._1a{width:78.544000pt;}
.fs2c{font-size:13.333333pt;}
.fs2e{font-size:18.666667pt;}
.fs2a{font-size:21.333333pt;}
.fs28{font-size:24.000000pt;}
.fs27{font-size:26.666667pt;}
.fs25{font-size:29.333333pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:34.666667pt;}
.fs1c{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fse{font-size:42.666667pt;}
.fsc{font-size:45.333333pt;}
.fsd{font-size:48.000000pt;}
.fs14{font-size:50.666667pt;}
.fs15{font-size:53.333333pt;}
.fs5{font-size:56.000000pt;}
.fs23{font-size:58.666667pt;}
.fs24{font-size:61.333333pt;}
.fs21{font-size:64.000000pt;}
.fs1b{font-size:66.666667pt;}
.fs20{font-size:69.333333pt;}
.fs1e{font-size:72.000000pt;}
.fs1d{font-size:74.666667pt;}
.fs1f{font-size:77.333333pt;}
.fsf{font-size:82.666667pt;}
.fs1a{font-size:85.333333pt;}
.fs12{font-size:90.666667pt;}
.fs13{font-size:96.000000pt;}
.fs11{font-size:98.666667pt;}
.fs3{font-size:101.333333pt;}
.fs10{font-size:104.000000pt;}
.fs2{font-size:106.666667pt;}
.fsa{font-size:109.333333pt;}
.fsb{font-size:112.000000pt;}
.fs1{font-size:117.333333pt;}
.fs9{font-size:120.000000pt;}
.fs8{font-size:125.333333pt;}
.fs7{font-size:128.000000pt;}
.fs19{font-size:133.333333pt;}
.fs18{font-size:136.000000pt;}
.fs26{font-size:168.000000pt;}
.fs22{font-size:181.333333pt;}
.fs2b{font-size:229.333333pt;}
.fs29{font-size:232.000000pt;}
.fs2f{font-size:237.333333pt;}
.fs30{font-size:248.000000pt;}
.fs2d{font-size:253.333333pt;}
.fs17{font-size:280.000000pt;}
.fs16{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:28.842800pt;}
.ycc{bottom:30.122800pt;}
.yff{bottom:31.082800pt;}
.y19d{bottom:32.042800pt;}
.y1f4{bottom:32.362800pt;}
.y9b{bottom:33.002800pt;}
.y13e{bottom:34.602800pt;}
.y1bc{bottom:34.922800pt;}
.y211{bottom:35.242800pt;}
.y21c{bottom:36.202800pt;}
.y1d9{bottom:36.842800pt;}
.yd{bottom:42.282800pt;}
.y33{bottom:65.962800pt;}
.ye6{bottom:67.242800pt;}
.y1f3{bottom:67.882800pt;}
.y1bb{bottom:68.842800pt;}
.yfe{bottom:69.802800pt;}
.y199{bottom:70.122800pt;}
.y11f{bottom:70.442800pt;}
.y77{bottom:71.082800pt;}
.y9a{bottom:71.402800pt;}
.y13d{bottom:76.842800pt;}
.y58{bottom:77.162800pt;}
.y1d8{bottom:78.442800pt;}
.y32{bottom:78.762800pt;}
.y170{bottom:79.082800pt;}
.ycb{bottom:80.042800pt;}
.y15d{bottom:81.642800pt;}
.y1ba{bottom:81.962800pt;}
.y11e{bottom:83.242800pt;}
.y1f2{bottom:84.202800pt;}
.yfd{bottom:88.042800pt;}
.y99{bottom:88.682800pt;}
.y13c{bottom:89.002800pt;}
.y57{bottom:89.322800pt;}
.y31{bottom:91.562800pt;}
.yb5{bottom:92.202800pt;}
.y76{bottom:92.842800pt;}
.y1d7{bottom:94.122800pt;}
.y1b9{bottom:95.082800pt;}
.y210{bottom:95.722800pt;}
.y21b{bottom:96.042800pt;}
.y11d{bottom:96.362800pt;}
.ye5{bottom:96.682800pt;}
.y16f{bottom:100.202800pt;}
.yca{bottom:100.522800pt;}
.y56{bottom:102.122800pt;}
.yfc{bottom:104.042800pt;}
.y30{bottom:104.682800pt;}
.y98{bottom:105.002800pt;}
.yb4{bottom:105.322800pt;}
.y1f1{bottom:105.642800pt;}
.y19c{bottom:106.922800pt;}
.y1b8{bottom:108.202800pt;}
.y75{bottom:108.522800pt;}
.y16e{bottom:112.362800pt;}
.y21a{bottom:112.682800pt;}
.y11c{bottom:113.002800pt;}
.y55{bottom:114.922800pt;}
.y1d6{bottom:115.562800pt;}
.yc9{bottom:116.842800pt;}
.y17{bottom:117.802800pt;}
.y20f{bottom:119.082800pt;}
.y2f{bottom:121.002800pt;}
.yb3{bottom:121.322800pt;}
.y1f0{bottom:121.962800pt;}
.y1b7{bottom:122.282800pt;}
.yc{bottom:122.602800pt;}
.y97{bottom:125.162800pt;}
.y15c{bottom:127.082800pt;}
.y19b{bottom:128.362800pt;}
.y16d{bottom:128.682800pt;}
.ye4{bottom:129.642800pt;}
.y13b{bottom:130.282800pt;}
.y54{bottom:131.242800pt;}
.y1d5{bottom:131.882800pt;}
.yc8{bottom:132.522800pt;}
.y74{bottom:133.162800pt;}
.y219{bottom:133.482800pt;}
.y11b{bottom:133.802800pt;}
.y198{bottom:134.442800pt;}
.y96{bottom:136.362800pt;}
.yfb{bottom:136.682800pt;}
.y1b6{bottom:137.002800pt;}
.y16{bottom:137.642800pt;}
.y20e{bottom:137.962800pt;}
.yb2{bottom:142.442800pt;}
.y1ef{bottom:143.082800pt;}
.y19a{bottom:144.362800pt;}
.y11a{bottom:146.922800pt;}
.y16c{bottom:149.162800pt;}
.y218{bottom:150.122800pt;}
.y95{bottom:150.762800pt;}
.y13a{bottom:151.082800pt;}
.yb{bottom:152.362800pt;}
.ye3{bottom:153.002800pt;}
.y15b{bottom:153.962800pt;}
.y73{bottom:154.282800pt;}
.yb1{bottom:155.242800pt;}
.y1ee{bottom:155.882800pt;}
.y19{bottom:156.842800pt;}
.y15{bottom:157.802800pt;}
.y197{bottom:159.082800pt;}
.yfa{bottom:159.402800pt;}
.y119{bottom:159.722800pt;}
.y1b5{bottom:161.642800pt;}
.y94{bottom:163.562800pt;}
.y20d{bottom:163.882800pt;}
.y16b{bottom:165.482800pt;}
.y53{bottom:168.042800pt;}
.y1ed{bottom:169.002800pt;}
.y72{bottom:170.602800pt;}
.yb0{bottom:171.882800pt;}
.y15a{bottom:173.162800pt;}
.ye2{bottom:175.402800pt;}
.y118{bottom:176.362800pt;}
.y14{bottom:177.642800pt;}
.y93{bottom:179.882800pt;}
.yf9{bottom:181.802800pt;}
.yc7{bottom:182.122800pt;}
.y196{bottom:185.642800pt;}
.y20c{bottom:185.962800pt;}
.y16a{bottom:186.282800pt;}
.y52{bottom:188.842800pt;}
.y18{bottom:191.722800pt;}
.yaf{bottom:193.002800pt;}
.y71{bottom:195.242800pt;}
.ya{bottom:196.522800pt;}
.y117{bottom:197.482800pt;}
.ye1{bottom:198.762800pt;}
.y17a{bottom:199.402800pt;}
.y92{bottom:200.682800pt;}
.y139{bottom:201.962800pt;}
.y169{bottom:202.602800pt;}
.y1ec{bottom:204.202800pt;}
.yf8{bottom:204.842800pt;}
.yc6{bottom:205.482800pt;}
.y51{bottom:205.802800pt;}
.y138{bottom:206.762800pt;}
.y195{bottom:208.682800pt;}
.y20b{bottom:209.002800pt;}
.yae{bottom:209.322800pt;}
.y116{bottom:210.282800pt;}
.y1b4{bottom:211.242800pt;}
.y91{bottom:217.002800pt;}
.y159{bottom:218.922800pt;}
.y1eb{bottom:219.882800pt;}
.ye0{bottom:221.162800pt;}
.y179{bottom:221.802800pt;}
.y50{bottom:223.722800pt;}
.y115{bottom:226.602800pt;}
.yf7{bottom:226.922800pt;}
.y137{bottom:227.242800pt;}
.yc5{bottom:227.562800pt;}
.y9{bottom:229.802800pt;}
.y1d4{bottom:230.122800pt;}
.y20a{bottom:230.762800pt;}
.y194{bottom:231.082800pt;}
.y13{bottom:231.722800pt;}
.y1ea{bottom:232.682800pt;}
.y90{bottom:237.482800pt;}
.y136{bottom:240.362800pt;}
.y4f{bottom:240.682800pt;}
.y158{bottom:242.282800pt;}
.yad{bottom:243.562800pt;}
.ydf{bottom:244.842800pt;}
.y178{bottom:245.162800pt;}
.y1b3{bottom:246.442800pt;}
.y1e9{bottom:249.002800pt;}
.y168{bottom:249.962800pt;}
.y8f{bottom:250.282800pt;}
.y135{bottom:252.842800pt;}
.y1d3{bottom:253.482800pt;}
.y193{bottom:253.802800pt;}
.y209{bottom:254.122800pt;}
.y4e{bottom:258.282800pt;}
.y8e{bottom:263.082800pt;}
.y157{bottom:265.002800pt;}
.yac{bottom:265.962800pt;}
.yde{bottom:266.922800pt;}
.y70{bottom:267.242800pt;}
.y177{bottom:267.882800pt;}
.y1b2{bottom:268.842800pt;}
.y167{bottom:272.042800pt;}
.yc4{bottom:272.362800pt;}
.y208{bottom:272.682800pt;}
.y4d{bottom:275.562800pt;}
.y192{bottom:276.202800pt;}
.y134{bottom:278.762800pt;}
.y12{bottom:279.402800pt;}
.y156{bottom:288.362800pt;}
.y8d{bottom:288.682800pt;}
.yab{bottom:289.642800pt;}
.y6f{bottom:290.602800pt;}
.y176{bottom:290.922800pt;}
.y1e8{bottom:291.242800pt;}
.y1b1{bottom:292.202800pt;}
.y4c{bottom:292.842800pt;}
.y114{bottom:293.802800pt;}
.y133{bottom:294.762800pt;}
.yf6{bottom:295.402800pt;}
.yc3{bottom:295.722800pt;}
.y1d2{bottom:298.922800pt;}
.y191{bottom:299.242800pt;}
.y8c{bottom:301.482800pt;}
.y4b{bottom:310.122800pt;}
.y155{bottom:310.762800pt;}
.yaa{bottom:311.722800pt;}
.ydd{bottom:313.002800pt;}
.y6e{bottom:313.322800pt;}
.y8b{bottom:313.962800pt;}
.y1b0{bottom:314.602800pt;}
.y11{bottom:314.922800pt;}
.y113{bottom:316.202800pt;}
.yf5{bottom:317.162800pt;}
.yc2{bottom:317.802800pt;}
.y1d1{bottom:321.002800pt;}
.y190{bottom:321.322800pt;}
.y4a{bottom:327.722800pt;}
.y8a{bottom:330.282800pt;}
.y154{bottom:334.442800pt;}
.ya9{bottom:335.402800pt;}
.ydc{bottom:336.362800pt;}
.y6d{bottom:336.682800pt;}
.y1e7{bottom:337.322800pt;}
.y1af{bottom:338.282800pt;}
.y112{bottom:339.562800pt;}
.y166{bottom:340.522800pt;}
.yc1{bottom:340.842800pt;}
.y132{bottom:342.122800pt;}
.y1d0{bottom:344.362800pt;}
.y18f{bottom:344.682800pt;}
.y49{bottom:345.322800pt;}
.y1ae{bottom:351.722800pt;}
.y153{bottom:356.842800pt;}
.ya8{bottom:357.802800pt;}
.ydb{bottom:358.762800pt;}
.y6c{bottom:359.082800pt;}
.y175{bottom:359.722800pt;}
.y111{bottom:361.962800pt;}
.y48{bottom:362.602800pt;}
.y89{bottom:362.922800pt;}
.y131{bottom:364.522800pt;}
.y1cf{bottom:366.442800pt;}
.y18e{bottom:366.762800pt;}
.y47{bottom:379.882800pt;}
.y152{bottom:380.202800pt;}
.ya7{bottom:381.482800pt;}
.yda{bottom:382.442800pt;}
.y6b{bottom:382.762800pt;}
.y1e6{bottom:383.402800pt;}
.y1ad{bottom:384.362800pt;}
.y110{bottom:385.642800pt;}
.yf4{bottom:385.962800pt;}
.y88{bottom:386.282800pt;}
.y130{bottom:387.562800pt;}
.y207{bottom:389.482800pt;}
.y18d{bottom:389.802800pt;}
.y46{bottom:397.802800pt;}
.y151{bottom:402.602800pt;}
.ya6{bottom:403.562800pt;}
.yd9{bottom:404.842800pt;}
.y6a{bottom:405.162800pt;}
.y1ac{bottom:406.442800pt;}
.y165{bottom:407.722800pt;}
.y87{bottom:408.042800pt;}
.y1e5{bottom:408.682800pt;}
.yc0{bottom:409.002800pt;}
.y12f{bottom:409.962800pt;}
.y206{bottom:411.562800pt;}
.y18c{bottom:411.882800pt;}
.y1ce{bottom:412.202800pt;}
.y45{bottom:414.762800pt;}
.y150{bottom:426.282800pt;}
.ya5{bottom:427.242800pt;}
.yd8{bottom:428.522800pt;}
.y69{bottom:428.842800pt;}
.y1e4{bottom:429.802800pt;}
.y1ab{bottom:430.122800pt;}
.yf3{bottom:431.082800pt;}
.y86{bottom:431.402800pt;}
.y44{bottom:432.042800pt;}
.y12e{bottom:433.002800pt;}
.y205{bottom:434.602800pt;}
.y1cd{bottom:435.242800pt;}
.y18b{bottom:435.562800pt;}
.y14f{bottom:448.362800pt;}
.y43{bottom:449.322800pt;}
.ya4{bottom:449.642800pt;}
.ybf{bottom:449.962800pt;}
.yd7{bottom:450.602800pt;}
.y68{bottom:450.922800pt;}
.y1e3{bottom:451.882800pt;}
.y1aa{bottom:452.202800pt;}
.y85{bottom:453.482800pt;}
.y10f{bottom:453.802800pt;}
.y12d{bottom:455.082800pt;}
.y204{bottom:456.682800pt;}
.y18a{bottom:457.322800pt;}
.y1cc{bottom:457.642800pt;}
.y42{bottom:466.922800pt;}
.y14e{bottom:471.722800pt;}
.ya3{bottom:473.002800pt;}
.yd6{bottom:474.282800pt;}
.y67{bottom:474.602800pt;}
.y1e2{bottom:475.562800pt;}
.y1a9{bottom:475.882800pt;}
.y84{bottom:476.522800pt;}
.y10e{bottom:477.162800pt;}
.y12c{bottom:478.442800pt;}
.y203{bottom:480.042800pt;}
.y189{bottom:480.682800pt;}
.y1cb{bottom:481.002800pt;}
.y41{bottom:484.202800pt;}
.y14d{bottom:494.122800pt;}
.y2e{bottom:495.402800pt;}
.y66{bottom:496.682800pt;}
.y1e1{bottom:497.642800pt;}
.yf2{bottom:498.282800pt;}
.ybe{bottom:498.602800pt;}
.y83{bottom:498.922800pt;}
.y10d{bottom:499.562800pt;}
.y217{bottom:499.882800pt;}
.y12b{bottom:500.522800pt;}
.y40{bottom:501.482800pt;}
.y202{bottom:501.802800pt;}
.y188{bottom:502.442800pt;}
.y1ca{bottom:503.082800pt;}
.y14c{bottom:517.802800pt;}
.y2d{bottom:519.082800pt;}
.yd5{bottom:520.042800pt;}
.y174{bottom:520.362800pt;}
.y65{bottom:520.682800pt;}
.yf1{bottom:521.322800pt;}
.y1a8{bottom:521.642800pt;}
.y82{bottom:521.962800pt;}
.y10c{bottom:523.242800pt;}
.y12a{bottom:523.882800pt;}
.y201{bottom:525.162800pt;}
.y187{bottom:525.802800pt;}
.y1c9{bottom:526.442800pt;}
.y3f{bottom:536.362800pt;}
.y14b{bottom:539.882800pt;}
.y2c{bottom:541.162800pt;}
.yd4{bottom:542.122800pt;}
.y173{bottom:542.442800pt;}
.y64{bottom:542.762800pt;}
.yf0{bottom:543.402800pt;}
.ybd{bottom:543.722800pt;}
.y81{bottom:544.042800pt;}
.y10b{bottom:545.322800pt;}
.y129{bottom:545.962800pt;}
.y200{bottom:546.922800pt;}
.y186{bottom:547.562800pt;}
.y1c8{bottom:549.162800pt;}
.y3e{bottom:553.642800pt;}
.y14a{bottom:563.562800pt;}
.y2b{bottom:564.522800pt;}
.y63{bottom:566.122800pt;}
.yef{bottom:566.442800pt;}
.y164{bottom:566.762800pt;}
.y80{bottom:567.082800pt;}
.y1a7{bottom:567.402800pt;}
.yd3{bottom:568.042800pt;}
.y10a{bottom:569.002800pt;}
.y1ff{bottom:569.962800pt;}
.y1c7{bottom:572.202800pt;}
.y185{bottom:574.442800pt;}
.y3d{bottom:575.082800pt;}
.y2a{bottom:583.722800pt;}
.y149{bottom:585.642800pt;}
.ya2{bottom:587.242800pt;}
.yd2{bottom:588.202800pt;}
.y62{bottom:588.522800pt;}
.y163{bottom:588.842800pt;}
.y1e0{bottom:589.162800pt;}
.y7f{bottom:589.482800pt;}
.y1a6{bottom:589.802800pt;}
.y109{bottom:591.082800pt;}
.y1fe{bottom:592.042800pt;}
.y184{bottom:593.002800pt;}
.y1c6{bottom:593.962800pt;}
.y148{bottom:609.322800pt;}
.y29{bottom:610.602800pt;}
.ybc{bottom:611.562800pt;}
.y162{bottom:611.882800pt;}
.y61{bottom:612.202800pt;}
.y1df{bottom:612.522800pt;}
.y3c{bottom:613.162800pt;}
.y108{bottom:614.442800pt;}
.y216{bottom:614.762800pt;}
.y1fd{bottom:615.082800pt;}
.y183{bottom:616.042800pt;}
.y1c5{bottom:617.322800pt;}
.y8{bottom:630.122800pt;}
.y147{bottom:631.722800pt;}
.y28{bottom:633.002800pt;}
.yee{bottom:633.642800pt;}
.ybb{bottom:633.962800pt;}
.y60{bottom:634.282800pt;}
.y3b{bottom:634.922800pt;}
.y1a5{bottom:635.562800pt;}
.y128{bottom:636.202800pt;}
.y107{bottom:636.842800pt;}
.y1fc{bottom:637.162800pt;}
.y182{bottom:638.442800pt;}
.y1c4{bottom:639.402800pt;}
.y146{bottom:655.082800pt;}
.y27{bottom:656.042800pt;}
.ya1{bottom:656.362800pt;}
.yed{bottom:656.682800pt;}
.yba{bottom:657.002800pt;}
.y7e{bottom:657.322800pt;}
.yd1{bottom:657.642800pt;}
.y3a{bottom:657.962800pt;}
.y1de{bottom:658.282800pt;}
.y1a4{bottom:659.242800pt;}
.y127{bottom:659.882800pt;}
.y106{bottom:660.522800pt;}
.y181{bottom:661.482800pt;}
.y1c3{bottom:662.442800pt;}
.y145{bottom:677.482800pt;}
.y26{bottom:678.442800pt;}
.ya0{bottom:678.762800pt;}
.yb9{bottom:679.082800pt;}
.y161{bottom:679.402800pt;}
.y39{bottom:680.042800pt;}
.y7d{bottom:680.362800pt;}
.y1dd{bottom:680.682800pt;}
.y1a3{bottom:681.322800pt;}
.y126{bottom:681.962800pt;}
.y1fb{bottom:682.602800pt;}
.yec{bottom:682.922800pt;}
.y180{bottom:683.562800pt;}
.y1c2{bottom:684.842800pt;}
.y7{bottom:685.802800pt;}
.y144{bottom:700.842800pt;}
.y25{bottom:702.122800pt;}
.y7c{bottom:702.762800pt;}
.y172{bottom:703.082800pt;}
.y38{bottom:703.402800pt;}
.y5f{bottom:703.722800pt;}
.y1dc{bottom:704.362800pt;}
.y125{bottom:705.002800pt;}
.y105{bottom:706.282800pt;}
.y215{bottom:706.602800pt;}
.y1c1{bottom:708.522800pt;}
.y17f{bottom:711.402800pt;}
.y143{bottom:723.242800pt;}
.yeb{bottom:724.202800pt;}
.y24{bottom:724.842800pt;}
.y160{bottom:725.162800pt;}
.y37{bottom:725.802800pt;}
.y5e{bottom:726.122800pt;}
.y1db{bottom:726.762800pt;}
.y1a2{bottom:727.402800pt;}
.y1fa{bottom:728.042800pt;}
.y104{bottom:728.682800pt;}
.y7b{bottom:729.002800pt;}
.y17e{bottom:730.282800pt;}
.y124{bottom:730.602800pt;}
.y6{bottom:734.442800pt;}
.y10{bottom:737.322800pt;}
.y142{bottom:746.602800pt;}
.y9f{bottom:748.202800pt;}
.yea{bottom:748.522800pt;}
.y23{bottom:748.842800pt;}
.yd0{bottom:749.482800pt;}
.y5d{bottom:749.802800pt;}
.y123{bottom:750.442800pt;}
.y1a1{bottom:750.762800pt;}
.y1e{bottom:751.174800pt;}
.y1f9{bottom:751.722800pt;}
.y103{bottom:752.042800pt;}
.y214{bottom:752.362800pt;}
.y1c0{bottom:753.962800pt;}
.y17d{bottom:757.482800pt;}
.y5{bottom:768.682800pt;}
.y141{bottom:769.322800pt;}
.ye9{bottom:769.642800pt;}
.y1d{bottom:770.374800pt;}
.yb8{bottom:770.602800pt;}
.y7a{bottom:770.922800pt;}
.y36{bottom:771.562800pt;}
.y22{bottom:771.882800pt;}
.y5c{bottom:772.202800pt;}
.y122{bottom:772.842800pt;}
.y1a0{bottom:773.482800pt;}
.y1f8{bottom:773.802800pt;}
.y102{bottom:774.762800pt;}
.y213{bottom:775.082800pt;}
.y1bf{bottom:776.362800pt;}
.y4{bottom:779.882800pt;}
.y1f6{bottom:785.962800pt;}
.y1c{bottom:789.574800pt;}
.y15f{bottom:790.442800pt;}
.yf{bottom:791.082800pt;}
.yb7{bottom:793.002800pt;}
.ye8{bottom:793.322800pt;}
.y19f{bottom:793.642800pt;}
.y79{bottom:793.962800pt;}
.y9e{bottom:794.282800pt;}
.y21{bottom:794.922800pt;}
.y15e{bottom:795.242800pt;}
.ycf{bottom:795.562800pt;}
.y5b{bottom:795.882800pt;}
.y121{bottom:796.202800pt;}
.y3{bottom:796.522800pt;}
.y35{bottom:798.442800pt;}
.y1be{bottom:800.042800pt;}
.y17c{bottom:803.562800pt;}
.y1f7{bottom:803.882800pt;}
.y1b{bottom:808.774800pt;}
.y9d{bottom:813.482800pt;}
.yb6{bottom:815.082800pt;}
.ye7{bottom:815.722800pt;}
.y140{bottom:816.362800pt;}
.y78{bottom:816.682800pt;}
.y20{bottom:817.002800pt;}
.yce{bottom:817.962800pt;}
.y34{bottom:818.602800pt;}
.y1da{bottom:818.922800pt;}
.y1f5{bottom:819.242800pt;}
.y19e{bottom:819.562800pt;}
.y120{bottom:819.882800pt;}
.y101{bottom:820.842800pt;}
.y212{bottom:821.162800pt;}
.y1bd{bottom:822.442800pt;}
.y17b{bottom:825.962800pt;}
.y1a{bottom:827.974800pt;}
.y2{bottom:828.842800pt;}
.y1{bottom:857.642800pt;}
.y13f{bottom:860.842800pt;}
.y100{bottom:863.402800pt;}
.y171{bottom:863.722800pt;}
.ycd{bottom:867.882800pt;}
.y9c{bottom:870.442800pt;}
.y5a{bottom:874.602800pt;}
.y1f{bottom:877.482800pt;}
.ye{bottom:880.362800pt;}
.h95{height:22.740000pt;}
.hc0{height:25.031250pt;}
.h75{height:25.300000pt;}
.he8{height:26.801250pt;}
.hd5{height:27.812500pt;}
.h97{height:30.593750pt;}
.h76{height:33.375000pt;}
.h74{height:35.318750pt;}
.h96{height:35.540000pt;}
.h2{height:36.156250pt;}
.hbd{height:36.820000pt;}
.h6e{height:37.483750pt;}
.h44{height:38.937500pt;}
.h77{height:38.985000pt;}
.hba{height:39.380000pt;}
.hbb{height:39.601250pt;}
.ha2{height:40.660000pt;}
.h6{height:41.718750pt;}
.h6f{height:42.161250pt;}
.hf3{height:42.382500pt;}
.h70{height:43.441250pt;}
.h17{height:44.500000pt;}
.hb2{height:44.942500pt;}
.h71{height:45.163750pt;}
.h1d{height:45.568000pt;}
.h82{height:45.780000pt;}
.h85{height:46.001250pt;}
.hd6{height:46.048750pt;}
.hd4{height:46.222500pt;}
.h72{height:46.443750pt;}
.h73{height:46.665000pt;}
.hbc{height:46.886250pt;}
.h42{height:47.281250pt;}
.h92{height:47.723750pt;}
.h104{height:47.945000pt;}
.h2e{height:48.340000pt;}
.h105{height:48.387500pt;}
.h5e{height:48.561250pt;}
.ha9{height:48.782500pt;}
.hbf{height:48.830000pt;}
.h43{height:49.003750pt;}
.he3{height:49.225000pt;}
.h1a{height:49.620000pt;}
.h7c{height:49.841250pt;}
.ha{height:50.062500pt;}
.hb9{height:50.283750pt;}
.h38{height:50.505000pt;}
.hd7{height:50.678750pt;}
.h102{height:51.121250pt;}
.h2b{height:51.785000pt;}
.he5{height:52.401250pt;}
.h94{height:52.448750pt;}
.hae{height:52.622500pt;}
.h14{height:52.843750pt;}
.h41{height:53.065000pt;}
.h5c{height:53.460000pt;}
.h2c{height:53.681250pt;}
.h106{height:53.728750pt;}
.h29{height:53.902500pt;}
.ha8{height:54.123750pt;}
.hd{height:54.345000pt;}
.hfb{height:54.566250pt;}
.hb4{height:54.740000pt;}
.hb1{height:54.787500pt;}
.h93{height:55.008750pt;}
.h6b{height:55.182500pt;}
.h59{height:55.403750pt;}
.h19{height:55.625000pt;}
.h5d{height:55.798750pt;}
.h40{height:55.846250pt;}
.h90{height:56.067500pt;}
.h10b{height:56.241250pt;}
.h3f{height:56.288750pt;}
.h62{height:56.462500pt;}
.h6c{height:56.683750pt;}
.h6d{height:56.905000pt;}
.h100{height:57.078750pt;}
.hf7{height:57.126250pt;}
.h87{height:57.300000pt;}
.hb3{height:57.347500pt;}
.h84{height:57.521250pt;}
.h26{height:57.742500pt;}
.hb7{height:57.963750pt;}
.h3d{height:58.185000pt;}
.h5{height:58.406250pt;}
.haa{height:58.627500pt;}
.h86{height:58.801250pt;}
.h6a{height:59.022500pt;}
.he4{height:59.070000pt;}
.h8e{height:59.243750pt;}
.h20{height:59.465000pt;}
.h8c{height:59.860000pt;}
.h9c{height:59.907500pt;}
.h83{height:60.081250pt;}
.h9e{height:60.302500pt;}
.h1f{height:60.523750pt;}
.h24{height:60.745000pt;}
.hb8{height:61.187500pt;}
.had{height:61.361250pt;}
.h9b{height:61.582500pt;}
.h8d{height:61.803750pt;}
.hab{height:61.851250pt;}
.h3b{height:62.025000pt;}
.hfa{height:62.246250pt;}
.he9{height:62.420000pt;}
.h101{height:62.467500pt;}
.hff{height:62.641250pt;}
.he0{height:62.688750pt;}
.h7e{height:62.862500pt;}
.h9a{height:63.083750pt;}
.haf{height:63.305000pt;}
.h22{height:63.526250pt;}
.hf4{height:63.921250pt;}
.hb6{height:63.968750pt;}
.ha1{height:64.142500pt;}
.hd2{height:64.190000pt;}
.h7d{height:64.363750pt;}
.h3c{height:64.585000pt;}
.hb0{height:64.806250pt;}
.h21{height:65.027500pt;}
.he7{height:65.201250pt;}
.h28{height:65.248750pt;}
.h66{height:65.422500pt;}
.h67{height:65.643750pt;}
.h39{height:65.865000pt;}
.h25{height:66.086250pt;}
.hf5{height:66.481250pt;}
.h65{height:66.702500pt;}
.hfe{height:66.750000pt;}
.h36{height:66.923750pt;}
.h91{height:66.971250pt;}
.h9f{height:67.145000pt;}
.hdd{height:67.366250pt;}
.h2d{height:67.587500pt;}
.h32{height:67.761250pt;}
.he2{height:67.808750pt;}
.h2f{height:67.982500pt;}
.h2a{height:68.030000pt;}
.hd1{height:68.203750pt;}
.h7b{height:68.425000pt;}
.h80{height:68.646250pt;}
.hd3{height:68.693750pt;}
.hbe{height:68.820000pt;}
.h81{height:68.867500pt;}
.h5b{height:69.041250pt;}
.hcb{height:69.262500pt;}
.h8a{height:69.483750pt;}
.h3e{height:69.531250pt;}
.h7a{height:69.705000pt;}
.h68{height:69.926250pt;}
.h8f{height:69.973750pt;}
.h99{height:70.147500pt;}
.hcd{height:70.542500pt;}
.hc9{height:70.763750pt;}
.h63{height:70.985000pt;}
.h37{height:71.206250pt;}
.hf8{height:71.427500pt;}
.h9d{height:71.648750pt;}
.h23{height:71.870000pt;}
.hc6{height:72.043750pt;}
.hb5{height:72.265000pt;}
.h45{height:72.486250pt;}
.ha7{height:72.707500pt;}
.h108{height:72.881250pt;}
.ha6{height:72.928750pt;}
.h103{height:73.102500pt;}
.h61{height:73.323750pt;}
.ha0{height:73.371250pt;}
.ha5{height:73.545000pt;}
.h3a{height:73.766250pt;}
.hf6{height:73.987500pt;}
.hf1{height:74.161250pt;}
.h69{height:74.208750pt;}
.ha3{height:74.382500pt;}
.h30{height:74.603750pt;}
.h33{height:74.825000pt;}
.hde{height:75.046250pt;}
.h1c{height:75.093750pt;}
.hfc{height:75.267500pt;}
.hc2{height:75.488750pt;}
.hed{height:75.662500pt;}
.hf9{height:75.710000pt;}
.h57{height:75.883750pt;}
.h53{height:76.105000pt;}
.h8b{height:76.326250pt;}
.h5a{height:76.373750pt;}
.hdf{height:76.547500pt;}
.hef{height:76.721250pt;}
.h55{height:77.163750pt;}
.he1{height:77.211250pt;}
.h109{height:77.385000pt;}
.h51{height:77.606250pt;}
.hc3{height:77.827500pt;}
.h7f{height:78.048750pt;}
.h1b{height:78.096250pt;}
.h47{height:78.222500pt;}
.h10a{height:78.270000pt;}
.h54{height:78.443750pt;}
.h18{height:78.491250pt;}
.h4d{height:78.665000pt;}
.ha4{height:78.886250pt;}
.h64{height:79.107500pt;}
.hdc{height:79.328750pt;}
.h48{height:79.502500pt;}
.h35{height:79.550000pt;}
.h49{height:79.723750pt;}
.h4b{height:79.945000pt;}
.h58{height:80.166250pt;}
.h50{height:80.387500pt;}
.hdb{height:80.830000pt;}
.heb{height:81.003750pt;}
.h4a{height:81.225000pt;}
.hc7{height:81.446250pt;}
.h27{height:81.667500pt;}
.hec{height:82.283750pt;}
.hda{height:82.331250pt;}
.h89{height:82.505000pt;}
.h4f{height:82.726250pt;}
.hd0{height:82.773750pt;}
.h107{height:82.947500pt;}
.h34{height:83.390000pt;}
.h4e{height:84.006250pt;}
.hca{height:84.053750pt;}
.h4c{height:84.227500pt;}
.hc5{height:84.448750pt;}
.hd9{height:84.670000pt;}
.hc4{height:84.891250pt;}
.h52{height:85.286250pt;}
.h5f{height:85.507500pt;}
.hcf{height:85.950000pt;}
.h79{height:86.566250pt;}
.h31{height:87.008750pt;}
.hf2{height:87.230000pt;}
.hce{height:88.067500pt;}
.hcc{height:88.731250pt;}
.h56{height:89.568750pt;}
.hc8{height:90.453750pt;}
.hfd{height:91.291250pt;}
.h88{height:92.128750pt;}
.h60{height:92.571250pt;}
.hee{height:93.851250pt;}
.he6{height:96.142500pt;}
.hea{height:96.363750pt;}
.hc{height:102.906250pt;}
.h9{height:105.687500pt;}
.hb{height:109.748750pt;}
.h16{height:111.250000pt;}
.h15{height:111.471250pt;}
.hf0{height:112.166250pt;}
.h13{height:116.812500pt;}
.h3{height:122.375000pt;}
.h8{height:130.718750pt;}
.h7{height:133.500000pt;}
.h12{height:141.843750pt;}
.h4{height:163.287500pt;}
.h46{height:175.218750pt;}
.h1e{height:189.125000pt;}
.h98{height:239.187500pt;}
.h78{height:241.968750pt;}
.hc1{height:247.531250pt;}
.hd8{height:258.656250pt;}
.hac{height:264.218750pt;}
.h11{height:292.031250pt;}
.he{height:300.375000pt;}
.h10{height:876.000000pt;}
.hf{height:876.305467pt;}
.h0{height:895.204133pt;}
.h1{height:895.333333pt;}
.w0{width:615.801333pt;}
.w1{width:616.000000pt;}
.w3{width:1148.666667pt;}
.w2{width:1148.800000pt;}
.x0{left:0.000000pt;}
.x4f{left:31.040000pt;}
.x50{left:32.000000pt;}
.x51{left:34.240000pt;}
.x15{left:35.586667pt;}
.x1a{left:36.480000pt;}
.x1b{left:37.440000pt;}
.x1c{left:38.400000pt;}
.x12{left:39.680000pt;}
.x4b{left:40.640000pt;}
.x17{left:42.240000pt;}
.x25{left:43.520000pt;}
.x26{left:44.480000pt;}
.x27{left:45.440000pt;}
.x29{left:46.400000pt;}
.x2a{left:47.360000pt;}
.x2b{left:48.320000pt;}
.x2c{left:49.280000pt;}
.x28{left:50.560000pt;}
.x2e{left:51.840000pt;}
.x2d{left:53.440000pt;}
.x38{left:54.400000pt;}
.x39{left:55.680000pt;}
.x3b{left:56.640000pt;}
.x3c{left:57.600000pt;}
.x3a{left:61.440000pt;}
.x53{left:66.560000pt;}
.x52{left:75.520000pt;}
.x48{left:83.520000pt;}
.x6{left:95.680000pt;}
.x47{left:97.920000pt;}
.x5{left:110.720000pt;}
.xa{left:116.160000pt;}
.x9{left:119.040000pt;}
.x18{left:167.040000pt;}
.x7{left:194.880000pt;}
.x8{left:196.800000pt;}
.x4a{left:225.280000pt;}
.x3{left:273.280000pt;}
.x2{left:274.560000pt;}
.x1{left:276.160000pt;}
.xb{left:283.200000pt;}
.x54{left:290.240000pt;}
.x24{left:291.520000pt;}
.x4{left:298.560000pt;}
.x4c{left:300.800000pt;}
.x36{left:301.760000pt;}
.x45{left:304.000000pt;}
.x2f{left:305.920000pt;}
.x59{left:309.440000pt;}
.x40{left:310.720000pt;}
.x19{left:408.320000pt;}
.x46{left:558.720000pt;}
.x44{left:560.640000pt;}
.x30{left:561.920000pt;}
.x37{left:563.840000pt;}
.x16{left:564.800000pt;}
.x56{left:568.320000pt;}
.xc{left:569.600000pt;}
.x57{left:579.520000pt;}
.x23{left:581.120000pt;}
.x22{left:582.080000pt;}
.x21{left:583.040000pt;}
.x1f{left:584.000000pt;}
.x1e{left:584.960000pt;}
.x20{left:586.240000pt;}
.x33{left:587.520000pt;}
.x1d{left:588.480000pt;}
.x3e{left:589.440000pt;}
.x31{left:590.400000pt;}
.x34{left:591.360000pt;}
.x43{left:592.320000pt;}
.x32{left:593.280000pt;}
.x3d{left:594.240000pt;}
.x41{left:595.840000pt;}
.x42{left:597.120000pt;}
.x4d{left:598.400000pt;}
.xd{left:599.360000pt;}
.x13{left:619.520000pt;}
.x49{left:622.400000pt;}
.x35{left:624.960000pt;}
.x55{left:631.040000pt;}
.x11{left:640.960000pt;}
.xf{left:721.600000pt;}
.x10{left:724.160000pt;}
.x14{left:775.360000pt;}
.xe{left:812.160000pt;}
.x58{left:827.840000pt;}
.x5a{left:837.760000pt;}
.x3f{left:839.680000pt;}
.x4e{left:845.120000pt;}
}




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