
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_53266678ccaee7b8b7fe950a.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_a0a0467106f0af6c78f62441.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_7259ad3f9fd2d28d9a354a83.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_21d42b0ec40d1cacbdc7ab00.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4b888e608864c67624763260.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_2f11726b423020d85a113a90.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls13{letter-spacing:-0.243600px;}
.lsf{letter-spacing:-0.186600px;}
.ls15{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls8{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.045360px;}
.lsc{letter-spacing:0.048960px;}
.ls3{letter-spacing:0.049200px;}
.lsb{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls18{letter-spacing:0.098400px;}
.ls11{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls10{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:47.726640px;}
.ls16{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws10{word-spacing:-14.372400px;}
.ws12{word-spacing:-13.425600px;}
.wsd{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.342800px;}
.ws16{word-spacing:-13.324800px;}
.ws5{word-spacing:-13.275600px;}
.wsf{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws14{word-spacing:-13.220280px;}
.ws15{word-spacing:-13.072800px;}
.wse{word-spacing:-13.039800px;}
.ws13{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:0.120000px;}
.wsb{word-spacing:0.180000px;}
.ws9{word-spacing:0.240000px;}
.wsc{word-spacing:0.300000px;}
.ws7{word-spacing:0.360000px;}
.ws8{word-spacing:0.600000px;}
.ws3{word-spacing:4.304880px;}
._11{margin-left:-4.148280px;}
._9{margin-left:-2.776920px;}
._0{margin-left:-1.110000px;}
._2{width:1.006224px;}
._a{width:2.645400px;}
._8{width:4.439399px;}
._6{width:5.952000px;}
._3{width:7.334400px;}
._7{width:9.138601px;}
._4{width:10.220400px;}
._5{width:11.362800px;}
._b{width:14.820637px;}
._1{width:16.021164px;}
._e{width:17.285076px;}
._d{width:18.663957px;}
._c{width:19.779600px;}
._12{width:20.801520px;}
._13{width:21.880200px;}
._1f{width:23.450280px;}
._19{width:24.949800px;}
._f{width:26.512920px;}
._10{width:27.536160px;}
._1a{width:29.096880px;}
._2f{width:30.120120px;}
._37{width:31.743360px;}
._2d{width:34.749360px;}
._2e{width:35.792040px;}
._2a{width:36.973800px;}
._3b{width:39.084120px;}
._26{width:40.160160px;}
._24{width:44.368560px;}
._3f{width:49.118040px;}
._15{width:50.621040px;}
._2c{width:51.823440px;}
._28{width:53.446680px;}
._38{width:54.468720px;}
._1d{width:56.091960px;}
._1b{width:57.955680px;}
._3d{width:59.190360px;}
._20{width:60.508560px;}
._33{width:63.606960px;}
._35{width:67.214160px;}
._41{width:68.527920px;}
._14{width:69.618960px;}
._18{width:72.765360px;}
._1e{width:74.408400px;}
._3c{width:77.374440px;}
._17{width:86.031720px;}
._30{width:96.552720px;}
._40{width:100.146600px;}
._25{width:101.482560px;}
._32{width:108.937440px;}
._39{width:121.141800px;}
._36{width:129.017520px;}
._29{width:138.576600px;}
._2b{width:140.680800px;}
._3a{width:156.071520px;}
._27{width:158.776920px;}
._31{width:177.654600px;}
._22{width:178.676640px;}
._3e{width:193.471200px;}
._23{width:200.379960px;}
._1c{width:216.852840px;}
._16{width:227.193480px;}
._21{width:261.942840px;}
._34{width:314.908560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:7.830000px;}
.yb4{bottom:7.920000px;}
.y19c{bottom:21.330000px;}
.y196{bottom:21.420000px;}
.yb9{bottom:25.380000px;}
.y114{bottom:25.470000px;}
.y19a{bottom:30.150000px;}
.y198{bottom:38.880000px;}
.y19f{bottom:38.970000px;}
.y117{bottom:43.020000px;}
.y11e{bottom:43.050000px;}
.y119{bottom:43.110000px;}
.y199{bottom:47.700000px;}
.y1a1{bottom:47.820000px;}
.y19b{bottom:56.520000px;}
.y1a2{bottom:56.550000px;}
.y11c{bottom:60.570000px;}
.y116{bottom:60.660000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y56{bottom:111.270000px;}
.yce{bottom:117.030000px;}
.y12d{bottom:119.460000px;}
.y20c{bottom:122.700000px;}
.y1d2{bottom:127.650000px;}
.y55{bottom:128.910000px;}
.yf0{bottom:132.870000px;}
.y81{bottom:133.680000px;}
.ycd{bottom:134.580000px;}
.y12c{bottom:137.100000px;}
.y112{bottom:137.460000px;}
.y25{bottom:139.350000px;}
.y191{bottom:139.620000px;}
.y20b{bottom:140.250000px;}
.y1d1{bottom:145.290000px;}
.y54{bottom:146.460000px;}
.yc2{bottom:149.430000px;}
.yef{bottom:150.510000px;}
.y80{bottom:151.320000px;}
.ycc{bottom:152.220000px;}
.y12b{bottom:154.650000px;}
.y111{bottom:155.100000px;}
.y24{bottom:156.990000px;}
.y190{bottom:157.170000px;}
.y20a{bottom:157.890000px;}
.y1d0{bottom:162.840000px;}
.y16e{bottom:164.100000px;}
.ya6{bottom:164.460000px;}
.yc1{bottom:166.980000px;}
.yee{bottom:168.060000px;}
.yaf{bottom:168.870000px;}
.y22e{bottom:169.680000px;}
.y12a{bottom:172.200000px;}
.y53{bottom:173.100000px;}
.y23{bottom:174.540000px;}
.y18f{bottom:174.810000px;}
.y143{bottom:175.350000px;}
.y197{bottom:176.700000px;}
.y7f{bottom:177.870000px;}
.y1e9{bottom:181.650000px;}
.ya5{bottom:182.100000px;}
.y209{bottom:184.440000px;}
.yc0{bottom:184.530000px;}
.yae{bottom:186.510000px;}
.y22d{bottom:187.320000px;}
.ycb{bottom:187.770000px;}
.y110{bottom:190.650000px;}
.y18e{bottom:192.360000px;}
.y142{bottom:192.900000px;}
.y1cf{bottom:198.480000px;}
.y1e8{bottom:199.200000px;}
.ya4{bottom:199.650000px;}
.y208{bottom:202.080000px;}
.ybf{bottom:202.170000px;}
.yed{bottom:203.610000px;}
.yad{bottom:204.060000px;}
.yca{bottom:205.410000px;}
.y129{bottom:207.840000px;}
.y10f{bottom:208.200000px;}
.y52{bottom:208.920000px;}
.y18d{bottom:209.910000px;}
.y22{bottom:210.090000px;}
.y141{bottom:210.540000px;}
.y7e{bottom:213.510000px;}
.y22c{bottom:213.870000px;}
.y1ce{bottom:216.030000px;}
.y1e7{bottom:216.840000px;}
.ya3{bottom:217.200000px;}
.y207{bottom:219.630000px;}
.ybe{bottom:219.720000px;}
.yec{bottom:221.250000px;}
.yac{bottom:221.610000px;}
.yc9{bottom:222.960000px;}
.y128{bottom:225.390000px;}
.y10e{bottom:225.840000px;}
.y16d{bottom:226.200000px;}
.y21{bottom:227.730000px;}
.y140{bottom:228.090000px;}
.y7d{bottom:231.060000px;}
.y22b{bottom:231.510000px;}
.y1cd{bottom:233.580000px;}
.y18c{bottom:236.550000px;}
.yeb{bottom:238.800000px;}
.yc8{bottom:240.510000px;}
.y127{bottom:243.030000px;}
.y10d{bottom:243.390000px;}
.y16c{bottom:243.840000px;}
.y20{bottom:245.280000px;}
.y206{bottom:246.180000px;}
.ybd{bottom:246.360000px;}
.y7c{bottom:248.610000px;}
.y22a{bottom:249.060000px;}
.y195{bottom:250.770000px;}
.y1cc{bottom:251.220000px;}
.y1e6{bottom:252.390000px;}
.ya2{bottom:252.840000px;}
.yea{bottom:256.440000px;}
.y51{bottom:257.250000px;}
.y23d{bottom:257.610000px;}
.yc7{bottom:258.150000px;}
.y126{bottom:260.580000px;}
.y1f{bottom:262.920000px;}
.y13f{bottom:263.730000px;}
.y205{bottom:263.820000px;}
.y7b{bottom:266.250000px;}
.y1e5{bottom:269.940000px;}
.ya1{bottom:270.390000px;}
.y18b{bottom:272.100000px;}
.y50{bottom:274.800000px;}
.y23c{bottom:275.250000px;}
.y229{bottom:275.610000px;}
.y10c{bottom:278.940000px;}
.y16b{bottom:279.390000px;}
.y13e{bottom:281.280000px;}
.ybc{bottom:282.180000px;}
.yc6{bottom:284.700000px;}
.y1cb{bottom:286.770000px;}
.y1e4{bottom:287.580000px;}
.ya0{bottom:287.940000px;}
.y18a{bottom:289.740000px;}
.y204{bottom:290.370000px;}
.ye9{bottom:291.990000px;}
.y4f{bottom:292.440000px;}
.y228{bottom:293.250000px;}
.y125{bottom:296.130000px;}
.y10b{bottom:296.580000px;}
.y16a{bottom:296.940000px;}
.y1b6{bottom:297.570000px;}
.y1e{bottom:298.470000px;}
.y13d{bottom:298.830000px;}
.y179{bottom:300.990000px;}
.y7a{bottom:301.800000px;}
.y1ca{bottom:304.410000px;}
.y9f{bottom:305.580000px;}
.y189{bottom:307.290000px;}
.y203{bottom:308.010000px;}
.ye8{bottom:309.540000px;}
.yab{bottom:309.990000px;}
.y227{bottom:310.800000px;}
.y124{bottom:313.770000px;}
.y10a{bottom:314.130000px;}
.y169{bottom:314.580000px;}
.y1b5{bottom:315.120000px;}
.y1d{bottom:316.020000px;}
.y13c{bottom:316.470000px;}
.y178{bottom:318.540000px;}
.y79{bottom:319.440000px;}
.yc5{bottom:320.250000px;}
.y1c9{bottom:321.960000px;}
.y9e{bottom:323.130000px;}
.y188{bottom:324.840000px;}
.ye7{bottom:327.180000px;}
.ybb{bottom:327.900000px;}
.y4e{bottom:327.990000px;}
.y123{bottom:331.320000px;}
.y109{bottom:331.770000px;}
.y168{bottom:332.130000px;}
.y1b4{bottom:332.760000px;}
.y1c{bottom:333.660000px;}
.y13b{bottom:334.020000px;}
.y202{bottom:334.560000px;}
.y177{bottom:336.180000px;}
.y78{bottom:336.990000px;}
.y226{bottom:337.440000px;}
.y1c8{bottom:339.510000px;}
.y9d{bottom:340.770000px;}
.y187{bottom:342.480000px;}
.ye6{bottom:344.730000px;}
.y4d{bottom:345.540000px;}
.y23b{bottom:345.990000px;}
.y122{bottom:348.870000px;}
.y108{bottom:349.320000px;}
.y1b{bottom:351.210000px;}
.y201{bottom:352.110000px;}
.yc4{bottom:352.470000px;}
.y77{bottom:354.540000px;}
.y225{bottom:354.990000px;}
.yba{bottom:355.260000px;}
.y9c{bottom:358.320000px;}
.y186{bottom:360.030000px;}
.ye5{bottom:362.370000px;}
.y4c{bottom:363.180000px;}
.y23a{bottom:363.540000px;}
.y1c7{bottom:366.150000px;}
.y121{bottom:366.510000px;}
.y167{bottom:367.770000px;}
.y1b3{bottom:368.310000px;}
.y1a{bottom:368.850000px;}
.y13a{bottom:369.660000px;}
.y200{bottom:369.750000px;}
.y176{bottom:371.730000px;}
.y76{bottom:372.180000px;}
.y224{bottom:372.540000px;}
.y107{bottom:375.870000px;}
.y185{bottom:377.670000px;}
.y4b{bottom:380.730000px;}
.y239{bottom:381.180000px;}
.y120{bottom:384.060000px;}
.y166{bottom:385.320000px;}
.y1b2{bottom:385.950000px;}
.y139{bottom:387.210000px;}
.ye4{bottom:388.920000px;}
.y175{bottom:389.370000px;}
.y75{bottom:389.730000px;}
.y1e3{bottom:393.510000px;}
.y9b{bottom:393.870000px;}
.y19{bottom:395.400000px;}
.y1ff{bottom:396.300000px;}
.y4a{bottom:398.370000px;}
.y223{bottom:399.180000px;}
.yb8{bottom:400.170000px;}
.y1c6{bottom:401.700000px;}
.y165{bottom:402.870000px;}
.y1b1{bottom:403.500000px;}
.y138{bottom:404.760000px;}
.y174{bottom:406.920000px;}
.y238{bottom:407.730000px;}
.y11f{bottom:410.700000px;}
.y9a{bottom:411.510000px;}
.y184{bottom:413.220000px;}
.y1fe{bottom:413.940000px;}
.yaa{bottom:415.920000px;}
.y222{bottom:416.730000px;}
.y1c5{bottom:419.250000px;}
.y1e2{bottom:420.060000px;}
.y164{bottom:420.510000px;}
.y1b0{bottom:421.050000px;}
.y137{bottom:422.400000px;}
.ye3{bottom:424.470000px;}
.y74{bottom:425.370000px;}
.y99{bottom:429.060000px;}
.y183{bottom:430.770000px;}
.y18{bottom:431.310000px;}
.y1fd{bottom:431.490000px;}
.y194{bottom:433.470000px;}
.y49{bottom:433.920000px;}
.y221{bottom:434.370000px;}
.y163{bottom:438.060000px;}
.y136{bottom:439.950000px;}
.ye2{bottom:442.110000px;}
.y73{bottom:442.920000px;}
.y11d{bottom:443.640000px;}
.yb7{bottom:445.080000px;}
.y98{bottom:446.700000px;}
.y182{bottom:448.410000px;}
.y48{bottom:451.470000px;}
.y1c4{bottom:454.890000px;}
.y1e1{bottom:455.700000px;}
.y1af{bottom:456.690000px;}
.y1fc{bottom:458.040000px;}
.ye1{bottom:459.660000px;}
.y173{bottom:460.110000px;}
.y72{bottom:460.470000px;}
.y220{bottom:460.920000px;}
.y97{bottom:464.250000px;}
.y181{bottom:465.960000px;}
.y47{bottom:469.110000px;}
.y237{bottom:469.470000px;}
.yb5{bottom:472.470000px;}
.y1e0{bottom:473.280000px;}
.y162{bottom:473.730000px;}
.y1ae{bottom:474.270000px;}
.y135{bottom:475.530000px;}
.y1fb{bottom:475.710000px;}
.y172{bottom:477.690000px;}
.y71{bottom:478.140000px;}
.y21f{bottom:478.500000px;}
.y17{bottom:479.940000px;}
.y96{bottom:481.830000px;}
.y180{bottom:483.540000px;}
.y46{bottom:486.690000px;}
.y236{bottom:487.140000px;}
.y1c3{bottom:490.110000px;}
.y1df{bottom:490.830000px;}
.y161{bottom:491.280000px;}
.y1ad{bottom:491.910000px;}
.y134{bottom:493.170000px;}
.ye0{bottom:495.330000px;}
.y21e{bottom:496.140000px;}
.yb3{bottom:499.740000px;}
.y106{bottom:499.830000px;}
.y17f{bottom:501.180000px;}
.y1fa{bottom:502.260000px;}
.y45{bottom:504.330000px;}
.y235{bottom:504.690000px;}
.y11b{bottom:506.220000px;}
.y1c2{bottom:507.660000px;}
.y95{bottom:508.470000px;}
.y160{bottom:508.830000px;}
.y1ac{bottom:509.460000px;}
.y133{bottom:510.720000px;}
.ydf{bottom:512.880000px;}
.y70{bottom:513.690000px;}
.y16{bottom:516.930000px;}
.y105{bottom:517.470000px;}
.y17e{bottom:518.730000px;}
.y1f9{bottom:519.900000px;}
.y44{bottom:521.880000px;}
.y234{bottom:522.330000px;}
.y1de{bottom:526.020000px;}
.y15f{bottom:526.470000px;}
.y1ab{bottom:527.010000px;}
.y132{bottom:528.360000px;}
.yde{bottom:530.430000px;}
.y171{bottom:530.880000px;}
.y6f{bottom:531.330000px;}
.y15{bottom:534.570000px;}
.y104{bottom:535.020000px;}
.y1f8{bottom:537.450000px;}
.y43{bottom:539.430000px;}
.y193{bottom:539.880000px;}
.y21d{bottom:540.330000px;}
.y1c1{bottom:543.210000px;}
.y94{bottom:544.380000px;}
.y1aa{bottom:544.650000px;}
.y17d{bottom:545.370000px;}
.y131{bottom:545.910000px;}
.ya9{bottom:548.430000px;}
.y6e{bottom:548.880000px;}
.y14{bottom:552.120000px;}
.y103{bottom:552.660000px;}
.y192{bottom:557.430000px;}
.y21c{bottom:557.880000px;}
.y1c0{bottom:560.850000px;}
.y1dd{bottom:561.660000px;}
.y15e{bottom:562.020000px;}
.y1f7{bottom:564.000000px;}
.ydd{bottom:566.070000px;}
.y6d{bottom:566.430000px;}
.y13{bottom:569.670000px;}
.y1a9{bottom:571.200000px;}
.y130{bottom:572.460000px;}
.y42{bottom:575.070000px;}
.y1bf{bottom:578.400000px;}
.y1dc{bottom:579.210000px;}
.y15d{bottom:579.660000px;}
.y17c{bottom:581.280000px;}
.y1f6{bottom:581.640000px;}
.ydc{bottom:583.620000px;}
.y6c{bottom:584.070000px;}
.y21b{bottom:584.430000px;}
.y11a{bottom:586.230000px;}
.y12{bottom:587.310000px;}
.y102{bottom:588.210000px;}
.y41{bottom:592.620000px;}
.y233{bottom:593.070000px;}
.y1be{bottom:596.040000px;}
.y1db{bottom:596.760000px;}
.y15c{bottom:597.210000px;}
.ydb{bottom:601.260000px;}
.y6b{bottom:601.620000px;}
.y21a{bottom:602.070000px;}
.y11{bottom:604.860000px;}
.y101{bottom:605.760000px;}
.y1a8{bottom:607.110000px;}
.y12f{bottom:608.100000px;}
.y1f5{bottom:608.190000px;}
.y40{bottom:610.260000px;}
.y232{bottom:610.620000px;}
.y1da{bottom:614.400000px;}
.y15b{bottom:614.760000px;}
.yda{bottom:618.810000px;}
.ya8{bottom:619.260000px;}
.y219{bottom:619.620000px;}
.y10{bottom:622.500000px;}
.y100{bottom:623.400000px;}
.y1f4{bottom:625.830000px;}
.y3f{bottom:627.810000px;}
.y17b{bottom:629.520000px;}
.y1bd{bottom:631.590000px;}
.y15a{bottom:632.400000px;}
.yd9{bottom:636.360000px;}
.yb2{bottom:636.810000px;}
.y6a{bottom:637.260000px;}
.yf{bottom:640.050000px;}
.y12e{bottom:640.320000px;}
.yff{bottom:640.950000px;}
.y93{bottom:645.360000px;}
.y218{bottom:646.260000px;}
.y1bc{bottom:649.140000px;}
.y1d9{bottom:649.950000px;}
.y1f3{bottom:652.650000px;}
.y3e{bottom:654.360000px;}
.y69{bottom:654.810000px;}
.y1a7{bottom:655.440000px;}
.ye{bottom:657.600000px;}
.y159{bottom:658.950000px;}
.y17a{bottom:661.740000px;}
.y217{bottom:663.810000px;}
.y118{bottom:666.330000px;}
.y1bb{bottom:666.780000px;}
.y1d8{bottom:667.590000px;}
.y1a6{bottom:671.910000px;}
.yd8{bottom:672.000000px;}
.y68{bottom:672.360000px;}
.yd{bottom:675.240000px;}
.yfe{bottom:676.590000px;}
.y92{bottom:681.000000px;}
.y216{bottom:681.360000px;}
.y1ba{bottom:684.330000px;}
.y1d7{bottom:685.140000px;}
.yd7{bottom:689.550000px;}
.y3d{bottom:690.000000px;}
.yc{bottom:692.790000px;}
.yfd{bottom:694.140000px;}
.y158{bottom:694.590000px;}
.y91{bottom:698.550000px;}
.y231{bottom:699.000000px;}
.y1f2{bottom:700.980000px;}
.y1d6{bottom:702.690000px;}
.yd6{bottom:707.190000px;}
.y3c{bottom:707.550000px;}
.y215{bottom:708.000000px;}
.yb{bottom:710.430000px;}
.y1b9{bottom:710.970000px;}
.yfc{bottom:711.690000px;}
.y157{bottom:712.140000px;}
.y90{bottom:716.190000px;}
.y1d5{bottom:720.330000px;}
.yd5{bottom:724.740000px;}
.y3b{bottom:725.190000px;}
.y214{bottom:725.550000px;}
.y1f1{bottom:727.890000px;}
.yfb{bottom:729.330000px;}
.y156{bottom:729.690000px;}
.y8f{bottom:733.740000px;}
.y67{bottom:734.190000px;}
.ya{bottom:737.340000px;}
.yd4{bottom:742.290000px;}
.y3a{bottom:742.740000px;}
.y230{bottom:743.190000px;}
.y1a5{bottom:745.980000px;}
.y115{bottom:746.430000px;}
.y1b8{bottom:746.520000px;}
.yfa{bottom:746.880000px;}
.y155{bottom:747.330000px;}
.y8e{bottom:751.290000px;}
.y213{bottom:752.190000px;}
.y170{bottom:760.290000px;}
.ya7{bottom:760.740000px;}
.y154{bottom:764.880000px;}
.y1f0{bottom:765.240000px;}
.y66{bottom:769.740000px;}
.yd3{bottom:777.930000px;}
.y39{bottom:778.290000px;}
.y1b7{bottom:778.740000px;}
.yf9{bottom:782.520000px;}
.y1d4{bottom:782.790000px;}
.y9{bottom:785.580000px;}
.y8d{bottom:786.930000px;}
.y65{bottom:787.290000px;}
.yd2{bottom:795.480000px;}
.y38{bottom:795.930000px;}
.y212{bottom:796.290000px;}
.yf8{bottom:800.070000px;}
.y153{bottom:800.520000px;}
.y8c{bottom:804.480000px;}
.y64{bottom:804.930000px;}
.yd1{bottom:813.030000px;}
.y37{bottom:813.480000px;}
.y211{bottom:813.930000px;}
.yf7{bottom:817.620000px;}
.y152{bottom:818.070000px;}
.y1a4{bottom:820.140000px;}
.y8{bottom:821.130000px;}
.y8b{bottom:822.030000px;}
.y63{bottom:822.480000px;}
.y113{bottom:826.530000px;}
.yd0{bottom:830.670000px;}
.y36{bottom:831.030000px;}
.y210{bottom:831.480000px;}
.yf6{bottom:835.260000px;}
.y151{bottom:835.620000px;}
.y16f{bottom:840.030000px;}
.yb1{bottom:848.670000px;}
.y22f{bottom:849.030000px;}
.yf5{bottom:852.810000px;}
.y150{bottom:853.260000px;}
.ycf{bottom:857.220000px;}
.y8a{bottom:857.670000px;}
.y62{bottom:858.030000px;}
.y7{bottom:861.450000px;}
.y1d3{bottom:866.220000px;}
.y35{bottom:866.670000px;}
.yf4{bottom:870.450000px;}
.y89{bottom:875.220000px;}
.y61{bottom:875.670000px;}
.y34{bottom:884.220000px;}
.y14f{bottom:888.810000px;}
.y88{bottom:892.860000px;}
.y60{bottom:893.220000px;}
.y1a3{bottom:894.300000px;}
.yf3{bottom:897.000000px;}
.y6{bottom:900.450000px;}
.y33{bottom:901.860000px;}
.y20f{bottom:902.220000px;}
.y14e{bottom:906.450000px;}
.y87{bottom:910.410000px;}
.y5f{bottom:910.860000px;}
.y32{bottom:919.410000px;}
.y20e{bottom:919.860000px;}
.y14d{bottom:924.000000px;}
.y5e{bottom:928.410000px;}
.yf2{bottom:932.910000px;}
.y31{bottom:936.960000px;}
.y20d{bottom:937.410000px;}
.y5{bottom:938.040000px;}
.y14c{bottom:941.550000px;}
.y86{bottom:945.960000px;}
.yb0{bottom:954.600000px;}
.y1ef{bottom:954.960000px;}
.y14b{bottom:959.190000px;}
.y85{bottom:963.600000px;}
.y5d{bottom:963.960000px;}
.y1a0{bottom:968.370000px;}
.y30{bottom:972.600000px;}
.y84{bottom:981.150000px;}
.y5c{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y2f{bottom:990.150000px;}
.y14a{bottom:994.740000px;}
.y83{bottom:998.790000px;}
.y5b{bottom:999.150000px;}
.y2e{bottom:1007.790000px;}
.y3{bottom:1010.070000px;}
.y149{bottom:1012.320000px;}
.yf1{bottom:1016.370000px;}
.y5a{bottom:1016.820000px;}
.y2d{bottom:1025.370000px;}
.y148{bottom:1029.960000px;}
.y59{bottom:1034.370000px;}
.y19e{bottom:1042.560000px;}
.y2c{bottom:1042.920000px;}
.y1ee{bottom:1043.370000px;}
.y147{bottom:1047.510000px;}
.y58{bottom:1051.920000px;}
.y1ed{bottom:1060.920000px;}
.y146{bottom:1065.150000px;}
.y2b{bottom:1069.560000px;}
.yc3{bottom:1069.920000px;}
.y1ec{bottom:1078.560000px;}
.y82{bottom:1087.110000px;}
.y57{bottom:1087.560000px;}
.y145{bottom:1091.700000px;}
.y1eb{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y1ea{bottom:1113.750000px;}
.y19d{bottom:1116.720000px;}
.y29{bottom:1122.750000px;}
.y144{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.ha{height:26.550000px;}
.hb{height:26.580000px;}
.h9{height:26.640000px;}
.h2{height:30.022383px;}
.h13{height:35.550000px;}
.h11{height:35.640000px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.hd{height:44.190000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h10{height:61.770000px;}
.h15{height:61.793886px;}
.h7{height:62.585859px;}
.h8{height:68.582109px;}
.h12{height:70.740000px;}
.h14{height:70.770000px;}
.h4{height:71.019492px;}
.hf{height:79.290000px;}
.he{height:79.380000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:118.920000px;}
.w6{width:124.860000px;}
.wb{width:171.630000px;}
.w8{width:183.810000px;}
.w3{width:195.240000px;}
.wc{width:211.890000px;}
.w9{width:217.530000px;}
.w7{width:227.250000px;}
.wd{width:249.390000px;}
.w4{width:267.960000px;}
.w5{width:291.060000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.740000px;}
.x1{left:68.040000px;}
.x10{left:69.120000px;}
.x16{left:111.239987px;}
.xf{left:145.709987px;}
.x8{left:163.289987px;}
.x15{left:183.449987px;}
.x11{left:189.120000px;}
.x9{left:194.340000px;}
.xd{left:201.719987px;}
.x2{left:202.799987px;}
.x5{left:264.720000px;}
.x12{left:361.740000px;}
.xa{left:422.400000px;}
.x6{left:533.400000px;}
.x13{left:574.710000px;}
.x14{left:605.309987px;}
.xb{left:606.930000px;}
.xe{left:610.889987px;}
.x7{left:694.139987px;}
.xc{left:729.059987px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls13{letter-spacing:-0.216533pt;}
.lsf{letter-spacing:-0.165867pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls8{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.040320pt;}
.lsc{letter-spacing:0.043520pt;}
.ls3{letter-spacing:0.043733pt;}
.lsb{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls18{letter-spacing:0.087467pt;}
.ls11{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls10{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:42.423680pt;}
.ls16{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws10{word-spacing:-12.775467pt;}
.ws12{word-spacing:-11.933867pt;}
.wsd{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.860267pt;}
.ws16{word-spacing:-11.844267pt;}
.ws5{word-spacing:-11.800533pt;}
.wsf{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws14{word-spacing:-11.751360pt;}
.ws15{word-spacing:-11.620267pt;}
.wse{word-spacing:-11.590933pt;}
.ws13{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:0.106667pt;}
.wsb{word-spacing:0.160000pt;}
.ws9{word-spacing:0.213333pt;}
.wsc{word-spacing:0.266667pt;}
.ws7{word-spacing:0.320000pt;}
.ws8{word-spacing:0.533333pt;}
.ws3{word-spacing:3.826560pt;}
._11{margin-left:-3.687360pt;}
._9{margin-left:-2.468374pt;}
._0{margin-left:-0.986667pt;}
._2{width:0.894422pt;}
._a{width:2.351467pt;}
._8{width:3.946132pt;}
._6{width:5.290667pt;}
._3{width:6.519466pt;}
._7{width:8.123201pt;}
._4{width:9.084800pt;}
._5{width:10.100267pt;}
._b{width:13.173899pt;}
._1{width:14.241035pt;}
._e{width:15.364512pt;}
._d{width:16.590184pt;}
._c{width:17.581867pt;}
._12{width:18.490240pt;}
._13{width:19.449067pt;}
._1f{width:20.844693pt;}
._19{width:22.177600pt;}
._f{width:23.567040pt;}
._10{width:24.476587pt;}
._1a{width:25.863893pt;}
._2f{width:26.773440pt;}
._37{width:28.216320pt;}
._2d{width:30.888320pt;}
._2e{width:31.815147pt;}
._2a{width:32.865600pt;}
._3b{width:34.741440pt;}
._26{width:35.697920pt;}
._24{width:39.438720pt;}
._3f{width:43.660480pt;}
._15{width:44.996480pt;}
._2c{width:46.065280pt;}
._28{width:47.508160pt;}
._38{width:48.416640pt;}
._1d{width:49.859520pt;}
._1b{width:51.516160pt;}
._3d{width:52.613653pt;}
._20{width:53.785387pt;}
._33{width:56.539520pt;}
._35{width:59.745920pt;}
._41{width:60.913707pt;}
._14{width:61.883520pt;}
._18{width:64.680320pt;}
._1e{width:66.140800pt;}
._3c{width:68.777280pt;}
._17{width:76.472640pt;}
._30{width:85.824640pt;}
._40{width:89.019200pt;}
._25{width:90.206720pt;}
._32{width:96.833280pt;}
._39{width:107.681600pt;}
._36{width:114.682240pt;}
._29{width:123.179200pt;}
._2b{width:125.049600pt;}
._3a{width:138.730240pt;}
._27{width:141.135040pt;}
._31{width:157.915200pt;}
._22{width:158.823680pt;}
._3e{width:171.974400pt;}
._23{width:178.115520pt;}
._1c{width:192.758080pt;}
._16{width:201.949760pt;}
._21{width:232.838080pt;}
._34{width:279.918720pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:6.960000pt;}
.yb4{bottom:7.040000pt;}
.y19c{bottom:18.960000pt;}
.y196{bottom:19.040000pt;}
.yb9{bottom:22.560000pt;}
.y114{bottom:22.640000pt;}
.y19a{bottom:26.800000pt;}
.y198{bottom:34.560000pt;}
.y19f{bottom:34.640000pt;}
.y117{bottom:38.240000pt;}
.y11e{bottom:38.266667pt;}
.y119{bottom:38.320000pt;}
.y199{bottom:42.400000pt;}
.y1a1{bottom:42.506667pt;}
.y19b{bottom:50.240000pt;}
.y1a2{bottom:50.266667pt;}
.y11c{bottom:53.840000pt;}
.y116{bottom:53.920000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y56{bottom:98.906667pt;}
.yce{bottom:104.026667pt;}
.y12d{bottom:106.186667pt;}
.y20c{bottom:109.066667pt;}
.y1d2{bottom:113.466667pt;}
.y55{bottom:114.586667pt;}
.yf0{bottom:118.106667pt;}
.y81{bottom:118.826667pt;}
.ycd{bottom:119.626667pt;}
.y12c{bottom:121.866667pt;}
.y112{bottom:122.186667pt;}
.y25{bottom:123.866667pt;}
.y191{bottom:124.106667pt;}
.y20b{bottom:124.666667pt;}
.y1d1{bottom:129.146667pt;}
.y54{bottom:130.186667pt;}
.yc2{bottom:132.826667pt;}
.yef{bottom:133.786667pt;}
.y80{bottom:134.506667pt;}
.ycc{bottom:135.306667pt;}
.y12b{bottom:137.466667pt;}
.y111{bottom:137.866667pt;}
.y24{bottom:139.546667pt;}
.y190{bottom:139.706667pt;}
.y20a{bottom:140.346667pt;}
.y1d0{bottom:144.746667pt;}
.y16e{bottom:145.866667pt;}
.ya6{bottom:146.186667pt;}
.yc1{bottom:148.426667pt;}
.yee{bottom:149.386667pt;}
.yaf{bottom:150.106667pt;}
.y22e{bottom:150.826667pt;}
.y12a{bottom:153.066667pt;}
.y53{bottom:153.866667pt;}
.y23{bottom:155.146667pt;}
.y18f{bottom:155.386667pt;}
.y143{bottom:155.866667pt;}
.y197{bottom:157.066667pt;}
.y7f{bottom:158.106667pt;}
.y1e9{bottom:161.466667pt;}
.ya5{bottom:161.866667pt;}
.y209{bottom:163.946667pt;}
.yc0{bottom:164.026667pt;}
.yae{bottom:165.786667pt;}
.y22d{bottom:166.506667pt;}
.ycb{bottom:166.906667pt;}
.y110{bottom:169.466667pt;}
.y18e{bottom:170.986667pt;}
.y142{bottom:171.466667pt;}
.y1cf{bottom:176.426667pt;}
.y1e8{bottom:177.066667pt;}
.ya4{bottom:177.466667pt;}
.y208{bottom:179.626667pt;}
.ybf{bottom:179.706667pt;}
.yed{bottom:180.986667pt;}
.yad{bottom:181.386667pt;}
.yca{bottom:182.586667pt;}
.y129{bottom:184.746667pt;}
.y10f{bottom:185.066667pt;}
.y52{bottom:185.706667pt;}
.y18d{bottom:186.586667pt;}
.y22{bottom:186.746667pt;}
.y141{bottom:187.146667pt;}
.y7e{bottom:189.786667pt;}
.y22c{bottom:190.106667pt;}
.y1ce{bottom:192.026667pt;}
.y1e7{bottom:192.746667pt;}
.ya3{bottom:193.066667pt;}
.y207{bottom:195.226667pt;}
.ybe{bottom:195.306667pt;}
.yec{bottom:196.666667pt;}
.yac{bottom:196.986667pt;}
.yc9{bottom:198.186667pt;}
.y128{bottom:200.346667pt;}
.y10e{bottom:200.746667pt;}
.y16d{bottom:201.066667pt;}
.y21{bottom:202.426667pt;}
.y140{bottom:202.746667pt;}
.y7d{bottom:205.386667pt;}
.y22b{bottom:205.786667pt;}
.y1cd{bottom:207.626667pt;}
.y18c{bottom:210.266667pt;}
.yeb{bottom:212.266667pt;}
.yc8{bottom:213.786667pt;}
.y127{bottom:216.026667pt;}
.y10d{bottom:216.346667pt;}
.y16c{bottom:216.746667pt;}
.y20{bottom:218.026667pt;}
.y206{bottom:218.826667pt;}
.ybd{bottom:218.986667pt;}
.y7c{bottom:220.986667pt;}
.y22a{bottom:221.386667pt;}
.y195{bottom:222.906667pt;}
.y1cc{bottom:223.306667pt;}
.y1e6{bottom:224.346667pt;}
.ya2{bottom:224.746667pt;}
.yea{bottom:227.946667pt;}
.y51{bottom:228.666667pt;}
.y23d{bottom:228.986667pt;}
.yc7{bottom:229.466667pt;}
.y126{bottom:231.626667pt;}
.y1f{bottom:233.706667pt;}
.y13f{bottom:234.426667pt;}
.y205{bottom:234.506667pt;}
.y7b{bottom:236.666667pt;}
.y1e5{bottom:239.946667pt;}
.ya1{bottom:240.346667pt;}
.y18b{bottom:241.866667pt;}
.y50{bottom:244.266667pt;}
.y23c{bottom:244.666667pt;}
.y229{bottom:244.986667pt;}
.y10c{bottom:247.946667pt;}
.y16b{bottom:248.346667pt;}
.y13e{bottom:250.026667pt;}
.ybc{bottom:250.826667pt;}
.yc6{bottom:253.066667pt;}
.y1cb{bottom:254.906667pt;}
.y1e4{bottom:255.626667pt;}
.ya0{bottom:255.946667pt;}
.y18a{bottom:257.546667pt;}
.y204{bottom:258.106667pt;}
.ye9{bottom:259.546667pt;}
.y4f{bottom:259.946667pt;}
.y228{bottom:260.666667pt;}
.y125{bottom:263.226667pt;}
.y10b{bottom:263.626667pt;}
.y16a{bottom:263.946667pt;}
.y1b6{bottom:264.506667pt;}
.y1e{bottom:265.306667pt;}
.y13d{bottom:265.626667pt;}
.y179{bottom:267.546667pt;}
.y7a{bottom:268.266667pt;}
.y1ca{bottom:270.586667pt;}
.y9f{bottom:271.626667pt;}
.y189{bottom:273.146667pt;}
.y203{bottom:273.786667pt;}
.ye8{bottom:275.146667pt;}
.yab{bottom:275.546667pt;}
.y227{bottom:276.266667pt;}
.y124{bottom:278.906667pt;}
.y10a{bottom:279.226667pt;}
.y169{bottom:279.626667pt;}
.y1b5{bottom:280.106667pt;}
.y1d{bottom:280.906667pt;}
.y13c{bottom:281.306667pt;}
.y178{bottom:283.146667pt;}
.y79{bottom:283.946667pt;}
.yc5{bottom:284.666667pt;}
.y1c9{bottom:286.186667pt;}
.y9e{bottom:287.226667pt;}
.y188{bottom:288.746667pt;}
.ye7{bottom:290.826667pt;}
.ybb{bottom:291.466667pt;}
.y4e{bottom:291.546667pt;}
.y123{bottom:294.506667pt;}
.y109{bottom:294.906667pt;}
.y168{bottom:295.226667pt;}
.y1b4{bottom:295.786667pt;}
.y1c{bottom:296.586667pt;}
.y13b{bottom:296.906667pt;}
.y202{bottom:297.386667pt;}
.y177{bottom:298.826667pt;}
.y78{bottom:299.546667pt;}
.y226{bottom:299.946667pt;}
.y1c8{bottom:301.786667pt;}
.y9d{bottom:302.906667pt;}
.y187{bottom:304.426667pt;}
.ye6{bottom:306.426667pt;}
.y4d{bottom:307.146667pt;}
.y23b{bottom:307.546667pt;}
.y122{bottom:310.106667pt;}
.y108{bottom:310.506667pt;}
.y1b{bottom:312.186667pt;}
.y201{bottom:312.986667pt;}
.yc4{bottom:313.306667pt;}
.y77{bottom:315.146667pt;}
.y225{bottom:315.546667pt;}
.yba{bottom:315.786667pt;}
.y9c{bottom:318.506667pt;}
.y186{bottom:320.026667pt;}
.ye5{bottom:322.106667pt;}
.y4c{bottom:322.826667pt;}
.y23a{bottom:323.146667pt;}
.y1c7{bottom:325.466667pt;}
.y121{bottom:325.786667pt;}
.y167{bottom:326.906667pt;}
.y1b3{bottom:327.386667pt;}
.y1a{bottom:327.866667pt;}
.y13a{bottom:328.586667pt;}
.y200{bottom:328.666667pt;}
.y176{bottom:330.426667pt;}
.y76{bottom:330.826667pt;}
.y224{bottom:331.146667pt;}
.y107{bottom:334.106667pt;}
.y185{bottom:335.706667pt;}
.y4b{bottom:338.426667pt;}
.y239{bottom:338.826667pt;}
.y120{bottom:341.386667pt;}
.y166{bottom:342.506667pt;}
.y1b2{bottom:343.066667pt;}
.y139{bottom:344.186667pt;}
.ye4{bottom:345.706667pt;}
.y175{bottom:346.106667pt;}
.y75{bottom:346.426667pt;}
.y1e3{bottom:349.786667pt;}
.y9b{bottom:350.106667pt;}
.y19{bottom:351.466667pt;}
.y1ff{bottom:352.266667pt;}
.y4a{bottom:354.106667pt;}
.y223{bottom:354.826667pt;}
.yb8{bottom:355.706667pt;}
.y1c6{bottom:357.066667pt;}
.y165{bottom:358.106667pt;}
.y1b1{bottom:358.666667pt;}
.y138{bottom:359.786667pt;}
.y174{bottom:361.706667pt;}
.y238{bottom:362.426667pt;}
.y11f{bottom:365.066667pt;}
.y9a{bottom:365.786667pt;}
.y184{bottom:367.306667pt;}
.y1fe{bottom:367.946667pt;}
.yaa{bottom:369.706667pt;}
.y222{bottom:370.426667pt;}
.y1c5{bottom:372.666667pt;}
.y1e2{bottom:373.386667pt;}
.y164{bottom:373.786667pt;}
.y1b0{bottom:374.266667pt;}
.y137{bottom:375.466667pt;}
.ye3{bottom:377.306667pt;}
.y74{bottom:378.106667pt;}
.y99{bottom:381.386667pt;}
.y183{bottom:382.906667pt;}
.y18{bottom:383.386667pt;}
.y1fd{bottom:383.546667pt;}
.y194{bottom:385.306667pt;}
.y49{bottom:385.706667pt;}
.y221{bottom:386.106667pt;}
.y163{bottom:389.386667pt;}
.y136{bottom:391.066667pt;}
.ye2{bottom:392.986667pt;}
.y73{bottom:393.706667pt;}
.y11d{bottom:394.346667pt;}
.yb7{bottom:395.626667pt;}
.y98{bottom:397.066667pt;}
.y182{bottom:398.586667pt;}
.y48{bottom:401.306667pt;}
.y1c4{bottom:404.346667pt;}
.y1e1{bottom:405.066667pt;}
.y1af{bottom:405.946667pt;}
.y1fc{bottom:407.146667pt;}
.ye1{bottom:408.586667pt;}
.y173{bottom:408.986667pt;}
.y72{bottom:409.306667pt;}
.y220{bottom:409.706667pt;}
.y97{bottom:412.666667pt;}
.y181{bottom:414.186667pt;}
.y47{bottom:416.986667pt;}
.y237{bottom:417.306667pt;}
.yb5{bottom:419.973333pt;}
.y1e0{bottom:420.693333pt;}
.y162{bottom:421.093333pt;}
.y1ae{bottom:421.573333pt;}
.y135{bottom:422.693333pt;}
.y1fb{bottom:422.853333pt;}
.y172{bottom:424.613333pt;}
.y71{bottom:425.013333pt;}
.y21f{bottom:425.333333pt;}
.y17{bottom:426.613333pt;}
.y96{bottom:428.293333pt;}
.y180{bottom:429.813333pt;}
.y46{bottom:432.613333pt;}
.y236{bottom:433.013333pt;}
.y1c3{bottom:435.653333pt;}
.y1df{bottom:436.293333pt;}
.y161{bottom:436.693333pt;}
.y1ad{bottom:437.253333pt;}
.y134{bottom:438.373333pt;}
.ye0{bottom:440.293333pt;}
.y21e{bottom:441.013333pt;}
.yb3{bottom:444.213333pt;}
.y106{bottom:444.293333pt;}
.y17f{bottom:445.493333pt;}
.y1fa{bottom:446.453333pt;}
.y45{bottom:448.293333pt;}
.y235{bottom:448.613333pt;}
.y11b{bottom:449.973333pt;}
.y1c2{bottom:451.253333pt;}
.y95{bottom:451.973333pt;}
.y160{bottom:452.293333pt;}
.y1ac{bottom:452.853333pt;}
.y133{bottom:453.973333pt;}
.ydf{bottom:455.893333pt;}
.y70{bottom:456.613333pt;}
.y16{bottom:459.493333pt;}
.y105{bottom:459.973333pt;}
.y17e{bottom:461.093333pt;}
.y1f9{bottom:462.133333pt;}
.y44{bottom:463.893333pt;}
.y234{bottom:464.293333pt;}
.y1de{bottom:467.573333pt;}
.y15f{bottom:467.973333pt;}
.y1ab{bottom:468.453333pt;}
.y132{bottom:469.653333pt;}
.yde{bottom:471.493333pt;}
.y171{bottom:471.893333pt;}
.y6f{bottom:472.293333pt;}
.y15{bottom:475.173333pt;}
.y104{bottom:475.573333pt;}
.y1f8{bottom:477.733333pt;}
.y43{bottom:479.493333pt;}
.y193{bottom:479.893333pt;}
.y21d{bottom:480.293333pt;}
.y1c1{bottom:482.853333pt;}
.y94{bottom:483.893333pt;}
.y1aa{bottom:484.133333pt;}
.y17d{bottom:484.773333pt;}
.y131{bottom:485.253333pt;}
.ya9{bottom:487.493333pt;}
.y6e{bottom:487.893333pt;}
.y14{bottom:490.773333pt;}
.y103{bottom:491.253333pt;}
.y192{bottom:495.493333pt;}
.y21c{bottom:495.893333pt;}
.y1c0{bottom:498.533333pt;}
.y1dd{bottom:499.253333pt;}
.y15e{bottom:499.573333pt;}
.y1f7{bottom:501.333333pt;}
.ydd{bottom:503.173333pt;}
.y6d{bottom:503.493333pt;}
.y13{bottom:506.373333pt;}
.y1a9{bottom:507.733333pt;}
.y130{bottom:508.853333pt;}
.y42{bottom:511.173333pt;}
.y1bf{bottom:514.133333pt;}
.y1dc{bottom:514.853333pt;}
.y15d{bottom:515.253333pt;}
.y17c{bottom:516.693333pt;}
.y1f6{bottom:517.013333pt;}
.ydc{bottom:518.773333pt;}
.y6c{bottom:519.173333pt;}
.y21b{bottom:519.493333pt;}
.y11a{bottom:521.093333pt;}
.y12{bottom:522.053333pt;}
.y102{bottom:522.853333pt;}
.y41{bottom:526.773333pt;}
.y233{bottom:527.173333pt;}
.y1be{bottom:529.813333pt;}
.y1db{bottom:530.453333pt;}
.y15c{bottom:530.853333pt;}
.ydb{bottom:534.453333pt;}
.y6b{bottom:534.773333pt;}
.y21a{bottom:535.173333pt;}
.y11{bottom:537.653333pt;}
.y101{bottom:538.453333pt;}
.y1a8{bottom:539.653333pt;}
.y12f{bottom:540.533333pt;}
.y1f5{bottom:540.613333pt;}
.y40{bottom:542.453333pt;}
.y232{bottom:542.773333pt;}
.y1da{bottom:546.133333pt;}
.y15b{bottom:546.453333pt;}
.yda{bottom:550.053333pt;}
.ya8{bottom:550.453333pt;}
.y219{bottom:550.773333pt;}
.y10{bottom:553.333333pt;}
.y100{bottom:554.133333pt;}
.y1f4{bottom:556.293333pt;}
.y3f{bottom:558.053333pt;}
.y17b{bottom:559.573333pt;}
.y1bd{bottom:561.413333pt;}
.y15a{bottom:562.133333pt;}
.yd9{bottom:565.653333pt;}
.yb2{bottom:566.053333pt;}
.y6a{bottom:566.453333pt;}
.yf{bottom:568.933333pt;}
.y12e{bottom:569.173333pt;}
.yff{bottom:569.733333pt;}
.y93{bottom:573.653333pt;}
.y218{bottom:574.453333pt;}
.y1bc{bottom:577.013333pt;}
.y1d9{bottom:577.733333pt;}
.y1f3{bottom:580.133333pt;}
.y3e{bottom:581.653333pt;}
.y69{bottom:582.053333pt;}
.y1a7{bottom:582.613333pt;}
.ye{bottom:584.533333pt;}
.y159{bottom:585.733333pt;}
.y17a{bottom:588.213333pt;}
.y217{bottom:590.053333pt;}
.y118{bottom:592.293333pt;}
.y1bb{bottom:592.693333pt;}
.y1d8{bottom:593.413333pt;}
.y1a6{bottom:597.253333pt;}
.yd8{bottom:597.333333pt;}
.y68{bottom:597.653333pt;}
.yd{bottom:600.213333pt;}
.yfe{bottom:601.413333pt;}
.y92{bottom:605.333333pt;}
.y216{bottom:605.653333pt;}
.y1ba{bottom:608.293333pt;}
.y1d7{bottom:609.013333pt;}
.yd7{bottom:612.933333pt;}
.y3d{bottom:613.333333pt;}
.yc{bottom:615.813333pt;}
.yfd{bottom:617.013333pt;}
.y158{bottom:617.413333pt;}
.y91{bottom:620.933333pt;}
.y231{bottom:621.333333pt;}
.y1f2{bottom:623.093333pt;}
.y1d6{bottom:624.613333pt;}
.yd6{bottom:628.613333pt;}
.y3c{bottom:628.933333pt;}
.y215{bottom:629.333333pt;}
.yb{bottom:631.493333pt;}
.y1b9{bottom:631.973333pt;}
.yfc{bottom:632.613333pt;}
.y157{bottom:633.013333pt;}
.y90{bottom:636.613333pt;}
.y1d5{bottom:640.293333pt;}
.yd5{bottom:644.213333pt;}
.y3b{bottom:644.613333pt;}
.y214{bottom:644.933333pt;}
.y1f1{bottom:647.013333pt;}
.yfb{bottom:648.293333pt;}
.y156{bottom:648.613333pt;}
.y8f{bottom:652.213333pt;}
.y67{bottom:652.613333pt;}
.ya{bottom:655.413333pt;}
.yd4{bottom:659.813333pt;}
.y3a{bottom:660.213333pt;}
.y230{bottom:660.613333pt;}
.y1a5{bottom:663.093333pt;}
.y115{bottom:663.493333pt;}
.y1b8{bottom:663.573333pt;}
.yfa{bottom:663.893333pt;}
.y155{bottom:664.293333pt;}
.y8e{bottom:667.813333pt;}
.y213{bottom:668.613333pt;}
.y170{bottom:675.813333pt;}
.ya7{bottom:676.213333pt;}
.y154{bottom:679.893333pt;}
.y1f0{bottom:680.213333pt;}
.y66{bottom:684.213333pt;}
.yd3{bottom:691.493333pt;}
.y39{bottom:691.813333pt;}
.y1b7{bottom:692.213333pt;}
.yf9{bottom:695.573333pt;}
.y1d4{bottom:695.813333pt;}
.y9{bottom:698.293333pt;}
.y8d{bottom:699.493333pt;}
.y65{bottom:699.813333pt;}
.yd2{bottom:707.093333pt;}
.y38{bottom:707.493333pt;}
.y212{bottom:707.813333pt;}
.yf8{bottom:711.173333pt;}
.y153{bottom:711.573333pt;}
.y8c{bottom:715.093333pt;}
.y64{bottom:715.493333pt;}
.yd1{bottom:722.693333pt;}
.y37{bottom:723.093333pt;}
.y211{bottom:723.493333pt;}
.yf7{bottom:726.773333pt;}
.y152{bottom:727.173333pt;}
.y1a4{bottom:729.013333pt;}
.y8{bottom:729.893333pt;}
.y8b{bottom:730.693333pt;}
.y63{bottom:731.093333pt;}
.y113{bottom:734.693333pt;}
.yd0{bottom:738.373333pt;}
.y36{bottom:738.693333pt;}
.y210{bottom:739.093333pt;}
.yf6{bottom:742.453333pt;}
.y151{bottom:742.773333pt;}
.y16f{bottom:746.693333pt;}
.yb1{bottom:754.373333pt;}
.y22f{bottom:754.693333pt;}
.yf5{bottom:758.053333pt;}
.y150{bottom:758.453333pt;}
.ycf{bottom:761.973333pt;}
.y8a{bottom:762.373333pt;}
.y62{bottom:762.693333pt;}
.y7{bottom:765.733333pt;}
.y1d3{bottom:769.973333pt;}
.y35{bottom:770.373333pt;}
.yf4{bottom:773.733333pt;}
.y89{bottom:777.973333pt;}
.y61{bottom:778.373333pt;}
.y34{bottom:785.973333pt;}
.y14f{bottom:790.053333pt;}
.y88{bottom:793.653333pt;}
.y60{bottom:793.973333pt;}
.y1a3{bottom:794.933333pt;}
.yf3{bottom:797.333333pt;}
.y6{bottom:800.400000pt;}
.y33{bottom:801.653333pt;}
.y20f{bottom:801.973333pt;}
.y14e{bottom:805.733333pt;}
.y87{bottom:809.253333pt;}
.y5f{bottom:809.653333pt;}
.y32{bottom:817.253333pt;}
.y20e{bottom:817.653333pt;}
.y14d{bottom:821.333333pt;}
.y5e{bottom:825.253333pt;}
.yf2{bottom:829.253333pt;}
.y31{bottom:832.853333pt;}
.y20d{bottom:833.253333pt;}
.y5{bottom:833.813333pt;}
.y14c{bottom:836.933333pt;}
.y86{bottom:840.853333pt;}
.yb0{bottom:848.533333pt;}
.y1ef{bottom:848.853333pt;}
.y14b{bottom:852.613333pt;}
.y85{bottom:856.533333pt;}
.y5d{bottom:856.853333pt;}
.y1a0{bottom:860.773333pt;}
.y30{bottom:864.533333pt;}
.y84{bottom:872.133333pt;}
.y5c{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y2f{bottom:880.133333pt;}
.y14a{bottom:884.213333pt;}
.y83{bottom:887.813333pt;}
.y5b{bottom:888.133333pt;}
.y2e{bottom:895.813333pt;}
.y3{bottom:897.840000pt;}
.y149{bottom:899.840000pt;}
.yf1{bottom:903.440000pt;}
.y5a{bottom:903.840000pt;}
.y2d{bottom:911.440000pt;}
.y148{bottom:915.520000pt;}
.y59{bottom:919.440000pt;}
.y19e{bottom:926.720000pt;}
.y2c{bottom:927.040000pt;}
.y1ee{bottom:927.440000pt;}
.y147{bottom:931.120000pt;}
.y58{bottom:935.040000pt;}
.y1ed{bottom:943.040000pt;}
.y146{bottom:946.800000pt;}
.y2b{bottom:950.720000pt;}
.yc3{bottom:951.040000pt;}
.y1ec{bottom:958.720000pt;}
.y82{bottom:966.320000pt;}
.y57{bottom:966.720000pt;}
.y145{bottom:970.400000pt;}
.y1eb{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y1ea{bottom:990.000000pt;}
.y19d{bottom:992.640000pt;}
.y29{bottom:998.000000pt;}
.y144{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.ha{height:23.600000pt;}
.hb{height:23.626667pt;}
.h9{height:23.680000pt;}
.h2{height:26.686562pt;}
.h13{height:31.600000pt;}
.h11{height:31.680000pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.hd{height:39.280000pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h10{height:54.906667pt;}
.h15{height:54.927899pt;}
.h7{height:55.631875pt;}
.h8{height:60.961875pt;}
.h12{height:62.880000pt;}
.h14{height:62.906667pt;}
.h4{height:63.128437pt;}
.hf{height:70.480000pt;}
.he{height:70.560000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:105.706667pt;}
.w6{width:110.986667pt;}
.wb{width:152.560000pt;}
.w8{width:163.386667pt;}
.w3{width:173.546667pt;}
.wc{width:188.346667pt;}
.w9{width:193.360000pt;}
.w7{width:202.000000pt;}
.wd{width:221.680000pt;}
.w4{width:238.186667pt;}
.w5{width:258.720000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:6.880000pt;}
.x1{left:60.480000pt;}
.x10{left:61.440000pt;}
.x16{left:98.879988pt;}
.xf{left:129.519988pt;}
.x8{left:145.146655pt;}
.x15{left:163.066655pt;}
.x11{left:168.106667pt;}
.x9{left:172.746667pt;}
.xd{left:179.306655pt;}
.x2{left:180.266655pt;}
.x5{left:235.306667pt;}
.x12{left:321.546667pt;}
.xa{left:375.466667pt;}
.x6{left:474.133333pt;}
.x13{left:510.853333pt;}
.x14{left:538.053322pt;}
.xb{left:539.493333pt;}
.xe{left:543.013322pt;}
.x7{left:617.013322pt;}
.xc{left:648.053322pt;}
.x3{left:704.053322pt;}
}




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