
    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_5323c28de70f7961b1b01b25.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_32b96b668b247c9b3fbf6b36.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8b5378d953cf062fdd238164.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8c407bf13c8327190d4f04cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e1c93699d7cb18700f84fb23.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8ffb2e9f8f5ec7420175c26c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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);}
.v5{vertical-align:-69.120000px;}
.v3{vertical-align:-66.240000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls1e{letter-spacing:-1.260000px;}
.ls11{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.538800px;}
.ls1f{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.269400px;}
.ls7{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls16{letter-spacing:0.053280px;}
.lsc{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.152640px;}
.lse{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.181200px;}
.ls1c{letter-spacing:0.206400px;}
.ls1a{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls18{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.450600px;}
.ls1d{letter-spacing:0.540000px;}
.ls29{letter-spacing:1.800000px;}
.ls2b{letter-spacing:2.640000px;}
.ls26{letter-spacing:3.240000px;}
.ls17{letter-spacing:6.660000px;}
.ls24{letter-spacing:7.560000px;}
.ls19{letter-spacing:10.260000px;}
.ls9{letter-spacing:13.140000px;}
.ls28{letter-spacing:54.900000px;}
.ls2a{letter-spacing:56.340000px;}
.ls25{letter-spacing:57.060000px;}
.ls23{letter-spacing:60.660000px;}
.ls27{letter-spacing:61.380000px;}
.ls3{letter-spacing:66.162720px;}
.ls8{letter-spacing:112.476000px;}
.ls13{letter-spacing:201.036000px;}
.ls10{letter-spacing:465.276000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws2{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.199800px;}
.wse{word-spacing:-15.146400px;}
.wsd{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.500000px;}
.ws11{word-spacing:-12.510600px;}
.ws9{word-spacing:-12.420000px;}
.ws10{word-spacing:-12.241200px;}
.ws8{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-3.528240px;}
._1a{margin-left:-2.150160px;}
._4{margin-left:-1.061280px;}
._0{width:1.314720px;}
._7{width:2.538000px;}
._6{width:3.780000px;}
._8{width:5.507280px;}
._2{width:6.840000px;}
._10{width:7.994640px;}
._a{width:9.774000px;}
._b{width:10.943280px;}
._f{width:12.728880px;}
._19{width:13.734720px;}
._5{width:14.742000px;}
._9{width:15.930000px;}
._c{width:17.388000px;}
._15{width:18.707040px;}
._16{width:19.718640px;}
._e{width:21.633120px;}
._d{width:22.708800px;}
._14{width:25.935840px;}
._13{width:27.250560px;}
._26{width:28.289520px;}
._1b{width:30.477600px;}
._1e{width:33.506640px;}
._23{width:35.708160px;}
._1f{width:36.793440px;}
._21{width:44.622000px;}
._22{width:45.838080px;}
._1d{width:50.119920px;}
._27{width:55.438560px;}
._25{width:56.483280px;}
._20{width:59.828160px;}
._24{width:61.536000px;}
._3{width:155.700000px;}
._17{width:509.086560px;}
._11{width:735.660000px;}
._18{width:865.686720px;}
._12{width:1073.100000px;}
._1{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:2.520000px;}
.yfc{bottom:2.565000px;}
.y2a{bottom:2.880000px;}
.y11{bottom:3.240000px;}
.y14f{bottom:3.600000px;}
.y14d{bottom:3.780000px;}
.y1d3{bottom:4.500000px;}
.y1cf{bottom:4.680000px;}
.y32{bottom:9.000000px;}
.y38{bottom:12.240000px;}
.yc3{bottom:16.200000px;}
.yc6{bottom:16.380000px;}
.y11d{bottom:16.425000px;}
.ye3{bottom:17.100000px;}
.y29{bottom:18.360000px;}
.y16{bottom:20.340000px;}
.y14a{bottom:20.520000px;}
.y14b{bottom:21.060000px;}
.y37{bottom:29.520000px;}
.yf5{bottom:30.060000px;}
.yd7{bottom:30.240000px;}
.ye1{bottom:31.680000px;}
.y28{bottom:33.870000px;}
.y15{bottom:37.620000px;}
.yc9{bottom:43.920000px;}
.yd2{bottom:43.965000px;}
.y36{bottom:46.800000px;}
.y27{bottom:49.530000px;}
.y14{bottom:54.900000px;}
.y11a{bottom:57.825000px;}
.y35{bottom:63.900000px;}
.y1db{bottom:64.260000px;}
.y26{bottom:65.010000px;}
.y31{bottom:66.060000px;}
.y152{bottom:72.180000px;}
.y1da{bottom:79.770000px;}
.y1cd{bottom:79.920000px;}
.y25{bottom:80.490000px;}
.y13{bottom:81.180000px;}
.y5{bottom:88.200000px;}
.y34{bottom:90.180000px;}
.y1d9{bottom:95.250000px;}
.y1cc{bottom:95.400000px;}
.y24{bottom:95.970000px;}
.y1d8{bottom:110.730000px;}
.y1cb{bottom:110.880000px;}
.ybf{bottom:111.600000px;}
.y23{bottom:111.630000px;}
.y147{bottom:116.280000px;}
.y1ca{bottom:126.360000px;}
.y1d7{bottom:126.390000px;}
.y1e0{bottom:126.405000px;}
.y22{bottom:127.110000px;}
.y84{bottom:128.160000px;}
.ybe{bottom:128.880000px;}
.y146{bottom:133.560000px;}
.y180{bottom:136.296000px;}
.y30{bottom:138.090000px;}
.y1e4{bottom:141.840000px;}
.y1d6{bottom:141.870000px;}
.y1df{bottom:141.885000px;}
.y1c9{bottom:142.020000px;}
.y21{bottom:142.590000px;}
.y48{bottom:143.136000px;}
.y83{bottom:145.476000px;}
.ybd{bottom:146.196000px;}
.y17f{bottom:150.150000px;}
.y145{bottom:150.870000px;}
.y10b{bottom:153.210000px;}
.y2f{bottom:155.190000px;}
.y1e3{bottom:157.320000px;}
.y1d5{bottom:157.350000px;}
.y1de{bottom:157.365000px;}
.y1c8{bottom:157.500000px;}
.y1d1{bottom:157.545000px;}
.y20{bottom:158.070000px;}
.y47{bottom:160.410000px;}
.y82{bottom:162.750000px;}
.ybc{bottom:163.470000px;}
.y17e{bottom:163.830000px;}
.y144{bottom:168.150000px;}
.y10a{bottom:170.490000px;}
.y1e5{bottom:170.850000px;}
.y2e{bottom:172.470000px;}
.y1f{bottom:173.730000px;}
.y46{bottom:177.690000px;}
.y1c6{bottom:179.130000px;}
.y81{bottom:179.850000px;}
.ybb{bottom:180.750000px;}
.y1e2{bottom:184.890000px;}
.y143{bottom:185.250000px;}
.y109{bottom:187.770000px;}
.y1e{bottom:189.210000px;}
.y2d{bottom:189.750000px;}
.y17d{bottom:191.550000px;}
.y1c5{bottom:192.990000px;}
.y45{bottom:194.970000px;}
.y80{bottom:197.130000px;}
.yba{bottom:197.850000px;}
.y142{bottom:202.530000px;}
.y1d{bottom:204.690000px;}
.y108{bottom:205.050000px;}
.y17c{bottom:205.230000px;}
.y1c4{bottom:206.850000px;}
.y2c{bottom:207.030000px;}
.y44{bottom:212.250000px;}
.y7f{bottom:214.410000px;}
.yb9{bottom:215.130000px;}
.y17b{bottom:219.090000px;}
.y141{bottom:219.810000px;}
.y1c{bottom:220.170000px;}
.y1c3{bottom:220.530000px;}
.y107{bottom:222.150000px;}
.y43{bottom:229.350000px;}
.y7e{bottom:231.690000px;}
.yb8{bottom:232.410000px;}
.y17a{bottom:232.950000px;}
.y2b{bottom:233.310000px;}
.y1c2{bottom:234.390000px;}
.y1b{bottom:235.830000px;}
.y140{bottom:237.090000px;}
.y106{bottom:239.430000px;}
.y42{bottom:246.630000px;}
.y1c1{bottom:248.250000px;}
.y7d{bottom:248.970000px;}
.yb7{bottom:249.690000px;}
.y1a{bottom:251.310000px;}
.y13f{bottom:254.370000px;}
.y105{bottom:256.710000px;}
.y179{bottom:260.490000px;}
.y1c0{bottom:261.930000px;}
.y41{bottom:263.910000px;}
.y7c{bottom:266.250000px;}
.yb6{bottom:266.970000px;}
.y13e{bottom:271.650000px;}
.y104{bottom:273.990000px;}
.y178{bottom:274.350000px;}
.y1bf{bottom:275.790000px;}
.y40{bottom:281.190000px;}
.y7b{bottom:283.350000px;}
.yb5{bottom:284.250000px;}
.y177{bottom:288.030000px;}
.y13d{bottom:288.750000px;}
.y1be{bottom:289.650000px;}
.y103{bottom:290.550000px;}
.y3f{bottom:298.470000px;}
.y7a{bottom:300.630000px;}
.yb4{bottom:301.350000px;}
.y176{bottom:301.890000px;}
.y1bd{bottom:303.330000px;}
.y102{bottom:304.230000px;}
.y13c{bottom:306.030000px;}
.y3e{bottom:315.750000px;}
.y100{bottom:316.290000px;}
.y1bc{bottom:317.190000px;}
.y79{bottom:317.910000px;}
.yb3{bottom:318.630000px;}
.y13b{bottom:323.310000px;}
.y175{bottom:329.430000px;}
.y101{bottom:330.150000px;}
.y1bb{bottom:331.050000px;}
.y3d{bottom:332.850000px;}
.y78{bottom:335.190000px;}
.yb2{bottom:335.910000px;}
.y18{bottom:338.250000px;}
.y13a{bottom:340.590000px;}
.y174{bottom:343.290000px;}
.yfd{bottom:344.010000px;}
.y1ba{bottom:344.730000px;}
.y3c{bottom:350.130000px;}
.y77{bottom:352.470000px;}
.yb1{bottom:353.190000px;}
.y1e1{bottom:355.890000px;}
.y173{bottom:357.150000px;}
.yff{bottom:357.690000px;}
.y139{bottom:357.870000px;}
.y1b9{bottom:358.590000px;}
.y3b{bottom:367.410000px;}
.y76{bottom:369.750000px;}
.yb0{bottom:370.470000px;}
.y172{bottom:370.830000px;}
.yfe{bottom:371.550000px;}
.y1b8{bottom:372.450000px;}
.y1dd{bottom:373.170000px;}
.y138{bottom:375.150000px;}
.y3a{bottom:384.690000px;}
.yf8{bottom:385.410000px;}
.y1b7{bottom:386.130000px;}
.y75{bottom:386.850000px;}
.yaf{bottom:387.795000px;}
.y137{bottom:392.295000px;}
.y171{bottom:398.595000px;}
.yfb{bottom:399.135000px;}
.y1b6{bottom:400.035000px;}
.y39{bottom:402.015000px;}
.y74{bottom:404.175000px;}
.yae{bottom:404.895000px;}
.y136{bottom:409.575000px;}
.y170{bottom:412.275000px;}
.yfa{bottom:412.995000px;}
.y1b5{bottom:413.895000px;}
.y33{bottom:418.215000px;}
.y73{bottom:421.455000px;}
.yad{bottom:422.175000px;}
.y16f{bottom:426.135000px;}
.yf9{bottom:426.855000px;}
.y1b4{bottom:427.575000px;}
.y72{bottom:438.735000px;}
.yac{bottom:439.455000px;}
.y16e{bottom:439.995000px;}
.yf4{bottom:440.535000px;}
.y1b3{bottom:441.435000px;}
.y135{bottom:444.135000px;}
.y16d{bottom:453.675000px;}
.yf7{bottom:454.395000px;}
.y1b2{bottom:455.295000px;}
.y71{bottom:456.015000px;}
.yab{bottom:456.735000px;}
.y134{bottom:461.415000px;}
.y16c{bottom:467.535000px;}
.yf6{bottom:468.075000px;}
.y1b1{bottom:468.975000px;}
.y70{bottom:473.115000px;}
.yaa{bottom:474.015000px;}
.y133{bottom:478.515000px;}
.y16b{bottom:481.395000px;}
.yf0{bottom:481.935000px;}
.y1b0{bottom:482.835000px;}
.y6f{bottom:490.395000px;}
.ya9{bottom:491.115000px;}
.y16a{bottom:495.075000px;}
.yf3{bottom:495.795000px;}
.y1af{bottom:496.695000px;}
.y6e{bottom:507.675000px;}
.ya8{bottom:508.395000px;}
.y169{bottom:508.935000px;}
.yf2{bottom:509.475000px;}
.y1ae{bottom:510.375000px;}
.y132{bottom:513.075000px;}
.yf1{bottom:523.335000px;}
.y168{bottom:523.515000px;}
.y1ad{bottom:524.235000px;}
.y6d{bottom:524.955000px;}
.ya7{bottom:525.675000px;}
.y131{bottom:530.355000px;}
.y17{bottom:532.155000px;}
.yec{bottom:537.195000px;}
.y1ac{bottom:538.095000px;}
.y167{bottom:540.615000px;}
.y6c{bottom:542.235000px;}
.ya6{bottom:542.955000px;}
.y1dc{bottom:544.215000px;}
.y130{bottom:547.635000px;}
.yef{bottom:550.875000px;}
.y1ab{bottom:551.775000px;}
.y166{bottom:557.895000px;}
.y6b{bottom:559.515000px;}
.ya5{bottom:560.235000px;}
.y1d4{bottom:561.495000px;}
.yee{bottom:564.735000px;}
.y12f{bottom:564.915000px;}
.y1aa{bottom:565.635000px;}
.y165{bottom:575.175000px;}
.y6a{bottom:576.615000px;}
.ya4{bottom:577.515000px;}
.yed{bottom:578.595000px;}
.y1a9{bottom:579.495000px;}
.y12e{bottom:582.015000px;}
.ye8{bottom:592.275000px;}
.y164{bottom:592.455000px;}
.y1a8{bottom:593.175000px;}
.y69{bottom:593.895000px;}
.ya3{bottom:594.615000px;}
.y12d{bottom:599.295000px;}
.yeb{bottom:606.135000px;}
.y1a7{bottom:607.035000px;}
.y163{bottom:609.735000px;}
.y68{bottom:611.175000px;}
.ya2{bottom:611.895000px;}
.y12c{bottom:616.575000px;}
.yea{bottom:619.995000px;}
.y19{bottom:620.535000px;}
.y1a6{bottom:620.895000px;}
.y162{bottom:627.015000px;}
.y67{bottom:628.455000px;}
.ya1{bottom:629.175000px;}
.ye9{bottom:633.675000px;}
.y12b{bottom:633.855000px;}
.y1a5{bottom:634.575000px;}
.y161{bottom:644.145000px;}
.y66{bottom:645.765000px;}
.ya0{bottom:646.485000px;}
.ye6{bottom:647.565000px;}
.y1a4{bottom:648.465000px;}
.y12a{bottom:651.165000px;}
.ye7{bottom:661.425000px;}
.y1a3{bottom:662.325000px;}
.y65{bottom:663.045000px;}
.y9f{bottom:663.765000px;}
.y129{bottom:668.445000px;}
.ye4{bottom:675.105000px;}
.y1a2{bottom:676.005000px;}
.y160{bottom:678.705000px;}
.y64{bottom:680.145000px;}
.y9e{bottom:681.045000px;}
.y128{bottom:685.545000px;}
.ye5{bottom:688.965000px;}
.y1a1{bottom:689.865000px;}
.y15f{bottom:695.985000px;}
.y63{bottom:697.425000px;}
.y9d{bottom:698.145000px;}
.y127{bottom:702.825000px;}
.ye0{bottom:703.545000px;}
.y1a0{bottom:703.725000px;}
.y15e{bottom:713.265000px;}
.y62{bottom:714.705000px;}
.y9c{bottom:715.425000px;}
.y19f{bottom:717.405000px;}
.ye2{bottom:718.125000px;}
.y126{bottom:720.105000px;}
.y15d{bottom:730.545000px;}
.y19e{bottom:731.265000px;}
.y61{bottom:731.985000px;}
.y1d2{bottom:732.525000px;}
.y9b{bottom:732.705000px;}
.y125{bottom:737.385000px;}
.y19d{bottom:745.125000px;}
.y15c{bottom:747.645000px;}
.y60{bottom:749.265000px;}
.y1d0{bottom:749.625000px;}
.y9a{bottom:749.985000px;}
.y19c{bottom:758.805000px;}
.y15b{bottom:764.925000px;}
.y5f{bottom:766.545000px;}
.ydf{bottom:766.905000px;}
.y99{bottom:767.265000px;}
.y124{bottom:771.945000px;}
.y19b{bottom:772.665000px;}
.yde{bottom:780.765000px;}
.y15a{bottom:782.205000px;}
.y5e{bottom:783.645000px;}
.y98{bottom:784.545000px;}
.y19a{bottom:786.525000px;}
.y123{bottom:789.045000px;}
.y12{bottom:789.225000px;}
.yda{bottom:792.825000px;}
.y159{bottom:799.485000px;}
.y199{bottom:800.205000px;}
.y5d{bottom:800.925000px;}
.y97{bottom:801.645000px;}
.y121{bottom:803.805000px;}
.ydd{bottom:806.505000px;}
.y198{bottom:814.065000px;}
.y158{bottom:816.765000px;}
.y122{bottom:817.665000px;}
.y5c{bottom:818.205000px;}
.y96{bottom:818.925000px;}
.ydc{bottom:820.365000px;}
.y197{bottom:827.745000px;}
.y11f{bottom:831.525000px;}
.y157{bottom:833.865000px;}
.ydb{bottom:834.225000px;}
.y5b{bottom:835.485000px;}
.y95{bottom:836.205000px;}
.y196{bottom:841.605000px;}
.y120{bottom:845.205000px;}
.yd6{bottom:847.905000px;}
.y156{bottom:851.145000px;}
.y5a{bottom:852.765000px;}
.y94{bottom:853.485000px;}
.y195{bottom:855.465000px;}
.y119{bottom:859.065000px;}
.yd9{bottom:861.765000px;}
.y155{bottom:868.425000px;}
.y194{bottom:869.145000px;}
.y59{bottom:869.865000px;}
.y93{bottom:870.765000px;}
.y11e{bottom:872.925000px;}
.yd8{bottom:875.625000px;}
.y193{bottom:883.005000px;}
.y154{bottom:885.705000px;}
.y11c{bottom:886.605000px;}
.y58{bottom:887.145000px;}
.y92{bottom:887.865000px;}
.yd1{bottom:889.305000px;}
.y10{bottom:894.210000px;}
.y192{bottom:896.910000px;}
.y153{bottom:903.030000px;}
.yd5{bottom:903.210000px;}
.y57{bottom:904.470000px;}
.y91{bottom:905.190000px;}
.y191{bottom:910.590000px;}
.y11b{bottom:914.370000px;}
.yd4{bottom:917.070000px;}
.y1ce{bottom:920.670000px;}
.y56{bottom:921.750000px;}
.y90{bottom:922.470000px;}
.y190{bottom:924.450000px;}
.yf{bottom:925.890000px;}
.y115{bottom:928.050000px;}
.yd3{bottom:930.750000px;}
.y1c7{bottom:937.950000px;}
.y18f{bottom:938.310000px;}
.y55{bottom:939.030000px;}
.y8f{bottom:939.750000px;}
.y118{bottom:941.910000px;}
.ye{bottom:943.170000px;}
.ycd{bottom:944.610000px;}
.y18e{bottom:951.990000px;}
.y117{bottom:955.770000px;}
.y54{bottom:956.310000px;}
.y8e{bottom:957.030000px;}
.yd0{bottom:958.470000px;}
.yd{bottom:964.230000px;}
.y18d{bottom:965.850000px;}
.y116{bottom:969.450000px;}
.ycf{bottom:972.150000px;}
.y53{bottom:973.410000px;}
.y8d{bottom:974.310000px;}
.yc{bottom:978.090000px;}
.y18c{bottom:979.710000px;}
.y111{bottom:983.310000px;}
.yce{bottom:986.010000px;}
.yb{bottom:987.990000px;}
.y52{bottom:990.690000px;}
.y8c{bottom:991.410000px;}
.y18b{bottom:993.390000px;}
.y114{bottom:997.170000px;}
.yc8{bottom:999.870000px;}
.ya{bottom:1005.270000px;}
.y151{bottom:1006.530000px;}
.y18a{bottom:1007.250000px;}
.y51{bottom:1007.970000px;}
.y8b{bottom:1008.690000px;}
.y113{bottom:1010.850000px;}
.ycc{bottom:1013.550000px;}
.y189{bottom:1021.110000px;}
.y150{bottom:1021.290000px;}
.y9{bottom:1022.550000px;}
.y112{bottom:1024.710000px;}
.y50{bottom:1025.250000px;}
.y8a{bottom:1025.970000px;}
.ycb{bottom:1027.410000px;}
.y188{bottom:1034.790000px;}
.y10f{bottom:1038.570000px;}
.y8{bottom:1039.830000px;}
.yca{bottom:1041.270000px;}
.y4f{bottom:1042.530000px;}
.y89{bottom:1043.250000px;}
.y187{bottom:1048.650000px;}
.y110{bottom:1052.250000px;}
.yc5{bottom:1054.950000px;}
.y14e{bottom:1055.670000px;}
.y7{bottom:1059.090000px;}
.y4e{bottom:1059.810000px;}
.y88{bottom:1060.530000px;}
.y186{bottom:1062.510000px;}
.y10d{bottom:1066.110000px;}
.yc7{bottom:1068.810000px;}
.y14c{bottom:1072.950000px;}
.y185{bottom:1076.190000px;}
.y4d{bottom:1076.910000px;}
.y87{bottom:1077.810000px;}
.y10e{bottom:1079.970000px;}
.yc2{bottom:1082.670000px;}
.y6{bottom:1086.630000px;}
.y184{bottom:1090.050000px;}
.y149{bottom:1090.230000px;}
.y4c{bottom:1094.190000px;}
.y10c{bottom:1094.370000px;}
.y86{bottom:1094.910000px;}
.yc4{bottom:1096.350000px;}
.y183{bottom:1103.910000px;}
.yc0{bottom:1110.930000px;}
.y4b{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y182{bottom:1117.590000px;}
.y148{bottom:1125.510000px;}
.y4a{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y181{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y85{bottom:1160.640000px;}
.y49{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h24{height:13.716000px;}
.h14{height:13.860000px;}
.h23{height:13.860150px;}
.h1c{height:13.896000px;}
.h12{height:17.100000px;}
.h13{height:17.280000px;}
.h7{height:26.280000px;}
.h16{height:27.540000px;}
.h18{height:27.720000px;}
.h26{height:27.756000px;}
.h1f{height:28.260000px;}
.h6{height:29.678906px;}
.h27{height:34.560000px;}
.h1d{height:41.400000px;}
.h1e{height:42.840000px;}
.h15{height:47.344922px;}
.h20{height:47.678906px;}
.h21{height:48.616875px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h2a{height:54.421875px;}
.h19{height:55.080000px;}
.h22{height:55.116000px;}
.h1a{height:55.260000px;}
.h1b{height:55.296000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h25{height:68.976000px;}
.h8{height:70.664062px;}
.h28{height:86.220000px;}
.he{height:87.660000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h10{height:113.220000px;}
.h29{height:171.000000px;}
.h2b{height:171.030000px;}
.hd{height:256.350000px;}
.hb{height:272.955000px;}
.ha{height:361.335000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.w15{width:22.140000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w16{width:31.176000px;}
.w28{width:35.100000px;}
.w23{width:35.280000px;}
.w27{width:35.316000px;}
.w24{width:35.640000px;}
.w29{width:36.036000px;}
.w25{width:36.180000px;}
.w2a{width:36.360000px;}
.w2b{width:36.540000px;}
.w26{width:36.720000px;}
.w12{width:40.140000px;}
.w11{width:43.200000px;}
.w19{width:43.560000px;}
.w17{width:43.740000px;}
.w18{width:46.260000px;}
.w1a{width:46.296000px;}
.wf{width:53.316000px;}
.wa{width:79.380000px;}
.w1f{width:84.456000px;}
.wb{width:84.996000px;}
.w13{width:89.820000px;}
.w14{width:89.856000px;}
.wc{width:112.536000px;}
.w1e{width:128.520000px;}
.w1b{width:131.616000px;}
.w20{width:142.236000px;}
.w2f{width:144.540000px;}
.w1c{width:151.560000px;}
.w21{width:154.830000px;}
.w22{width:158.070000px;}
.wd{width:167.970000px;}
.w10{width:179.850000px;}
.w2e{width:198.570000px;}
.w3{width:209.010000px;}
.w2c{width:214.770000px;}
.w2d{width:244.290000px;}
.w9{width:280.515000px;}
.we{width:283.170000px;}
.w1d{width:297.075000px;}
.w5{width:433.155000px;}
.w30{width:530.745000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:1.980000px;}
.x2f{left:3.420000px;}
.x2d{left:5.040000px;}
.x26{left:6.660000px;}
.xa{left:8.100000px;}
.x2c{left:9.360000px;}
.xc{left:10.620000px;}
.x2b{left:12.780000px;}
.x16{left:14.400000px;}
.x2e{left:15.840000px;}
.x24{left:18.000000px;}
.x34{left:24.120000px;}
.x38{left:25.200000px;}
.x1a{left:28.980000px;}
.x19{left:30.600000px;}
.x1c{left:31.860000px;}
.x1b{left:33.660000px;}
.x36{left:39.960000px;}
.x37{left:42.165000px;}
.x4a{left:72.174000px;}
.xe{left:106.560000px;}
.x48{left:119.556000px;}
.x1e{left:120.825000px;}
.x9{left:125.496000px;}
.x1{left:127.655987px;}
.x13{left:135.395987px;}
.x2{left:141.875987px;}
.x5{left:155.549987px;}
.x1d{left:157.350000px;}
.x47{left:159.689987px;}
.x11{left:176.069987px;}
.x10{left:181.649987px;}
.x30{left:185.069987px;}
.x32{left:202.170000px;}
.x14{left:234.750000px;}
.x8{left:238.169987px;}
.x7{left:244.109987px;}
.x49{left:264.090000px;}
.x3{left:285.914987px;}
.x2a{left:288.975000px;}
.x39{left:321.375000px;}
.xb{left:334.515000px;}
.x45{left:343.155000px;}
.x35{left:344.415000px;}
.x18{left:347.295000px;}
.xd{left:355.755000px;}
.x3a{left:357.015000px;}
.x31{left:390.674987px;}
.x3b{left:393.195000px;}
.x6{left:414.794987px;}
.xf{left:425.055000px;}
.x3c{left:429.915000px;}
.x1f{left:440.535000px;}
.x4{left:457.274987px;}
.x27{left:462.675000px;}
.x3d{left:466.095000px;}
.x20{left:493.845000px;}
.x33{left:499.245000px;}
.x3e{left:501.405000px;}
.x15{left:515.265000px;}
.x28{left:537.585000px;}
.x3f{left:571.965000px;}
.x25{left:583.845000px;}
.x46{left:587.445000px;}
.x17{left:594.645000px;}
.x40{left:607.065000px;}
.x29{left:627.405000px;}
.x41{left:642.345000px;}
.x21{left:673.710000px;}
.x42{left:678.390000px;}
.x43{left:714.750000px;}
.x22{left:716.910000px;}
.x44{left:749.850000px;}
.x12{left:756.870000px;}
@media print{
.v5{vertical-align:-61.440000pt;}
.v3{vertical-align:-58.880000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1e{letter-spacing:-1.120000pt;}
.ls11{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.478933pt;}
.ls1f{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.239467pt;}
.ls7{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls16{letter-spacing:0.047360pt;}
.lsc{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.135680pt;}
.lse{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.161067pt;}
.ls1c{letter-spacing:0.183467pt;}
.ls1a{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls18{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.400533pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls29{letter-spacing:1.600000pt;}
.ls2b{letter-spacing:2.346667pt;}
.ls26{letter-spacing:2.880000pt;}
.ls17{letter-spacing:5.920000pt;}
.ls24{letter-spacing:6.720000pt;}
.ls19{letter-spacing:9.120000pt;}
.ls9{letter-spacing:11.680000pt;}
.ls28{letter-spacing:48.800000pt;}
.ls2a{letter-spacing:50.080000pt;}
.ls25{letter-spacing:50.720000pt;}
.ls23{letter-spacing:53.920000pt;}
.ls27{letter-spacing:54.560000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls8{letter-spacing:99.978667pt;}
.ls13{letter-spacing:178.698667pt;}
.ls10{letter-spacing:413.578667pt;}
.wsf{word-spacing:-53.120000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.510933pt;}
.wse{word-spacing:-13.463467pt;}
.wsd{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.000000pt;}
.ws11{word-spacing:-11.120533pt;}
.ws9{word-spacing:-11.040000pt;}
.ws10{word-spacing:-10.881067pt;}
.ws8{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-3.136213pt;}
._1a{margin-left:-1.911253pt;}
._4{margin-left:-0.943360pt;}
._0{width:1.168640pt;}
._7{width:2.256000pt;}
._6{width:3.360000pt;}
._8{width:4.895360pt;}
._2{width:6.080000pt;}
._10{width:7.106347pt;}
._a{width:8.688000pt;}
._b{width:9.727360pt;}
._f{width:11.314560pt;}
._19{width:12.208640pt;}
._5{width:13.104000pt;}
._9{width:14.160000pt;}
._c{width:15.456000pt;}
._15{width:16.628480pt;}
._16{width:17.527680pt;}
._e{width:19.229440pt;}
._d{width:20.185600pt;}
._14{width:23.054080pt;}
._13{width:24.222720pt;}
._26{width:25.146240pt;}
._1b{width:27.091200pt;}
._1e{width:29.783680pt;}
._23{width:31.740587pt;}
._1f{width:32.705280pt;}
._21{width:39.664000pt;}
._22{width:40.744960pt;}
._1d{width:44.551040pt;}
._27{width:49.278720pt;}
._25{width:50.207360pt;}
._20{width:53.180587pt;}
._24{width:54.698667pt;}
._3{width:138.400000pt;}
._17{width:452.521387pt;}
._11{width:653.920000pt;}
._18{width:769.499307pt;}
._12{width:953.866667pt;}
._1{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.240000pt;}
.yfc{bottom:2.280000pt;}
.y2a{bottom:2.560000pt;}
.y11{bottom:2.880000pt;}
.y14f{bottom:3.200000pt;}
.y14d{bottom:3.360000pt;}
.y1d3{bottom:4.000000pt;}
.y1cf{bottom:4.160000pt;}
.y32{bottom:8.000000pt;}
.y38{bottom:10.880000pt;}
.yc3{bottom:14.400000pt;}
.yc6{bottom:14.560000pt;}
.y11d{bottom:14.600000pt;}
.ye3{bottom:15.200000pt;}
.y29{bottom:16.320000pt;}
.y16{bottom:18.080000pt;}
.y14a{bottom:18.240000pt;}
.y14b{bottom:18.720000pt;}
.y37{bottom:26.240000pt;}
.yf5{bottom:26.720000pt;}
.yd7{bottom:26.880000pt;}
.ye1{bottom:28.160000pt;}
.y28{bottom:30.106667pt;}
.y15{bottom:33.440000pt;}
.yc9{bottom:39.040000pt;}
.yd2{bottom:39.080000pt;}
.y36{bottom:41.600000pt;}
.y27{bottom:44.026667pt;}
.y14{bottom:48.800000pt;}
.y11a{bottom:51.400000pt;}
.y35{bottom:56.800000pt;}
.y1db{bottom:57.120000pt;}
.y26{bottom:57.786667pt;}
.y31{bottom:58.720000pt;}
.y152{bottom:64.160000pt;}
.y1da{bottom:70.906667pt;}
.y1cd{bottom:71.040000pt;}
.y25{bottom:71.546667pt;}
.y13{bottom:72.160000pt;}
.y5{bottom:78.400000pt;}
.y34{bottom:80.160000pt;}
.y1d9{bottom:84.666667pt;}
.y1cc{bottom:84.800000pt;}
.y24{bottom:85.306667pt;}
.y1d8{bottom:98.426667pt;}
.y1cb{bottom:98.560000pt;}
.ybf{bottom:99.200000pt;}
.y23{bottom:99.226667pt;}
.y147{bottom:103.360000pt;}
.y1ca{bottom:112.320000pt;}
.y1d7{bottom:112.346667pt;}
.y1e0{bottom:112.360000pt;}
.y22{bottom:112.986667pt;}
.y84{bottom:113.920000pt;}
.ybe{bottom:114.560000pt;}
.y146{bottom:118.720000pt;}
.y180{bottom:121.152000pt;}
.y30{bottom:122.746667pt;}
.y1e4{bottom:126.080000pt;}
.y1d6{bottom:126.106667pt;}
.y1df{bottom:126.120000pt;}
.y1c9{bottom:126.240000pt;}
.y21{bottom:126.746667pt;}
.y48{bottom:127.232000pt;}
.y83{bottom:129.312000pt;}
.ybd{bottom:129.952000pt;}
.y17f{bottom:133.466667pt;}
.y145{bottom:134.106667pt;}
.y10b{bottom:136.186667pt;}
.y2f{bottom:137.946667pt;}
.y1e3{bottom:139.840000pt;}
.y1d5{bottom:139.866667pt;}
.y1de{bottom:139.880000pt;}
.y1c8{bottom:140.000000pt;}
.y1d1{bottom:140.040000pt;}
.y20{bottom:140.506667pt;}
.y47{bottom:142.586667pt;}
.y82{bottom:144.666667pt;}
.ybc{bottom:145.306667pt;}
.y17e{bottom:145.626667pt;}
.y144{bottom:149.466667pt;}
.y10a{bottom:151.546667pt;}
.y1e5{bottom:151.866667pt;}
.y2e{bottom:153.306667pt;}
.y1f{bottom:154.426667pt;}
.y46{bottom:157.946667pt;}
.y1c6{bottom:159.226667pt;}
.y81{bottom:159.866667pt;}
.ybb{bottom:160.666667pt;}
.y1e2{bottom:164.346667pt;}
.y143{bottom:164.666667pt;}
.y109{bottom:166.906667pt;}
.y1e{bottom:168.186667pt;}
.y2d{bottom:168.666667pt;}
.y17d{bottom:170.266667pt;}
.y1c5{bottom:171.546667pt;}
.y45{bottom:173.306667pt;}
.y80{bottom:175.226667pt;}
.yba{bottom:175.866667pt;}
.y142{bottom:180.026667pt;}
.y1d{bottom:181.946667pt;}
.y108{bottom:182.266667pt;}
.y17c{bottom:182.426667pt;}
.y1c4{bottom:183.866667pt;}
.y2c{bottom:184.026667pt;}
.y44{bottom:188.666667pt;}
.y7f{bottom:190.586667pt;}
.yb9{bottom:191.226667pt;}
.y17b{bottom:194.746667pt;}
.y141{bottom:195.386667pt;}
.y1c{bottom:195.706667pt;}
.y1c3{bottom:196.026667pt;}
.y107{bottom:197.466667pt;}
.y43{bottom:203.866667pt;}
.y7e{bottom:205.946667pt;}
.yb8{bottom:206.586667pt;}
.y17a{bottom:207.066667pt;}
.y2b{bottom:207.386667pt;}
.y1c2{bottom:208.346667pt;}
.y1b{bottom:209.626667pt;}
.y140{bottom:210.746667pt;}
.y106{bottom:212.826667pt;}
.y42{bottom:219.226667pt;}
.y1c1{bottom:220.666667pt;}
.y7d{bottom:221.306667pt;}
.yb7{bottom:221.946667pt;}
.y1a{bottom:223.386667pt;}
.y13f{bottom:226.106667pt;}
.y105{bottom:228.186667pt;}
.y179{bottom:231.546667pt;}
.y1c0{bottom:232.826667pt;}
.y41{bottom:234.586667pt;}
.y7c{bottom:236.666667pt;}
.yb6{bottom:237.306667pt;}
.y13e{bottom:241.466667pt;}
.y104{bottom:243.546667pt;}
.y178{bottom:243.866667pt;}
.y1bf{bottom:245.146667pt;}
.y40{bottom:249.946667pt;}
.y7b{bottom:251.866667pt;}
.yb5{bottom:252.666667pt;}
.y177{bottom:256.026667pt;}
.y13d{bottom:256.666667pt;}
.y1be{bottom:257.466667pt;}
.y103{bottom:258.266667pt;}
.y3f{bottom:265.306667pt;}
.y7a{bottom:267.226667pt;}
.yb4{bottom:267.866667pt;}
.y176{bottom:268.346667pt;}
.y1bd{bottom:269.626667pt;}
.y102{bottom:270.426667pt;}
.y13c{bottom:272.026667pt;}
.y3e{bottom:280.666667pt;}
.y100{bottom:281.146667pt;}
.y1bc{bottom:281.946667pt;}
.y79{bottom:282.586667pt;}
.yb3{bottom:283.226667pt;}
.y13b{bottom:287.386667pt;}
.y175{bottom:292.826667pt;}
.y101{bottom:293.466667pt;}
.y1bb{bottom:294.266667pt;}
.y3d{bottom:295.866667pt;}
.y78{bottom:297.946667pt;}
.yb2{bottom:298.586667pt;}
.y18{bottom:300.666667pt;}
.y13a{bottom:302.746667pt;}
.y174{bottom:305.146667pt;}
.yfd{bottom:305.786667pt;}
.y1ba{bottom:306.426667pt;}
.y3c{bottom:311.226667pt;}
.y77{bottom:313.306667pt;}
.yb1{bottom:313.946667pt;}
.y1e1{bottom:316.346667pt;}
.y173{bottom:317.466667pt;}
.yff{bottom:317.946667pt;}
.y139{bottom:318.106667pt;}
.y1b9{bottom:318.746667pt;}
.y3b{bottom:326.586667pt;}
.y76{bottom:328.666667pt;}
.yb0{bottom:329.306667pt;}
.y172{bottom:329.626667pt;}
.yfe{bottom:330.266667pt;}
.y1b8{bottom:331.066667pt;}
.y1dd{bottom:331.706667pt;}
.y138{bottom:333.466667pt;}
.y3a{bottom:341.946667pt;}
.yf8{bottom:342.586667pt;}
.y1b7{bottom:343.226667pt;}
.y75{bottom:343.866667pt;}
.yaf{bottom:344.706667pt;}
.y137{bottom:348.706667pt;}
.y171{bottom:354.306667pt;}
.yfb{bottom:354.786667pt;}
.y1b6{bottom:355.586667pt;}
.y39{bottom:357.346667pt;}
.y74{bottom:359.266667pt;}
.yae{bottom:359.906667pt;}
.y136{bottom:364.066667pt;}
.y170{bottom:366.466667pt;}
.yfa{bottom:367.106667pt;}
.y1b5{bottom:367.906667pt;}
.y33{bottom:371.746667pt;}
.y73{bottom:374.626667pt;}
.yad{bottom:375.266667pt;}
.y16f{bottom:378.786667pt;}
.yf9{bottom:379.426667pt;}
.y1b4{bottom:380.066667pt;}
.y72{bottom:389.986667pt;}
.yac{bottom:390.626667pt;}
.y16e{bottom:391.106667pt;}
.yf4{bottom:391.586667pt;}
.y1b3{bottom:392.386667pt;}
.y135{bottom:394.786667pt;}
.y16d{bottom:403.266667pt;}
.yf7{bottom:403.906667pt;}
.y1b2{bottom:404.706667pt;}
.y71{bottom:405.346667pt;}
.yab{bottom:405.986667pt;}
.y134{bottom:410.146667pt;}
.y16c{bottom:415.586667pt;}
.yf6{bottom:416.066667pt;}
.y1b1{bottom:416.866667pt;}
.y70{bottom:420.546667pt;}
.yaa{bottom:421.346667pt;}
.y133{bottom:425.346667pt;}
.y16b{bottom:427.906667pt;}
.yf0{bottom:428.386667pt;}
.y1b0{bottom:429.186667pt;}
.y6f{bottom:435.906667pt;}
.ya9{bottom:436.546667pt;}
.y16a{bottom:440.066667pt;}
.yf3{bottom:440.706667pt;}
.y1af{bottom:441.506667pt;}
.y6e{bottom:451.266667pt;}
.ya8{bottom:451.906667pt;}
.y169{bottom:452.386667pt;}
.yf2{bottom:452.866667pt;}
.y1ae{bottom:453.666667pt;}
.y132{bottom:456.066667pt;}
.yf1{bottom:465.186667pt;}
.y168{bottom:465.346667pt;}
.y1ad{bottom:465.986667pt;}
.y6d{bottom:466.626667pt;}
.ya7{bottom:467.266667pt;}
.y131{bottom:471.426667pt;}
.y17{bottom:473.026667pt;}
.yec{bottom:477.506667pt;}
.y1ac{bottom:478.306667pt;}
.y167{bottom:480.546667pt;}
.y6c{bottom:481.986667pt;}
.ya6{bottom:482.626667pt;}
.y1dc{bottom:483.746667pt;}
.y130{bottom:486.786667pt;}
.yef{bottom:489.666667pt;}
.y1ab{bottom:490.466667pt;}
.y166{bottom:495.906667pt;}
.y6b{bottom:497.346667pt;}
.ya5{bottom:497.986667pt;}
.y1d4{bottom:499.106667pt;}
.yee{bottom:501.986667pt;}
.y12f{bottom:502.146667pt;}
.y1aa{bottom:502.786667pt;}
.y165{bottom:511.266667pt;}
.y6a{bottom:512.546667pt;}
.ya4{bottom:513.346667pt;}
.yed{bottom:514.306667pt;}
.y1a9{bottom:515.106667pt;}
.y12e{bottom:517.346667pt;}
.ye8{bottom:526.466667pt;}
.y164{bottom:526.626667pt;}
.y1a8{bottom:527.266667pt;}
.y69{bottom:527.906667pt;}
.ya3{bottom:528.546667pt;}
.y12d{bottom:532.706667pt;}
.yeb{bottom:538.786667pt;}
.y1a7{bottom:539.586667pt;}
.y163{bottom:541.986667pt;}
.y68{bottom:543.266667pt;}
.ya2{bottom:543.906667pt;}
.y12c{bottom:548.066667pt;}
.yea{bottom:551.106667pt;}
.y19{bottom:551.586667pt;}
.y1a6{bottom:551.906667pt;}
.y162{bottom:557.346667pt;}
.y67{bottom:558.626667pt;}
.ya1{bottom:559.266667pt;}
.ye9{bottom:563.266667pt;}
.y12b{bottom:563.426667pt;}
.y1a5{bottom:564.066667pt;}
.y161{bottom:572.573333pt;}
.y66{bottom:574.013333pt;}
.ya0{bottom:574.653333pt;}
.ye6{bottom:575.613333pt;}
.y1a4{bottom:576.413333pt;}
.y12a{bottom:578.813333pt;}
.ye7{bottom:587.933333pt;}
.y1a3{bottom:588.733333pt;}
.y65{bottom:589.373333pt;}
.y9f{bottom:590.013333pt;}
.y129{bottom:594.173333pt;}
.ye4{bottom:600.093333pt;}
.y1a2{bottom:600.893333pt;}
.y160{bottom:603.293333pt;}
.y64{bottom:604.573333pt;}
.y9e{bottom:605.373333pt;}
.y128{bottom:609.373333pt;}
.ye5{bottom:612.413333pt;}
.y1a1{bottom:613.213333pt;}
.y15f{bottom:618.653333pt;}
.y63{bottom:619.933333pt;}
.y9d{bottom:620.573333pt;}
.y127{bottom:624.733333pt;}
.ye0{bottom:625.373333pt;}
.y1a0{bottom:625.533333pt;}
.y15e{bottom:634.013333pt;}
.y62{bottom:635.293333pt;}
.y9c{bottom:635.933333pt;}
.y19f{bottom:637.693333pt;}
.ye2{bottom:638.333333pt;}
.y126{bottom:640.093333pt;}
.y15d{bottom:649.373333pt;}
.y19e{bottom:650.013333pt;}
.y61{bottom:650.653333pt;}
.y1d2{bottom:651.133333pt;}
.y9b{bottom:651.293333pt;}
.y125{bottom:655.453333pt;}
.y19d{bottom:662.333333pt;}
.y15c{bottom:664.573333pt;}
.y60{bottom:666.013333pt;}
.y1d0{bottom:666.333333pt;}
.y9a{bottom:666.653333pt;}
.y19c{bottom:674.493333pt;}
.y15b{bottom:679.933333pt;}
.y5f{bottom:681.373333pt;}
.ydf{bottom:681.693333pt;}
.y99{bottom:682.013333pt;}
.y124{bottom:686.173333pt;}
.y19b{bottom:686.813333pt;}
.yde{bottom:694.013333pt;}
.y15a{bottom:695.293333pt;}
.y5e{bottom:696.573333pt;}
.y98{bottom:697.373333pt;}
.y19a{bottom:699.133333pt;}
.y123{bottom:701.373333pt;}
.y12{bottom:701.533333pt;}
.yda{bottom:704.733333pt;}
.y159{bottom:710.653333pt;}
.y199{bottom:711.293333pt;}
.y5d{bottom:711.933333pt;}
.y97{bottom:712.573333pt;}
.y121{bottom:714.493333pt;}
.ydd{bottom:716.893333pt;}
.y198{bottom:723.613333pt;}
.y158{bottom:726.013333pt;}
.y122{bottom:726.813333pt;}
.y5c{bottom:727.293333pt;}
.y96{bottom:727.933333pt;}
.ydc{bottom:729.213333pt;}
.y197{bottom:735.773333pt;}
.y11f{bottom:739.133333pt;}
.y157{bottom:741.213333pt;}
.ydb{bottom:741.533333pt;}
.y5b{bottom:742.653333pt;}
.y95{bottom:743.293333pt;}
.y196{bottom:748.093333pt;}
.y120{bottom:751.293333pt;}
.yd6{bottom:753.693333pt;}
.y156{bottom:756.573333pt;}
.y5a{bottom:758.013333pt;}
.y94{bottom:758.653333pt;}
.y195{bottom:760.413333pt;}
.y119{bottom:763.613333pt;}
.yd9{bottom:766.013333pt;}
.y155{bottom:771.933333pt;}
.y194{bottom:772.573333pt;}
.y59{bottom:773.213333pt;}
.y93{bottom:774.013333pt;}
.y11e{bottom:775.933333pt;}
.yd8{bottom:778.333333pt;}
.y193{bottom:784.893333pt;}
.y154{bottom:787.293333pt;}
.y11c{bottom:788.093333pt;}
.y58{bottom:788.573333pt;}
.y92{bottom:789.213333pt;}
.yd1{bottom:790.493333pt;}
.y10{bottom:794.853333pt;}
.y192{bottom:797.253333pt;}
.y153{bottom:802.693333pt;}
.yd5{bottom:802.853333pt;}
.y57{bottom:803.973333pt;}
.y91{bottom:804.613333pt;}
.y191{bottom:809.413333pt;}
.y11b{bottom:812.773333pt;}
.yd4{bottom:815.173333pt;}
.y1ce{bottom:818.373333pt;}
.y56{bottom:819.333333pt;}
.y90{bottom:819.973333pt;}
.y190{bottom:821.733333pt;}
.yf{bottom:823.013333pt;}
.y115{bottom:824.933333pt;}
.yd3{bottom:827.333333pt;}
.y1c7{bottom:833.733333pt;}
.y18f{bottom:834.053333pt;}
.y55{bottom:834.693333pt;}
.y8f{bottom:835.333333pt;}
.y118{bottom:837.253333pt;}
.ye{bottom:838.373333pt;}
.ycd{bottom:839.653333pt;}
.y18e{bottom:846.213333pt;}
.y117{bottom:849.573333pt;}
.y54{bottom:850.053333pt;}
.y8e{bottom:850.693333pt;}
.yd0{bottom:851.973333pt;}
.yd{bottom:857.093333pt;}
.y18d{bottom:858.533333pt;}
.y116{bottom:861.733333pt;}
.ycf{bottom:864.133333pt;}
.y53{bottom:865.253333pt;}
.y8d{bottom:866.053333pt;}
.yc{bottom:869.413333pt;}
.y18c{bottom:870.853333pt;}
.y111{bottom:874.053333pt;}
.yce{bottom:876.453333pt;}
.yb{bottom:878.213333pt;}
.y52{bottom:880.613333pt;}
.y8c{bottom:881.253333pt;}
.y18b{bottom:883.013333pt;}
.y114{bottom:886.373333pt;}
.yc8{bottom:888.773333pt;}
.ya{bottom:893.573333pt;}
.y151{bottom:894.693333pt;}
.y18a{bottom:895.333333pt;}
.y51{bottom:895.973333pt;}
.y8b{bottom:896.613333pt;}
.y113{bottom:898.533333pt;}
.ycc{bottom:900.933333pt;}
.y189{bottom:907.653333pt;}
.y150{bottom:907.813333pt;}
.y9{bottom:908.933333pt;}
.y112{bottom:910.853333pt;}
.y50{bottom:911.333333pt;}
.y8a{bottom:911.973333pt;}
.ycb{bottom:913.253333pt;}
.y188{bottom:919.813333pt;}
.y10f{bottom:923.173333pt;}
.y8{bottom:924.293333pt;}
.yca{bottom:925.573333pt;}
.y4f{bottom:926.693333pt;}
.y89{bottom:927.333333pt;}
.y187{bottom:932.133333pt;}
.y110{bottom:935.333333pt;}
.yc5{bottom:937.733333pt;}
.y14e{bottom:938.373333pt;}
.y7{bottom:941.413333pt;}
.y4e{bottom:942.053333pt;}
.y88{bottom:942.693333pt;}
.y186{bottom:944.453333pt;}
.y10d{bottom:947.653333pt;}
.yc7{bottom:950.053333pt;}
.y14c{bottom:953.733333pt;}
.y185{bottom:956.613333pt;}
.y4d{bottom:957.253333pt;}
.y87{bottom:958.053333pt;}
.y10e{bottom:959.973333pt;}
.yc2{bottom:962.373333pt;}
.y6{bottom:965.893333pt;}
.y184{bottom:968.933333pt;}
.y149{bottom:969.093333pt;}
.y4c{bottom:972.613333pt;}
.y10c{bottom:972.773333pt;}
.y86{bottom:973.253333pt;}
.yc4{bottom:974.533333pt;}
.y183{bottom:981.253333pt;}
.yc0{bottom:987.493333pt;}
.y4b{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y182{bottom:993.413333pt;}
.y148{bottom:1000.453333pt;}
.y4a{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y181{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y85{bottom:1031.680000pt;}
.y49{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h24{height:12.192000pt;}
.h14{height:12.320000pt;}
.h23{height:12.320133pt;}
.h1c{height:12.352000pt;}
.h12{height:15.200000pt;}
.h13{height:15.360000pt;}
.h7{height:23.360000pt;}
.h16{height:24.480000pt;}
.h18{height:24.640000pt;}
.h26{height:24.672000pt;}
.h1f{height:25.120000pt;}
.h6{height:26.381250pt;}
.h27{height:30.720000pt;}
.h1d{height:36.800000pt;}
.h1e{height:38.080000pt;}
.h15{height:42.084375pt;}
.h20{height:42.381250pt;}
.h21{height:43.215000pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h2a{height:48.375000pt;}
.h19{height:48.960000pt;}
.h22{height:48.992000pt;}
.h1a{height:49.120000pt;}
.h1b{height:49.152000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h25{height:61.312000pt;}
.h8{height:62.812500pt;}
.h28{height:76.640000pt;}
.he{height:77.920000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h10{height:100.640000pt;}
.h29{height:152.000000pt;}
.h2b{height:152.026667pt;}
.hd{height:227.866667pt;}
.hb{height:242.626667pt;}
.ha{height:321.186667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.w15{width:19.680000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w16{width:27.712000pt;}
.w28{width:31.200000pt;}
.w23{width:31.360000pt;}
.w27{width:31.392000pt;}
.w24{width:31.680000pt;}
.w29{width:32.032000pt;}
.w25{width:32.160000pt;}
.w2a{width:32.320000pt;}
.w2b{width:32.480000pt;}
.w26{width:32.640000pt;}
.w12{width:35.680000pt;}
.w11{width:38.400000pt;}
.w19{width:38.720000pt;}
.w17{width:38.880000pt;}
.w18{width:41.120000pt;}
.w1a{width:41.152000pt;}
.wf{width:47.392000pt;}
.wa{width:70.560000pt;}
.w1f{width:75.072000pt;}
.wb{width:75.552000pt;}
.w13{width:79.840000pt;}
.w14{width:79.872000pt;}
.wc{width:100.032000pt;}
.w1e{width:114.240000pt;}
.w1b{width:116.992000pt;}
.w20{width:126.432000pt;}
.w2f{width:128.480000pt;}
.w1c{width:134.720000pt;}
.w21{width:137.626667pt;}
.w22{width:140.506667pt;}
.wd{width:149.306667pt;}
.w10{width:159.866667pt;}
.w2e{width:176.506667pt;}
.w3{width:185.786667pt;}
.w2c{width:190.906667pt;}
.w2d{width:217.146667pt;}
.w9{width:249.346667pt;}
.we{width:251.706667pt;}
.w1d{width:264.066667pt;}
.w5{width:385.026667pt;}
.w30{width:471.773333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:1.760000pt;}
.x2f{left:3.040000pt;}
.x2d{left:4.480000pt;}
.x26{left:5.920000pt;}
.xa{left:7.200000pt;}
.x2c{left:8.320000pt;}
.xc{left:9.440000pt;}
.x2b{left:11.360000pt;}
.x16{left:12.800000pt;}
.x2e{left:14.080000pt;}
.x24{left:16.000000pt;}
.x34{left:21.440000pt;}
.x38{left:22.400000pt;}
.x1a{left:25.760000pt;}
.x19{left:27.200000pt;}
.x1c{left:28.320000pt;}
.x1b{left:29.920000pt;}
.x36{left:35.520000pt;}
.x37{left:37.480000pt;}
.x4a{left:64.154667pt;}
.xe{left:94.720000pt;}
.x48{left:106.272000pt;}
.x1e{left:107.400000pt;}
.x9{left:111.552000pt;}
.x1{left:113.471988pt;}
.x13{left:120.351988pt;}
.x2{left:126.111988pt;}
.x5{left:138.266655pt;}
.x1d{left:139.866667pt;}
.x47{left:141.946655pt;}
.x11{left:156.506655pt;}
.x10{left:161.466655pt;}
.x30{left:164.506655pt;}
.x32{left:179.706667pt;}
.x14{left:208.666667pt;}
.x8{left:211.706655pt;}
.x7{left:216.986655pt;}
.x49{left:234.746667pt;}
.x3{left:254.146655pt;}
.x2a{left:256.866667pt;}
.x39{left:285.666667pt;}
.xb{left:297.346667pt;}
.x45{left:305.026667pt;}
.x35{left:306.146667pt;}
.x18{left:308.706667pt;}
.xd{left:316.226667pt;}
.x3a{left:317.346667pt;}
.x31{left:347.266655pt;}
.x3b{left:349.506667pt;}
.x6{left:368.706655pt;}
.xf{left:377.826667pt;}
.x3c{left:382.146667pt;}
.x1f{left:391.586667pt;}
.x4{left:406.466655pt;}
.x27{left:411.266667pt;}
.x3d{left:414.306667pt;}
.x20{left:438.973333pt;}
.x33{left:443.773333pt;}
.x3e{left:445.693333pt;}
.x15{left:458.013333pt;}
.x28{left:477.853333pt;}
.x3f{left:508.413333pt;}
.x25{left:518.973333pt;}
.x46{left:522.173333pt;}
.x17{left:528.573333pt;}
.x40{left:539.613333pt;}
.x29{left:557.693333pt;}
.x41{left:570.973333pt;}
.x21{left:598.853333pt;}
.x42{left:603.013333pt;}
.x43{left:635.333333pt;}
.x22{left:637.253333pt;}
.x44{left:666.533333pt;}
.x12{left:672.773333pt;}
}




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