
    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_a73602775961ee5de52acc54.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_10386780ab540fc99c38e991.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a72e0fb870eaf6de82504baf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_d3b5250bf481be60a4fff1cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_209859cac5e26e78f08aa719.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_bc81569458bc8bcf0e204050.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_0d045334a0ba85a97d86011d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dd0ccb57ca06e304de19a245.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_40d6c074cc7c5aaa3b082b90.woff2')format("woff");}.ff9{font-family:ff9;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:-77.040000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v2{vertical-align:30.240000px;}
.ls6{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.846000px;}
.ls1b{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.540000px;}
.ls1e{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.126000px;}
.ls11{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls8{letter-spacing:0.018000px;}
.ls9{letter-spacing:0.108000px;}
.ls18{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.149760px;}
.ls2{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.936000px;}
.ls16{letter-spacing:3.060000px;}
.lse{letter-spacing:9.540000px;}
.ls12{letter-spacing:10.260000px;}
.ls17{letter-spacing:13.860000px;}
.lsf{letter-spacing:18.900000px;}
.ls15{letter-spacing:19.620000px;}
.ls13{letter-spacing:25.308000px;}
.ls10{letter-spacing:52.668000px;}
.ls14{letter-spacing:112.680000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-19.457280px;}
.ws3{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.840000px;}
.ws1{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.436000px;}
.ws7{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.716000px;}
.ws10{word-spacing:-13.626000px;}
.wse{word-spacing:-13.608000px;}
.wsc{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.wsd{word-spacing:-13.374000px;}
.ws14{word-spacing:-13.284000px;}
.ws15{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.906000px;}
.ws12{word-spacing:-12.672000px;}
.wsb{word-spacing:-12.654000px;}
.ws2{word-spacing:-10.440000px;}
.wsa{word-spacing:-9.000000px;}
.ws9{word-spacing:-8.856000px;}
.ws6{word-spacing:0.000000px;}
._34{margin-left:-13.356000px;}
._0{margin-left:-1.134000px;}
._1{width:1.002000px;}
._7{width:2.070000px;}
._e{width:3.094800px;}
._f{width:4.123680px;}
._8{width:5.238000px;}
._a{width:6.936000px;}
._9{width:7.938000px;}
._10{width:9.091920px;}
._11{width:10.118160px;}
._b{width:11.394000px;}
._c{width:12.444000px;}
._17{width:14.550000px;}
._6{width:15.822000px;}
._1f{width:16.926000px;}
._13{width:18.396000px;}
._12{width:19.458000px;}
._1a{width:20.736000px;}
._18{width:22.248000px;}
._19{width:23.946000px;}
._d{width:25.920000px;}
._1b{width:27.108000px;}
._16{width:28.350000px;}
._26{width:30.210000px;}
._15{width:31.266000px;}
._14{width:32.724000px;}
._23{width:34.020000px;}
._21{width:35.532000px;}
._2e{width:36.696000px;}
._29{width:37.800000px;}
._28{width:39.420000px;}
._2c{width:40.470000px;}
._31{width:41.664000px;}
._22{width:43.092000px;}
._20{width:45.576000px;}
._2a{width:46.764000px;}
._1c{width:48.492000px;}
._27{width:49.914000px;}
._1e{width:51.030000px;}
._1d{width:52.380000px;}
._2f{width:55.026000px;}
._30{width:56.700000px;}
._33{width:59.292000px;}
._2d{width:69.066000px;}
._2b{width:70.794000px;}
._24{width:74.412000px;}
._25{width:75.702000px;}
._3{width:78.192000px;}
._32{width:112.584000px;}
._4{width:157.860000px;}
._2{width:1032.240000px;}
._5{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fs4{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.060000px;}
.y93{bottom:10.065000px;}
.y7d{bottom:10.080000px;}
.y91{bottom:10.110000px;}
.y95{bottom:10.245000px;}
.y7f{bottom:10.260000px;}
.ye7{bottom:10.290000px;}
.yd6{bottom:10.305000px;}
.yc4{bottom:10.785000px;}
.ybf{bottom:10.800000px;}
.yc2{bottom:10.965000px;}
.yed{bottom:11.145000px;}
.y4{bottom:15.660000px;}
.y2{bottom:18.900000px;}
.yd8{bottom:27.900000px;}
.y5{bottom:39.780000px;}
.y1{bottom:60.660000px;}
.y37{bottom:65.190000px;}
.y2c{bottom:101.520000px;}
.yd2{bottom:102.060000px;}
.y13d{bottom:106.560000px;}
.y1ec{bottom:107.280000px;}
.ya1{bottom:112.680000px;}
.y35{bottom:113.970000px;}
.y15b{bottom:115.740000px;}
.y2b{bottom:119.340000px;}
.yd1{bottom:119.880000px;}
.yf6{bottom:120.960000px;}
.y125{bottom:124.380000px;}
.y173{bottom:124.740000px;}
.y1c1{bottom:126.000000px;}
.ya0{bottom:130.680000px;}
.y1eb{bottom:133.200000px;}
.y15a{bottom:133.560000px;}
.y71{bottom:134.640000px;}
.y2a{bottom:137.160000px;}
.yf5{bottom:138.780000px;}
.y124{bottom:142.200000px;}
.y172{bottom:142.560000px;}
.y19a{bottom:143.820000px;}
.yd0{bottom:146.880000px;}
.y9f{bottom:148.500000px;}
.y159{bottom:151.380000px;}
.y70{bottom:152.460000px;}
.y29{bottom:155.160000px;}
.yf4{bottom:156.600000px;}
.y1ea{bottom:158.940000px;}
.y171{bottom:160.380000px;}
.y199{bottom:161.640000px;}
.y33{bottom:162.570000px;}
.ycf{bottom:164.700000px;}
.y9e{bottom:166.320000px;}
.y123{bottom:169.200000px;}
.y6f{bottom:170.280000px;}
.y28{bottom:172.980000px;}
.yf3{bottom:174.420000px;}
.y170{bottom:178.200000px;}
.y198{bottom:179.460000px;}
.yce{bottom:182.520000px;}
.y9d{bottom:184.140000px;}
.y1e9{bottom:184.680000px;}
.y122{bottom:187.020000px;}
.y158{bottom:187.200000px;}
.y6e{bottom:188.280000px;}
.y27{bottom:192.780000px;}
.y16f{bottom:196.200000px;}
.y197{bottom:197.280000px;}
.ycd{bottom:200.340000px;}
.yf2{bottom:201.240000px;}
.y9c{bottom:201.960000px;}
.y121{bottom:204.840000px;}
.y157{bottom:205.020000px;}
.y1e8{bottom:210.450000px;}
.y31{bottom:211.215000px;}
.y16e{bottom:214.050000px;}
.y6d{bottom:215.130000px;}
.y196{bottom:215.310000px;}
.ycc{bottom:218.190000px;}
.yf1{bottom:219.090000px;}
.y9b{bottom:219.990000px;}
.y13c{bottom:222.690000px;}
.y156{bottom:222.870000px;}
.y26{bottom:227.550000px;}
.y120{bottom:231.690000px;}
.y16d{bottom:231.870000px;}
.y6c{bottom:232.950000px;}
.y195{bottom:233.130000px;}
.y1e7{bottom:236.370000px;}
.yf0{bottom:237.090000px;}
.y13b{bottom:240.510000px;}
.y9a{bottom:241.965000px;}
.ycb{bottom:245.190000px;}
.y2d{bottom:245.520000px;}
.y16c{bottom:249.330000px;}
.y11f{bottom:249.510000px;}
.y155{bottom:249.690000px;}
.y6b{bottom:250.770000px;}
.y194{bottom:250.950000px;}
.yef{bottom:254.910000px;}
.y13a{bottom:258.510000px;}
.y2f{bottom:259.995000px;}
.y39{bottom:261.750000px;}
.y1e6{bottom:262.110000px;}
.y25{bottom:262.470000px;}
.yca{bottom:263.010000px;}
.y16b{bottom:267.150000px;}
.y11e{bottom:267.510000px;}
.y6a{bottom:268.590000px;}
.y193{bottom:268.770000px;}
.y99{bottom:269.505000px;}
.yee{bottom:272.730000px;}
.yc9{bottom:280.830000px;}
.y11d{bottom:285.330000px;}
.y154{bottom:285.510000px;}
.y69{bottom:286.410000px;}
.y192{bottom:286.590000px;}
.y1c0{bottom:288.570000px;}
.y2e{bottom:290.235000px;}
.y38{bottom:290.910000px;}
.y16a{bottom:294.510000px;}
.yec{bottom:294.705000px;}
.y1e5{bottom:294.870000px;}
.y98{bottom:297.045000px;}
.y24{bottom:297.210000px;}
.yc8{bottom:298.650000px;}
.y11c{bottom:303.150000px;}
.y153{bottom:303.330000px;}
.y191{bottom:304.410000px;}
.y169{bottom:312.330000px;}
.y68{bottom:313.410000px;}
.yc7{bottom:316.470000px;}
.y11b{bottom:320.970000px;}
.y152{bottom:321.150000px;}
.y1bf{bottom:321.510000px;}
.y1e4{bottom:321.690000px;}
.y190{bottom:322.050000px;}
.y23{bottom:322.950000px;}
.yeb{bottom:323.325000px;}
.y97{bottom:324.765000px;}
.y168{bottom:330.150000px;}
.y67{bottom:331.230000px;}
.yc6{bottom:334.290000px;}
.y11a{bottom:338.790000px;}
.y151{bottom:338.970000px;}
.y1be{bottom:339.330000px;}
.y36{bottom:339.510000px;}
.y18f{bottom:339.870000px;}
.y167{bottom:347.970000px;}
.y22{bottom:348.690000px;}
.y66{bottom:349.050000px;}
.yea{bottom:351.225000px;}
.y96{bottom:352.305000px;}
.y150{bottom:356.430000px;}
.yc5{bottom:356.445000px;}
.y139{bottom:356.610000px;}
.y1bd{bottom:357.150000px;}
.y1e3{bottom:357.510000px;}
.y18e{bottom:357.690000px;}
.y119{bottom:365.610000px;}
.y166{bottom:365.790000px;}
.y65{bottom:366.870000px;}
.y21{bottom:374.610000px;}
.y1bc{bottom:374.970000px;}
.y1e2{bottom:375.330000px;}
.ye9{bottom:378.945000px;}
.y94{bottom:379.845000px;}
.y138{bottom:383.250000px;}
.y118{bottom:383.610000px;}
.y64{bottom:384.690000px;}
.y18d{bottom:384.870000px;}
.yc3{bottom:384.885000px;}
.y34{bottom:388.290000px;}
.y1bb{bottom:392.790000px;}
.y1e1{bottom:393.150000px;}
.y20{bottom:400.350000px;}
.y117{bottom:401.430000px;}
.y14f{bottom:401.610000px;}
.y18c{bottom:402.690000px;}
.ye8{bottom:406.665000px;}
.y92{bottom:407.565000px;}
.y1ba{bottom:410.610000px;}
.y1e0{bottom:410.970000px;}
.y63{bottom:411.690000px;}
.yc1{bottom:413.145000px;}
.y116{bottom:419.250000px;}
.y18b{bottom:420.690000px;}
.y137{bottom:428.250000px;}
.y14e{bottom:428.430000px;}
.y1b9{bottom:428.610000px;}
.y1df{bottom:428.790000px;}
.y62{bottom:429.510000px;}
.y1e{bottom:433.110000px;}
.ye6{bottom:434.205000px;}
.y90{bottom:435.105000px;}
.y32{bottom:436.890000px;}
.y115{bottom:437.070000px;}
.y18a{bottom:438.510000px;}
.yc0{bottom:441.615000px;}
.y136{bottom:446.115000px;}
.y14d{bottom:446.295000px;}
.y1b8{bottom:446.475000px;}
.y1de{bottom:446.655000px;}
.y61{bottom:447.375000px;}
.y114{bottom:454.935000px;}
.y189{bottom:456.375000px;}
.y1d{bottom:459.975000px;}
.ye5{bottom:461.955000px;}
.y8f{bottom:462.675000px;}
.y135{bottom:463.935000px;}
.y14c{bottom:464.115000px;}
.y1b7{bottom:464.295000px;}
.y1dd{bottom:464.655000px;}
.y60{bottom:465.195000px;}
.ybe{bottom:469.335000px;}
.y188{bottom:474.195000px;}
.y113{bottom:481.935000px;}
.y1dc{bottom:482.475000px;}
.y5f{bottom:483.015000px;}
.y30{bottom:485.715000px;}
.y1c{bottom:486.795000px;}
.ye4{bottom:489.855000px;}
.y8e{bottom:490.395000px;}
.y134{bottom:490.935000px;}
.y1b6{bottom:491.115000px;}
.y187{bottom:492.015000px;}
.y112{bottom:499.755000px;}
.y14b{bottom:499.935000px;}
.y1db{bottom:500.295000px;}
.y5e{bottom:500.835000px;}
.ybd{bottom:502.995000px;}
.y133{bottom:508.755000px;}
.y165{bottom:508.935000px;}
.y186{bottom:509.835000px;}
.y1b{bottom:513.795000px;}
.ye3{bottom:517.395000px;}
.y14a{bottom:517.755000px;}
.y1da{bottom:518.115000px;}
.y5d{bottom:518.835000px;}
.y8d{bottom:523.155000px;}
.y111{bottom:526.575000px;}
.y164{bottom:526.755000px;}
.y1b5{bottom:526.935000px;}
.y185{bottom:527.835000px;}
.ybc{bottom:530.175000px;}
.y132{bottom:535.575000px;}
.y1d9{bottom:535.935000px;}
.y5c{bottom:536.655000px;}
.y1a{bottom:540.615000px;}
.y110{bottom:544.395000px;}
.y163{bottom:544.575000px;}
.y1b4{bottom:544.755000px;}
.y184{bottom:545.295000px;}
.ybb{bottom:547.995000px;}
.y8c{bottom:550.515000px;}
.y131{bottom:553.395000px;}
.y1d8{bottom:553.935000px;}
.y5b{bottom:556.455000px;}
.y10f{bottom:562.215000px;}
.y162{bottom:562.395000px;}
.y1b3{bottom:562.575000px;}
.ye2{bottom:562.755000px;}
.y183{bottom:563.115000px;}
.yba{bottom:565.815000px;}
.y19{bottom:567.075000px;}
.y1f{bottom:567.435000px;}
.y8b{bottom:568.335000px;}
.y130{bottom:571.215000px;}
.y1d7{bottom:571.755000px;}
.y10e{bottom:580.035000px;}
.y149{bottom:580.215000px;}
.y1b2{bottom:580.395000px;}
.yb9{bottom:583.635000px;}
.y8a{bottom:586.155000px;}
.y12f{bottom:589.035000px;}
.y5a{bottom:589.215000px;}
.y1d6{bottom:589.575000px;}
.y182{bottom:590.295000px;}
.ye1{bottom:590.655000px;}
.y18{bottom:595.515000px;}
.y10d{bottom:598.035000px;}
.yb8{bottom:601.635000px;}
.y89{bottom:603.975000px;}
.y59{bottom:607.035000px;}
.y1b1{bottom:607.215000px;}
.y1d5{bottom:607.395000px;}
.y181{bottom:608.115000px;}
.y12e{bottom:616.035000px;}
.yb7{bottom:619.455000px;}
.y17{bottom:621.795000px;}
.y10c{bottom:624.855000px;}
.y58{bottom:625.035000px;}
.y1d4{bottom:625.215000px;}
.y180{bottom:626.115000px;}
.y12d{bottom:633.855000px;}
.ye0{bottom:636.015000px;}
.yb6{bottom:637.275000px;}
.y10b{bottom:642.675000px;}
.y57{bottom:642.855000px;}
.y1b0{bottom:643.035000px;}
.y17f{bottom:643.935000px;}
.y88{bottom:648.615000px;}
.y12c{bottom:651.675000px;}
.y16{bottom:652.755000px;}
.y10a{bottom:660.495000px;}
.y56{bottom:660.675000px;}
.y1af{bottom:660.855000px;}
.y1d3{bottom:661.035000px;}
.y17e{bottom:661.755000px;}
.ydf{bottom:663.735000px;}
.yb5{bottom:664.095000px;}
.y87{bottom:666.615000px;}
.y12b{bottom:669.495000px;}
.y109{bottom:678.345000px;}
.y55{bottom:678.525000px;}
.y1ae{bottom:678.705000px;}
.y1d2{bottom:678.885000px;}
.y17d{bottom:679.605000px;}
.yb4{bottom:681.945000px;}
.y86{bottom:684.465000px;}
.y148{bottom:687.345000px;}
.yde{bottom:691.485000px;}
.y108{bottom:696.165000px;}
.y54{bottom:696.345000px;}
.y1ad{bottom:696.525000px;}
.y1d1{bottom:696.705000px;}
.y17c{bottom:697.425000px;}
.yb3{bottom:699.945000px;}
.y85{bottom:702.285000px;}
.y15{bottom:709.125000px;}
.y107{bottom:714.165000px;}
.y1d0{bottom:714.525000px;}
.y17b{bottom:715.245000px;}
.yb2{bottom:717.765000px;}
.ydd{bottom:719.205000px;}
.y84{bottom:720.105000px;}
.y53{bottom:723.165000px;}
.y1ac{bottom:723.345000px;}
.y106{bottom:731.985000px;}
.y12a{bottom:732.165000px;}
.y1cf{bottom:732.345000px;}
.y17a{bottom:733.245000px;}
.yb1{bottom:735.585000px;}
.y83{bottom:737.925000px;}
.y52{bottom:741.165000px;}
.ydc{bottom:746.925000px;}
.y161{bottom:749.625000px;}
.y105{bottom:749.805000px;}
.y14{bottom:749.985000px;}
.y1ce{bottom:750.165000px;}
.y179{bottom:751.065000px;}
.y82{bottom:755.745000px;}
.y51{bottom:758.985000px;}
.y1ab{bottom:759.165000px;}
.yb0{bottom:762.405000px;}
.y160{bottom:767.445000px;}
.y147{bottom:767.805000px;}
.y1cd{bottom:768.165000px;}
.y178{bottom:768.885000px;}
.ydb{bottom:774.645000px;}
.y104{bottom:776.265000px;}
.y50{bottom:776.805000px;}
.y1aa{bottom:776.985000px;}
.y81{bottom:777.885000px;}
.yaf{bottom:780.225000px;}
.y146{bottom:785.625000px;}
.y1cc{bottom:785.985000px;}
.y177{bottom:786.345000px;}
.y103{bottom:794.085000px;}
.y4f{bottom:794.625000px;}
.y1a9{bottom:794.805000px;}
.yae{bottom:798.045000px;}
.y13{bottom:800.565000px;}
.yda{bottom:802.185000px;}
.y145{bottom:803.445000px;}
.y1cb{bottom:803.805000px;}
.y176{bottom:804.165000px;}
.y80{bottom:805.425000px;}
.y4e{bottom:812.445000px;}
.y1a8{bottom:812.625000px;}
.yad{bottom:816.045000px;}
.y102{bottom:821.445000px;}
.y1ca{bottom:821.625000px;}
.y175{bottom:824.505000px;}
.y12{bottom:828.465000px;}
.yd9{bottom:830.085000px;}
.y4d{bottom:830.445000px;}
.y7e{bottom:832.965000px;}
.y101{bottom:839.265000px;}
.y1c9{bottom:839.445000px;}
.yac{bottom:842.865000px;}
.y15f{bottom:847.905000px;}
.y129{bottom:848.265000px;}
.y1a7{bottom:848.445000px;}
.y100{bottom:857.085000px;}
.y4c{bottom:857.265000px;}
.y1c8{bottom:857.445000px;}
.yd7{bottom:857.805000px;}
.y7c{bottom:860.685000px;}
.y15e{bottom:865.725000px;}
.y128{bottom:866.085000px;}
.y1a6{bottom:866.265000px;}
.y11{bottom:874.545000px;}
.yff{bottom:874.905000px;}
.y4b{bottom:875.085000px;}
.y1c7{bottom:875.265000px;}
.yab{bottom:878.505000px;}
.y15d{bottom:883.545000px;}
.y127{bottom:883.905000px;}
.y1a5{bottom:884.085000px;}
.y4a{bottom:892.905000px;}
.y1c6{bottom:893.085000px;}
.y7b{bottom:893.445000px;}
.yaa{bottom:896.325000px;}
.y10{bottom:899.745000px;}
.yfe{bottom:901.365000px;}
.y144{bottom:901.725000px;}
.y1a4{bottom:901.905000px;}
.yd5{bottom:903.165000px;}
.y49{bottom:910.770000px;}
.y1c5{bottom:910.950000px;}
.ya9{bottom:918.510000px;}
.yfd{bottom:919.230000px;}
.yf{bottom:919.590000px;}
.y1a3{bottom:919.770000px;}
.y7a{bottom:920.670000px;}
.y48{bottom:928.590000px;}
.y1c4{bottom:928.770000px;}
.yd4{bottom:930.930000px;}
.y143{bottom:937.590000px;}
.y79{bottom:938.670000px;}
.ye{bottom:939.570000px;}
.ya8{bottom:946.230000px;}
.y47{bottom:946.590000px;}
.y1a2{bottom:955.230000px;}
.y142{bottom:955.410000px;}
.y174{bottom:955.590000px;}
.y78{bottom:956.490000px;}
.yd{bottom:959.010000px;}
.yd3{bottom:964.050000px;}
.y46{bottom:964.410000px;}
.y1c3{bottom:964.590000px;}
.y1a1{bottom:973.050000px;}
.y141{bottom:973.230000px;}
.y15c{bottom:973.410000px;}
.ya7{bottom:973.950000px;}
.y77{bottom:974.310000px;}
.yc{bottom:979.170000px;}
.yfc{bottom:982.230000px;}
.y1c2{bottom:982.410000px;}
.y1f4{bottom:984.390000px;}
.y45{bottom:991.230000px;}
.y76{bottom:991.770000px;}
.y140{bottom:999.690000px;}
.yfb{bottom:1000.050000px;}
.y1a0{bottom:1000.230000px;}
.ya6{bottom:1001.490000px;}
.y44{bottom:1009.050000px;}
.y75{bottom:1009.590000px;}
.y1f3{bottom:1010.130000px;}
.y13f{bottom:1017.510000px;}
.yfa{bottom:1017.870000px;}
.y19f{bottom:1018.050000px;}
.yb{bottom:1019.130000px;}
.y43{bottom:1026.870000px;}
.ya5{bottom:1029.210000px;}
.y74{bottom:1029.930000px;}
.ya{bottom:1031.190000px;}
.y13e{bottom:1035.510000px;}
.yf9{bottom:1035.870000px;}
.y9{bottom:1043.250000px;}
.y126{bottom:1044.510000px;}
.y42{bottom:1044.870000px;}
.yf8{bottom:1053.690000px;}
.y19e{bottom:1053.870000px;}
.y8{bottom:1055.310000px;}
.y1f2{bottom:1061.790000px;}
.ya4{bottom:1062.330000px;}
.y41{bottom:1062.690000px;}
.y7{bottom:1069.890000px;}
.y19d{bottom:1071.690000px;}
.y40{bottom:1080.510000px;}
.y1f1{bottom:1087.530000px;}
.ya3{bottom:1089.510000px;}
.y6{bottom:1095.450000px;}
.y3f{bottom:1098.330000px;}
.ya2{bottom:1107.330000px;}
.y1f0{bottom:1113.270000px;}
.y3e{bottom:1116.150000px;}
.y73{bottom:1125.150000px;}
.y3d{bottom:1133.970000px;}
.y1ef{bottom:1139.010000px;}
.y72{bottom:1142.970000px;}
.yf7{bottom:1152.000000px;}
.y3c{bottom:1161.000000px;}
.y1ee{bottom:1164.960000px;}
.y19c{bottom:1178.460000px;}
.y3b{bottom:1178.820000px;}
.y1ed{bottom:1190.700000px;}
.y19b{bottom:1196.280000px;}
.y3a{bottom:1196.640000px;}
.h17{height:26.805000px;}
.h15{height:26.820000px;}
.h19{height:26.841000px;}
.h18{height:26.985000px;}
.h16{height:27.000000px;}
.h21{height:27.021000px;}
.h1f{height:27.030000px;}
.h1d{height:27.036000px;}
.h1a{height:27.525000px;}
.h1c{height:27.741000px;}
.h22{height:27.885000px;}
.h2{height:31.135500px;}
.h26{height:39.471680px;}
.h27{height:40.025391px;}
.h7{height:40.985156px;}
.hc{height:41.535703px;}
.h20{height:44.625000px;}
.h1e{height:44.640000px;}
.h11{height:47.381836px;}
.h23{height:52.971680px;}
.h3{height:52.998047px;}
.hf{height:54.421875px;}
.h28{height:55.503491px;}
.h13{height:58.621992px;}
.h8{height:58.651172px;}
.h14{height:58.763250px;}
.h25{height:59.074453px;}
.h1b{height:59.092031px;}
.h24{height:59.254453px;}
.h9{height:60.226875px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.hb{height:72.326250px;}
.h10{height:78.367500px;}
.ha{height:82.676953px;}
.h5{height:84.898125px;}
.h6{height:90.703125px;}
.h12{height:317.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w12{width:80.625000px;}
.w13{width:86.610000px;}
.wc{width:93.816000px;}
.w10{width:96.840000px;}
.wf{width:107.316000px;}
.wd{width:120.780000px;}
.w8{width:122.925000px;}
.w9{width:123.141000px;}
.wa{width:123.150000px;}
.w7{width:123.870000px;}
.w5{width:124.005000px;}
.w6{width:124.041000px;}
.wb{width:155.905500px;}
.we{width:161.485500px;}
.w11{width:202.875000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x11{left:10.800000px;}
.x31{left:12.420000px;}
.x2f{left:14.400000px;}
.x2b{left:17.640000px;}
.x24{left:21.060000px;}
.x34{left:22.665000px;}
.x38{left:24.120000px;}
.x2d{left:25.920000px;}
.x29{left:27.720000px;}
.x26{left:29.520000px;}
.x1a{left:31.125000px;}
.x1e{left:32.385000px;}
.x21{left:33.645000px;}
.x1b{left:35.670000px;}
.x27{left:36.720000px;}
.x10{left:38.340000px;}
.x20{left:40.125000px;}
.x17{left:41.220000px;}
.x1f{left:43.005000px;}
.x1d{left:44.100000px;}
.x1{left:45.364500px;}
.x2c{left:46.800000px;}
.x12{left:49.140000px;}
.x22{left:50.764500px;}
.x18{left:51.870000px;}
.x5{left:54.000000px;}
.x16{left:55.290000px;}
.x36{left:56.685000px;}
.x1c{left:58.170000px;}
.x37{left:66.045000px;}
.x3a{left:69.825000px;}
.xb{left:71.820000px;}
.x33{left:73.605000px;}
.x35{left:77.385000px;}
.x32{left:80.445000px;}
.x3b{left:87.105000px;}
.x39{left:89.445000px;}
.x3e{left:108.036000px;}
.xc{left:138.636000px;}
.x23{left:207.390000px;}
.x28{left:215.490000px;}
.xd{left:218.730000px;}
.x2{left:222.370500px;}
.x8{left:281.775000px;}
.x6{left:285.735000px;}
.x9{left:288.975000px;}
.x25{left:301.935000px;}
.xe{left:314.355000px;}
.x2a{left:323.535000px;}
.x7{left:364.395000px;}
.xa{left:378.795000px;}
.x13{left:469.560000px;}
.x19{left:471.000000px;}
.xf{left:473.505000px;}
.x3c{left:500.505000px;}
.x3d{left:527.505000px;}
.x14{left:594.300000px;}
.x2e{left:674.250000px;}
.x15{left:719.070000px;}
.x30{left:755.610000px;}
.x4{left:767.490000px;}
@media print{
.v1{vertical-align:-68.480000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v2{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.752000pt;}
.ls1b{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls1e{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls11{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls8{letter-spacing:0.016000pt;}
.ls9{letter-spacing:0.096000pt;}
.ls18{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.133120pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.832000pt;}
.ls16{letter-spacing:2.720000pt;}
.lse{letter-spacing:8.480000pt;}
.ls12{letter-spacing:9.120000pt;}
.ls17{letter-spacing:12.320000pt;}
.lsf{letter-spacing:16.800000pt;}
.ls15{letter-spacing:17.440000pt;}
.ls13{letter-spacing:22.496000pt;}
.ls10{letter-spacing:46.816000pt;}
.ls14{letter-spacing:100.160000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws3{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.080000pt;}
.ws1{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws17{word-spacing:-12.832000pt;}
.ws7{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.192000pt;}
.ws10{word-spacing:-12.112000pt;}
.wse{word-spacing:-12.096000pt;}
.wsc{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.wsd{word-spacing:-11.888000pt;}
.ws14{word-spacing:-11.808000pt;}
.ws15{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.472000pt;}
.ws12{word-spacing:-11.264000pt;}
.wsb{word-spacing:-11.248000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws9{word-spacing:-7.872000pt;}
.ws6{word-spacing:0.000000pt;}
._34{margin-left:-11.872000pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.890667pt;}
._7{width:1.840000pt;}
._e{width:2.750933pt;}
._f{width:3.665493pt;}
._8{width:4.656000pt;}
._a{width:6.165333pt;}
._9{width:7.056000pt;}
._10{width:8.081707pt;}
._11{width:8.993920pt;}
._b{width:10.128000pt;}
._c{width:11.061333pt;}
._17{width:12.933333pt;}
._6{width:14.064000pt;}
._1f{width:15.045333pt;}
._13{width:16.352000pt;}
._12{width:17.296000pt;}
._1a{width:18.432000pt;}
._18{width:19.776000pt;}
._19{width:21.285333pt;}
._d{width:23.040000pt;}
._1b{width:24.096000pt;}
._16{width:25.200000pt;}
._26{width:26.853333pt;}
._15{width:27.792000pt;}
._14{width:29.088000pt;}
._23{width:30.240000pt;}
._21{width:31.584000pt;}
._2e{width:32.618667pt;}
._29{width:33.600000pt;}
._28{width:35.040000pt;}
._2c{width:35.973333pt;}
._31{width:37.034667pt;}
._22{width:38.304000pt;}
._20{width:40.512000pt;}
._2a{width:41.568000pt;}
._1c{width:43.104000pt;}
._27{width:44.368000pt;}
._1e{width:45.360000pt;}
._1d{width:46.560000pt;}
._2f{width:48.912000pt;}
._30{width:50.400000pt;}
._33{width:52.704000pt;}
._2d{width:61.392000pt;}
._2b{width:62.928000pt;}
._24{width:66.144000pt;}
._25{width:67.290667pt;}
._3{width:69.504000pt;}
._32{width:100.074667pt;}
._4{width:140.320000pt;}
._2{width:917.546667pt;}
._5{width:1088.266667pt;}
.fs9{font-size:32.000000pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.720000pt;}
.y93{bottom:8.946667pt;}
.y7d{bottom:8.960000pt;}
.y91{bottom:8.986667pt;}
.y95{bottom:9.106667pt;}
.y7f{bottom:9.120000pt;}
.ye7{bottom:9.146667pt;}
.yd6{bottom:9.160000pt;}
.yc4{bottom:9.586667pt;}
.ybf{bottom:9.600000pt;}
.yc2{bottom:9.746667pt;}
.yed{bottom:9.906667pt;}
.y4{bottom:13.920000pt;}
.y2{bottom:16.800000pt;}
.yd8{bottom:24.800000pt;}
.y5{bottom:35.360000pt;}
.y1{bottom:53.920000pt;}
.y37{bottom:57.946667pt;}
.y2c{bottom:90.240000pt;}
.yd2{bottom:90.720000pt;}
.y13d{bottom:94.720000pt;}
.y1ec{bottom:95.360000pt;}
.ya1{bottom:100.160000pt;}
.y35{bottom:101.306667pt;}
.y15b{bottom:102.880000pt;}
.y2b{bottom:106.080000pt;}
.yd1{bottom:106.560000pt;}
.yf6{bottom:107.520000pt;}
.y125{bottom:110.560000pt;}
.y173{bottom:110.880000pt;}
.y1c1{bottom:112.000000pt;}
.ya0{bottom:116.160000pt;}
.y1eb{bottom:118.400000pt;}
.y15a{bottom:118.720000pt;}
.y71{bottom:119.680000pt;}
.y2a{bottom:121.920000pt;}
.yf5{bottom:123.360000pt;}
.y124{bottom:126.400000pt;}
.y172{bottom:126.720000pt;}
.y19a{bottom:127.840000pt;}
.yd0{bottom:130.560000pt;}
.y9f{bottom:132.000000pt;}
.y159{bottom:134.560000pt;}
.y70{bottom:135.520000pt;}
.y29{bottom:137.920000pt;}
.yf4{bottom:139.200000pt;}
.y1ea{bottom:141.280000pt;}
.y171{bottom:142.560000pt;}
.y199{bottom:143.680000pt;}
.y33{bottom:144.506667pt;}
.ycf{bottom:146.400000pt;}
.y9e{bottom:147.840000pt;}
.y123{bottom:150.400000pt;}
.y6f{bottom:151.360000pt;}
.y28{bottom:153.760000pt;}
.yf3{bottom:155.040000pt;}
.y170{bottom:158.400000pt;}
.y198{bottom:159.520000pt;}
.yce{bottom:162.240000pt;}
.y9d{bottom:163.680000pt;}
.y1e9{bottom:164.160000pt;}
.y122{bottom:166.240000pt;}
.y158{bottom:166.400000pt;}
.y6e{bottom:167.360000pt;}
.y27{bottom:171.360000pt;}
.y16f{bottom:174.400000pt;}
.y197{bottom:175.360000pt;}
.ycd{bottom:178.080000pt;}
.yf2{bottom:178.880000pt;}
.y9c{bottom:179.520000pt;}
.y121{bottom:182.080000pt;}
.y157{bottom:182.240000pt;}
.y1e8{bottom:187.066667pt;}
.y31{bottom:187.746667pt;}
.y16e{bottom:190.266667pt;}
.y6d{bottom:191.226667pt;}
.y196{bottom:191.386667pt;}
.ycc{bottom:193.946667pt;}
.yf1{bottom:194.746667pt;}
.y9b{bottom:195.546667pt;}
.y13c{bottom:197.946667pt;}
.y156{bottom:198.106667pt;}
.y26{bottom:202.266667pt;}
.y120{bottom:205.946667pt;}
.y16d{bottom:206.106667pt;}
.y6c{bottom:207.066667pt;}
.y195{bottom:207.226667pt;}
.y1e7{bottom:210.106667pt;}
.yf0{bottom:210.746667pt;}
.y13b{bottom:213.786667pt;}
.y9a{bottom:215.080000pt;}
.ycb{bottom:217.946667pt;}
.y2d{bottom:218.240000pt;}
.y16c{bottom:221.626667pt;}
.y11f{bottom:221.786667pt;}
.y155{bottom:221.946667pt;}
.y6b{bottom:222.906667pt;}
.y194{bottom:223.066667pt;}
.yef{bottom:226.586667pt;}
.y13a{bottom:229.786667pt;}
.y2f{bottom:231.106667pt;}
.y39{bottom:232.666667pt;}
.y1e6{bottom:232.986667pt;}
.y25{bottom:233.306667pt;}
.yca{bottom:233.786667pt;}
.y16b{bottom:237.466667pt;}
.y11e{bottom:237.786667pt;}
.y6a{bottom:238.746667pt;}
.y193{bottom:238.906667pt;}
.y99{bottom:239.560000pt;}
.yee{bottom:242.426667pt;}
.yc9{bottom:249.626667pt;}
.y11d{bottom:253.626667pt;}
.y154{bottom:253.786667pt;}
.y69{bottom:254.586667pt;}
.y192{bottom:254.746667pt;}
.y1c0{bottom:256.506667pt;}
.y2e{bottom:257.986667pt;}
.y38{bottom:258.586667pt;}
.y16a{bottom:261.786667pt;}
.yec{bottom:261.960000pt;}
.y1e5{bottom:262.106667pt;}
.y98{bottom:264.040000pt;}
.y24{bottom:264.186667pt;}
.yc8{bottom:265.466667pt;}
.y11c{bottom:269.466667pt;}
.y153{bottom:269.626667pt;}
.y191{bottom:270.586667pt;}
.y169{bottom:277.626667pt;}
.y68{bottom:278.586667pt;}
.yc7{bottom:281.306667pt;}
.y11b{bottom:285.306667pt;}
.y152{bottom:285.466667pt;}
.y1bf{bottom:285.786667pt;}
.y1e4{bottom:285.946667pt;}
.y190{bottom:286.266667pt;}
.y23{bottom:287.066667pt;}
.yeb{bottom:287.400000pt;}
.y97{bottom:288.680000pt;}
.y168{bottom:293.466667pt;}
.y67{bottom:294.426667pt;}
.yc6{bottom:297.146667pt;}
.y11a{bottom:301.146667pt;}
.y151{bottom:301.306667pt;}
.y1be{bottom:301.626667pt;}
.y36{bottom:301.786667pt;}
.y18f{bottom:302.106667pt;}
.y167{bottom:309.306667pt;}
.y22{bottom:309.946667pt;}
.y66{bottom:310.266667pt;}
.yea{bottom:312.200000pt;}
.y96{bottom:313.160000pt;}
.y150{bottom:316.826667pt;}
.yc5{bottom:316.840000pt;}
.y139{bottom:316.986667pt;}
.y1bd{bottom:317.466667pt;}
.y1e3{bottom:317.786667pt;}
.y18e{bottom:317.946667pt;}
.y119{bottom:324.986667pt;}
.y166{bottom:325.146667pt;}
.y65{bottom:326.106667pt;}
.y21{bottom:332.986667pt;}
.y1bc{bottom:333.306667pt;}
.y1e2{bottom:333.626667pt;}
.ye9{bottom:336.840000pt;}
.y94{bottom:337.640000pt;}
.y138{bottom:340.666667pt;}
.y118{bottom:340.986667pt;}
.y64{bottom:341.946667pt;}
.y18d{bottom:342.106667pt;}
.yc3{bottom:342.120000pt;}
.y34{bottom:345.146667pt;}
.y1bb{bottom:349.146667pt;}
.y1e1{bottom:349.466667pt;}
.y20{bottom:355.866667pt;}
.y117{bottom:356.826667pt;}
.y14f{bottom:356.986667pt;}
.y18c{bottom:357.946667pt;}
.ye8{bottom:361.480000pt;}
.y92{bottom:362.280000pt;}
.y1ba{bottom:364.986667pt;}
.y1e0{bottom:365.306667pt;}
.y63{bottom:365.946667pt;}
.yc1{bottom:367.240000pt;}
.y116{bottom:372.666667pt;}
.y18b{bottom:373.946667pt;}
.y137{bottom:380.666667pt;}
.y14e{bottom:380.826667pt;}
.y1b9{bottom:380.986667pt;}
.y1df{bottom:381.146667pt;}
.y62{bottom:381.786667pt;}
.y1e{bottom:384.986667pt;}
.ye6{bottom:385.960000pt;}
.y90{bottom:386.760000pt;}
.y32{bottom:388.346667pt;}
.y115{bottom:388.506667pt;}
.y18a{bottom:389.786667pt;}
.yc0{bottom:392.546667pt;}
.y136{bottom:396.546667pt;}
.y14d{bottom:396.706667pt;}
.y1b8{bottom:396.866667pt;}
.y1de{bottom:397.026667pt;}
.y61{bottom:397.666667pt;}
.y114{bottom:404.386667pt;}
.y189{bottom:405.666667pt;}
.y1d{bottom:408.866667pt;}
.ye5{bottom:410.626667pt;}
.y8f{bottom:411.266667pt;}
.y135{bottom:412.386667pt;}
.y14c{bottom:412.546667pt;}
.y1b7{bottom:412.706667pt;}
.y1dd{bottom:413.026667pt;}
.y60{bottom:413.506667pt;}
.ybe{bottom:417.186667pt;}
.y188{bottom:421.506667pt;}
.y113{bottom:428.386667pt;}
.y1dc{bottom:428.866667pt;}
.y5f{bottom:429.346667pt;}
.y30{bottom:431.746667pt;}
.y1c{bottom:432.706667pt;}
.ye4{bottom:435.426667pt;}
.y8e{bottom:435.906667pt;}
.y134{bottom:436.386667pt;}
.y1b6{bottom:436.546667pt;}
.y187{bottom:437.346667pt;}
.y112{bottom:444.226667pt;}
.y14b{bottom:444.386667pt;}
.y1db{bottom:444.706667pt;}
.y5e{bottom:445.186667pt;}
.ybd{bottom:447.106667pt;}
.y133{bottom:452.226667pt;}
.y165{bottom:452.386667pt;}
.y186{bottom:453.186667pt;}
.y1b{bottom:456.706667pt;}
.ye3{bottom:459.906667pt;}
.y14a{bottom:460.226667pt;}
.y1da{bottom:460.546667pt;}
.y5d{bottom:461.186667pt;}
.y8d{bottom:465.026667pt;}
.y111{bottom:468.066667pt;}
.y164{bottom:468.226667pt;}
.y1b5{bottom:468.386667pt;}
.y185{bottom:469.186667pt;}
.ybc{bottom:471.266667pt;}
.y132{bottom:476.066667pt;}
.y1d9{bottom:476.386667pt;}
.y5c{bottom:477.026667pt;}
.y1a{bottom:480.546667pt;}
.y110{bottom:483.906667pt;}
.y163{bottom:484.066667pt;}
.y1b4{bottom:484.226667pt;}
.y184{bottom:484.706667pt;}
.ybb{bottom:487.106667pt;}
.y8c{bottom:489.346667pt;}
.y131{bottom:491.906667pt;}
.y1d8{bottom:492.386667pt;}
.y5b{bottom:494.626667pt;}
.y10f{bottom:499.746667pt;}
.y162{bottom:499.906667pt;}
.y1b3{bottom:500.066667pt;}
.ye2{bottom:500.226667pt;}
.y183{bottom:500.546667pt;}
.yba{bottom:502.946667pt;}
.y19{bottom:504.066667pt;}
.y1f{bottom:504.386667pt;}
.y8b{bottom:505.186667pt;}
.y130{bottom:507.746667pt;}
.y1d7{bottom:508.226667pt;}
.y10e{bottom:515.586667pt;}
.y149{bottom:515.746667pt;}
.y1b2{bottom:515.906667pt;}
.yb9{bottom:518.786667pt;}
.y8a{bottom:521.026667pt;}
.y12f{bottom:523.586667pt;}
.y5a{bottom:523.746667pt;}
.y1d6{bottom:524.066667pt;}
.y182{bottom:524.706667pt;}
.ye1{bottom:525.026667pt;}
.y18{bottom:529.346667pt;}
.y10d{bottom:531.586667pt;}
.yb8{bottom:534.786667pt;}
.y89{bottom:536.866667pt;}
.y59{bottom:539.586667pt;}
.y1b1{bottom:539.746667pt;}
.y1d5{bottom:539.906667pt;}
.y181{bottom:540.546667pt;}
.y12e{bottom:547.586667pt;}
.yb7{bottom:550.626667pt;}
.y17{bottom:552.706667pt;}
.y10c{bottom:555.426667pt;}
.y58{bottom:555.586667pt;}
.y1d4{bottom:555.746667pt;}
.y180{bottom:556.546667pt;}
.y12d{bottom:563.426667pt;}
.ye0{bottom:565.346667pt;}
.yb6{bottom:566.466667pt;}
.y10b{bottom:571.266667pt;}
.y57{bottom:571.426667pt;}
.y1b0{bottom:571.586667pt;}
.y17f{bottom:572.386667pt;}
.y88{bottom:576.546667pt;}
.y12c{bottom:579.266667pt;}
.y16{bottom:580.226667pt;}
.y10a{bottom:587.106667pt;}
.y56{bottom:587.266667pt;}
.y1af{bottom:587.426667pt;}
.y1d3{bottom:587.586667pt;}
.y17e{bottom:588.226667pt;}
.ydf{bottom:589.986667pt;}
.yb5{bottom:590.306667pt;}
.y87{bottom:592.546667pt;}
.y12b{bottom:595.106667pt;}
.y109{bottom:602.973333pt;}
.y55{bottom:603.133333pt;}
.y1ae{bottom:603.293333pt;}
.y1d2{bottom:603.453333pt;}
.y17d{bottom:604.093333pt;}
.yb4{bottom:606.173333pt;}
.y86{bottom:608.413333pt;}
.y148{bottom:610.973333pt;}
.yde{bottom:614.653333pt;}
.y108{bottom:618.813333pt;}
.y54{bottom:618.973333pt;}
.y1ad{bottom:619.133333pt;}
.y1d1{bottom:619.293333pt;}
.y17c{bottom:619.933333pt;}
.yb3{bottom:622.173333pt;}
.y85{bottom:624.253333pt;}
.y15{bottom:630.333333pt;}
.y107{bottom:634.813333pt;}
.y1d0{bottom:635.133333pt;}
.y17b{bottom:635.773333pt;}
.yb2{bottom:638.013333pt;}
.ydd{bottom:639.293333pt;}
.y84{bottom:640.093333pt;}
.y53{bottom:642.813333pt;}
.y1ac{bottom:642.973333pt;}
.y106{bottom:650.653333pt;}
.y12a{bottom:650.813333pt;}
.y1cf{bottom:650.973333pt;}
.y17a{bottom:651.773333pt;}
.yb1{bottom:653.853333pt;}
.y83{bottom:655.933333pt;}
.y52{bottom:658.813333pt;}
.ydc{bottom:663.933333pt;}
.y161{bottom:666.333333pt;}
.y105{bottom:666.493333pt;}
.y14{bottom:666.653333pt;}
.y1ce{bottom:666.813333pt;}
.y179{bottom:667.613333pt;}
.y82{bottom:671.773333pt;}
.y51{bottom:674.653333pt;}
.y1ab{bottom:674.813333pt;}
.yb0{bottom:677.693333pt;}
.y160{bottom:682.173333pt;}
.y147{bottom:682.493333pt;}
.y1cd{bottom:682.813333pt;}
.y178{bottom:683.453333pt;}
.ydb{bottom:688.573333pt;}
.y104{bottom:690.013333pt;}
.y50{bottom:690.493333pt;}
.y1aa{bottom:690.653333pt;}
.y81{bottom:691.453333pt;}
.yaf{bottom:693.533333pt;}
.y146{bottom:698.333333pt;}
.y1cc{bottom:698.653333pt;}
.y177{bottom:698.973333pt;}
.y103{bottom:705.853333pt;}
.y4f{bottom:706.333333pt;}
.y1a9{bottom:706.493333pt;}
.yae{bottom:709.373333pt;}
.y13{bottom:711.613333pt;}
.yda{bottom:713.053333pt;}
.y145{bottom:714.173333pt;}
.y1cb{bottom:714.493333pt;}
.y176{bottom:714.813333pt;}
.y80{bottom:715.933333pt;}
.y4e{bottom:722.173333pt;}
.y1a8{bottom:722.333333pt;}
.yad{bottom:725.373333pt;}
.y102{bottom:730.173333pt;}
.y1ca{bottom:730.333333pt;}
.y175{bottom:732.893333pt;}
.y12{bottom:736.413333pt;}
.yd9{bottom:737.853333pt;}
.y4d{bottom:738.173333pt;}
.y7e{bottom:740.413333pt;}
.y101{bottom:746.013333pt;}
.y1c9{bottom:746.173333pt;}
.yac{bottom:749.213333pt;}
.y15f{bottom:753.693333pt;}
.y129{bottom:754.013333pt;}
.y1a7{bottom:754.173333pt;}
.y100{bottom:761.853333pt;}
.y4c{bottom:762.013333pt;}
.y1c8{bottom:762.173333pt;}
.yd7{bottom:762.493333pt;}
.y7c{bottom:765.053333pt;}
.y15e{bottom:769.533333pt;}
.y128{bottom:769.853333pt;}
.y1a6{bottom:770.013333pt;}
.y11{bottom:777.373333pt;}
.yff{bottom:777.693333pt;}
.y4b{bottom:777.853333pt;}
.y1c7{bottom:778.013333pt;}
.yab{bottom:780.893333pt;}
.y15d{bottom:785.373333pt;}
.y127{bottom:785.693333pt;}
.y1a5{bottom:785.853333pt;}
.y4a{bottom:793.693333pt;}
.y1c6{bottom:793.853333pt;}
.y7b{bottom:794.173333pt;}
.yaa{bottom:796.733333pt;}
.y10{bottom:799.773333pt;}
.yfe{bottom:801.213333pt;}
.y144{bottom:801.533333pt;}
.y1a4{bottom:801.693333pt;}
.yd5{bottom:802.813333pt;}
.y49{bottom:809.573333pt;}
.y1c5{bottom:809.733333pt;}
.ya9{bottom:816.453333pt;}
.yfd{bottom:817.093333pt;}
.yf{bottom:817.413333pt;}
.y1a3{bottom:817.573333pt;}
.y7a{bottom:818.373333pt;}
.y48{bottom:825.413333pt;}
.y1c4{bottom:825.573333pt;}
.yd4{bottom:827.493333pt;}
.y143{bottom:833.413333pt;}
.y79{bottom:834.373333pt;}
.ye{bottom:835.173333pt;}
.ya8{bottom:841.093333pt;}
.y47{bottom:841.413333pt;}
.y1a2{bottom:849.093333pt;}
.y142{bottom:849.253333pt;}
.y174{bottom:849.413333pt;}
.y78{bottom:850.213333pt;}
.yd{bottom:852.453333pt;}
.yd3{bottom:856.933333pt;}
.y46{bottom:857.253333pt;}
.y1c3{bottom:857.413333pt;}
.y1a1{bottom:864.933333pt;}
.y141{bottom:865.093333pt;}
.y15c{bottom:865.253333pt;}
.ya7{bottom:865.733333pt;}
.y77{bottom:866.053333pt;}
.yc{bottom:870.373333pt;}
.yfc{bottom:873.093333pt;}
.y1c2{bottom:873.253333pt;}
.y1f4{bottom:875.013333pt;}
.y45{bottom:881.093333pt;}
.y76{bottom:881.573333pt;}
.y140{bottom:888.613333pt;}
.yfb{bottom:888.933333pt;}
.y1a0{bottom:889.093333pt;}
.ya6{bottom:890.213333pt;}
.y44{bottom:896.933333pt;}
.y75{bottom:897.413333pt;}
.y1f3{bottom:897.893333pt;}
.y13f{bottom:904.453333pt;}
.yfa{bottom:904.773333pt;}
.y19f{bottom:904.933333pt;}
.yb{bottom:905.893333pt;}
.y43{bottom:912.773333pt;}
.ya5{bottom:914.853333pt;}
.y74{bottom:915.493333pt;}
.ya{bottom:916.613333pt;}
.y13e{bottom:920.453333pt;}
.yf9{bottom:920.773333pt;}
.y9{bottom:927.333333pt;}
.y126{bottom:928.453333pt;}
.y42{bottom:928.773333pt;}
.yf8{bottom:936.613333pt;}
.y19e{bottom:936.773333pt;}
.y8{bottom:938.053333pt;}
.y1f2{bottom:943.813333pt;}
.ya4{bottom:944.293333pt;}
.y41{bottom:944.613333pt;}
.y7{bottom:951.013333pt;}
.y19d{bottom:952.613333pt;}
.y40{bottom:960.453333pt;}
.y1f1{bottom:966.693333pt;}
.ya3{bottom:968.453333pt;}
.y6{bottom:973.733333pt;}
.y3f{bottom:976.293333pt;}
.ya2{bottom:984.293333pt;}
.y1f0{bottom:989.573333pt;}
.y3e{bottom:992.133333pt;}
.y73{bottom:1000.133333pt;}
.y3d{bottom:1007.973333pt;}
.y1ef{bottom:1012.453333pt;}
.y72{bottom:1015.973333pt;}
.yf7{bottom:1024.000000pt;}
.y3c{bottom:1032.000000pt;}
.y1ee{bottom:1035.520000pt;}
.y19c{bottom:1047.520000pt;}
.y3b{bottom:1047.840000pt;}
.y1ed{bottom:1058.400000pt;}
.y19b{bottom:1063.360000pt;}
.y3a{bottom:1063.680000pt;}
.h17{height:23.826667pt;}
.h15{height:23.840000pt;}
.h19{height:23.858667pt;}
.h18{height:23.986667pt;}
.h16{height:24.000000pt;}
.h21{height:24.018667pt;}
.h1f{height:24.026667pt;}
.h1d{height:24.032000pt;}
.h1a{height:24.466667pt;}
.h1c{height:24.658667pt;}
.h22{height:24.786667pt;}
.h2{height:27.676000pt;}
.h26{height:35.085938pt;}
.h27{height:35.578125pt;}
.h7{height:36.431250pt;}
.hc{height:36.920625pt;}
.h20{height:39.666667pt;}
.h1e{height:39.680000pt;}
.h11{height:42.117188pt;}
.h23{height:47.085938pt;}
.h3{height:47.109375pt;}
.hf{height:48.375000pt;}
.h28{height:49.336436pt;}
.h13{height:52.108438pt;}
.h8{height:52.134375pt;}
.h14{height:52.234000pt;}
.h25{height:52.510625pt;}
.h1b{height:52.526250pt;}
.h24{height:52.670625pt;}
.h9{height:53.535000pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.hb{height:64.290000pt;}
.h10{height:69.660000pt;}
.ha{height:73.490625pt;}
.h5{height:75.465000pt;}
.h6{height:80.625000pt;}
.h12{height:282.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w12{width:71.666667pt;}
.w13{width:76.986667pt;}
.wc{width:83.392000pt;}
.w10{width:86.080000pt;}
.wf{width:95.392000pt;}
.wd{width:107.360000pt;}
.w8{width:109.266667pt;}
.w9{width:109.458667pt;}
.wa{width:109.466667pt;}
.w7{width:110.106667pt;}
.w5{width:110.226667pt;}
.w6{width:110.258667pt;}
.wb{width:138.582667pt;}
.we{width:143.542667pt;}
.w11{width:180.333333pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x11{left:9.600000pt;}
.x31{left:11.040000pt;}
.x2f{left:12.800000pt;}
.x2b{left:15.680000pt;}
.x24{left:18.720000pt;}
.x34{left:20.146667pt;}
.x38{left:21.440000pt;}
.x2d{left:23.040000pt;}
.x29{left:24.640000pt;}
.x26{left:26.240000pt;}
.x1a{left:27.666667pt;}
.x1e{left:28.786667pt;}
.x21{left:29.906667pt;}
.x1b{left:31.706667pt;}
.x27{left:32.640000pt;}
.x10{left:34.080000pt;}
.x20{left:35.666667pt;}
.x17{left:36.640000pt;}
.x1f{left:38.226667pt;}
.x1d{left:39.200000pt;}
.x1{left:40.324000pt;}
.x2c{left:41.600000pt;}
.x12{left:43.680000pt;}
.x22{left:45.124000pt;}
.x18{left:46.106667pt;}
.x5{left:48.000000pt;}
.x16{left:49.146667pt;}
.x36{left:50.386667pt;}
.x1c{left:51.706667pt;}
.x37{left:58.706667pt;}
.x3a{left:62.066667pt;}
.xb{left:63.840000pt;}
.x33{left:65.426667pt;}
.x35{left:68.786667pt;}
.x32{left:71.506667pt;}
.x3b{left:77.426667pt;}
.x39{left:79.506667pt;}
.x3e{left:96.032000pt;}
.xc{left:123.232000pt;}
.x23{left:184.346667pt;}
.x28{left:191.546667pt;}
.xd{left:194.426667pt;}
.x2{left:197.662667pt;}
.x8{left:250.466667pt;}
.x6{left:253.986667pt;}
.x9{left:256.866667pt;}
.x25{left:268.386667pt;}
.xe{left:279.426667pt;}
.x2a{left:287.586667pt;}
.x7{left:323.906667pt;}
.xa{left:336.706667pt;}
.x13{left:417.386667pt;}
.x19{left:418.666667pt;}
.xf{left:420.893333pt;}
.x3c{left:444.893333pt;}
.x3d{left:468.893333pt;}
.x14{left:528.266667pt;}
.x2e{left:599.333333pt;}
.x15{left:639.173333pt;}
.x30{left:671.653333pt;}
.x4{left:682.213333pt;}
}




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