
    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_79df560c6e49e0d227ff4ef9.woff2')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_ec9888895c8dd6f6f297d281.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.928711;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_44646503b4e873e2c7ed931e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_19be1b1ccef8ffaff535516b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.960449;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_63a37977befad443d1f87bd8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_df81fa21df4bc33dc430587c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_159ea6c10fffcd783f0583e7.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_133390134896107eaef678a9.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4dc3720c2a4f1e042b096724.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_27c0751977e6c8eebeb39182.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.196289;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.216000px;}
.ls3{letter-spacing:-0.181200px;}
.ls15{letter-spacing:-0.175800px;}
.lse{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.072000px;}
.ls14{letter-spacing:-0.058320px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:-0.018000px;}
.ls1{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.lsb{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.334080px;}
.ls4{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.460080px;}
.lsc{letter-spacing:0.720000px;}
.ls10{letter-spacing:0.792000px;}
.ls11{letter-spacing:846.300000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(68,84,106),0 0.015em rgb(68,84,106),0.015em 0 rgb(68,84,106),0 -0.015em  rgb(68,84,106);}
.sc1{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);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(68,84,106);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-49.870080px;}
.ws2{word-spacing:-21.641760px;}
.ws10{word-spacing:-19.640280px;}
.wsd{word-spacing:-18.000000px;}
.ws15{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.wse{word-spacing:-17.784000px;}
.ws6{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.447440px;}
.ws3{word-spacing:-13.229520px;}
.ws13{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.186000px;}
.ws11{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.700000px;}
.ws14{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._16{margin-left:-5.184000px;}
._f{margin-left:-3.227040px;}
._15{margin-left:-2.167200px;}
._8{margin-left:-1.087920px;}
._0{width:1.171200px;}
._5{width:2.474160px;}
._e{width:4.123440px;}
._10{width:5.320080px;}
._2{width:7.195200px;}
._3{width:8.210640px;}
._4{width:9.419040px;}
._b{width:11.079600px;}
._c{width:12.489840px;}
._13{width:13.680000px;}
._14{width:14.832000px;}
._a{width:15.836400px;}
._9{width:17.031600px;}
._11{width:18.048960px;}
._6{width:19.744800px;}
._17{width:21.511200px;}
._1f{width:22.752000px;}
._18{width:24.336000px;}
._19{width:25.776000px;}
._1c{width:27.273840px;}
._1d{width:28.557840px;}
._1{width:29.700720px;}
._7{width:31.099200px;}
._1e{width:32.323200px;}
._1a{width:33.624000px;}
._1b{width:35.196000px;}
._24{width:37.800000px;}
._25{width:39.096000px;}
._12{width:40.896000px;}
._d{width:43.744320px;}
._20{width:48.024000px;}
._21{width:49.168800px;}
._23{width:59.839920px;}
._22{width:60.912000px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(0,32,96);}
.fc3{color:transparent;}
.fc2{color:rgb(68,84,106);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsa{font-size:41.760000px;}
.fs5{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.fs3{font-size:149.760000px;}
.y1b8{bottom:-105.120000px;}
.y32{bottom:-83.700000px;}
.y22{bottom:-72.900000px;}
.y1b7{bottom:-68.760000px;}
.y31{bottom:-56.520000px;}
.y21{bottom:-36.540000px;}
.y30{bottom:-33.660000px;}
.y1b6{bottom:-32.940000px;}
.y1b5{bottom:-16.380000px;}
.y2f{bottom:-10.980000px;}
.y20{bottom:-0.180000px;}
.y0{bottom:0.000000px;}
.y24{bottom:0.975000px;}
.y118{bottom:2.340000px;}
.ya5{bottom:2.520000px;}
.y91{bottom:2.880000px;}
.y87{bottom:3.060000px;}
.y9{bottom:3.780000px;}
.y186{bottom:6.479850px;}
.yb{bottom:7.560000px;}
.y116{bottom:8.280000px;}
.y11b{bottom:8.460000px;}
.ya3{bottom:9.360000px;}
.yd8{bottom:9.390000px;}
.y8{bottom:9.540000px;}
.y93{bottom:10.620000px;}
.y2e{bottom:11.880000px;}
.y117{bottom:14.400000px;}
.y122{bottom:14.445000px;}
.y11a{bottom:14.580000px;}
.ya4{bottom:16.200000px;}
.yd7{bottom:16.230000px;}
.yac{bottom:16.245000px;}
.ya7{bottom:16.380000px;}
.y1b4{bottom:17.820000px;}
.y1f{bottom:18.045000px;}
.y7{bottom:18.180000px;}
.y90{bottom:18.360000px;}
.y8c{bottom:18.540000px;}
.y29{bottom:22.755000px;}
.y92{bottom:26.100000px;}
.y8f{bottom:33.840000px;}
.y8d{bottom:34.050000px;}
.y2d{bottom:34.785000px;}
.y1e{bottom:36.405000px;}
.yf{bottom:36.900000px;}
.y1b3{bottom:41.436000px;}
.ye{bottom:43.560000px;}
.y8a{bottom:50.220000px;}
.y6{bottom:50.580000px;}
.y27{bottom:53.100000px;}
.y1d{bottom:54.765000px;}
.y2c{bottom:57.465000px;}
.y1b2{bottom:65.190000px;}
.y89{bottom:65.700000px;}
.y170{bottom:69.300000px;}
.y1c{bottom:73.125000px;}
.y6c{bottom:73.800000px;}
.y6b{bottom:78.300000px;}
.y1b1{bottom:79.770000px;}
.y2b{bottom:80.325000px;}
.y148{bottom:81.180000px;}
.y14d{bottom:86.040000px;}
.yf2{bottom:86.220000px;}
.y13e{bottom:87.480000px;}
.y85{bottom:91.080000px;}
.ya1{bottom:91.980000px;}
.y6a{bottom:98.280000px;}
.yc7{bottom:99.180000px;}
.y69{bottom:102.780000px;}
.y1b0{bottom:103.350000px;}
.y185{bottom:103.500000px;}
.y14c{bottom:106.740000px;}
.y19a{bottom:107.280000px;}
.y16f{bottom:108.000000px;}
.y1b{bottom:109.305000px;}
.y147{bottom:112.320000px;}
.yf1{bottom:117.180000px;}
.y13d{bottom:118.440000px;}
.y84{bottom:122.040000px;}
.y68{bottom:122.940000px;}
.y1af{bottom:127.110000px;}
.y67{bottom:127.440000px;}
.y1a{bottom:127.665000px;}
.y16e{bottom:128.700000px;}
.yc6{bottom:130.320000px;}
.y184{bottom:142.236000px;}
.y146{bottom:143.316000px;}
.y19{bottom:146.025000px;}
.y66{bottom:147.456000px;}
.yf0{bottom:148.356000px;}
.y16d{bottom:149.436000px;}
.y13c{bottom:149.616000px;}
.y1ae{bottom:150.690000px;}
.y65{bottom:151.950000px;}
.y83{bottom:153.210000px;}
.ya0{bottom:154.110000px;}
.yd{bottom:156.090000px;}
.yc5{bottom:161.310000px;}
.y18{bottom:164.205000px;}
.y14b{bottom:166.170000px;}
.y64{bottom:171.750000px;}
.y145{bottom:174.450000px;}
.y63{bottom:176.250000px;}
.yef{bottom:179.310000px;}
.y13b{bottom:180.570000px;}
.y183{bottom:180.930000px;}
.y17{bottom:182.565000px;}
.y82{bottom:184.170000px;}
.y9f{bottom:185.070000px;}
.y14a{bottom:186.870000px;}
.y16c{bottom:188.130000px;}
.y114{bottom:188.850000px;}
.y1ad{bottom:189.030000px;}
.yc4{bottom:192.450000px;}
.y62{bottom:197.490000px;}
.y144{bottom:205.410000px;}
.y16b{bottom:208.830000px;}
.yee{bottom:210.450000px;}
.y13a{bottom:211.710000px;}
.y1ac{bottom:212.610000px;}
.y81{bottom:215.310000px;}
.y9e{bottom:216.210000px;}
.y16{bottom:218.925000px;}
.y182{bottom:219.630000px;}
.y113{bottom:219.810000px;}
.yc3{bottom:223.410000px;}
.y149{bottom:225.570000px;}
.y61{bottom:235.470000px;}
.y1ab{bottom:236.370000px;}
.y143{bottom:236.550000px;}
.y15{bottom:237.285000px;}
.yed{bottom:241.410000px;}
.y139{bottom:242.670000px;}
.y80{bottom:246.270000px;}
.y9d{bottom:247.170000px;}
.y16a{bottom:247.530000px;}
.y112{bottom:250.950000px;}
.yc2{bottom:254.550000px;}
.y14{bottom:255.465000px;}
.y181{bottom:258.330000px;}
.y60{bottom:261.750000px;}
.y142{bottom:267.510000px;}
.y169{bottom:268.230000px;}
.yec{bottom:272.550000px;}
.y138{bottom:273.630000px;}
.y13{bottom:273.855000px;}
.y1aa{bottom:274.890000px;}
.y7f{bottom:277.230000px;}
.y9c{bottom:278.130000px;}
.y5f{bottom:279.030000px;}
.y111{bottom:281.910000px;}
.yc1{bottom:285.510000px;}
.y141{bottom:286.770000px;}
.y168{bottom:288.930000px;}
.yeb{bottom:291.810000px;}
.y5e{bottom:296.310000px;}
.y180{bottom:297.030000px;}
.y140{bottom:298.110000px;}
.yea{bottom:303.870000px;}
.y137{bottom:304.770000px;}
.y7e{bottom:308.370000px;}
.y1a9{bottom:309.135000px;}
.y9b{bottom:309.270000px;}
.y110{bottom:313.050000px;}
.y5d{bottom:313.590000px;}
.yc0{bottom:316.650000px;}
.ye9{bottom:318.270000px;}
.y1a8{bottom:323.715000px;}
.y167{bottom:327.630000px;}
.y5c{bottom:330.870000px;}
.ye8{bottom:332.850000px;}
.y136{bottom:335.730000px;}
.y7d{bottom:339.330000px;}
.y9a{bottom:340.230000px;}
.y10f{bottom:344.010000px;}
.ye7{bottom:347.430000px;}
.y1a7{bottom:347.475000px;}
.ybf{bottom:347.610000px;}
.y5b{bottom:348.150000px;}
.y166{bottom:348.330000px;}
.y2a{bottom:360.210000px;}
.ye6{bottom:362.010000px;}
.y5a{bottom:365.250000px;}
.y135{bottom:366.870000px;}
.y7c{bottom:370.470000px;}
.y1a6{bottom:371.055000px;}
.y99{bottom:371.370000px;}
.y17f{bottom:374.430000px;}
.y10e{bottom:375.150000px;}
.ye5{bottom:376.590000px;}
.ybe{bottom:378.750000px;}
.y59{bottom:382.530000px;}
.y165{bottom:387.030000px;}
.ye4{bottom:391.215000px;}
.y1a5{bottom:394.815000px;}
.y134{bottom:397.875000px;}
.y58{bottom:399.855000px;}
.y7b{bottom:401.475000px;}
.y98{bottom:404.715000px;}
.ye3{bottom:405.615000px;}
.y10d{bottom:406.155000px;}
.y199{bottom:406.875000px;}
.y164{bottom:407.775000px;}
.ybd{bottom:409.755000px;}
.y17e{bottom:413.175000px;}
.y57{bottom:417.135000px;}
.y1a4{bottom:418.395000px;}
.ye2{bottom:420.195000px;}
.y97{bottom:426.855000px;}
.y133{bottom:429.015000px;}
.y7a{bottom:432.615000px;}
.y1a3{bottom:432.975000px;}
.y56{bottom:434.415000px;}
.ye1{bottom:434.775000px;}
.y10c{bottom:437.295000px;}
.y198{bottom:437.835000px;}
.y96{bottom:438.915000px;}
.ybc{bottom:440.895000px;}
.y163{bottom:446.475000px;}
.ye0{bottom:449.355000px;}
.y55{bottom:451.515000px;}
.y17d{bottom:451.875000px;}
.y1a2{bottom:456.735000px;}
.y197{bottom:457.815000px;}
.y132{bottom:459.975000px;}
.y79{bottom:463.575000px;}
.ydf{bottom:463.935000px;}
.y26{bottom:465.915000px;}
.y28{bottom:466.020000px;}
.y162{bottom:467.175000px;}
.y10b{bottom:468.255000px;}
.y54{bottom:468.795000px;}
.y95{bottom:470.775000px;}
.ybb{bottom:471.855000px;}
.yde{bottom:478.515000px;}
.y1a1{bottom:480.675000px;}
.y53{bottom:486.075000px;}
.yc{bottom:486.615000px;}
.y161{bottom:487.875000px;}
.y17c{bottom:490.575000px;}
.y131{bottom:491.115000px;}
.y196{bottom:493.815000px;}
.y78{bottom:494.715000px;}
.y10a{bottom:499.395000px;}
.y94{bottom:502.455000px;}
.yba{bottom:502.995000px;}
.ydd{bottom:506.775000px;}
.y52{bottom:512.355000px;}
.y1a0{bottom:514.875000px;}
.ydc{bottom:521.355000px;}
.y130{bottom:522.075000px;}
.y77{bottom:525.675000px;}
.y160{bottom:526.575000px;}
.y17b{bottom:529.275000px;}
.y109{bottom:530.355000px;}
.y51{bottom:531.795000px;}
.y195{bottom:533.775000px;}
.yb9{bottom:533.955000px;}
.y88{bottom:534.315000px;}
.y19f{bottom:539.205000px;}
.y15f{bottom:547.275000px;}
.ydb{bottom:549.615000px;}
.y25{bottom:552.420000px;}
.y12f{bottom:553.215000px;}
.y76{bottom:556.815000px;}
.y50{bottom:560.235000px;}
.y108{bottom:561.495000px;}
.y194{bottom:564.915000px;}
.yb8{bottom:565.095000px;}
.y8e{bottom:566.175000px;}
.y15e{bottom:567.975000px;}
.y19e{bottom:575.025000px;}
.yda{bottom:578.055000px;}
.y12e{bottom:584.175000px;}
.y4f{bottom:586.515000px;}
.y75{bottom:587.775000px;}
.y17a{bottom:588.675000px;}
.y10{bottom:589.215000px;}
.y107{bottom:592.455000px;}
.y193{bottom:595.875000px;}
.yb7{bottom:596.055000px;}
.y4e{bottom:603.795000px;}
.y23{bottom:605.340000px;}
.yd9{bottom:606.315000px;}
.y15d{bottom:606.675000px;}
.y179{bottom:609.375000px;}
.y19d{bottom:609.945000px;}
.y8b{bottom:613.335000px;}
.y12d{bottom:615.315000px;}
.ya{bottom:616.395000px;}
.y74{bottom:618.915000px;}
.y187{bottom:619.635150px;}
.y4d{bottom:621.075000px;}
.y106{bottom:623.595000px;}
.y192{bottom:627.015000px;}
.yb6{bottom:627.195000px;}
.y15c{bottom:627.375000px;}
.yd6{bottom:634.755000px;}
.y4c{bottom:638.355000px;}
.y33{bottom:644.685000px;}
.y12c{bottom:646.305000px;}
.y178{bottom:648.105000px;}
.y73{bottom:649.905000px;}
.y105{bottom:652.605000px;}
.y4b{bottom:655.665000px;}
.y191{bottom:658.005000px;}
.yb5{bottom:658.185000px;}
.y86{bottom:660.705000px;}
.yd5{bottom:663.045000px;}
.y15b{bottom:666.105000px;}
.y177{bottom:668.805000px;}
.y104{bottom:669.705000px;}
.y4a{bottom:672.945000px;}
.y12b{bottom:677.445000px;}
.y72{bottom:681.045000px;}
.y19c{bottom:682.125000px;}
.y15a{bottom:686.805000px;}
.y103{bottom:686.985000px;}
.y190{bottom:689.145000px;}
.yb4{bottom:689.325000px;}
.y49{bottom:690.045000px;}
.yd4{bottom:691.485000px;}
.yd3{bottom:706.065000px;}
.y48{bottom:707.325000px;}
.y159{bottom:707.505000px;}
.y12a{bottom:708.405000px;}
.y71{bottom:712.005000px;}
.y102{bottom:713.265000px;}
.y19b{bottom:718.305000px;}
.y18f{bottom:720.105000px;}
.yb3{bottom:720.285000px;}
.yd2{bottom:720.465000px;}
.y47{bottom:724.605000px;}
.y176{bottom:728.205000px;}
.y101{bottom:730.545000px;}
.yd1{bottom:735.045000px;}
.y129{bottom:739.545000px;}
.y46{bottom:741.885000px;}
.y70{bottom:743.145000px;}
.y158{bottom:746.205000px;}
.yd0{bottom:749.625000px;}
.y18e{bottom:751.245000px;}
.yb2{bottom:751.425000px;}
.y100{bottom:756.825000px;}
.y128{bottom:758.625000px;}
.y45{bottom:759.165000px;}
.ycf{bottom:764.205000px;}
.y157{bottom:766.905000px;}
.y127{bottom:769.065000px;}
.yb1{bottom:770.685000px;}
.y6f{bottom:774.105000px;}
.y44{bottom:776.445000px;}
.yce{bottom:778.785000px;}
.y126{bottom:781.845000px;}
.y18d{bottom:782.205000px;}
.yb0{bottom:782.565000px;}
.y156{bottom:787.605000px;}
.yff{bottom:791.205000px;}
.ycd{bottom:793.365000px;}
.y43{bottom:793.545000px;}
.yaf{bottom:797.145000px;}
.y6e{bottom:805.245000px;}
.y125{bottom:806.865000px;}
.ycc{bottom:807.765000px;}
.yfe{bottom:808.485000px;}
.y42{bottom:810.825000px;}
.y18c{bottom:813.345000px;}
.ycb{bottom:822.345000px;}
.yae{bottom:825.585000px;}
.yfd{bottom:825.765000px;}
.y155{bottom:826.305000px;}
.y124{bottom:831.705000px;}
.y6d{bottom:836.205000px;}
.y41{bottom:836.565000px;}
.yca{bottom:836.925000px;}
.y18b{bottom:844.305000px;}
.y13f{bottom:846.645000px;}
.y175{bottom:847.005000px;}
.yc9{bottom:851.505000px;}
.yfc{bottom:852.045000px;}
.yad{bottom:853.845000px;}
.y123{bottom:856.545000px;}
.y154{bottom:865.005000px;}
.y40{bottom:867.345000px;}
.yfb{bottom:869.325000px;}
.y18a{bottom:875.445000px;}
.yc8{bottom:879.765000px;}
.y121{bottom:881.565000px;}
.yab{bottom:882.285000px;}
.y153{bottom:885.705000px;}
.yfa{bottom:886.605000px;}
.y12{bottom:888.405000px;}
.y3e{bottom:898.350000px;}
.y3f{bottom:905.190000px;}
.y120{bottom:906.450000px;}
.yaa{bottom:910.590000px;}
.y1b9{bottom:912.210000px;}
.yf9{bottom:912.750000px;}
.y152{bottom:924.450000px;}
.y174{bottom:927.150000px;}
.y3c{bottom:929.490000px;}
.yf8{bottom:930.030000px;}
.y11f{bottom:931.290000px;}
.y3d{bottom:936.330000px;}
.y189{bottom:937.590000px;}
.ya9{bottom:939.030000px;}
.y151{bottom:945.150000px;}
.yf7{bottom:947.310000px;}
.y11e{bottom:956.130000px;}
.y3a{bottom:960.450000px;}
.yf6{bottom:964.590000px;}
.y150{bottom:965.850000px;}
.y3b{bottom:967.290000px;}
.y188{bottom:968.550000px;}
.y11d{bottom:981.150000px;}
.y173{bottom:986.550000px;}
.yf5{bottom:990.870000px;}
.y38{bottom:991.590000px;}
.ya8{bottom:995.730000px;}
.y39{bottom:998.430000px;}
.y14f{bottom:1004.550000px;}
.y11c{bottom:1005.990000px;}
.y172{bottom:1007.250000px;}
.yf4{bottom:1007.970000px;}
.y36{bottom:1022.550000px;}
.ya6{bottom:1023.990000px;}
.yf3{bottom:1025.250000px;}
.y37{bottom:1029.390000px;}
.y119{bottom:1030.830000px;}
.y171{bottom:1045.950000px;}
.ya2{bottom:1052.430000px;}
.y35{bottom:1053.690000px;}
.y115{bottom:1055.850000px;}
.y14e{bottom:1063.950000px;}
.y34{bottom:1084.650000px;}
.y11{bottom:1087.350000px;}
.y5{bottom:1105.350000px;}
.y4{bottom:1123.710000px;}
.y3{bottom:1138.110000px;}
.y2{bottom:1230.300000px;}
.y1{bottom:1248.480000px;}
.h32{height:12.060000px;}
.h2c{height:13.680000px;}
.h2d{height:13.716000px;}
.h2a{height:13.860000px;}
.h2b{height:13.896000px;}
.h1d{height:15.660000px;}
.h2e{height:24.120000px;}
.h5{height:24.156000px;}
.h31{height:24.300000px;}
.h25{height:27.540000px;}
.h29{height:27.576000px;}
.h28{height:27.720000px;}
.h3{height:28.440000px;}
.hc{height:28.980000px;}
.h22{height:30.960000px;}
.h23{height:31.140000px;}
.h1a{height:32.273438px;}
.h12{height:35.261367px;}
.h17{height:36.698203px;}
.h30{height:37.090547px;}
.h2f{height:37.437188px;}
.h26{height:42.845977px;}
.h27{height:43.246406px;}
.h19{height:45.461953px;}
.h21{height:46.440000px;}
.h20{height:46.656000px;}
.h1e{height:47.961914px;}
.h37{height:47.980898px;}
.h1b{height:48.410156px;}
.h18{height:53.077852px;}
.ha{height:53.573906px;}
.h4{height:53.709961px;}
.h16{height:54.773438px;}
.h38{height:55.291992px;}
.h6{height:56.649375px;}
.h8{height:57.959925px;}
.h2{height:59.439023px;}
.h36{height:61.189805px;}
.h15{height:63.949219px;}
.h1c{height:64.546875px;}
.h13{height:65.884219px;}
.h24{height:75.519844px;}
.h35{height:79.620469px;}
.hf{height:91.177734px;}
.h11{height:100.656000px;}
.hd{height:109.102500px;}
.h1f{height:125.676000px;}
.h7{height:170.490000px;}
.h14{height:173.700000px;}
.h10{height:181.620000px;}
.he{height:181.650000px;}
.h39{height:189.000000px;}
.hb{height:306.255000px;}
.h34{height:754.845000px;}
.h9{height:1188.900000px;}
.h33{height:1249.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:39.960000px;}
.w26{width:52.380000px;}
.w18{width:63.000000px;}
.w24{width:67.140000px;}
.w22{width:73.800000px;}
.w21{width:84.240000px;}
.w1c{width:84.276000px;}
.w1f{width:84.456000px;}
.w6{width:88.560000px;}
.w1e{width:94.860000px;}
.w25{width:95.076000px;}
.w23{width:101.376000px;}
.w1b{width:105.516000px;}
.w1d{width:116.280000px;}
.w15{width:116.316000px;}
.w14{width:126.720000px;}
.w1a{width:126.900000px;}
.w16{width:126.936000px;}
.w11{width:127.440000px;}
.w17{width:169.410000px;}
.wf{width:198.210000px;}
.w20{width:201.270000px;}
.w28{width:213.330000px;}
.wa{width:255.060000px;}
.w13{width:258.915000px;}
.wb{width:295.200000px;}
.we{width:320.790000px;}
.wd{width:320.940000px;}
.wc{width:321.015000px;}
.w12{width:323.535000px;}
.w27{width:326.055000px;}
.w9{width:326.415000px;}
.w4{width:351.975000px;}
.w3{width:397.545000px;}
.w19{width:701.250000px;}
.w8{width:847.620000px;}
.w7{width:848.520000px;}
.w10{width:892.439973px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x12{left:-2.055000px;}
.x0{left:0.000000px;}
.x5e{left:4.320000px;}
.x30{left:7.560000px;}
.x6{left:8.676000px;}
.x64{left:9.720000px;}
.xc{left:10.800000px;}
.x3d{left:11.880000px;}
.x3b{left:13.320000px;}
.xa{left:14.940000px;}
.x61{left:16.200000px;}
.x65{left:17.460000px;}
.x50{left:20.160000px;}
.xe{left:22.320000px;}
.x34{left:23.580000px;}
.x4b{left:25.020000px;}
.x4e{left:26.640000px;}
.x4a{left:28.440000px;}
.x2e{left:30.780000px;}
.x54{left:31.860000px;}
.xd{left:33.120000px;}
.x2f{left:35.640000px;}
.x18{left:37.620000px;}
.x31{left:39.240000px;}
.x52{left:41.040000px;}
.x39{left:42.480000px;}
.x32{left:43.740000px;}
.x33{left:44.994000px;}
.x29{left:46.614000px;}
.x44{left:48.240000px;}
.x55{left:49.725000px;}
.x3f{left:51.885000px;}
.x41{left:54.900000px;}
.x40{left:57.240000px;}
.x2d{left:60.885000px;}
.x59{left:63.354000px;}
.x4{left:64.439987px;}
.x25{left:68.939987px;}
.x5{left:73.080000px;}
.x45{left:75.420000px;}
.x42{left:78.480000px;}
.x43{left:81.540000px;}
.x19{left:82.800000px;}
.x2b{left:87.165000px;}
.x56{left:94.500000px;}
.x57{left:97.560000px;}
.x36{left:101.016000px;}
.x28{left:106.236000px;}
.x47{left:111.456000px;}
.x1a{left:113.400000px;}
.x26{left:117.575987px;}
.x46{left:123.875987px;}
.x1c{left:130.355987px;}
.x16{left:133.125000px;}
.x8{left:137.385000px;}
.x58{left:152.679000px;}
.x15{left:160.410000px;}
.x10{left:163.290000px;}
.x5a{left:164.369987px;}
.x35{left:177.509987px;}
.x48{left:185.079000px;}
.x1b{left:187.245000px;}
.x27{left:191.909987px;}
.x53{left:195.699000px;}
.x69{left:202.545000px;}
.x37{left:228.450000px;}
.x2a{left:234.570000px;}
.x49{left:239.070000px;}
.x66{left:271.514987px;}
.x5b{left:276.375000px;}
.x24{left:280.514987px;}
.x38{left:345.495000px;}
.x5c{left:350.895000px;}
.x3{left:388.694987px;}
.x14{left:406.155000px;}
.xf{left:408.135000px;}
.x17{left:411.945000px;}
.x13{left:419.760000px;}
.x4c{left:430.485000px;}
.x5d{left:435.885000px;}
.x11{left:439.560000px;}
.x1d{left:442.004987px;}
.x68{left:456.225000px;}
.x1{left:461.804987px;}
.x7{left:470.625000px;}
.x3a{left:473.145000px;}
.x5f{left:499.605000px;}
.x4d{left:547.485000px;}
.x1e{left:552.884987px;}
.x2c{left:559.005000px;}
.x21{left:565.124987px;}
.x3c{left:590.190000px;}
.x22{left:591.989987px;}
.x60{left:601.890000px;}
.x23{left:623.129987px;}
.x4f{left:632.670000px;}
.x62{left:669.750000px;}
.x51{left:728.250000px;}
.x3e{left:760.320000px;}
.x63{left:765.540000px;}
.x2{left:782.279987px;}
.xb{left:803.880000px;}
.x1f{left:813.599973px;}
.x20{left:819.719987px;}
.x67{left:829.619987px;}
.x9{left:838.620000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls3{letter-spacing:-0.161067pt;}
.ls15{letter-spacing:-0.156267pt;}
.lse{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.064000pt;}
.ls14{letter-spacing:-0.051840pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:-0.016000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.lsb{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.296960pt;}
.ls4{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.408960pt;}
.lsc{letter-spacing:0.640000pt;}
.ls10{letter-spacing:0.704000pt;}
.ls11{letter-spacing:752.266667pt;}
.ws1{word-spacing:-44.328960pt;}
.ws2{word-spacing:-19.237120pt;}
.ws10{word-spacing:-17.458027pt;}
.wsd{word-spacing:-16.000000pt;}
.ws15{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.wse{word-spacing:-15.808000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.953280pt;}
.ws3{word-spacing:-11.759573pt;}
.ws13{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws11{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.400000pt;}
.ws14{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._16{margin-left:-4.608000pt;}
._f{margin-left:-2.868480pt;}
._15{margin-left:-1.926400pt;}
._8{margin-left:-0.967040pt;}
._0{width:1.041067pt;}
._5{width:2.199253pt;}
._e{width:3.665280pt;}
._10{width:4.728960pt;}
._2{width:6.395733pt;}
._3{width:7.298347pt;}
._4{width:8.372480pt;}
._b{width:9.848533pt;}
._c{width:11.102080pt;}
._13{width:12.160000pt;}
._14{width:13.184000pt;}
._a{width:14.076800pt;}
._9{width:15.139200pt;}
._11{width:16.043520pt;}
._6{width:17.550933pt;}
._17{width:19.121067pt;}
._1f{width:20.224000pt;}
._18{width:21.632000pt;}
._19{width:22.912000pt;}
._1c{width:24.243413pt;}
._1d{width:25.384747pt;}
._1{width:26.400640pt;}
._7{width:27.643733pt;}
._1e{width:28.731733pt;}
._1a{width:29.888000pt;}
._1b{width:31.285333pt;}
._24{width:33.600000pt;}
._25{width:34.752000pt;}
._12{width:36.352000pt;}
._d{width:38.883840pt;}
._20{width:42.688000pt;}
._21{width:43.705600pt;}
._23{width:53.191040pt;}
._22{width:54.144000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:37.120000pt;}
.fs5{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.fs3{font-size:133.120000pt;}
.y1b8{bottom:-93.440000pt;}
.y32{bottom:-74.400000pt;}
.y22{bottom:-64.800000pt;}
.y1b7{bottom:-61.120000pt;}
.y31{bottom:-50.240000pt;}
.y21{bottom:-32.480000pt;}
.y30{bottom:-29.920000pt;}
.y1b6{bottom:-29.280000pt;}
.y1b5{bottom:-14.560000pt;}
.y2f{bottom:-9.760000pt;}
.y20{bottom:-0.160000pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:0.866667pt;}
.y118{bottom:2.080000pt;}
.ya5{bottom:2.240000pt;}
.y91{bottom:2.560000pt;}
.y87{bottom:2.720000pt;}
.y9{bottom:3.360000pt;}
.y186{bottom:5.759867pt;}
.yb{bottom:6.720000pt;}
.y116{bottom:7.360000pt;}
.y11b{bottom:7.520000pt;}
.ya3{bottom:8.320000pt;}
.yd8{bottom:8.346667pt;}
.y8{bottom:8.480000pt;}
.y93{bottom:9.440000pt;}
.y2e{bottom:10.560000pt;}
.y117{bottom:12.800000pt;}
.y122{bottom:12.840000pt;}
.y11a{bottom:12.960000pt;}
.ya4{bottom:14.400000pt;}
.yd7{bottom:14.426667pt;}
.yac{bottom:14.440000pt;}
.ya7{bottom:14.560000pt;}
.y1b4{bottom:15.840000pt;}
.y1f{bottom:16.040000pt;}
.y7{bottom:16.160000pt;}
.y90{bottom:16.320000pt;}
.y8c{bottom:16.480000pt;}
.y29{bottom:20.226667pt;}
.y92{bottom:23.200000pt;}
.y8f{bottom:30.080000pt;}
.y8d{bottom:30.266667pt;}
.y2d{bottom:30.920000pt;}
.y1e{bottom:32.360000pt;}
.yf{bottom:32.800000pt;}
.y1b3{bottom:36.832000pt;}
.ye{bottom:38.720000pt;}
.y8a{bottom:44.640000pt;}
.y6{bottom:44.960000pt;}
.y27{bottom:47.200000pt;}
.y1d{bottom:48.680000pt;}
.y2c{bottom:51.080000pt;}
.y1b2{bottom:57.946667pt;}
.y89{bottom:58.400000pt;}
.y170{bottom:61.600000pt;}
.y1c{bottom:65.000000pt;}
.y6c{bottom:65.600000pt;}
.y6b{bottom:69.600000pt;}
.y1b1{bottom:70.906667pt;}
.y2b{bottom:71.400000pt;}
.y148{bottom:72.160000pt;}
.y14d{bottom:76.480000pt;}
.yf2{bottom:76.640000pt;}
.y13e{bottom:77.760000pt;}
.y85{bottom:80.960000pt;}
.ya1{bottom:81.760000pt;}
.y6a{bottom:87.360000pt;}
.yc7{bottom:88.160000pt;}
.y69{bottom:91.360000pt;}
.y1b0{bottom:91.866667pt;}
.y185{bottom:92.000000pt;}
.y14c{bottom:94.880000pt;}
.y19a{bottom:95.360000pt;}
.y16f{bottom:96.000000pt;}
.y1b{bottom:97.160000pt;}
.y147{bottom:99.840000pt;}
.yf1{bottom:104.160000pt;}
.y13d{bottom:105.280000pt;}
.y84{bottom:108.480000pt;}
.y68{bottom:109.280000pt;}
.y1af{bottom:112.986667pt;}
.y67{bottom:113.280000pt;}
.y1a{bottom:113.480000pt;}
.y16e{bottom:114.400000pt;}
.yc6{bottom:115.840000pt;}
.y184{bottom:126.432000pt;}
.y146{bottom:127.392000pt;}
.y19{bottom:129.800000pt;}
.y66{bottom:131.072000pt;}
.yf0{bottom:131.872000pt;}
.y16d{bottom:132.832000pt;}
.y13c{bottom:132.992000pt;}
.y1ae{bottom:133.946667pt;}
.y65{bottom:135.066667pt;}
.y83{bottom:136.186667pt;}
.ya0{bottom:136.986667pt;}
.yd{bottom:138.746667pt;}
.yc5{bottom:143.386667pt;}
.y18{bottom:145.960000pt;}
.y14b{bottom:147.706667pt;}
.y64{bottom:152.666667pt;}
.y145{bottom:155.066667pt;}
.y63{bottom:156.666667pt;}
.yef{bottom:159.386667pt;}
.y13b{bottom:160.506667pt;}
.y183{bottom:160.826667pt;}
.y17{bottom:162.280000pt;}
.y82{bottom:163.706667pt;}
.y9f{bottom:164.506667pt;}
.y14a{bottom:166.106667pt;}
.y16c{bottom:167.226667pt;}
.y114{bottom:167.866667pt;}
.y1ad{bottom:168.026667pt;}
.yc4{bottom:171.066667pt;}
.y62{bottom:175.546667pt;}
.y144{bottom:182.586667pt;}
.y16b{bottom:185.626667pt;}
.yee{bottom:187.066667pt;}
.y13a{bottom:188.186667pt;}
.y1ac{bottom:188.986667pt;}
.y81{bottom:191.386667pt;}
.y9e{bottom:192.186667pt;}
.y16{bottom:194.600000pt;}
.y182{bottom:195.226667pt;}
.y113{bottom:195.386667pt;}
.yc3{bottom:198.586667pt;}
.y149{bottom:200.506667pt;}
.y61{bottom:209.306667pt;}
.y1ab{bottom:210.106667pt;}
.y143{bottom:210.266667pt;}
.y15{bottom:210.920000pt;}
.yed{bottom:214.586667pt;}
.y139{bottom:215.706667pt;}
.y80{bottom:218.906667pt;}
.y9d{bottom:219.706667pt;}
.y16a{bottom:220.026667pt;}
.y112{bottom:223.066667pt;}
.yc2{bottom:226.266667pt;}
.y14{bottom:227.080000pt;}
.y181{bottom:229.626667pt;}
.y60{bottom:232.666667pt;}
.y142{bottom:237.786667pt;}
.y169{bottom:238.426667pt;}
.yec{bottom:242.266667pt;}
.y138{bottom:243.226667pt;}
.y13{bottom:243.426667pt;}
.y1aa{bottom:244.346667pt;}
.y7f{bottom:246.426667pt;}
.y9c{bottom:247.226667pt;}
.y5f{bottom:248.026667pt;}
.y111{bottom:250.586667pt;}
.yc1{bottom:253.786667pt;}
.y141{bottom:254.906667pt;}
.y168{bottom:256.826667pt;}
.yeb{bottom:259.386667pt;}
.y5e{bottom:263.386667pt;}
.y180{bottom:264.026667pt;}
.y140{bottom:264.986667pt;}
.yea{bottom:270.106667pt;}
.y137{bottom:270.906667pt;}
.y7e{bottom:274.106667pt;}
.y1a9{bottom:274.786667pt;}
.y9b{bottom:274.906667pt;}
.y110{bottom:278.266667pt;}
.y5d{bottom:278.746667pt;}
.yc0{bottom:281.466667pt;}
.ye9{bottom:282.906667pt;}
.y1a8{bottom:287.746667pt;}
.y167{bottom:291.226667pt;}
.y5c{bottom:294.106667pt;}
.ye8{bottom:295.866667pt;}
.y136{bottom:298.426667pt;}
.y7d{bottom:301.626667pt;}
.y9a{bottom:302.426667pt;}
.y10f{bottom:305.786667pt;}
.ye7{bottom:308.826667pt;}
.y1a7{bottom:308.866667pt;}
.ybf{bottom:308.986667pt;}
.y5b{bottom:309.466667pt;}
.y166{bottom:309.626667pt;}
.y2a{bottom:320.186667pt;}
.ye6{bottom:321.786667pt;}
.y5a{bottom:324.666667pt;}
.y135{bottom:326.106667pt;}
.y7c{bottom:329.306667pt;}
.y1a6{bottom:329.826667pt;}
.y99{bottom:330.106667pt;}
.y17f{bottom:332.826667pt;}
.y10e{bottom:333.466667pt;}
.ye5{bottom:334.746667pt;}
.ybe{bottom:336.666667pt;}
.y59{bottom:340.026667pt;}
.y165{bottom:344.026667pt;}
.ye4{bottom:347.746667pt;}
.y1a5{bottom:350.946667pt;}
.y134{bottom:353.666667pt;}
.y58{bottom:355.426667pt;}
.y7b{bottom:356.866667pt;}
.y98{bottom:359.746667pt;}
.ye3{bottom:360.546667pt;}
.y10d{bottom:361.026667pt;}
.y199{bottom:361.666667pt;}
.y164{bottom:362.466667pt;}
.ybd{bottom:364.226667pt;}
.y17e{bottom:367.266667pt;}
.y57{bottom:370.786667pt;}
.y1a4{bottom:371.906667pt;}
.ye2{bottom:373.506667pt;}
.y97{bottom:379.426667pt;}
.y133{bottom:381.346667pt;}
.y7a{bottom:384.546667pt;}
.y1a3{bottom:384.866667pt;}
.y56{bottom:386.146667pt;}
.ye1{bottom:386.466667pt;}
.y10c{bottom:388.706667pt;}
.y198{bottom:389.186667pt;}
.y96{bottom:390.146667pt;}
.ybc{bottom:391.906667pt;}
.y163{bottom:396.866667pt;}
.ye0{bottom:399.426667pt;}
.y55{bottom:401.346667pt;}
.y17d{bottom:401.666667pt;}
.y1a2{bottom:405.986667pt;}
.y197{bottom:406.946667pt;}
.y132{bottom:408.866667pt;}
.y79{bottom:412.066667pt;}
.ydf{bottom:412.386667pt;}
.y26{bottom:414.146667pt;}
.y28{bottom:414.240000pt;}
.y162{bottom:415.266667pt;}
.y10b{bottom:416.226667pt;}
.y54{bottom:416.706667pt;}
.y95{bottom:418.466667pt;}
.ybb{bottom:419.426667pt;}
.yde{bottom:425.346667pt;}
.y1a1{bottom:427.266667pt;}
.y53{bottom:432.066667pt;}
.yc{bottom:432.546667pt;}
.y161{bottom:433.666667pt;}
.y17c{bottom:436.066667pt;}
.y131{bottom:436.546667pt;}
.y196{bottom:438.946667pt;}
.y78{bottom:439.746667pt;}
.y10a{bottom:443.906667pt;}
.y94{bottom:446.626667pt;}
.yba{bottom:447.106667pt;}
.ydd{bottom:450.466667pt;}
.y52{bottom:455.426667pt;}
.y1a0{bottom:457.666667pt;}
.ydc{bottom:463.426667pt;}
.y130{bottom:464.066667pt;}
.y77{bottom:467.266667pt;}
.y160{bottom:468.066667pt;}
.y17b{bottom:470.466667pt;}
.y109{bottom:471.426667pt;}
.y51{bottom:472.706667pt;}
.y195{bottom:474.466667pt;}
.yb9{bottom:474.626667pt;}
.y88{bottom:474.946667pt;}
.y19f{bottom:479.293333pt;}
.y15f{bottom:486.466667pt;}
.ydb{bottom:488.546667pt;}
.y25{bottom:491.040000pt;}
.y12f{bottom:491.746667pt;}
.y76{bottom:494.946667pt;}
.y50{bottom:497.986667pt;}
.y108{bottom:499.106667pt;}
.y194{bottom:502.146667pt;}
.yb8{bottom:502.306667pt;}
.y8e{bottom:503.266667pt;}
.y15e{bottom:504.866667pt;}
.y19e{bottom:511.133333pt;}
.yda{bottom:513.826667pt;}
.y12e{bottom:519.266667pt;}
.y4f{bottom:521.346667pt;}
.y75{bottom:522.466667pt;}
.y17a{bottom:523.266667pt;}
.y10{bottom:523.746667pt;}
.y107{bottom:526.626667pt;}
.y193{bottom:529.666667pt;}
.yb7{bottom:529.826667pt;}
.y4e{bottom:536.706667pt;}
.y23{bottom:538.080000pt;}
.yd9{bottom:538.946667pt;}
.y15d{bottom:539.266667pt;}
.y179{bottom:541.666667pt;}
.y19d{bottom:542.173333pt;}
.y8b{bottom:545.186667pt;}
.y12d{bottom:546.946667pt;}
.ya{bottom:547.906667pt;}
.y74{bottom:550.146667pt;}
.y187{bottom:550.786800pt;}
.y4d{bottom:552.066667pt;}
.y106{bottom:554.306667pt;}
.y192{bottom:557.346667pt;}
.yb6{bottom:557.506667pt;}
.y15c{bottom:557.666667pt;}
.yd6{bottom:564.226667pt;}
.y4c{bottom:567.426667pt;}
.y33{bottom:573.053333pt;}
.y12c{bottom:574.493333pt;}
.y178{bottom:576.093333pt;}
.y73{bottom:577.693333pt;}
.y105{bottom:580.093333pt;}
.y4b{bottom:582.813333pt;}
.y191{bottom:584.893333pt;}
.yb5{bottom:585.053333pt;}
.y86{bottom:587.293333pt;}
.yd5{bottom:589.373333pt;}
.y15b{bottom:592.093333pt;}
.y177{bottom:594.493333pt;}
.y104{bottom:595.293333pt;}
.y4a{bottom:598.173333pt;}
.y12b{bottom:602.173333pt;}
.y72{bottom:605.373333pt;}
.y19c{bottom:606.333333pt;}
.y15a{bottom:610.493333pt;}
.y103{bottom:610.653333pt;}
.y190{bottom:612.573333pt;}
.yb4{bottom:612.733333pt;}
.y49{bottom:613.373333pt;}
.yd4{bottom:614.653333pt;}
.yd3{bottom:627.613333pt;}
.y48{bottom:628.733333pt;}
.y159{bottom:628.893333pt;}
.y12a{bottom:629.693333pt;}
.y71{bottom:632.893333pt;}
.y102{bottom:634.013333pt;}
.y19b{bottom:638.493333pt;}
.y18f{bottom:640.093333pt;}
.yb3{bottom:640.253333pt;}
.yd2{bottom:640.413333pt;}
.y47{bottom:644.093333pt;}
.y176{bottom:647.293333pt;}
.y101{bottom:649.373333pt;}
.yd1{bottom:653.373333pt;}
.y129{bottom:657.373333pt;}
.y46{bottom:659.453333pt;}
.y70{bottom:660.573333pt;}
.y158{bottom:663.293333pt;}
.yd0{bottom:666.333333pt;}
.y18e{bottom:667.773333pt;}
.yb2{bottom:667.933333pt;}
.y100{bottom:672.733333pt;}
.y128{bottom:674.333333pt;}
.y45{bottom:674.813333pt;}
.ycf{bottom:679.293333pt;}
.y157{bottom:681.693333pt;}
.y127{bottom:683.613333pt;}
.yb1{bottom:685.053333pt;}
.y6f{bottom:688.093333pt;}
.y44{bottom:690.173333pt;}
.yce{bottom:692.253333pt;}
.y126{bottom:694.973333pt;}
.y18d{bottom:695.293333pt;}
.yb0{bottom:695.613333pt;}
.y156{bottom:700.093333pt;}
.yff{bottom:703.293333pt;}
.ycd{bottom:705.213333pt;}
.y43{bottom:705.373333pt;}
.yaf{bottom:708.573333pt;}
.y6e{bottom:715.773333pt;}
.y125{bottom:717.213333pt;}
.ycc{bottom:718.013333pt;}
.yfe{bottom:718.653333pt;}
.y42{bottom:720.733333pt;}
.y18c{bottom:722.973333pt;}
.ycb{bottom:730.973333pt;}
.yae{bottom:733.853333pt;}
.yfd{bottom:734.013333pt;}
.y155{bottom:734.493333pt;}
.y124{bottom:739.293333pt;}
.y6d{bottom:743.293333pt;}
.y41{bottom:743.613333pt;}
.yca{bottom:743.933333pt;}
.y18b{bottom:750.493333pt;}
.y13f{bottom:752.573333pt;}
.y175{bottom:752.893333pt;}
.yc9{bottom:756.893333pt;}
.yfc{bottom:757.373333pt;}
.yad{bottom:758.973333pt;}
.y123{bottom:761.373333pt;}
.y154{bottom:768.893333pt;}
.y40{bottom:770.973333pt;}
.yfb{bottom:772.733333pt;}
.y18a{bottom:778.173333pt;}
.yc8{bottom:782.013333pt;}
.y121{bottom:783.613333pt;}
.yab{bottom:784.253333pt;}
.y153{bottom:787.293333pt;}
.yfa{bottom:788.093333pt;}
.y12{bottom:789.693333pt;}
.y3e{bottom:798.533333pt;}
.y3f{bottom:804.613333pt;}
.y120{bottom:805.733333pt;}
.yaa{bottom:809.413333pt;}
.y1b9{bottom:810.853333pt;}
.yf9{bottom:811.333333pt;}
.y152{bottom:821.733333pt;}
.y174{bottom:824.133333pt;}
.y3c{bottom:826.213333pt;}
.yf8{bottom:826.693333pt;}
.y11f{bottom:827.813333pt;}
.y3d{bottom:832.293333pt;}
.y189{bottom:833.413333pt;}
.ya9{bottom:834.693333pt;}
.y151{bottom:840.133333pt;}
.yf7{bottom:842.053333pt;}
.y11e{bottom:849.893333pt;}
.y3a{bottom:853.733333pt;}
.yf6{bottom:857.413333pt;}
.y150{bottom:858.533333pt;}
.y3b{bottom:859.813333pt;}
.y188{bottom:860.933333pt;}
.y11d{bottom:872.133333pt;}
.y173{bottom:876.933333pt;}
.yf5{bottom:880.773333pt;}
.y38{bottom:881.413333pt;}
.ya8{bottom:885.093333pt;}
.y39{bottom:887.493333pt;}
.y14f{bottom:892.933333pt;}
.y11c{bottom:894.213333pt;}
.y172{bottom:895.333333pt;}
.yf4{bottom:895.973333pt;}
.y36{bottom:908.933333pt;}
.ya6{bottom:910.213333pt;}
.yf3{bottom:911.333333pt;}
.y37{bottom:915.013333pt;}
.y119{bottom:916.293333pt;}
.y171{bottom:929.733333pt;}
.ya2{bottom:935.493333pt;}
.y35{bottom:936.613333pt;}
.y115{bottom:938.533333pt;}
.y14e{bottom:945.733333pt;}
.y34{bottom:964.133333pt;}
.y11{bottom:966.533333pt;}
.y5{bottom:982.533333pt;}
.y4{bottom:998.853333pt;}
.y3{bottom:1011.653333pt;}
.y2{bottom:1093.600000pt;}
.y1{bottom:1109.760000pt;}
.h32{height:10.720000pt;}
.h2c{height:12.160000pt;}
.h2d{height:12.192000pt;}
.h2a{height:12.320000pt;}
.h2b{height:12.352000pt;}
.h1d{height:13.920000pt;}
.h2e{height:21.440000pt;}
.h5{height:21.472000pt;}
.h31{height:21.600000pt;}
.h25{height:24.480000pt;}
.h29{height:24.512000pt;}
.h28{height:24.640000pt;}
.h3{height:25.280000pt;}
.hc{height:25.760000pt;}
.h22{height:27.520000pt;}
.h23{height:27.680000pt;}
.h1a{height:28.687500pt;}
.h12{height:31.343437pt;}
.h17{height:32.620625pt;}
.h30{height:32.969375pt;}
.h2f{height:33.277500pt;}
.h26{height:38.085312pt;}
.h27{height:38.441250pt;}
.h19{height:40.410625pt;}
.h21{height:41.280000pt;}
.h20{height:41.472000pt;}
.h1e{height:42.632812pt;}
.h37{height:42.649687pt;}
.h1b{height:43.031250pt;}
.h18{height:47.180312pt;}
.ha{height:47.621250pt;}
.h4{height:47.742188pt;}
.h16{height:48.687500pt;}
.h38{height:49.148438pt;}
.h6{height:50.355000pt;}
.h8{height:51.519933pt;}
.h2{height:52.834688pt;}
.h36{height:54.390938pt;}
.h15{height:56.843750pt;}
.h1c{height:57.375000pt;}
.h13{height:58.563750pt;}
.h24{height:67.128750pt;}
.h35{height:70.773750pt;}
.hf{height:81.046875pt;}
.h11{height:89.472000pt;}
.hd{height:96.980000pt;}
.h1f{height:111.712000pt;}
.h7{height:151.546667pt;}
.h14{height:154.400000pt;}
.h10{height:161.440000pt;}
.he{height:161.466667pt;}
.h39{height:168.000000pt;}
.hb{height:272.226667pt;}
.h34{height:670.973333pt;}
.h9{height:1056.800000pt;}
.h33{height:1110.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:35.520000pt;}
.w26{width:46.560000pt;}
.w18{width:56.000000pt;}
.w24{width:59.680000pt;}
.w22{width:65.600000pt;}
.w21{width:74.880000pt;}
.w1c{width:74.912000pt;}
.w1f{width:75.072000pt;}
.w6{width:78.720000pt;}
.w1e{width:84.320000pt;}
.w25{width:84.512000pt;}
.w23{width:90.112000pt;}
.w1b{width:93.792000pt;}
.w1d{width:103.360000pt;}
.w15{width:103.392000pt;}
.w14{width:112.640000pt;}
.w1a{width:112.800000pt;}
.w16{width:112.832000pt;}
.w11{width:113.280000pt;}
.w17{width:150.586667pt;}
.wf{width:176.186667pt;}
.w20{width:178.906667pt;}
.w28{width:189.626667pt;}
.wa{width:226.720000pt;}
.w13{width:230.146667pt;}
.wb{width:262.400000pt;}
.we{width:285.146667pt;}
.wd{width:285.280000pt;}
.wc{width:285.346667pt;}
.w12{width:287.586667pt;}
.w27{width:289.826667pt;}
.w9{width:290.146667pt;}
.w4{width:312.866667pt;}
.w3{width:353.373333pt;}
.w19{width:623.333333pt;}
.w8{width:753.440000pt;}
.w7{width:754.240000pt;}
.w10{width:793.279976pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x12{left:-1.826667pt;}
.x0{left:0.000000pt;}
.x5e{left:3.840000pt;}
.x30{left:6.720000pt;}
.x6{left:7.712000pt;}
.x64{left:8.640000pt;}
.xc{left:9.600000pt;}
.x3d{left:10.560000pt;}
.x3b{left:11.840000pt;}
.xa{left:13.280000pt;}
.x61{left:14.400000pt;}
.x65{left:15.520000pt;}
.x50{left:17.920000pt;}
.xe{left:19.840000pt;}
.x34{left:20.960000pt;}
.x4b{left:22.240000pt;}
.x4e{left:23.680000pt;}
.x4a{left:25.280000pt;}
.x2e{left:27.360000pt;}
.x54{left:28.320000pt;}
.xd{left:29.440000pt;}
.x2f{left:31.680000pt;}
.x18{left:33.440000pt;}
.x31{left:34.880000pt;}
.x52{left:36.480000pt;}
.x39{left:37.760000pt;}
.x32{left:38.880000pt;}
.x33{left:39.994667pt;}
.x29{left:41.434667pt;}
.x44{left:42.880000pt;}
.x55{left:44.200000pt;}
.x3f{left:46.120000pt;}
.x41{left:48.800000pt;}
.x40{left:50.880000pt;}
.x2d{left:54.120000pt;}
.x59{left:56.314667pt;}
.x4{left:57.279988pt;}
.x25{left:61.279988pt;}
.x5{left:64.960000pt;}
.x45{left:67.040000pt;}
.x42{left:69.760000pt;}
.x43{left:72.480000pt;}
.x19{left:73.600000pt;}
.x2b{left:77.480000pt;}
.x56{left:84.000000pt;}
.x57{left:86.720000pt;}
.x36{left:89.792000pt;}
.x28{left:94.432000pt;}
.x47{left:99.072000pt;}
.x1a{left:100.800000pt;}
.x26{left:104.511988pt;}
.x46{left:110.111988pt;}
.x1c{left:115.871988pt;}
.x16{left:118.333333pt;}
.x8{left:122.120000pt;}
.x58{left:135.714667pt;}
.x15{left:142.586667pt;}
.x10{left:145.146667pt;}
.x5a{left:146.106655pt;}
.x35{left:157.786655pt;}
.x48{left:164.514667pt;}
.x1b{left:166.440000pt;}
.x27{left:170.586655pt;}
.x53{left:173.954667pt;}
.x69{left:180.040000pt;}
.x37{left:203.066667pt;}
.x2a{left:208.506667pt;}
.x49{left:212.506667pt;}
.x66{left:241.346655pt;}
.x5b{left:245.666667pt;}
.x24{left:249.346655pt;}
.x38{left:307.106667pt;}
.x5c{left:311.906667pt;}
.x3{left:345.506655pt;}
.x14{left:361.026667pt;}
.xf{left:362.786667pt;}
.x17{left:366.173333pt;}
.x13{left:373.120000pt;}
.x4c{left:382.653333pt;}
.x5d{left:387.453333pt;}
.x11{left:390.720000pt;}
.x1d{left:392.893322pt;}
.x68{left:405.533333pt;}
.x1{left:410.493322pt;}
.x7{left:418.333333pt;}
.x3a{left:420.573333pt;}
.x5f{left:444.093333pt;}
.x4d{left:486.653333pt;}
.x1e{left:491.453322pt;}
.x2c{left:496.893333pt;}
.x21{left:502.333322pt;}
.x3c{left:524.613333pt;}
.x22{left:526.213322pt;}
.x60{left:535.013333pt;}
.x23{left:553.893322pt;}
.x4f{left:562.373333pt;}
.x62{left:595.333333pt;}
.x51{left:647.333333pt;}
.x3e{left:675.840000pt;}
.x63{left:680.480000pt;}
.x2{left:695.359988pt;}
.xb{left:714.560000pt;}
.x1f{left:723.199976pt;}
.x20{left:728.639988pt;}
.x67{left:737.439988pt;}
.x9{left:745.440000pt;}
}




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