
    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_0909363bd08ababa3275e8e4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_9281de58574868ca0066d1f2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_81c6a2e18ea0b358b107350e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_716ca0fd84c218b9996034c1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1026c6c388f4059e642580ac.woff')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_7677593025cc6577296b75d2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_343100c156f2af379895e1d9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_54ceefcb21603b4a4437e643.woff')format("woff");}.ff9{font-family:ff9;line-height:0.976562;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.540000px;}
.lse{letter-spacing:-1.200000px;}
.lsa{letter-spacing:-0.600000px;}
.ls8{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.120000px;}
.ls12{letter-spacing:-0.075000px;}
.ls3{letter-spacing:-0.048000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.060000px;}
.ls14{letter-spacing:0.075000px;}
.lsb{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.138000px;}
.ls13{letter-spacing:0.150000px;}
.ls6{letter-spacing:0.240000px;}
.ls9{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.420000px;}
.ls1{letter-spacing:0.600000px;}
.ls11{letter-spacing:0.660000px;}
.lsf{letter-spacing:6.600000px;}
.ls10{letter-spacing:9.000000px;}
.ls17{letter-spacing:15.720000px;}
.ls15{letter-spacing:22.140000px;}
.ls16{letter-spacing:45.720000px;}
.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;}
}
.ws1{word-spacing:-18.384000px;}
.ws9{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.420000px;}
.ws8{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws5{word-spacing:-14.880000px;}
.ws7{word-spacing:-13.800000px;}
.wse{word-spacing:-12.204000px;}
.wsb{word-spacing:-12.000000px;}
.ws4{word-spacing:-11.136000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:177.372000px;}
.wsd{word-spacing:510.348000px;}
.wsa{word-spacing:667.290000px;}
._2c{margin-left:-707.760000px;}
._31{margin-left:-652.488000px;}
._2f{margin-left:-632.760000px;}
._2b{margin-left:-598.806000px;}
._23{margin-left:-583.806000px;}
._29{margin-left:-421.320000px;}
._27{margin-left:-418.746000px;}
._30{margin-left:-403.746000px;}
._28{margin-left:-346.080000px;}
._26{margin-left:-344.460000px;}
._1e{margin-left:-331.200000px;}
._2d{margin-left:-259.500000px;}
._1d{margin-left:-247.800000px;}
._22{margin-left:-197.760000px;}
._1c{margin-left:-184.560000px;}
._1f{margin-left:-174.480000px;}
._20{margin-left:-171.240000px;}
._2a{margin-left:-161.160000px;}
._2e{margin-left:-157.860000px;}
._21{margin-left:-138.780000px;}
._24{margin-left:-106.200000px;}
._25{margin-left:-61.380000px;}
._19{margin-left:-3.774000px;}
._f{margin-left:-2.304000px;}
._1{margin-left:-1.056000px;}
._0{width:1.026000px;}
._4{width:2.220000px;}
._5{width:3.720000px;}
._b{width:5.280000px;}
._6{width:6.396000px;}
._7{width:7.440000px;}
._10{width:8.784000px;}
._11{width:9.900000px;}
._e{width:11.808000px;}
._c{width:12.840000px;}
._d{width:13.902000px;}
._a{width:16.320000px;}
._13{width:17.808000px;}
._9{width:19.020000px;}
._8{width:20.340000px;}
._15{width:21.360000px;}
._12{width:23.100000px;}
._14{width:24.360000px;}
._16{width:26.160000px;}
._17{width:27.516000px;}
._2{width:336.180000px;}
._1a{width:551.256000px;}
._1b{width:571.656000px;}
._18{width:705.066000px;}
._3{width:1188.480000px;}
.fc4{color:transparent;}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc3{color:rgb(31,73,125);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs8{font-size:30.000000px;}
.fs7{font-size:39.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsc{font-size:54.150000px;}
.fs2{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs9{font-size:66.150000px;}
.fs4{font-size:72.000000px;}
.fsb{font-size:72.150000px;}
.fsa{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:3.300000px;}
.y138{bottom:3.315000px;}
.y1a3{bottom:3.585000px;}
.y80{bottom:3.600000px;}
.y7f{bottom:3.615000px;}
.y1de{bottom:3.645000px;}
.y1ca{bottom:3.885000px;}
.y1bf{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.y149{bottom:4.185000px;}
.y17b{bottom:4.200000px;}
.y13f{bottom:4.500000px;}
.y226{bottom:4.515000px;}
.y1f7{bottom:4.545000px;}
.y14d{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y18b{bottom:5.130000px;}
.y144{bottom:5.385000px;}
.y2{bottom:5.400000px;}
.y146{bottom:5.415000px;}
.y24c{bottom:5.430000px;}
.y157{bottom:5.445000px;}
.ybe{bottom:6.000000px;}
.yc0{bottom:6.015000px;}
.y183{bottom:6.600000px;}
.y3f{bottom:7.215000px;}
.y141{bottom:7.500000px;}
.y1a1{bottom:7.515000px;}
.y180{bottom:7.800000px;}
.y1cb{bottom:8.700000px;}
.y189{bottom:8.715000px;}
.yac{bottom:11.685000px;}
.y84{bottom:11.700000px;}
.y20c{bottom:11.715000px;}
.y86{bottom:12.000000px;}
.yaf{bottom:12.015000px;}
.y5{bottom:12.337500px;}
.y18c{bottom:12.600000px;}
.y181{bottom:12.915000px;}
.y1da{bottom:14.400000px;}
.y1c8{bottom:15.300000px;}
.y1aa{bottom:16.500000px;}
.y82{bottom:18.315000px;}
.y9b{bottom:20.700000px;}
.y7e{bottom:20.715000px;}
.y98{bottom:21.000000px;}
.y1bc{bottom:21.600000px;}
.y167{bottom:22.245000px;}
.y1a4{bottom:24.000000px;}
.y3e{bottom:25.215000px;}
.y1d8{bottom:27.345000px;}
.y1c1{bottom:30.600000px;}
.y19e{bottom:33.885000px;}
.y1a9{bottom:33.900000px;}
.y152{bottom:36.607500px;}
.y19c{bottom:37.500000px;}
.y9a{bottom:38.700000px;}
.y17e{bottom:39.315000px;}
.y7c{bottom:40.215000px;}
.y165{bottom:42.075000px;}
.y179{bottom:44.145000px;}
.y1d7{bottom:44.445000px;}
.y3d{bottom:44.715000px;}
.y4{bottom:46.800000px;}
.y186{bottom:48.000000px;}
.y1a8{bottom:51.000000px;}
.y185{bottom:51.945000px;}
.y147{bottom:53.700000px;}
.y13d{bottom:53.715000px;}
.y151{bottom:54.037500px;}
.y19b{bottom:54.945000px;}
.y256{bottom:56.400000px;}
.y1f5{bottom:56.415000px;}
.y1{bottom:57.037500px;}
.y3c{bottom:59.415000px;}
.y164{bottom:68.250000px;}
.y234{bottom:69.585000px;}
.y150{bottom:71.137500px;}
.y177{bottom:71.415000px;}
.y19a{bottom:72.030000px;}
.y1e4{bottom:73.500000px;}
.y245{bottom:73.530000px;}
.y255{bottom:73.800000px;}
.y1f4{bottom:73.815000px;}
.y41{bottom:74.137500px;}
.y3b{bottom:76.545000px;}
.y3{bottom:81.337500px;}
.y15b{bottom:84.270000px;}
.y126{bottom:85.920000px;}
.y233{bottom:87.000000px;}
.y176{bottom:88.500000px;}
.y199{bottom:89.445000px;}
.y254{bottom:90.900000px;}
.y1f3{bottom:90.915000px;}
.y3a{bottom:93.945000px;}
.y13c{bottom:96.030000px;}
.y232{bottom:104.085000px;}
.y22b{bottom:104.145000px;}
.y224{bottom:104.445000px;}
.y175{bottom:105.900000px;}
.y39{bottom:111.045000px;}
.y209{bottom:111.337500px;}
.y124{bottom:113.100000px;}
.y13b{bottom:113.145000px;}
.y10a{bottom:114.337500px;}
.ybc{bottom:116.737500px;}
.y29{bottom:119.437500px;}
.y291{bottom:119.737500px;}
.y15c{bottom:120.150000px;}
.y65{bottom:121.237500px;}
.y159{bottom:121.837500px;}
.y23e{bottom:125.137500px;}
.ya4{bottom:125.737500px;}
.yd7{bottom:126.637500px;}
.y196{bottom:127.537500px;}
.y269{bottom:127.837500px;}
.y38{bottom:128.445000px;}
.y208{bottom:128.737500px;}
.y13a{bottom:130.545000px;}
.y109{bottom:132.037500px;}
.ybb{bottom:134.137500px;}
.y64{bottom:135.037500px;}
.y1e2{bottom:135.600000px;}
.y244{bottom:135.615000px;}
.y14f{bottom:136.537500px;}
.y28{bottom:136.837500px;}
.y290{bottom:137.137500px;}
.y11b{bottom:138.750000px;}
.y1dc{bottom:142.237500px;}
.y23d{bottom:142.537500px;}
.ya3{bottom:143.137500px;}
.y195{bottom:144.937500px;}
.y268{bottom:145.237500px;}
.y37{bottom:145.545000px;}
.y207{bottom:145.837500px;}
.y11e{bottom:147.030000px;}
.yd6{bottom:147.337500px;}
.y108{bottom:149.137500px;}
.y11f{bottom:149.775000px;}
.y122{bottom:151.170000px;}
.yba{bottom:151.245000px;}
.y243{bottom:152.700000px;}
.y1e1{bottom:152.730000px;}
.y121{bottom:153.900000px;}
.y27{bottom:153.930000px;}
.y28f{bottom:154.245000px;}
.y15d{bottom:156.030000px;}
.y158{bottom:156.630000px;}
.y23c{bottom:159.645000px;}
.ya2{bottom:160.245000px;}
.y1d6{bottom:160.530000px;}
.y194{bottom:162.030000px;}
.y36{bottom:162.945000px;}
.y206{bottom:163.245000px;}
.y107{bottom:166.545000px;}
.yd5{bottom:167.745000px;}
.yb9{bottom:168.630000px;}
.y1e0{bottom:170.130000px;}
.y242{bottom:170.145000px;}
.y26{bottom:171.330000px;}
.y28e{bottom:171.630000px;}
.y267{bottom:174.045000px;}
.y156{bottom:176.430000px;}
.y23b{bottom:177.045000px;}
.ya1{bottom:177.675000px;}
.y193{bottom:179.475000px;}
.y35{bottom:180.045000px;}
.y205{bottom:180.375000px;}
.y169{bottom:180.450000px;}
.y1db{bottom:182.475000px;}
.y106{bottom:183.675000px;}
.yd4{bottom:184.875000px;}
.yb8{bottom:185.775000px;}
.y222{bottom:188.445000px;}
.y25{bottom:188.475000px;}
.y28d{bottom:188.775000px;}
.y11c{bottom:189.675000px;}
.y266{bottom:191.775000px;}
.y15e{bottom:191.895000px;}
.y11d{bottom:193.350000px;}
.ya0{bottom:194.775000px;}
.y155{bottom:196.275000px;}
.y192{bottom:196.575000px;}
.y34{bottom:197.445000px;}
.y123{bottom:197.475000px;}
.y204{bottom:197.775000px;}
.y1d9{bottom:200.475000px;}
.y105{bottom:201.075000px;}
.yd3{bottom:202.275000px;}
.yb7{bottom:203.175000px;}
.y221{bottom:205.590000px;}
.y168{bottom:205.770000px;}
.y24{bottom:205.875000px;}
.y28c{bottom:206.175000px;}
.y166{bottom:207.525000px;}
.y265{bottom:208.875000px;}
.y9f{bottom:209.475000px;}
.y191{bottom:213.975000px;}
.y154{bottom:214.275000px;}
.y33{bottom:214.545000px;}
.y203{bottom:214.875000px;}
.y120{bottom:216.720000px;}
.y104{bottom:217.575000px;}
.yd2{bottom:219.375000px;}
.y1d5{bottom:219.675000px;}
.yb6{bottom:220.275000px;}
.y23{bottom:222.375000px;}
.y220{bottom:222.990000px;}
.y28b{bottom:223.275000px;}
.y15f{bottom:227.775000px;}
.y190{bottom:231.075000px;}
.y32{bottom:231.945000px;}
.y103{bottom:231.975000px;}
.y202{bottom:232.275000px;}
.y9e{bottom:235.875000px;}
.y153{bottom:236.475000px;}
.y22{bottom:236.775000px;}
.y113{bottom:237.675000px;}
.yb5{bottom:237.975000px;}
.y28a{bottom:240.675000px;}
.y115{bottom:244.875000px;}
.y18f{bottom:248.775000px;}
.y1d4{bottom:249.075000px;}
.y31{bottom:249.090000px;}
.y102{bottom:249.375000px;}
.yd1{bottom:253.875000px;}
.y21{bottom:254.175000px;}
.y112{bottom:254.775000px;}
.y139{bottom:255.375000px;}
.yb4{bottom:257.475000px;}
.y289{bottom:257.775000px;}
.y9d{bottom:262.575000px;}
.y160{bottom:263.625000px;}
.y101{bottom:266.475000px;}
.y30{bottom:266.490000px;}
.y201{bottom:266.775000px;}
.y18e{bottom:268.275000px;}
.y1d3{bottom:268.575000px;}
.y20{bottom:271.275000px;}
.yb3{bottom:272.175000px;}
.y264{bottom:272.775000px;}
.y14e{bottom:275.175000px;}
.y18d{bottom:282.975000px;}
.y2f{bottom:283.590000px;}
.y100{bottom:283.875000px;}
.yb2{bottom:285.975000px;}
.yd0{bottom:288.375000px;}
.y1f{bottom:288.675000px;}
.y97{bottom:289.275000px;}
.y263{bottom:289.875000px;}
.y288{bottom:292.275000px;}
.y14c{bottom:295.275000px;}
.y184{bottom:297.375000px;}
.y161{bottom:299.520000px;}
.y1d2{bottom:300.375000px;}
.y2e{bottom:300.975000px;}
.y200{bottom:301.275000px;}
.y1e{bottom:305.775000px;}
.y111{bottom:306.975000px;}
.y287{bottom:309.675000px;}
.y14b{bottom:315.075000px;}
.y1d1{bottom:317.475000px;}
.y2d{bottom:318.075000px;}
.yff{bottom:318.375000px;}
.y1ff{bottom:318.975000px;}
.y116{bottom:319.230000px;}
.ycf{bottom:322.875000px;}
.y1d{bottom:323.175000px;}
.y99{bottom:324.375000px;}
.y286{bottom:326.775000px;}
.y14a{bottom:333.075000px;}
.yfe{bottom:334.875000px;}
.y162{bottom:335.400000px;}
.y2c{bottom:335.490000px;}
.y262{bottom:336.375000px;}
.y23a{bottom:338.475000px;}
.y1fe{bottom:339.075000px;}
.yce{bottom:340.275000px;}
.y1c{bottom:340.875000px;}
.y110{bottom:342.075000px;}
.y18a{bottom:342.375000px;}
.y285{bottom:344.175000px;}
.yfd{bottom:349.320000px;}
.y1d0{bottom:352.020000px;}
.y239{bottom:352.920000px;}
.y2b{bottom:353.175000px;}
.y96{bottom:353.820000px;}
.y148{bottom:355.320000px;}
.y1fd{bottom:356.505000px;}
.ycd{bottom:358.005000px;}
.y1b{bottom:360.420000px;}
.y284{bottom:361.320000px;}
.y188{bottom:361.905000px;}
.yfc{bottom:366.705000px;}
.y231{bottom:369.120000px;}
.y1cf{bottom:369.420000px;}
.y1f2{bottom:370.905000px;}
.y10f{bottom:371.205000px;}
.y163{bottom:371.250000px;}
.y114{bottom:372.300000px;}
.y95{bottom:374.205000px;}
.ycc{bottom:378.105000px;}
.y283{bottom:378.705000px;}
.yfb{bottom:383.820000px;}
.y187{bottom:385.320000px;}
.y1ce{bottom:387.120000px;}
.y238{bottom:388.905000px;}
.y1fc{bottom:391.005000px;}
.y94{bottom:391.320000px;}
.y125{bottom:392.520000px;}
.y117{bottom:393.555000px;}
.y145{bottom:394.005000px;}
.ycb{bottom:395.520000px;}
.y282{bottom:395.820000px;}
.y261{bottom:400.005000px;}
.yfa{bottom:401.205000px;}
.y174{bottom:404.505000px;}
.y1cd{bottom:406.620000px;}
.y93{bottom:408.705000px;}
.yca{bottom:409.320000px;}
.y1fb{bottom:410.820000px;}
.y281{bottom:413.205000px;}
.y143{bottom:413.820000px;}
.y260{bottom:417.405000px;}
.yf9{bottom:418.320000px;}
.y1cc{bottom:421.005000px;}
.y182{bottom:423.405000px;}
.y92{bottom:425.820000px;}
.y237{bottom:428.820000px;}
.y280{bottom:430.320000px;}
.y1fa{bottom:430.620000px;}
.y142{bottom:433.905000px;}
.y25f{bottom:434.820000px;}
.yf8{bottom:435.705000px;}
.y91{bottom:443.220000px;}
.y2a{bottom:444.405000px;}
.y236{bottom:446.820000px;}
.y27f{bottom:447.705000px;}
.y1f9{bottom:450.405000px;}
.y140{bottom:451.905000px;}
.y25e{bottom:452.505000px;}
.yf7{bottom:452.820000px;}
.y1c9{bottom:458.820000px;}
.y90{bottom:460.320000px;}
.y27e{bottom:464.820000px;}
.y118{bottom:467.925000px;}
.y235{bottom:468.705000px;}
.yf6{bottom:470.505000px;}
.y17f{bottom:471.705000px;}
.y25d{bottom:473.205000px;}
.y13e{bottom:473.820000px;}
.y1c5{bottom:477.405000px;}
.y8f{bottom:477.705000px;}
.y27d{bottom:482.205000px;}
.y21f{bottom:487.905000px;}
.y1f8{bottom:488.505000px;}
.yf5{bottom:490.005000px;}
.y137{bottom:493.005000px;}
.y25c{bottom:493.320000px;}
.y178{bottom:493.905000px;}
.y8e{bottom:494.820000px;}
.y1c7{bottom:495.405000px;}
.y27c{bottom:499.320000px;}
.yf4{bottom:504.720000px;}
.y230{bottom:507.720000px;}
.y1f6{bottom:510.405000px;}
.y25b{bottom:510.720000px;}
.y8d{bottom:512.220000px;}
.y1c6{bottom:513.750000px;}
.y17d{bottom:514.050000px;}
.y27b{bottom:516.750000px;}
.y136{bottom:517.950000px;}
.yf3{bottom:521.850000px;}
.y253{bottom:526.650000px;}
.y22f{bottom:527.550000px;}
.y8c{bottom:529.350000px;}
.y1df{bottom:529.650000px;}
.y1c0{bottom:531.750000px;}
.y17c{bottom:533.850000px;}
.y135{bottom:537.450000px;}
.yf2{bottom:539.250000px;}
.y119{bottom:542.280000px;}
.y8b{bottom:546.750000px;}
.y22e{bottom:547.350000px;}
.y1f1{bottom:549.450000px;}
.y1c4{bottom:549.750000px;}
.y27a{bottom:551.250000px;}
.y134{bottom:551.850000px;}
.yf1{bottom:556.350000px;}
.y63{bottom:561.450000px;}
.y8a{bottom:563.850000px;}
.y22d{bottom:565.350000px;}
.y25a{bottom:566.550000px;}
.y1c3{bottom:567.750000px;}
.y279{bottom:568.350000px;}
.y133{bottom:569.250000px;}
.yf0{bottom:573.750000px;}
.y17a{bottom:574.050000px;}
.y62{bottom:578.850000px;}
.y89{bottom:581.250000px;}
.y1c2{bottom:585.750000px;}
.y132{bottom:586.350000px;}
.y127{bottom:586.425000px;}
.y22c{bottom:587.550000px;}
.y1f0{bottom:589.050000px;}
.yef{bottom:590.850000px;}
.y173{bottom:592.950000px;}
.y61{bottom:595.950000px;}
.y88{bottom:598.950000px;}
.y278{bottom:602.850000px;}
.y131{bottom:603.750000px;}
.y1bb{bottom:604.050000px;}
.y259{bottom:606.150000px;}
.y223{bottom:606.450000px;}
.yee{bottom:608.250000px;}
.y1ef{bottom:609.150000px;}
.y60{bottom:613.350000px;}
.y11a{bottom:616.620000px;}
.y87{bottom:619.650000px;}
.y277{bottom:620.250000px;}
.y130{bottom:620.850000px;}
.y1be{bottom:622.050000px;}
.yed{bottom:625.350000px;}
.y258{bottom:626.250000px;}
.y22a{bottom:626.550000px;}
.y1ee{bottom:628.950000px;}
.y5f{bottom:630.450000px;}
.y172{bottom:631.050000px;}
.y85{bottom:637.050000px;}
.y276{bottom:637.350000px;}
.y12f{bottom:638.250000px;}
.y1bd{bottom:640.350000px;}
.yec{bottom:642.750000px;}
.y257{bottom:644.250000px;}
.y229{bottom:646.350000px;}
.y1ed{bottom:646.950000px;}
.y5e{bottom:647.850000px;}
.y171{bottom:651.150000px;}
.y275{bottom:654.750000px;}
.y12e{bottom:655.350000px;}
.y1ba{bottom:658.350000px;}
.yeb{bottom:660.450000px;}
.y83{bottom:663.750000px;}
.y5d{bottom:664.950000px;}
.y228{bottom:666.150000px;}
.y170{bottom:668.550000px;}
.y1ec{bottom:669.150000px;}
.y274{bottom:671.850000px;}
.y12d{bottom:672.750000px;}
.yea{bottom:681.195000px;}
.y5c{bottom:682.380000px;}
.y227{bottom:684.195000px;}
.y241{bottom:685.380000px;}
.y16f{bottom:685.695000px;}
.y1b9{bottom:687.780000px;}
.y1e3{bottom:688.095000px;}
.y273{bottom:689.280000px;}
.y12c{bottom:689.880000px;}
.y81{bottom:690.480000px;}
.y5b{bottom:699.495000px;}
.ye9{bottom:700.695000px;}
.y16e{bottom:703.095000px;}
.y252{bottom:705.195000px;}
.y225{bottom:706.380000px;}
.y1b8{bottom:707.295000px;}
.y12b{bottom:707.595000px;}
.y1eb{bottom:707.880000px;}
.ye8{bottom:715.080000px;}
.y5a{bottom:717.195000px;}
.y16d{bottom:720.195000px;}
.y1b7{bottom:721.980000px;}
.y7b{bottom:723.480000px;}
.y272{bottom:723.795000px;}
.y251{bottom:724.980000px;}
.y21e{bottom:726.780000px;}
.y1ea{bottom:727.695000px;}
.y12a{bottom:727.995000px;}
.ye7{bottom:732.495000px;}
.yb1{bottom:734.880000px;}
.y16c{bottom:737.595000px;}
.y59{bottom:737.895000px;}
.y1b6{bottom:739.080000px;}
.y271{bottom:740.895000px;}
.y7d{bottom:742.980000px;}
.y250{bottom:744.780000px;}
.y129{bottom:745.095000px;}
.y1e9{bottom:747.780000px;}
.yb0{bottom:749.595000px;}
.y16b{bottom:754.695000px;}
.y1b5{bottom:756.495000px;}
.y58{bottom:757.380000px;}
.y21d{bottom:757.695000px;}
.y270{bottom:758.280000px;}
.y128{bottom:758.880000px;}
.y15a{bottom:760.800000px;}
.y24f{bottom:764.895000px;}
.ye6{bottom:766.995000px;}
.y1e8{bottom:767.595000px;}
.y57{bottom:772.080000px;}
.y1b4{bottom:773.580000px;}
.y26f{bottom:775.380000px;}
.yae{bottom:775.980000px;}
.y21c{bottom:778.080000px;}
.ye5{bottom:784.080000px;}
.y24e{bottom:784.695000px;}
.y1e7{bottom:787.395000px;}
.y56{bottom:789.195000px;}
.y7a{bottom:789.795000px;}
.y1b3{bottom:790.980000px;}
.y26e{bottom:792.795000px;}
.y21b{bottom:795.195000px;}
.ye4{bottom:800.580000px;}
.yad{bottom:802.695000px;}
.y1e6{bottom:805.380000px;}
.y55{bottom:806.580000px;}
.y1b2{bottom:808.080000px;}
.y79{bottom:809.880000px;}
.y21a{bottom:812.580000px;}
.ye3{bottom:815.295000px;}
.y54{bottom:823.695000px;}
.y24d{bottom:824.880000px;}
.y1b1{bottom:825.495000px;}
.y78{bottom:827.295000px;}
.y1e5{bottom:827.580000px;}
.yab{bottom:829.395000px;}
.y219{bottom:829.695000px;}
.ye2{bottom:832.380000px;}
.y53{bottom:841.080000px;}
.y1b0{bottom:843.195000px;}
.y1a{bottom:843.795000px;}
.y77{bottom:844.380000px;}
.y1dd{bottom:846.480000px;}
.y218{bottom:847.080000px;}
.ye1{bottom:849.825000px;}
.yaa{bottom:856.125000px;}
.y52{bottom:858.225000px;}
.y76{bottom:861.825000px;}
.y1af{bottom:862.725000px;}
.y19{bottom:863.625000px;}
.y217{bottom:864.225000px;}
.ye0{bottom:866.925000px;}
.y51{bottom:874.725000px;}
.y16a{bottom:875.925000px;}
.y1ae{bottom:877.125000px;}
.y75{bottom:878.925000px;}
.y26d{bottom:879.525000px;}
.y216{bottom:881.625000px;}
.y18{bottom:882.225000px;}
.ya9{bottom:882.525000px;}
.y24b{bottom:883.425000px;}
.ydf{bottom:884.325000px;}
.y50{bottom:889.425000px;}
.y1a7{bottom:891.825000px;}
.y74{bottom:896.325000px;}
.y215{bottom:898.725000px;}
.y26c{bottom:899.025000px;}
.yc9{bottom:899.325000px;}
.y17{bottom:900.825000px;}
.yde{bottom:901.425000px;}
.y24a{bottom:903.525000px;}
.y4f{bottom:906.525000px;}
.ya8{bottom:909.225000px;}
.y1ad{bottom:911.625000px;}
.y73{bottom:913.425000px;}
.y214{bottom:916.125000px;}
.y16{bottom:917.925000px;}
.yc8{bottom:918.225000px;}
.ydd{bottom:919.125000px;}
.y249{bottom:923.325000px;}
.y4e{bottom:923.925000px;}
.y1ac{bottom:929.625000px;}
.y72{bottom:930.825000px;}
.y213{bottom:933.225000px;}
.y15{bottom:933.525000px;}
.ya7{bottom:937.425000px;}
.ydc{bottom:938.625000px;}
.yc7{bottom:938.925000px;}
.y4d{bottom:941.025000px;}
.y248{bottom:943.125000px;}
.y71{bottom:947.925000px;}
.ya6{bottom:948.525000px;}
.y14{bottom:949.425000px;}
.y212{bottom:950.625000px;}
.y1ab{bottom:951.825000px;}
.ydb{bottom:953.325000px;}
.y4c{bottom:958.425000px;}
.yc6{bottom:959.325000px;}
.y247{bottom:961.125000px;}
.y70{bottom:965.325000px;}
.y13{bottom:967.125000px;}
.ya5{bottom:968.025000px;}
.y211{bottom:968.325000px;}
.y296{bottom:968.625000px;}
.yda{bottom:970.425000px;}
.y198{bottom:970.725000px;}
.y4b{bottom:974.925000px;}
.yc5{bottom:980.025000px;}
.y6f{bottom:982.425000px;}
.y246{bottom:983.325000px;}
.y295{bottom:986.025000px;}
.y12{bottom:987.825000px;}
.y210{bottom:988.425000px;}
.y1a6{bottom:988.725000px;}
.y4a{bottom:989.325000px;}
.y6e{bottom:999.825000px;}
.y26b{bottom:1000.125000px;}
.yc4{bottom:1000.425000px;}
.y294{bottom:1003.125000px;}
.y240{bottom:1003.725000px;}
.yd9{bottom:1004.925000px;}
.y20f{bottom:1005.825000px;}
.y49{bottom:1006.725000px;}
.y11{bottom:1008.525000px;}
.y1a5{bottom:1010.925000px;}
.y6d{bottom:1016.955000px;}
.y26a{bottom:1019.670000px;}
.y20e{bottom:1020.255000px;}
.y293{bottom:1020.570000px;}
.yc3{bottom:1021.155000px;}
.y48{bottom:1023.870000px;}
.y10{bottom:1028.370000px;}
.y19d{bottom:1029.870000px;}
.yd8{bottom:1034.070000px;}
.y6c{bottom:1034.370000px;}
.y23f{bottom:1034.670000px;}
.y10e{bottom:1037.370000px;}
.y292{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y47{bottom:1041.255000px;}
.yc2{bottom:1041.570000px;}
.y20d{bottom:1046.955000px;}
.y1a2{bottom:1049.670000px;}
.y6b{bottom:1051.455000px;}
.y10d{bottom:1055.070000px;}
.y46{bottom:1058.370000px;}
.yc1{bottom:1062.255000px;}
.yc{bottom:1062.570000px;}
.y1a0{bottom:1067.655000px;}
.yb{bottom:1068.255000px;}
.y6a{bottom:1068.870000px;}
.y10c{bottom:1072.170000px;}
.y20b{bottom:1073.655000px;}
.y45{bottom:1075.755000px;}
.ybf{bottom:1082.655000px;}
.ya{bottom:1083.570000px;}
.y69{bottom:1085.955000px;}
.y10b{bottom:1089.570000px;}
.y19f{bottom:1089.870000px;}
.y44{bottom:1092.255000px;}
.y9{bottom:1097.955000px;}
.y20a{bottom:1100.070000px;}
.y68{bottom:1103.370000px;}
.ybd{bottom:1104.870000px;}
.y43{bottom:1106.670000px;}
.y197{bottom:1108.770000px;}
.y8{bottom:1115.670000px;}
.y67{bottom:1120.455000px;}
.y42{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y66{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h5{height:12.700195px;}
.h28{height:17.100000px;}
.h43{height:17.385000px;}
.h16{height:17.400000px;}
.h4f{height:17.437500px;}
.h4a{height:17.700000px;}
.h2f{height:18.000000px;}
.h47{height:18.037500px;}
.h2b{height:18.300000px;}
.h55{height:18.337500px;}
.h5b{height:18.885000px;}
.h31{height:18.900000px;}
.h41{height:18.937500px;}
.h52{height:19.185000px;}
.h2d{height:19.200000px;}
.h59{height:19.222500px;}
.h33{height:19.237500px;}
.h1f{height:19.785000px;}
.h20{height:19.800000px;}
.h21{height:19.837500px;}
.h3e{height:20.400000px;}
.h1d{height:20.947266px;}
.ha{height:21.000000px;}
.h2c{height:21.300000px;}
.h30{height:21.337500px;}
.h3c{height:21.600000px;}
.h40{height:22.500000px;}
.h1c{height:25.800000px;}
.h1e{height:25.822500px;}
.h18{height:25.837500px;}
.h19{height:26.100000px;}
.h42{height:26.400000px;}
.h3d{height:26.700000px;}
.h17{height:32.400000px;}
.hd{height:33.515625px;}
.h7{height:33.867188px;}
.h14{height:34.500000px;}
.h11{height:34.664062px;}
.h3{height:36.000000px;}
.h8{height:37.705078px;}
.hc{height:38.100586px;}
.h4e{height:39.337500px;}
.h4d{height:40.800000px;}
.h12{height:41.080078px;}
.hb{height:41.894531px;}
.h4{height:42.333984px;}
.h22{height:43.330078px;}
.h5c{height:43.681641px;}
.he{height:45.644531px;}
.h24{height:46.567383px;}
.h25{height:46.673218px;}
.h15{height:49.480430px;}
.h1a{height:50.273438px;}
.h6{height:50.800781px;}
.h35{height:50.906616px;}
.h10{height:51.996094px;}
.h1b{height:52.500000px;}
.h4c{height:53.437500px;}
.h49{height:53.700000px;}
.h36{height:53.709961px;}
.h13{height:54.000000px;}
.h37{height:55.291992px;}
.h38{height:55.445581px;}
.h26{height:55.467158px;}
.h46{height:58.237500px;}
.h27{height:59.267578px;}
.h1{height:65.645508px;}
.h4b{height:71.700000px;}
.h48{height:78.000000px;}
.h45{height:78.300000px;}
.h3b{height:88.800000px;}
.h2{height:97.200000px;}
.h3a{height:98.137500px;}
.h3f{height:106.237500px;}
.h2a{height:117.900000px;}
.h2e{height:117.937500px;}
.h32{height:118.237500px;}
.h44{height:137.437500px;}
.h5a{height:157.500000px;}
.h53{height:157.530000px;}
.h51{height:157.785000px;}
.h58{height:157.830000px;}
.h54{height:157.845000px;}
.h39{height:187.530000px;}
.h29{height:236.745000px;}
.h56{height:236.775000px;}
.h50{height:316.230000px;}
.h57{height:316.245000px;}
.hf{height:369.975000px;}
.h34{height:394.200000px;}
.h23{height:647.100000px;}
.h0{height:1263.000000px;}
.w18{width:42.037500px;}
.wf{width:53.100000px;}
.w1a{width:57.337500px;}
.w1e{width:60.000000px;}
.w1d{width:62.737500px;}
.w13{width:63.037500px;}
.w19{width:65.100000px;}
.w10{width:69.637500px;}
.w4{width:72.300000px;}
.w17{width:73.200000px;}
.w11{width:79.537500px;}
.w1f{width:80.137500px;}
.w30{width:83.737500px;}
.w3f{width:84.300000px;}
.w3c{width:84.337500px;}
.w42{width:84.637500px;}
.w1b{width:84.900000px;}
.w8{width:85.200000px;}
.w39{width:85.822500px;}
.w44{width:86.122500px;}
.w1c{width:88.537500px;}
.w2f{width:88.837500px;}
.w12{width:89.700000px;}
.w3b{width:90.037500px;}
.w43{width:91.200000px;}
.w38{width:91.500000px;}
.we{width:92.437500px;}
.w47{width:93.937500px;}
.w2a{width:95.137500px;}
.wd{width:96.937500px;}
.w40{width:99.937500px;}
.w46{width:100.237500px;}
.w14{width:103.237500px;}
.wc{width:103.522500px;}
.w3{width:108.000000px;}
.w36{width:111.037500px;}
.w35{width:120.037500px;}
.wa{width:123.337500px;}
.w16{width:141.037500px;}
.w2c{width:141.637500px;}
.w2d{width:149.437500px;}
.w27{width:162.030000px;}
.w32{width:163.530000px;}
.w3d{width:168.330000px;}
.w28{width:170.130000px;}
.w34{width:193.275000px;}
.w25{width:226.275000px;}
.w22{width:228.675000px;}
.wb{width:233.775000px;}
.w23{width:236.475000px;}
.w21{width:239.775000px;}
.w20{width:252.075000px;}
.w6{width:252.975000px;}
.w24{width:269.775000px;}
.w2e{width:271.875000px;}
.w9{width:294.390000px;}
.w31{width:309.075000px;}
.w29{width:309.375000px;}
.w45{width:353.805000px;}
.w33{width:380.520000px;}
.w41{width:385.905000px;}
.w3a{width:392.820000px;}
.w15{width:478.050000px;}
.w5{width:483.450000px;}
.w37{width:505.950000px;}
.w3e{width:552.780000px;}
.w2b{width:708.300000px;}
.w26{width:730.800000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:7.800000px;}
.x37{left:9.300000px;}
.x2{left:10.799998px;}
.x3e{left:12.600000px;}
.x24{left:14.100000px;}
.x16{left:16.200000px;}
.x26{left:17.700000px;}
.x23{left:19.485000px;}
.x20{left:20.730000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x34{left:24.600000px;}
.x2e{left:26.385000px;}
.x3f{left:27.600000px;}
.x31{left:29.085000px;}
.x28{left:32.100000px;}
.x6e{left:33.300000px;}
.x2f{left:34.530000px;}
.x41{left:35.700000px;}
.x32{left:37.200000px;}
.x2d{left:38.700000px;}
.x65{left:39.750000px;}
.x2c{left:40.845000px;}
.x30{left:42.300000px;}
.x2b{left:44.130000px;}
.x75{left:46.200000px;}
.x64{left:48.787500px;}
.x67{left:51.900000px;}
.x4d{left:53.100000px;}
.x79{left:57.000000px;}
.x5f{left:58.230000px;}
.x74{left:60.000000px;}
.x46{left:62.400000px;}
.x63{left:64.230000px;}
.x62{left:67.200000px;}
.x1b{left:69.030000px;}
.x1e{left:74.430000px;}
.xc{left:78.337500px;}
.x1{left:81.037487px;}
.x15{left:83.137500px;}
.x33{left:84.637500px;}
.x43{left:89.130000px;}
.x71{left:92.730000px;}
.x4a{left:96.030000px;}
.x10{left:98.137487px;}
.x11{left:100.237487px;}
.x1f{left:103.830000px;}
.x49{left:106.530000px;}
.x7e{left:108.037487px;}
.x14{left:110.137487px;}
.x4b{left:114.030000px;}
.xf{left:116.445000px;}
.x4e{left:118.770000px;}
.x6d{left:123.030000px;}
.x6c{left:126.630000px;}
.x66{left:147.225000px;}
.xa{left:153.629987px;}
.x7b{left:166.245000px;}
.x1a{left:167.445000px;}
.x5a{left:170.775000px;}
.x4f{left:172.275000px;}
.x76{left:173.445000px;}
.x36{left:185.745000px;}
.x35{left:188.775000px;}
.x72{left:202.275000px;}
.x68{left:223.875000px;}
.x50{left:225.795000px;}
.xd{left:241.567500px;}
.x5e{left:243.975000px;}
.x6f{left:245.475000px;}
.x7a{left:250.275000px;}
.x77{left:260.175000px;}
.x38{left:262.875000px;}
.x7c{left:266.775000px;}
.x21{left:271.875000px;}
.x51{left:279.300000px;}
.x5b{left:286.380000px;}
.x39{left:305.520000px;}
.x73{left:314.220000px;}
.x47{left:320.820000px;}
.x52{left:332.820000px;}
.x42{left:334.020000px;}
.x19{left:348.119987px;}
.x12{left:351.719987px;}
.x7{left:363.419987px;}
.x22{left:369.420000px;}
.x3a{left:371.220000px;}
.x69{left:374.220000px;}
.x53{left:386.325000px;}
.x5{left:388.619987px;}
.x13{left:391.904987px;}
.x60{left:415.050000px;}
.x3b{left:429.150000px;}
.x54{left:439.845000px;}
.x1c{left:462.450000px;}
.x55{left:493.380000px;}
.x3c{left:514.950000px;}
.x25{left:516.150000px;}
.x56{left:546.900000px;}
.x17{left:555.194987px;}
.xe{left:561.780000px;}
.x5c{left:571.575000px;}
.x44{left:574.395000px;}
.x1d{left:586.395000px;}
.x48{left:592.995000px;}
.x57{left:600.405000px;}
.x3d{left:604.095000px;}
.x9{left:614.879987px;}
.x70{left:626.895000px;}
.x6a{left:646.995000px;}
.x8{left:648.194987px;}
.x58{left:653.925000px;}
.x27{left:666.825000px;}
.x6{left:696.524987px;}
.x59{left:707.445000px;}
.x7d{left:716.025000px;}
.x61{left:725.025000px;}
.x40{left:728.325000px;}
.x6b{left:736.425000px;}
.x78{left:744.525000px;}
.x29{left:757.125000px;}
.x18{left:760.424987px;}
.x4c{left:787.754987px;}
.x5d{left:789.869987px;}
.x45{left:807.869987px;}
.xb{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.146667pt;}
.lse{letter-spacing:-1.066667pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls8{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.106667pt;}
.ls12{letter-spacing:-0.066667pt;}
.ls3{letter-spacing:-0.042667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls14{letter-spacing:0.066667pt;}
.lsb{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.122667pt;}
.ls13{letter-spacing:0.133333pt;}
.ls6{letter-spacing:0.213333pt;}
.ls9{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.373333pt;}
.ls1{letter-spacing:0.533333pt;}
.ls11{letter-spacing:0.586667pt;}
.lsf{letter-spacing:5.866667pt;}
.ls10{letter-spacing:8.000000pt;}
.ls17{letter-spacing:13.973333pt;}
.ls15{letter-spacing:19.680000pt;}
.ls16{letter-spacing:40.640000pt;}
.ws1{word-spacing:-16.341333pt;}
.ws9{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.706667pt;}
.ws8{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws5{word-spacing:-13.226667pt;}
.ws7{word-spacing:-12.266667pt;}
.wse{word-spacing:-10.848000pt;}
.wsb{word-spacing:-10.666667pt;}
.ws4{word-spacing:-9.898667pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:157.664000pt;}
.wsd{word-spacing:453.642667pt;}
.wsa{word-spacing:593.146667pt;}
._2c{margin-left:-629.120000pt;}
._31{margin-left:-579.989333pt;}
._2f{margin-left:-562.453333pt;}
._2b{margin-left:-532.272000pt;}
._23{margin-left:-518.938667pt;}
._29{margin-left:-374.506667pt;}
._27{margin-left:-372.218667pt;}
._30{margin-left:-358.885333pt;}
._28{margin-left:-307.626667pt;}
._26{margin-left:-306.186667pt;}
._1e{margin-left:-294.400000pt;}
._2d{margin-left:-230.666667pt;}
._1d{margin-left:-220.266667pt;}
._22{margin-left:-175.786667pt;}
._1c{margin-left:-164.053333pt;}
._1f{margin-left:-155.093333pt;}
._20{margin-left:-152.213333pt;}
._2a{margin-left:-143.253333pt;}
._2e{margin-left:-140.320000pt;}
._21{margin-left:-123.360000pt;}
._24{margin-left:-94.400000pt;}
._25{margin-left:-54.560000pt;}
._19{margin-left:-3.354667pt;}
._f{margin-left:-2.048000pt;}
._1{margin-left:-0.938667pt;}
._0{width:0.912000pt;}
._4{width:1.973333pt;}
._5{width:3.306667pt;}
._b{width:4.693333pt;}
._6{width:5.685333pt;}
._7{width:6.613333pt;}
._10{width:7.808000pt;}
._11{width:8.800000pt;}
._e{width:10.496000pt;}
._c{width:11.413333pt;}
._d{width:12.357333pt;}
._a{width:14.506667pt;}
._13{width:15.829333pt;}
._9{width:16.906667pt;}
._8{width:18.080000pt;}
._15{width:18.986667pt;}
._12{width:20.533333pt;}
._14{width:21.653333pt;}
._16{width:23.253333pt;}
._17{width:24.458667pt;}
._2{width:298.826667pt;}
._1a{width:490.005333pt;}
._1b{width:508.138667pt;}
._18{width:626.725333pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs8{font-size:26.666667pt;}
.fs7{font-size:35.200000pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsc{font-size:48.133333pt;}
.fs2{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs9{font-size:58.800000pt;}
.fs4{font-size:64.000000pt;}
.fsb{font-size:64.133333pt;}
.fsa{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:2.933333pt;}
.y138{bottom:2.946667pt;}
.y1a3{bottom:3.186667pt;}
.y80{bottom:3.200000pt;}
.y7f{bottom:3.213333pt;}
.y1de{bottom:3.240000pt;}
.y1ca{bottom:3.453333pt;}
.y1bf{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.y149{bottom:3.720000pt;}
.y17b{bottom:3.733333pt;}
.y13f{bottom:4.000000pt;}
.y226{bottom:4.013333pt;}
.y1f7{bottom:4.040000pt;}
.y14d{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y18b{bottom:4.560000pt;}
.y144{bottom:4.786667pt;}
.y2{bottom:4.800000pt;}
.y146{bottom:4.813333pt;}
.y24c{bottom:4.826667pt;}
.y157{bottom:4.840000pt;}
.ybe{bottom:5.333333pt;}
.yc0{bottom:5.346667pt;}
.y183{bottom:5.866667pt;}
.y3f{bottom:6.413333pt;}
.y141{bottom:6.666667pt;}
.y1a1{bottom:6.680000pt;}
.y180{bottom:6.933333pt;}
.y1cb{bottom:7.733333pt;}
.y189{bottom:7.746667pt;}
.yac{bottom:10.386667pt;}
.y84{bottom:10.400000pt;}
.y20c{bottom:10.413333pt;}
.y86{bottom:10.666667pt;}
.yaf{bottom:10.680000pt;}
.y5{bottom:10.966667pt;}
.y18c{bottom:11.200000pt;}
.y181{bottom:11.480000pt;}
.y1da{bottom:12.800000pt;}
.y1c8{bottom:13.600000pt;}
.y1aa{bottom:14.666667pt;}
.y82{bottom:16.280000pt;}
.y9b{bottom:18.400000pt;}
.y7e{bottom:18.413333pt;}
.y98{bottom:18.666667pt;}
.y1bc{bottom:19.200000pt;}
.y167{bottom:19.773333pt;}
.y1a4{bottom:21.333333pt;}
.y3e{bottom:22.413333pt;}
.y1d8{bottom:24.306667pt;}
.y1c1{bottom:27.200000pt;}
.y19e{bottom:30.120000pt;}
.y1a9{bottom:30.133333pt;}
.y152{bottom:32.540000pt;}
.y19c{bottom:33.333333pt;}
.y9a{bottom:34.400000pt;}
.y17e{bottom:34.946667pt;}
.y7c{bottom:35.746667pt;}
.y165{bottom:37.400000pt;}
.y179{bottom:39.240000pt;}
.y1d7{bottom:39.506667pt;}
.y3d{bottom:39.746667pt;}
.y4{bottom:41.600000pt;}
.y186{bottom:42.666667pt;}
.y1a8{bottom:45.333333pt;}
.y185{bottom:46.173333pt;}
.y147{bottom:47.733333pt;}
.y13d{bottom:47.746667pt;}
.y151{bottom:48.033333pt;}
.y19b{bottom:48.840000pt;}
.y256{bottom:50.133333pt;}
.y1f5{bottom:50.146667pt;}
.y1{bottom:50.700000pt;}
.y3c{bottom:52.813333pt;}
.y164{bottom:60.666667pt;}
.y234{bottom:61.853333pt;}
.y150{bottom:63.233333pt;}
.y177{bottom:63.480000pt;}
.y19a{bottom:64.026667pt;}
.y1e4{bottom:65.333333pt;}
.y245{bottom:65.360000pt;}
.y255{bottom:65.600000pt;}
.y1f4{bottom:65.613333pt;}
.y41{bottom:65.900000pt;}
.y3b{bottom:68.040000pt;}
.y3{bottom:72.300000pt;}
.y15b{bottom:74.906667pt;}
.y126{bottom:76.373333pt;}
.y233{bottom:77.333333pt;}
.y176{bottom:78.666667pt;}
.y199{bottom:79.506667pt;}
.y254{bottom:80.800000pt;}
.y1f3{bottom:80.813333pt;}
.y3a{bottom:83.506667pt;}
.y13c{bottom:85.360000pt;}
.y232{bottom:92.520000pt;}
.y22b{bottom:92.573333pt;}
.y224{bottom:92.840000pt;}
.y175{bottom:94.133333pt;}
.y39{bottom:98.706667pt;}
.y209{bottom:98.966667pt;}
.y124{bottom:100.533333pt;}
.y13b{bottom:100.573333pt;}
.y10a{bottom:101.633333pt;}
.ybc{bottom:103.766667pt;}
.y29{bottom:106.166667pt;}
.y291{bottom:106.433333pt;}
.y15c{bottom:106.800000pt;}
.y65{bottom:107.766667pt;}
.y159{bottom:108.300000pt;}
.y23e{bottom:111.233333pt;}
.ya4{bottom:111.766667pt;}
.yd7{bottom:112.566667pt;}
.y196{bottom:113.366667pt;}
.y269{bottom:113.633333pt;}
.y38{bottom:114.173333pt;}
.y208{bottom:114.433333pt;}
.y13a{bottom:116.040000pt;}
.y109{bottom:117.366667pt;}
.ybb{bottom:119.233333pt;}
.y64{bottom:120.033333pt;}
.y1e2{bottom:120.533333pt;}
.y244{bottom:120.546667pt;}
.y14f{bottom:121.366667pt;}
.y28{bottom:121.633333pt;}
.y290{bottom:121.900000pt;}
.y11b{bottom:123.333333pt;}
.y1dc{bottom:126.433333pt;}
.y23d{bottom:126.700000pt;}
.ya3{bottom:127.233333pt;}
.y195{bottom:128.833333pt;}
.y268{bottom:129.100000pt;}
.y37{bottom:129.373333pt;}
.y207{bottom:129.633333pt;}
.y11e{bottom:130.693333pt;}
.yd6{bottom:130.966667pt;}
.y108{bottom:132.566667pt;}
.y11f{bottom:133.133333pt;}
.y122{bottom:134.373333pt;}
.yba{bottom:134.440000pt;}
.y243{bottom:135.733333pt;}
.y1e1{bottom:135.760000pt;}
.y121{bottom:136.800000pt;}
.y27{bottom:136.826667pt;}
.y28f{bottom:137.106667pt;}
.y15d{bottom:138.693333pt;}
.y158{bottom:139.226667pt;}
.y23c{bottom:141.906667pt;}
.ya2{bottom:142.440000pt;}
.y1d6{bottom:142.693333pt;}
.y194{bottom:144.026667pt;}
.y36{bottom:144.840000pt;}
.y206{bottom:145.106667pt;}
.y107{bottom:148.040000pt;}
.yd5{bottom:149.106667pt;}
.yb9{bottom:149.893333pt;}
.y1e0{bottom:151.226667pt;}
.y242{bottom:151.240000pt;}
.y26{bottom:152.293333pt;}
.y28e{bottom:152.560000pt;}
.y267{bottom:154.706667pt;}
.y156{bottom:156.826667pt;}
.y23b{bottom:157.373333pt;}
.ya1{bottom:157.933333pt;}
.y193{bottom:159.533333pt;}
.y35{bottom:160.040000pt;}
.y205{bottom:160.333333pt;}
.y169{bottom:160.400000pt;}
.y1db{bottom:162.200000pt;}
.y106{bottom:163.266667pt;}
.yd4{bottom:164.333333pt;}
.yb8{bottom:165.133333pt;}
.y222{bottom:167.506667pt;}
.y25{bottom:167.533333pt;}
.y28d{bottom:167.800000pt;}
.y11c{bottom:168.600000pt;}
.y266{bottom:170.466667pt;}
.y15e{bottom:170.573333pt;}
.y11d{bottom:171.866667pt;}
.ya0{bottom:173.133333pt;}
.y155{bottom:174.466667pt;}
.y192{bottom:174.733333pt;}
.y34{bottom:175.506667pt;}
.y123{bottom:175.533333pt;}
.y204{bottom:175.800000pt;}
.y1d9{bottom:178.200000pt;}
.y105{bottom:178.733333pt;}
.yd3{bottom:179.800000pt;}
.yb7{bottom:180.600000pt;}
.y221{bottom:182.746667pt;}
.y168{bottom:182.906667pt;}
.y24{bottom:183.000000pt;}
.y28c{bottom:183.266667pt;}
.y166{bottom:184.466667pt;}
.y265{bottom:185.666667pt;}
.y9f{bottom:186.200000pt;}
.y191{bottom:190.200000pt;}
.y154{bottom:190.466667pt;}
.y33{bottom:190.706667pt;}
.y203{bottom:191.000000pt;}
.y120{bottom:192.640000pt;}
.y104{bottom:193.400000pt;}
.yd2{bottom:195.000000pt;}
.y1d5{bottom:195.266667pt;}
.yb6{bottom:195.800000pt;}
.y23{bottom:197.666667pt;}
.y220{bottom:198.213333pt;}
.y28b{bottom:198.466667pt;}
.y15f{bottom:202.466667pt;}
.y190{bottom:205.400000pt;}
.y32{bottom:206.173333pt;}
.y103{bottom:206.200000pt;}
.y202{bottom:206.466667pt;}
.y9e{bottom:209.666667pt;}
.y153{bottom:210.200000pt;}
.y22{bottom:210.466667pt;}
.y113{bottom:211.266667pt;}
.yb5{bottom:211.533333pt;}
.y28a{bottom:213.933333pt;}
.y115{bottom:217.666667pt;}
.y18f{bottom:221.133333pt;}
.y1d4{bottom:221.400000pt;}
.y31{bottom:221.413333pt;}
.y102{bottom:221.666667pt;}
.yd1{bottom:225.666667pt;}
.y21{bottom:225.933333pt;}
.y112{bottom:226.466667pt;}
.y139{bottom:227.000000pt;}
.yb4{bottom:228.866667pt;}
.y289{bottom:229.133333pt;}
.y9d{bottom:233.400000pt;}
.y160{bottom:234.333333pt;}
.y101{bottom:236.866667pt;}
.y30{bottom:236.880000pt;}
.y201{bottom:237.133333pt;}
.y18e{bottom:238.466667pt;}
.y1d3{bottom:238.733333pt;}
.y20{bottom:241.133333pt;}
.yb3{bottom:241.933333pt;}
.y264{bottom:242.466667pt;}
.y14e{bottom:244.600000pt;}
.y18d{bottom:251.533333pt;}
.y2f{bottom:252.080000pt;}
.y100{bottom:252.333333pt;}
.yb2{bottom:254.200000pt;}
.yd0{bottom:256.333333pt;}
.y1f{bottom:256.600000pt;}
.y97{bottom:257.133333pt;}
.y263{bottom:257.666667pt;}
.y288{bottom:259.800000pt;}
.y14c{bottom:262.466667pt;}
.y184{bottom:264.333333pt;}
.y161{bottom:266.240000pt;}
.y1d2{bottom:267.000000pt;}
.y2e{bottom:267.533333pt;}
.y200{bottom:267.800000pt;}
.y1e{bottom:271.800000pt;}
.y111{bottom:272.866667pt;}
.y287{bottom:275.266667pt;}
.y14b{bottom:280.066667pt;}
.y1d1{bottom:282.200000pt;}
.y2d{bottom:282.733333pt;}
.yff{bottom:283.000000pt;}
.y1ff{bottom:283.533333pt;}
.y116{bottom:283.760000pt;}
.ycf{bottom:287.000000pt;}
.y1d{bottom:287.266667pt;}
.y99{bottom:288.333333pt;}
.y286{bottom:290.466667pt;}
.y14a{bottom:296.066667pt;}
.yfe{bottom:297.666667pt;}
.y162{bottom:298.133333pt;}
.y2c{bottom:298.213333pt;}
.y262{bottom:299.000000pt;}
.y23a{bottom:300.866667pt;}
.y1fe{bottom:301.400000pt;}
.yce{bottom:302.466667pt;}
.y1c{bottom:303.000000pt;}
.y110{bottom:304.066667pt;}
.y18a{bottom:304.333333pt;}
.y285{bottom:305.933333pt;}
.yfd{bottom:310.506667pt;}
.y1d0{bottom:312.906667pt;}
.y239{bottom:313.706667pt;}
.y2b{bottom:313.933333pt;}
.y96{bottom:314.506667pt;}
.y148{bottom:315.840000pt;}
.y1fd{bottom:316.893333pt;}
.ycd{bottom:318.226667pt;}
.y1b{bottom:320.373333pt;}
.y284{bottom:321.173333pt;}
.y188{bottom:321.693333pt;}
.yfc{bottom:325.960000pt;}
.y231{bottom:328.106667pt;}
.y1cf{bottom:328.373333pt;}
.y1f2{bottom:329.693333pt;}
.y10f{bottom:329.960000pt;}
.y163{bottom:330.000000pt;}
.y114{bottom:330.933333pt;}
.y95{bottom:332.626667pt;}
.ycc{bottom:336.093333pt;}
.y283{bottom:336.626667pt;}
.yfb{bottom:341.173333pt;}
.y187{bottom:342.506667pt;}
.y1ce{bottom:344.106667pt;}
.y238{bottom:345.693333pt;}
.y1fc{bottom:347.560000pt;}
.y94{bottom:347.840000pt;}
.y125{bottom:348.906667pt;}
.y117{bottom:349.826667pt;}
.y145{bottom:350.226667pt;}
.ycb{bottom:351.573333pt;}
.y282{bottom:351.840000pt;}
.y261{bottom:355.560000pt;}
.yfa{bottom:356.626667pt;}
.y174{bottom:359.560000pt;}
.y1cd{bottom:361.440000pt;}
.y93{bottom:363.293333pt;}
.yca{bottom:363.840000pt;}
.y1fb{bottom:365.173333pt;}
.y281{bottom:367.293333pt;}
.y143{bottom:367.840000pt;}
.y260{bottom:371.026667pt;}
.yf9{bottom:371.840000pt;}
.y1cc{bottom:374.226667pt;}
.y182{bottom:376.360000pt;}
.y92{bottom:378.506667pt;}
.y237{bottom:381.173333pt;}
.y280{bottom:382.506667pt;}
.y1fa{bottom:382.773333pt;}
.y142{bottom:385.693333pt;}
.y25f{bottom:386.506667pt;}
.yf8{bottom:387.293333pt;}
.y91{bottom:393.973333pt;}
.y2a{bottom:395.026667pt;}
.y236{bottom:397.173333pt;}
.y27f{bottom:397.960000pt;}
.y1f9{bottom:400.360000pt;}
.y140{bottom:401.693333pt;}
.y25e{bottom:402.226667pt;}
.yf7{bottom:402.506667pt;}
.y1c9{bottom:407.840000pt;}
.y90{bottom:409.173333pt;}
.y27e{bottom:413.173333pt;}
.y118{bottom:415.933333pt;}
.y235{bottom:416.626667pt;}
.yf6{bottom:418.226667pt;}
.y17f{bottom:419.293333pt;}
.y25d{bottom:420.626667pt;}
.y13e{bottom:421.173333pt;}
.y1c5{bottom:424.360000pt;}
.y8f{bottom:424.626667pt;}
.y27d{bottom:428.626667pt;}
.y21f{bottom:433.693333pt;}
.y1f8{bottom:434.226667pt;}
.yf5{bottom:435.560000pt;}
.y137{bottom:438.226667pt;}
.y25c{bottom:438.506667pt;}
.y178{bottom:439.026667pt;}
.y8e{bottom:439.840000pt;}
.y1c7{bottom:440.360000pt;}
.y27c{bottom:443.840000pt;}
.yf4{bottom:448.640000pt;}
.y230{bottom:451.306667pt;}
.y1f6{bottom:453.693333pt;}
.y25b{bottom:453.973333pt;}
.y8d{bottom:455.306667pt;}
.y1c6{bottom:456.666667pt;}
.y17d{bottom:456.933333pt;}
.y27b{bottom:459.333333pt;}
.y136{bottom:460.400000pt;}
.yf3{bottom:463.866667pt;}
.y253{bottom:468.133333pt;}
.y22f{bottom:468.933333pt;}
.y8c{bottom:470.533333pt;}
.y1df{bottom:470.800000pt;}
.y1c0{bottom:472.666667pt;}
.y17c{bottom:474.533333pt;}
.y135{bottom:477.733333pt;}
.yf2{bottom:479.333333pt;}
.y119{bottom:482.026667pt;}
.y8b{bottom:486.000000pt;}
.y22e{bottom:486.533333pt;}
.y1f1{bottom:488.400000pt;}
.y1c4{bottom:488.666667pt;}
.y27a{bottom:490.000000pt;}
.y134{bottom:490.533333pt;}
.yf1{bottom:494.533333pt;}
.y63{bottom:499.066667pt;}
.y8a{bottom:501.200000pt;}
.y22d{bottom:502.533333pt;}
.y25a{bottom:503.600000pt;}
.y1c3{bottom:504.666667pt;}
.y279{bottom:505.200000pt;}
.y133{bottom:506.000000pt;}
.yf0{bottom:510.000000pt;}
.y17a{bottom:510.266667pt;}
.y62{bottom:514.533333pt;}
.y89{bottom:516.666667pt;}
.y1c2{bottom:520.666667pt;}
.y132{bottom:521.200000pt;}
.y127{bottom:521.266667pt;}
.y22c{bottom:522.266667pt;}
.y1f0{bottom:523.600000pt;}
.yef{bottom:525.200000pt;}
.y173{bottom:527.066667pt;}
.y61{bottom:529.733333pt;}
.y88{bottom:532.400000pt;}
.y278{bottom:535.866667pt;}
.y131{bottom:536.666667pt;}
.y1bb{bottom:536.933333pt;}
.y259{bottom:538.800000pt;}
.y223{bottom:539.066667pt;}
.yee{bottom:540.666667pt;}
.y1ef{bottom:541.466667pt;}
.y60{bottom:545.200000pt;}
.y11a{bottom:548.106667pt;}
.y87{bottom:550.800000pt;}
.y277{bottom:551.333333pt;}
.y130{bottom:551.866667pt;}
.y1be{bottom:552.933333pt;}
.yed{bottom:555.866667pt;}
.y258{bottom:556.666667pt;}
.y22a{bottom:556.933333pt;}
.y1ee{bottom:559.066667pt;}
.y5f{bottom:560.400000pt;}
.y172{bottom:560.933333pt;}
.y85{bottom:566.266667pt;}
.y276{bottom:566.533333pt;}
.y12f{bottom:567.333333pt;}
.y1bd{bottom:569.200000pt;}
.yec{bottom:571.333333pt;}
.y257{bottom:572.666667pt;}
.y229{bottom:574.533333pt;}
.y1ed{bottom:575.066667pt;}
.y5e{bottom:575.866667pt;}
.y171{bottom:578.800000pt;}
.y275{bottom:582.000000pt;}
.y12e{bottom:582.533333pt;}
.y1ba{bottom:585.200000pt;}
.yeb{bottom:587.066667pt;}
.y83{bottom:590.000000pt;}
.y5d{bottom:591.066667pt;}
.y228{bottom:592.133333pt;}
.y170{bottom:594.266667pt;}
.y1ec{bottom:594.800000pt;}
.y274{bottom:597.200000pt;}
.y12d{bottom:598.000000pt;}
.yea{bottom:605.506667pt;}
.y5c{bottom:606.560000pt;}
.y227{bottom:608.173333pt;}
.y241{bottom:609.226667pt;}
.y16f{bottom:609.506667pt;}
.y1b9{bottom:611.360000pt;}
.y1e3{bottom:611.640000pt;}
.y273{bottom:612.693333pt;}
.y12c{bottom:613.226667pt;}
.y81{bottom:613.760000pt;}
.y5b{bottom:621.773333pt;}
.ye9{bottom:622.840000pt;}
.y16e{bottom:624.973333pt;}
.y252{bottom:626.840000pt;}
.y225{bottom:627.893333pt;}
.y1b8{bottom:628.706667pt;}
.y12b{bottom:628.973333pt;}
.y1eb{bottom:629.226667pt;}
.ye8{bottom:635.626667pt;}
.y5a{bottom:637.506667pt;}
.y16d{bottom:640.173333pt;}
.y1b7{bottom:641.760000pt;}
.y7b{bottom:643.093333pt;}
.y272{bottom:643.373333pt;}
.y251{bottom:644.426667pt;}
.y21e{bottom:646.026667pt;}
.y1ea{bottom:646.840000pt;}
.y12a{bottom:647.106667pt;}
.ye7{bottom:651.106667pt;}
.yb1{bottom:653.226667pt;}
.y16c{bottom:655.640000pt;}
.y59{bottom:655.906667pt;}
.y1b6{bottom:656.960000pt;}
.y271{bottom:658.573333pt;}
.y7d{bottom:660.426667pt;}
.y250{bottom:662.026667pt;}
.y129{bottom:662.306667pt;}
.y1e9{bottom:664.693333pt;}
.yb0{bottom:666.306667pt;}
.y16b{bottom:670.840000pt;}
.y1b5{bottom:672.440000pt;}
.y58{bottom:673.226667pt;}
.y21d{bottom:673.506667pt;}
.y270{bottom:674.026667pt;}
.y128{bottom:674.560000pt;}
.y15a{bottom:676.266667pt;}
.y24f{bottom:679.906667pt;}
.ye6{bottom:681.773333pt;}
.y1e8{bottom:682.306667pt;}
.y57{bottom:686.293333pt;}
.y1b4{bottom:687.626667pt;}
.y26f{bottom:689.226667pt;}
.yae{bottom:689.760000pt;}
.y21c{bottom:691.626667pt;}
.ye5{bottom:696.960000pt;}
.y24e{bottom:697.506667pt;}
.y1e7{bottom:699.906667pt;}
.y56{bottom:701.506667pt;}
.y7a{bottom:702.040000pt;}
.y1b3{bottom:703.093333pt;}
.y26e{bottom:704.706667pt;}
.y21b{bottom:706.840000pt;}
.ye4{bottom:711.626667pt;}
.yad{bottom:713.506667pt;}
.y1e6{bottom:715.893333pt;}
.y55{bottom:716.960000pt;}
.y1b2{bottom:718.293333pt;}
.y79{bottom:719.893333pt;}
.y21a{bottom:722.293333pt;}
.ye3{bottom:724.706667pt;}
.y54{bottom:732.173333pt;}
.y24d{bottom:733.226667pt;}
.y1b1{bottom:733.773333pt;}
.y78{bottom:735.373333pt;}
.y1e5{bottom:735.626667pt;}
.yab{bottom:737.240000pt;}
.y219{bottom:737.506667pt;}
.ye2{bottom:739.893333pt;}
.y53{bottom:747.626667pt;}
.y1b0{bottom:749.506667pt;}
.y1a{bottom:750.040000pt;}
.y77{bottom:750.560000pt;}
.y1dd{bottom:752.426667pt;}
.y218{bottom:752.960000pt;}
.ye1{bottom:755.400000pt;}
.yaa{bottom:761.000000pt;}
.y52{bottom:762.866667pt;}
.y76{bottom:766.066667pt;}
.y1af{bottom:766.866667pt;}
.y19{bottom:767.666667pt;}
.y217{bottom:768.200000pt;}
.ye0{bottom:770.600000pt;}
.y51{bottom:777.533333pt;}
.y16a{bottom:778.600000pt;}
.y1ae{bottom:779.666667pt;}
.y75{bottom:781.266667pt;}
.y26d{bottom:781.800000pt;}
.y216{bottom:783.666667pt;}
.y18{bottom:784.200000pt;}
.ya9{bottom:784.466667pt;}
.y24b{bottom:785.266667pt;}
.ydf{bottom:786.066667pt;}
.y50{bottom:790.600000pt;}
.y1a7{bottom:792.733333pt;}
.y74{bottom:796.733333pt;}
.y215{bottom:798.866667pt;}
.y26c{bottom:799.133333pt;}
.yc9{bottom:799.400000pt;}
.y17{bottom:800.733333pt;}
.yde{bottom:801.266667pt;}
.y24a{bottom:803.133333pt;}
.y4f{bottom:805.800000pt;}
.ya8{bottom:808.200000pt;}
.y1ad{bottom:810.333333pt;}
.y73{bottom:811.933333pt;}
.y214{bottom:814.333333pt;}
.y16{bottom:815.933333pt;}
.yc8{bottom:816.200000pt;}
.ydd{bottom:817.000000pt;}
.y249{bottom:820.733333pt;}
.y4e{bottom:821.266667pt;}
.y1ac{bottom:826.333333pt;}
.y72{bottom:827.400000pt;}
.y213{bottom:829.533333pt;}
.y15{bottom:829.800000pt;}
.ya7{bottom:833.266667pt;}
.ydc{bottom:834.333333pt;}
.yc7{bottom:834.600000pt;}
.y4d{bottom:836.466667pt;}
.y248{bottom:838.333333pt;}
.y71{bottom:842.600000pt;}
.ya6{bottom:843.133333pt;}
.y14{bottom:843.933333pt;}
.y212{bottom:845.000000pt;}
.y1ab{bottom:846.066667pt;}
.ydb{bottom:847.400000pt;}
.y4c{bottom:851.933333pt;}
.yc6{bottom:852.733333pt;}
.y247{bottom:854.333333pt;}
.y70{bottom:858.066667pt;}
.y13{bottom:859.666667pt;}
.ya5{bottom:860.466667pt;}
.y211{bottom:860.733333pt;}
.y296{bottom:861.000000pt;}
.yda{bottom:862.600000pt;}
.y198{bottom:862.866667pt;}
.y4b{bottom:866.600000pt;}
.yc5{bottom:871.133333pt;}
.y6f{bottom:873.266667pt;}
.y246{bottom:874.066667pt;}
.y295{bottom:876.466667pt;}
.y12{bottom:878.066667pt;}
.y210{bottom:878.600000pt;}
.y1a6{bottom:878.866667pt;}
.y4a{bottom:879.400000pt;}
.y6e{bottom:888.733333pt;}
.y26b{bottom:889.000000pt;}
.yc4{bottom:889.266667pt;}
.y294{bottom:891.666667pt;}
.y240{bottom:892.200000pt;}
.yd9{bottom:893.266667pt;}
.y20f{bottom:894.066667pt;}
.y49{bottom:894.866667pt;}
.y11{bottom:896.466667pt;}
.y1a5{bottom:898.600000pt;}
.y6d{bottom:903.960000pt;}
.y26a{bottom:906.373333pt;}
.y20e{bottom:906.893333pt;}
.y293{bottom:907.173333pt;}
.yc3{bottom:907.693333pt;}
.y48{bottom:910.106667pt;}
.y10{bottom:914.106667pt;}
.y19d{bottom:915.440000pt;}
.yd8{bottom:919.173333pt;}
.y6c{bottom:919.440000pt;}
.y23f{bottom:919.706667pt;}
.y10e{bottom:922.106667pt;}
.y292{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y47{bottom:925.560000pt;}
.yc2{bottom:925.840000pt;}
.y20d{bottom:930.626667pt;}
.y1a2{bottom:933.040000pt;}
.y6b{bottom:934.626667pt;}
.y10d{bottom:937.840000pt;}
.y46{bottom:940.773333pt;}
.yc1{bottom:944.226667pt;}
.yc{bottom:944.506667pt;}
.y1a0{bottom:949.026667pt;}
.yb{bottom:949.560000pt;}
.y6a{bottom:950.106667pt;}
.y10c{bottom:953.040000pt;}
.y20b{bottom:954.360000pt;}
.y45{bottom:956.226667pt;}
.ybf{bottom:962.360000pt;}
.ya{bottom:963.173333pt;}
.y69{bottom:965.293333pt;}
.y10b{bottom:968.506667pt;}
.y19f{bottom:968.773333pt;}
.y44{bottom:970.893333pt;}
.y9{bottom:975.960000pt;}
.y20a{bottom:977.840000pt;}
.y68{bottom:980.773333pt;}
.ybd{bottom:982.106667pt;}
.y43{bottom:983.706667pt;}
.y197{bottom:985.573333pt;}
.y8{bottom:991.706667pt;}
.y67{bottom:995.960000pt;}
.y42{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y66{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h5{height:11.289062pt;}
.h28{height:15.200000pt;}
.h43{height:15.453333pt;}
.h16{height:15.466667pt;}
.h4f{height:15.500000pt;}
.h4a{height:15.733333pt;}
.h2f{height:16.000000pt;}
.h47{height:16.033333pt;}
.h2b{height:16.266667pt;}
.h55{height:16.300000pt;}
.h5b{height:16.786667pt;}
.h31{height:16.800000pt;}
.h41{height:16.833333pt;}
.h52{height:17.053333pt;}
.h2d{height:17.066667pt;}
.h59{height:17.086667pt;}
.h33{height:17.100000pt;}
.h1f{height:17.586667pt;}
.h20{height:17.600000pt;}
.h21{height:17.633333pt;}
.h3e{height:18.133333pt;}
.h1d{height:18.619792pt;}
.ha{height:18.666667pt;}
.h2c{height:18.933333pt;}
.h30{height:18.966667pt;}
.h3c{height:19.200000pt;}
.h40{height:20.000000pt;}
.h1c{height:22.933333pt;}
.h1e{height:22.953333pt;}
.h18{height:22.966667pt;}
.h19{height:23.200000pt;}
.h42{height:23.466667pt;}
.h3d{height:23.733333pt;}
.h17{height:28.800000pt;}
.hd{height:29.791667pt;}
.h7{height:30.104167pt;}
.h14{height:30.666667pt;}
.h11{height:30.812500pt;}
.h3{height:32.000000pt;}
.h8{height:33.515625pt;}
.hc{height:33.867188pt;}
.h4e{height:34.966667pt;}
.h4d{height:36.266667pt;}
.h12{height:36.515625pt;}
.hb{height:37.239583pt;}
.h4{height:37.630208pt;}
.h22{height:38.515625pt;}
.h5c{height:38.828125pt;}
.he{height:40.572917pt;}
.h24{height:41.393229pt;}
.h25{height:41.487305pt;}
.h15{height:43.982604pt;}
.h1a{height:44.687500pt;}
.h6{height:45.156250pt;}
.h35{height:45.250326pt;}
.h10{height:46.218750pt;}
.h1b{height:46.666667pt;}
.h4c{height:47.500000pt;}
.h49{height:47.733333pt;}
.h36{height:47.742188pt;}
.h13{height:48.000000pt;}
.h37{height:49.148438pt;}
.h38{height:49.284961pt;}
.h26{height:49.304141pt;}
.h46{height:51.766667pt;}
.h27{height:52.682292pt;}
.h1{height:58.351562pt;}
.h4b{height:63.733333pt;}
.h48{height:69.333333pt;}
.h45{height:69.600000pt;}
.h3b{height:78.933333pt;}
.h2{height:86.400000pt;}
.h3a{height:87.233333pt;}
.h3f{height:94.433333pt;}
.h2a{height:104.800000pt;}
.h2e{height:104.833333pt;}
.h32{height:105.100000pt;}
.h44{height:122.166667pt;}
.h5a{height:140.000000pt;}
.h53{height:140.026667pt;}
.h51{height:140.253333pt;}
.h58{height:140.293333pt;}
.h54{height:140.306667pt;}
.h39{height:166.693333pt;}
.h29{height:210.440000pt;}
.h56{height:210.466667pt;}
.h50{height:281.093333pt;}
.h57{height:281.106667pt;}
.hf{height:328.866667pt;}
.h34{height:350.400000pt;}
.h23{height:575.200000pt;}
.h0{height:1122.666667pt;}
.w18{width:37.366667pt;}
.wf{width:47.200000pt;}
.w1a{width:50.966667pt;}
.w1e{width:53.333333pt;}
.w1d{width:55.766667pt;}
.w13{width:56.033333pt;}
.w19{width:57.866667pt;}
.w10{width:61.900000pt;}
.w4{width:64.266667pt;}
.w17{width:65.066667pt;}
.w11{width:70.700000pt;}
.w1f{width:71.233333pt;}
.w30{width:74.433333pt;}
.w3f{width:74.933333pt;}
.w3c{width:74.966667pt;}
.w42{width:75.233333pt;}
.w1b{width:75.466667pt;}
.w8{width:75.733333pt;}
.w39{width:76.286667pt;}
.w44{width:76.553333pt;}
.w1c{width:78.700000pt;}
.w2f{width:78.966667pt;}
.w12{width:79.733333pt;}
.w3b{width:80.033333pt;}
.w43{width:81.066667pt;}
.w38{width:81.333333pt;}
.we{width:82.166667pt;}
.w47{width:83.500000pt;}
.w2a{width:84.566667pt;}
.wd{width:86.166667pt;}
.w40{width:88.833333pt;}
.w46{width:89.100000pt;}
.w14{width:91.766667pt;}
.wc{width:92.020000pt;}
.w3{width:96.000000pt;}
.w36{width:98.700000pt;}
.w35{width:106.700000pt;}
.wa{width:109.633333pt;}
.w16{width:125.366667pt;}
.w2c{width:125.900000pt;}
.w2d{width:132.833333pt;}
.w27{width:144.026667pt;}
.w32{width:145.360000pt;}
.w3d{width:149.626667pt;}
.w28{width:151.226667pt;}
.w34{width:171.800000pt;}
.w25{width:201.133333pt;}
.w22{width:203.266667pt;}
.wb{width:207.800000pt;}
.w23{width:210.200000pt;}
.w21{width:213.133333pt;}
.w20{width:224.066667pt;}
.w6{width:224.866667pt;}
.w24{width:239.800000pt;}
.w2e{width:241.666667pt;}
.w9{width:261.680000pt;}
.w31{width:274.733333pt;}
.w29{width:275.000000pt;}
.w45{width:314.493333pt;}
.w33{width:338.240000pt;}
.w41{width:343.026667pt;}
.w3a{width:349.173333pt;}
.w15{width:424.933333pt;}
.w5{width:429.733333pt;}
.w37{width:449.733333pt;}
.w3e{width:491.360000pt;}
.w2b{width:629.600000pt;}
.w26{width:649.600000pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:6.933333pt;}
.x37{left:8.266667pt;}
.x2{left:9.599999pt;}
.x3e{left:11.200000pt;}
.x24{left:12.533333pt;}
.x16{left:14.400000pt;}
.x26{left:15.733333pt;}
.x23{left:17.320000pt;}
.x20{left:18.426667pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x34{left:21.866667pt;}
.x2e{left:23.453333pt;}
.x3f{left:24.533333pt;}
.x31{left:25.853333pt;}
.x28{left:28.533333pt;}
.x6e{left:29.600000pt;}
.x2f{left:30.693333pt;}
.x41{left:31.733333pt;}
.x32{left:33.066667pt;}
.x2d{left:34.400000pt;}
.x65{left:35.333333pt;}
.x2c{left:36.306667pt;}
.x30{left:37.600000pt;}
.x2b{left:39.226667pt;}
.x75{left:41.066667pt;}
.x64{left:43.366667pt;}
.x67{left:46.133333pt;}
.x4d{left:47.200000pt;}
.x79{left:50.666667pt;}
.x5f{left:51.760000pt;}
.x74{left:53.333333pt;}
.x46{left:55.466667pt;}
.x63{left:57.093333pt;}
.x62{left:59.733333pt;}
.x1b{left:61.360000pt;}
.x1e{left:66.160000pt;}
.xc{left:69.633333pt;}
.x1{left:72.033322pt;}
.x15{left:73.900000pt;}
.x33{left:75.233333pt;}
.x43{left:79.226667pt;}
.x71{left:82.426667pt;}
.x4a{left:85.360000pt;}
.x10{left:87.233322pt;}
.x11{left:89.099988pt;}
.x1f{left:92.293333pt;}
.x49{left:94.693333pt;}
.x7e{left:96.033322pt;}
.x14{left:97.899988pt;}
.x4b{left:101.360000pt;}
.xf{left:103.506667pt;}
.x4e{left:105.573333pt;}
.x6d{left:109.360000pt;}
.x6c{left:112.560000pt;}
.x66{left:130.866667pt;}
.xa{left:136.559988pt;}
.x7b{left:147.773333pt;}
.x1a{left:148.840000pt;}
.x5a{left:151.800000pt;}
.x4f{left:153.133333pt;}
.x76{left:154.173333pt;}
.x36{left:165.106667pt;}
.x35{left:167.800000pt;}
.x72{left:179.800000pt;}
.x68{left:199.000000pt;}
.x50{left:200.706667pt;}
.xd{left:214.726667pt;}
.x5e{left:216.866667pt;}
.x6f{left:218.200000pt;}
.x7a{left:222.466667pt;}
.x77{left:231.266667pt;}
.x38{left:233.666667pt;}
.x7c{left:237.133333pt;}
.x21{left:241.666667pt;}
.x51{left:248.266667pt;}
.x5b{left:254.560000pt;}
.x39{left:271.573333pt;}
.x73{left:279.306667pt;}
.x47{left:285.173333pt;}
.x52{left:295.840000pt;}
.x42{left:296.906667pt;}
.x19{left:309.439988pt;}
.x12{left:312.639988pt;}
.x7{left:323.039988pt;}
.x22{left:328.373333pt;}
.x3a{left:329.973333pt;}
.x69{left:332.640000pt;}
.x53{left:343.400000pt;}
.x5{left:345.439988pt;}
.x13{left:348.359988pt;}
.x60{left:368.933333pt;}
.x3b{left:381.466667pt;}
.x54{left:390.973333pt;}
.x1c{left:411.066667pt;}
.x55{left:438.560000pt;}
.x3c{left:457.733333pt;}
.x25{left:458.800000pt;}
.x56{left:486.133333pt;}
.x17{left:493.506655pt;}
.xe{left:499.360000pt;}
.x5c{left:508.066667pt;}
.x44{left:510.573333pt;}
.x1d{left:521.240000pt;}
.x48{left:527.106667pt;}
.x57{left:533.693333pt;}
.x3d{left:536.973333pt;}
.x9{left:546.559988pt;}
.x70{left:557.240000pt;}
.x6a{left:575.106667pt;}
.x8{left:576.173322pt;}
.x58{left:581.266667pt;}
.x27{left:592.733333pt;}
.x6{left:619.133322pt;}
.x59{left:628.840000pt;}
.x7d{left:636.466667pt;}
.x61{left:644.466667pt;}
.x40{left:647.400000pt;}
.x6b{left:654.600000pt;}
.x78{left:661.800000pt;}
.x29{left:673.000000pt;}
.x18{left:675.933322pt;}
.x4c{left:700.226655pt;}
.x5d{left:702.106655pt;}
.x45{left:718.106655pt;}
.xb{left:722.106655pt;}
}




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