
    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_099771e1bf762ad19aee9564.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9b29b9b5350209c9e1b635b7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e89a028be01e011cd77fb5be.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ff4{font-family:ff4;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a1eb9162796d733c720df02c.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_9768624b740b26513a0723ae.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_58a5e80a349d774efb745221.woff')format("woff");}.ff7{font-family:ff7;line-height:1.084961;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_d39e0e47fc9d40b898a207f1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_df13bda57c5da9c67513ce97.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_73936a70cb6f0650c4981858.woff')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-1.260000px;}
.lsc{letter-spacing:-1.080000px;}
.ls11{letter-spacing:-0.924000px;}
.lsa{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.413400px;}
.ls7{letter-spacing:-0.360000px;}
.ls20{letter-spacing:-0.259800px;}
.ls5{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.053280px;}
.ls13{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls21{letter-spacing:0.106800px;}
.ls4{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.ls1b{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls1d{letter-spacing:0.480000px;}
.ls1e{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.900000px;}
.ls10{letter-spacing:1.620000px;}
.ls22{letter-spacing:2.340000px;}
.ls23{letter-spacing:3.054240px;}
.ls8{letter-spacing:6.426720px;}
.ls17{letter-spacing:10.026720px;}
.ls18{letter-spacing:16.506720px;}
.ls0{letter-spacing:30.186720px;}
.ls1c{letter-spacing:31.140000px;}
.ls1f{letter-spacing:31.860000px;}
.ls16{letter-spacing:46.026720px;}
.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;}
}
.wsd{word-spacing:-40.338000px;}
.ws0{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.wsf{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.wse{word-spacing:-14.680200px;}
.ws5{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.479800px;}
.wsc{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.140000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._45{margin-left:-14.633280px;}
._1e{margin-left:-9.386640px;}
._1c{margin-left:-4.425120px;}
._19{margin-left:-3.207360px;}
._b{margin-left:-2.171040px;}
._0{margin-left:-1.080000px;}
._c{width:1.112160px;}
._1{width:2.220000px;}
._12{width:3.884400px;}
._15{width:4.944720px;}
._18{width:6.134160px;}
._14{width:7.662720px;}
._11{width:9.432720px;}
._6{width:10.800000px;}
._13{width:11.825760px;}
._1d{width:13.648560px;}
._1b{width:16.553520px;}
._26{width:17.868240px;}
._17{width:19.776720px;}
._16{width:21.126720px;}
._3c{width:23.541840px;}
._3d{width:24.878640px;}
._1f{width:25.935840px;}
._4b{width:27.751920px;}
._23{width:29.103120px;}
._2e{width:30.323520px;}
._3e{width:31.696080px;}
._3b{width:33.375360px;}
._20{width:34.840080px;}
._38{width:36.775680px;}
._39{width:37.877760px;}
._3a{width:39.523680px;}
._40{width:42.884160px;}
._3f{width:43.923600px;}
._29{width:45.500640px;}
._28{width:46.971360px;}
._51{width:48.825120px;}
._22{width:51.369600px;}
._41{width:56.592720px;}
._34{width:59.939280px;}
._33{width:60.955200px;}
._35{width:62.034480px;}
._42{width:70.016640px;}
._31{width:71.257200px;}
._32{width:73.098240px;}
._50{width:74.245200px;}
._7{width:76.284960px;}
._2a{width:78.906480px;}
._2b{width:80.547600px;}
._30{width:83.544480px;}
._4a{width:88.615920px;}
._44{width:90.250080px;}
._43{width:91.313280px;}
._46{width:108.487680px;}
._47{width:109.842000px;}
._24{width:115.940160px;}
._49{width:119.435040px;}
._48{width:120.439680px;}
._4e{width:123.009360px;}
._4f{width:124.314240px;}
._21{width:128.125440px;}
._4c{width:138.965280px;}
._4d{width:140.579520px;}
._37{width:145.449120px;}
._36{width:146.782320px;}
._8{width:154.080000px;}
._2c{width:190.216080px;}
._e{width:195.120000px;}
._27{width:201.204000px;}
._25{width:219.797280px;}
._2f{width:247.227120px;}
._2{width:255.692640px;}
._2d{width:301.190400px;}
._3{width:357.120000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._1a{width:444.257280px;}
._9{width:604.364160px;}
._f{width:653.880000px;}
._10{width:703.560000px;}
._a{width:1097.040000px;}
._d{width:1176.060000px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:5.760000px;}
.y10b{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y9c{bottom:6.480000px;}
.ya2{bottom:6.660000px;}
.y130{bottom:7.020000px;}
.ye0{bottom:7.200000px;}
.yf0{bottom:7.245000px;}
.y18d{bottom:7.380000px;}
.y142{bottom:7.920000px;}
.y9d{bottom:10.620000px;}
.yb6{bottom:10.800000px;}
.yb8{bottom:10.830000px;}
.yde{bottom:11.700000px;}
.y105{bottom:11.880000px;}
.y6{bottom:12.420000px;}
.y179{bottom:13.140000px;}
.y114{bottom:15.660000px;}
.y152{bottom:15.705000px;}
.y95{bottom:15.840000px;}
.y12e{bottom:18.000000px;}
.y8{bottom:18.180000px;}
.y164{bottom:19.620000px;}
.y174{bottom:19.800000px;}
.ydc{bottom:21.600000px;}
.y103{bottom:21.780000px;}
.yd7{bottom:25.560000px;}
.y151{bottom:25.605000px;}
.y99{bottom:25.740000px;}
.y123{bottom:25.770000px;}
.y141{bottom:27.900000px;}
.y165{bottom:29.520000px;}
.y172{bottom:29.700000px;}
.yda{bottom:31.500000px;}
.y101{bottom:31.680000px;}
.y177{bottom:32.940000px;}
.y167{bottom:35.460000px;}
.y93{bottom:35.640000px;}
.y124{bottom:35.670000px;}
.yc{bottom:36.000000px;}
.y162{bottom:39.600000px;}
.y170{bottom:39.630000px;}
.y5{bottom:40.320000px;}
.ydb{bottom:41.400000px;}
.y102{bottom:41.580000px;}
.y154{bottom:45.360000px;}
.y98{bottom:45.540000px;}
.y125{bottom:45.570000px;}
.yd8{bottom:49.500000px;}
.y171{bottom:49.530000px;}
.y91{bottom:49.680000px;}
.ydd{bottom:51.300000px;}
.y104{bottom:51.480000px;}
.y178{bottom:52.740000px;}
.y92{bottom:55.440000px;}
.yb{bottom:57.780000px;}
.y163{bottom:59.400000px;}
.y173{bottom:59.430000px;}
.ybf{bottom:65.340000px;}
.y97{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.ybd{bottom:75.240000px;}
.y94{bottom:75.285000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.ybe{bottom:85.140000px;}
.y96{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.y6b{bottom:100.620000px;}
.y14d{bottom:103.860000px;}
.y3c{bottom:105.480000px;}
.yff{bottom:106.920000px;}
.y129{bottom:108.000000px;}
.y1a0{bottom:109.620000px;}
.y8f{bottom:110.520000px;}
.y175{bottom:110.700000px;}
.y1be{bottom:111.780000px;}
.yaa{bottom:113.040000px;}
.y199{bottom:115.920000px;}
.y1c1{bottom:116.460000px;}
.y1ac{bottom:118.620000px;}
.y6a{bottom:120.420000px;}
.y128{bottom:122.760000px;}
.y14c{bottom:123.660000px;}
.y3b{bottom:125.280000px;}
.y2{bottom:125.670000px;}
.ybb{bottom:127.080000px;}
.yfe{bottom:129.420000px;}
.y8e{bottom:130.320000px;}
.y1bd{bottom:131.580000px;}
.ya9{bottom:134.280000px;}
.y198{bottom:135.720000px;}
.y1c0{bottom:136.260000px;}
.y1ab{bottom:138.420000px;}
.y69{bottom:140.400000px;}
.yba{bottom:142.020000px;}
.y127{bottom:142.740000px;}
.y14b{bottom:143.460000px;}
.y3a{bottom:145.080000px;}
.y19f{bottom:149.400000px;}
.y8d{bottom:150.120000px;}
.y1bc{bottom:151.380000px;}
.yfd{bottom:151.920000px;}
.ya8{bottom:155.520000px;}
.y1bf{bottom:156.060000px;}
.y1aa{bottom:158.400000px;}
.y68{bottom:160.200000px;}
.y126{bottom:162.540000px;}
.y14a{bottom:163.260000px;}
.y39{bottom:165.060000px;}
.y19e{bottom:169.200000px;}
.y8c{bottom:169.920000px;}
.y16f{bottom:171.000000px;}
.y1bb{bottom:171.360000px;}
.yb9{bottom:171.720000px;}
.yfc{bottom:174.420000px;}
.y197{bottom:175.500000px;}
.ya7{bottom:176.760000px;}
.y1a9{bottom:178.200000px;}
.y67{bottom:180.000000px;}
.y149{bottom:183.240000px;}
.y38{bottom:184.860000px;}
.y19d{bottom:189.000000px;}
.y8b{bottom:189.900000px;}
.y1ba{bottom:191.160000px;}
.y196{bottom:195.300000px;}
.yfb{bottom:196.920000px;}
.ya6{bottom:198.000000px;}
.y66{bottom:199.800000px;}
.yb7{bottom:201.420000px;}
.y148{bottom:203.040000px;}
.y37{bottom:204.660000px;}
.y19c{bottom:208.800000px;}
.y8a{bottom:209.730000px;}
.y1b9{bottom:210.990000px;}
.y195{bottom:215.130000px;}
.y1a8{bottom:217.830000px;}
.ya5{bottom:219.270000px;}
.yfa{bottom:219.450000px;}
.y65{bottom:219.630000px;}
.y147{bottom:222.870000px;}
.y36{bottom:224.490000px;}
.y19b{bottom:228.630000px;}
.y89{bottom:229.530000px;}
.y1b8{bottom:230.790000px;}
.yb5{bottom:232.050000px;}
.y194{bottom:234.930000px;}
.y1a7{bottom:237.630000px;}
.y64{bottom:239.610000px;}
.ya4{bottom:240.510000px;}
.yf9{bottom:241.950000px;}
.y146{bottom:242.670000px;}
.y35{bottom:244.290000px;}
.y19a{bottom:248.610000px;}
.y88{bottom:249.330000px;}
.y1b7{bottom:250.590000px;}
.y122{bottom:250.950000px;}
.y193{bottom:254.730000px;}
.y1a6{bottom:257.610000px;}
.y63{bottom:259.410000px;}
.ya3{bottom:261.750000px;}
.y34{bottom:264.270000px;}
.yf8{bottom:264.450000px;}
.y16e{bottom:264.990000px;}
.yb4{bottom:268.410000px;}
.y87{bottom:269.130000px;}
.y1b6{bottom:270.390000px;}
.y121{bottom:270.930000px;}
.y145{bottom:271.470000px;}
.y192{bottom:274.710000px;}
.y1a5{bottom:277.410000px;}
.y62{bottom:279.210000px;}
.ya1{bottom:282.810000px;}
.y33{bottom:284.070000px;}
.y16d{bottom:284.790000px;}
.yf7{bottom:286.950000px;}
.yb3{bottom:288.210000px;}
.y86{bottom:289.110000px;}
.y1b5{bottom:290.370000px;}
.y120{bottom:290.730000px;}
.y144{bottom:291.450000px;}
.y191{bottom:294.510000px;}
.y1a4{bottom:297.210000px;}
.y61{bottom:299.010000px;}
.y32{bottom:303.870000px;}
.ya0{bottom:304.050000px;}
.y16c{bottom:304.590000px;}
.yb2{bottom:308.010000px;}
.y85{bottom:308.910000px;}
.yf6{bottom:309.450000px;}
.y1b4{bottom:310.170000px;}
.y11f{bottom:310.530000px;}
.y143{bottom:311.250000px;}
.y190{bottom:314.310000px;}
.y1a3{bottom:317.010000px;}
.y60{bottom:318.810000px;}
.y31{bottom:323.670000px;}
.y16b{bottom:324.390000px;}
.y9f{bottom:325.290000px;}
.y140{bottom:326.010000px;}
.yb1{bottom:327.810000px;}
.y84{bottom:328.710000px;}
.y1b3{bottom:329.970000px;}
.y11e{bottom:330.330000px;}
.yf5{bottom:331.950000px;}
.y18f{bottom:334.110000px;}
.y1a2{bottom:336.810000px;}
.y5f{bottom:338.790000px;}
.y30{bottom:343.470000px;}
.y16a{bottom:344.190000px;}
.y9e{bottom:346.530000px;}
.yb0{bottom:347.790000px;}
.y83{bottom:348.510000px;}
.y1b2{bottom:349.770000px;}
.y11d{bottom:350.130000px;}
.y18e{bottom:353.910000px;}
.yf4{bottom:354.450000px;}
.y1a1{bottom:356.790000px;}
.y2f{bottom:363.450000px;}
.y169{bottom:364.170000px;}
.y1b1{bottom:367.050000px;}
.y5e{bottom:367.590000px;}
.y9b{bottom:367.770000px;}
.y82{bottom:368.310000px;}
.y18c{bottom:368.670000px;}
.y11c{bottom:369.930000px;}
.y13f{bottom:370.110000px;}
.yaf{bottom:376.590000px;}
.yf3{bottom:376.950000px;}
.yd6{bottom:378.390000px;}
.y2e{bottom:383.250000px;}
.y168{bottom:383.970000px;}
.y1b0{bottom:384.330000px;}
.y5d{bottom:387.390000px;}
.y81{bottom:388.290000px;}
.y90{bottom:389.730000px;}
.y11b{bottom:389.910000px;}
.y18b{bottom:391.530000px;}
.y13e{bottom:392.610000px;}
.yae{bottom:396.390000px;}
.y166{bottom:398.730000px;}
.yf2{bottom:399.450000px;}
.y1af{bottom:401.610000px;}
.y2d{bottom:403.050000px;}
.y5c{bottom:407.190000px;}
.y80{bottom:408.090000px;}
.y11a{bottom:409.710000px;}
.y13d{bottom:415.110000px;}
.yad{bottom:416.190000px;}
.y1ae{bottom:418.890000px;}
.yf1{bottom:421.950000px;}
.y2c{bottom:422.850000px;}
.y5b{bottom:426.990000px;}
.y7f{bottom:427.890000px;}
.y119{bottom:429.510000px;}
.y18a{bottom:435.630000px;}
.yac{bottom:435.990000px;}
.y1ad{bottom:436.170000px;}
.y13c{bottom:438.330000px;}
.y2b{bottom:442.650000px;}
.yef{bottom:444.450000px;}
.y5a{bottom:447.015000px;}
.y7e{bottom:447.735000px;}
.y118{bottom:449.355000px;}
.yab{bottom:456.015000px;}
.y189{bottom:458.895000px;}
.y2a{bottom:462.675000px;}
.y117{bottom:464.115000px;}
.yee{bottom:466.995000px;}
.y7d{bottom:467.535000px;}
.y59{bottom:475.815000px;}
.yd5{bottom:478.335000px;}
.y161{bottom:478.875000px;}
.y29{bottom:482.475000px;}
.y13b{bottom:487.335000px;}
.y7c{bottom:487.515000px;}
.yed{bottom:489.495000px;}
.y58{bottom:495.615000px;}
.yd4{bottom:499.575000px;}
.y28{bottom:502.275000px;}
.y13a{bottom:507.135000px;}
.y7b{bottom:507.315000px;}
.y188{bottom:509.655000px;}
.yec{bottom:511.995000px;}
.y57{bottom:515.415000px;}
.yd3{bottom:520.815000px;}
.y27{bottom:522.075000px;}
.y116{bottom:523.695000px;}
.y139{bottom:526.935000px;}
.y7a{bottom:527.115000px;}
.y187{bottom:529.455000px;}
.yeb{bottom:534.495000px;}
.y56{bottom:535.215000px;}
.y26{bottom:541.875000px;}
.yd2{bottom:542.055000px;}
.y138{bottom:546.735000px;}
.y79{bottom:546.915000px;}
.y186{bottom:549.255000px;}
.y55{bottom:555.195000px;}
.yea{bottom:556.995000px;}
.y25{bottom:561.855000px;}
.yd1{bottom:563.295000px;}
.y137{bottom:566.715000px;}
.y185{bottom:569.055000px;}
.y160{bottom:572.655000px;}
.y54{bottom:574.995000px;}
.ye9{bottom:579.495000px;}
.y24{bottom:581.655000px;}
.y115{bottom:583.275000px;}
.yd0{bottom:584.535000px;}
.y136{bottom:586.515000px;}
.y184{bottom:588.855000px;}
.y15f{bottom:592.635000px;}
.y53{bottom:594.795000px;}
.y23{bottom:598.935000px;}
.ye8{bottom:601.995000px;}
.y113{bottom:603.795000px;}
.ycf{bottom:605.775000px;}
.y183{bottom:608.835000px;}
.y15e{bottom:612.435000px;}
.y52{bottom:614.595000px;}
.y135{bottom:615.315000px;}
.y22{bottom:618.735000px;}
.ye7{bottom:624.495000px;}
.yce{bottom:626.835000px;}
.y182{bottom:628.635000px;}
.y15d{bottom:632.235000px;}
.y51{bottom:634.395000px;}
.y134{bottom:635.115000px;}
.y21{bottom:638.535000px;}
.ye6{bottom:646.995000px;}
.ycd{bottom:648.075000px;}
.y181{bottom:648.435000px;}
.y15c{bottom:652.035000px;}
.y50{bottom:654.375000px;}
.y133{bottom:654.915000px;}
.y20{bottom:655.815000px;}
.ycc{bottom:669.315000px;}
.ye5{bottom:669.495000px;}
.y112{bottom:669.855000px;}
.y15b{bottom:671.835000px;}
.y4f{bottom:674.175000px;}
.y132{bottom:674.895000px;}
.y1f{bottom:675.615000px;}
.y180{bottom:677.235000px;}
.y111{bottom:689.685000px;}
.ycb{bottom:690.585000px;}
.y15a{bottom:691.845000px;}
.ye4{bottom:692.025000px;}
.y4e{bottom:694.005000px;}
.y131{bottom:694.725000px;}
.y1e{bottom:695.445000px;}
.y17f{bottom:697.065000px;}
.y110{bottom:709.485000px;}
.y159{bottom:711.645000px;}
.yca{bottom:711.825000px;}
.y4d{bottom:713.805000px;}
.ye3{bottom:714.525000px;}
.y1d{bottom:715.245000px;}
.y17e{bottom:717.045000px;}
.y10f{bottom:729.465000px;}
.y158{bottom:731.445000px;}
.y12f{bottom:731.985000px;}
.yc9{bottom:733.065000px;}
.y4c{bottom:733.605000px;}
.y1c{bottom:735.225000px;}
.y78{bottom:735.585000px;}
.y17d{bottom:736.845000px;}
.ye2{bottom:737.025000px;}
.y10e{bottom:749.265000px;}
.y157{bottom:751.245000px;}
.y4b{bottom:753.585000px;}
.yc8{bottom:754.305000px;}
.y1b{bottom:755.025000px;}
.y12d{bottom:755.205000px;}
.y17c{bottom:756.645000px;}
.ye1{bottom:759.525000px;}
.y77{bottom:764.385000px;}
.y10d{bottom:769.065000px;}
.y156{bottom:771.045000px;}
.y4a{bottom:773.385000px;}
.y1a{bottom:774.825000px;}
.yc7{bottom:775.545000px;}
.y17b{bottom:776.445000px;}
.ydf{bottom:782.025000px;}
.y76{bottom:784.185000px;}
.y10c{bottom:788.865000px;}
.y155{bottom:790.845000px;}
.y17a{bottom:791.205000px;}
.y49{bottom:793.185000px;}
.y19{bottom:794.625000px;}
.yc6{bottom:796.785000px;}
.y10a{bottom:803.625000px;}
.y75{bottom:803.985000px;}
.yd9{bottom:805.425000px;}
.y12c{bottom:805.785000px;}
.y48{bottom:812.985000px;}
.y18{bottom:814.425000px;}
.yc5{bottom:818.025000px;}
.y74{bottom:823.785000px;}
.y12b{bottom:825.765000px;}
.y47{bottom:832.785000px;}
.y17{bottom:834.405000px;}
.yc4{bottom:839.265000px;}
.y73{bottom:843.765000px;}
.y12a{bottom:845.565000px;}
.y176{bottom:851.505000px;}
.y46{bottom:852.765000px;}
.y16{bottom:854.205000px;}
.yc3{bottom:860.505000px;}
.y72{bottom:863.565000px;}
.y153{bottom:865.185000px;}
.y45{bottom:872.565000px;}
.y15{bottom:874.005000px;}
.yc2{bottom:881.565000px;}
.y109{bottom:883.005000px;}
.y71{bottom:883.365000px;}
.y14{bottom:891.285000px;}
.y44{bottom:892.365000px;}
.yc1{bottom:902.805000px;}
.y70{bottom:903.165000px;}
.y150{bottom:904.965000px;}
.y108{bottom:905.505000px;}
.y43{bottom:912.165000px;}
.y13{bottom:916.305000px;}
.y6f{bottom:923.010000px;}
.yc0{bottom:924.090000px;}
.y107{bottom:928.050000px;}
.y12{bottom:931.470000px;}
.y42{bottom:932.010000px;}
.y6e{bottom:942.990000px;}
.y14f{bottom:944.610000px;}
.ybc{bottom:945.330000px;}
.y106{bottom:950.550000px;}
.y41{bottom:951.990000px;}
.y11{bottom:952.710000px;}
.y6d{bottom:962.790000px;}
.y14e{bottom:965.130000px;}
.y40{bottom:971.790000px;}
.y100{bottom:973.050000px;}
.y10{bottom:976.290000px;}
.y6c{bottom:982.590000px;}
.y3f{bottom:991.590000px;}
.yf{bottom:1007.790000px;}
.y3e{bottom:1011.390000px;}
.y3d{bottom:1031.190000px;}
.y9{bottom:1048.650000px;}
.y1{bottom:1063.230000px;}
.y7{bottom:1097.430000px;}
.h7{height:2.581875px;}
.h1e{height:19.800000px;}
.h1f{height:19.980000px;}
.h14{height:21.060000px;}
.h13{height:21.240000px;}
.h15{height:21.276000px;}
.h22{height:21.600000px;}
.ha{height:21.780000px;}
.h1a{height:22.500000px;}
.h1b{height:22.536000px;}
.h2b{height:22.860000px;}
.h16{height:29.700000px;}
.h17{height:29.916000px;}
.h8{height:33.480000px;}
.hd{height:34.855313px;}
.h20{height:39.600000px;}
.h24{height:39.636000px;}
.h25{height:39.780000px;}
.h10{height:42.164648px;}
.he{height:43.506914px;}
.h23{height:44.100000px;}
.h4{height:46.736719px;}
.h12{height:48.496641px;}
.hf{height:49.255313px;}
.hc{height:53.224453px;}
.h5{height:53.573906px;}
.h9{height:59.383125px;}
.h26{height:59.400000px;}
.h2c{height:59.439023px;}
.h1d{height:59.580000px;}
.h21{height:59.616000px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.h19{height:71.460000px;}
.h2a{height:74.016000px;}
.h1c{height:79.380000px;}
.h28{height:79.416000px;}
.h27{height:87.300000px;}
.h29{height:87.336000px;}
.h18{height:99.180000px;}
.h11{height:99.216000px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:9.720000px;}
.w28{width:67.680000px;}
.w24{width:76.896000px;}
.w11{width:77.076000px;}
.w2e{width:81.036000px;}
.w1d{width:83.700000px;}
.w16{width:92.160000px;}
.w17{width:92.196000px;}
.w2b{width:93.276000px;}
.w2a{width:101.520000px;}
.w10{width:102.240000px;}
.w1f{width:102.636000px;}
.w15{width:102.816000px;}
.w20{width:109.440000px;}
.w33{width:110.376000px;}
.w30{width:111.276000px;}
.w2c{width:113.076000px;}
.w1a{width:115.560000px;}
.w22{width:116.316000px;}
.w31{width:118.980000px;}
.w25{width:120.276000px;}
.w9{width:120.996000px;}
.w8{width:121.140000px;}
.w7{width:121.176000px;}
.w12{width:124.956000px;}
.w18{width:128.376000px;}
.wd{width:128.916000px;}
.w3{width:131.796000px;}
.w32{width:134.316000px;}
.wc{width:139.500000px;}
.w21{width:140.436000px;}
.w2d{width:144.360000px;}
.w13{width:151.410000px;}
.we{width:154.290000px;}
.w27{width:158.070000px;}
.w1b{width:169.410000px;}
.w23{width:180.030000px;}
.w35{width:180.930000px;}
.w26{width:181.650000px;}
.wf{width:189.930000px;}
.w36{width:199.470000px;}
.w29{width:221.835000px;}
.w2f{width:235.650000px;}
.w14{width:263.190000px;}
.w1e{width:284.295000px;}
.w19{width:289.335000px;}
.wa{width:339.915000px;}
.wb{width:358.455000px;}
.w34{width:404.205000px;}
.w1c{width:481.965000px;}
.w2{width:654.630000px;}
.w6{width:892.439973px;}
.w4{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.100000px;}
.x47{left:54.179987px;}
.x39{left:68.760000px;}
.x2b{left:69.840000px;}
.x45{left:81.035987px;}
.x3f{left:91.116000px;}
.x6{left:93.275987px;}
.x14{left:97.236000px;}
.xd{left:100.295973px;}
.x16{left:106.056000px;}
.x46{left:108.035987px;}
.x4{left:118.290000px;}
.x1b{left:123.516000px;}
.xe{left:130.535987px;}
.xf{left:142.956000px;}
.x24{left:159.150000px;}
.x29{left:163.470000px;}
.xc{left:170.669987px;}
.x7{left:200.549987px;}
.x32{left:234.030000px;}
.x17{left:245.550000px;}
.xa{left:257.294987px;}
.x10{left:264.135000px;}
.x9{left:273.674987px;}
.x3a{left:290.595000px;}
.x33{left:310.935000px;}
.x1c{left:313.455000px;}
.x40{left:326.775000px;}
.xb{left:335.234987px;}
.x2c{left:354.135000px;}
.x30{left:360.614973px;}
.x20{left:370.155000px;}
.x18{left:374.475000px;}
.x11{left:385.275000px;}
.x31{left:390.854987px;}
.x3b{left:392.115000px;}
.x1d{left:415.695000px;}
.x27{left:420.944973px;}
.x34{left:431.205000px;}
.x15{left:437.145000px;}
.x8{left:446.324987px;}
.x25{left:448.485000px;}
.x28{left:451.184987px;}
.x2d{left:456.765000px;}
.x43{left:458.205000px;}
.x21{left:472.965000px;}
.x3c{left:485.385000px;}
.x1e{left:492.765000px;}
.x19{left:503.385000px;}
.x12{left:506.265000px;}
.x37{left:521.924973px;}
.x38{left:552.164987px;}
.x41{left:557.025000px;}
.x26{left:564.045000px;}
.x22{left:565.125000px;}
.x2e{left:566.205000px;}
.x3d{left:598.470000px;}
.x35{left:612.870000px;}
.x1f{left:617.730000px;}
.x13{left:627.450000px;}
.x1a{left:632.310000px;}
.x44{left:639.150000px;}
.x2a{left:645.450000px;}
.x23{left:657.330000px;}
.x42{left:691.350000px;}
.x2f{left:706.650000px;}
.x3{left:707.730000px;}
.x3e{left:742.830000px;}
.x36{left:770.940000px;}
.x5{left:828.900000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-1.120000pt;}
.lsc{letter-spacing:-0.960000pt;}
.ls11{letter-spacing:-0.821333pt;}
.lsa{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.367467pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls20{letter-spacing:-0.230933pt;}
.ls5{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.047360pt;}
.ls13{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls21{letter-spacing:0.094933pt;}
.ls4{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.ls1b{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:0.426667pt;}
.ls1e{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.800000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls22{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.714880pt;}
.ls8{letter-spacing:5.712640pt;}
.ls17{letter-spacing:8.912640pt;}
.ls18{letter-spacing:14.672640pt;}
.ls0{letter-spacing:26.832640pt;}
.ls1c{letter-spacing:27.680000pt;}
.ls1f{letter-spacing:28.320000pt;}
.ls16{letter-spacing:40.912640pt;}
.wsd{word-spacing:-35.856000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.049067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._45{margin-left:-13.007360pt;}
._1e{margin-left:-8.343680pt;}
._1c{margin-left:-3.933440pt;}
._19{margin-left:-2.850987pt;}
._b{margin-left:-1.929813pt;}
._0{margin-left:-0.960000pt;}
._c{width:0.988587pt;}
._1{width:1.973333pt;}
._12{width:3.452800pt;}
._15{width:4.395307pt;}
._18{width:5.452587pt;}
._14{width:6.811307pt;}
._11{width:8.384640pt;}
._6{width:9.600000pt;}
._13{width:10.511787pt;}
._1d{width:12.132053pt;}
._1b{width:14.714240pt;}
._26{width:15.882880pt;}
._17{width:17.579307pt;}
._16{width:18.779307pt;}
._3c{width:20.926080pt;}
._3d{width:22.114347pt;}
._1f{width:23.054080pt;}
._4b{width:24.668373pt;}
._23{width:25.869440pt;}
._2e{width:26.954240pt;}
._3e{width:28.174293pt;}
._3b{width:29.666987pt;}
._20{width:30.968960pt;}
._38{width:32.689493pt;}
._39{width:33.669120pt;}
._3a{width:35.132160pt;}
._40{width:38.119253pt;}
._3f{width:39.043200pt;}
._29{width:40.445013pt;}
._28{width:41.752320pt;}
._51{width:43.400107pt;}
._22{width:45.661867pt;}
._41{width:50.304640pt;}
._34{width:53.279360pt;}
._33{width:54.182400pt;}
._35{width:55.141760pt;}
._42{width:62.237013pt;}
._31{width:63.339733pt;}
._32{width:64.976213pt;}
._50{width:65.995733pt;}
._7{width:67.808853pt;}
._2a{width:70.139093pt;}
._2b{width:71.597867pt;}
._30{width:74.261760pt;}
._4a{width:78.769707pt;}
._44{width:80.222293pt;}
._43{width:81.167360pt;}
._46{width:96.433493pt;}
._47{width:97.637333pt;}
._24{width:103.057920pt;}
._49{width:106.164480pt;}
._48{width:107.057493pt;}
._4e{width:109.341653pt;}
._4f{width:110.501547pt;}
._21{width:113.889280pt;}
._4c{width:123.524693pt;}
._4d{width:124.959573pt;}
._37{width:129.288107pt;}
._36{width:130.473173pt;}
._8{width:136.960000pt;}
._2c{width:169.080960pt;}
._e{width:173.440000pt;}
._27{width:178.848000pt;}
._25{width:195.375360pt;}
._2f{width:219.757440pt;}
._2{width:227.282347pt;}
._2d{width:267.724800pt;}
._3{width:317.440000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._1a{width:394.895360pt;}
._9{width:537.212587pt;}
._f{width:581.226667pt;}
._10{width:625.386667pt;}
._a{width:975.146667pt;}
._d{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:5.120000pt;}
.y10b{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y9c{bottom:5.760000pt;}
.ya2{bottom:5.920000pt;}
.y130{bottom:6.240000pt;}
.ye0{bottom:6.400000pt;}
.yf0{bottom:6.440000pt;}
.y18d{bottom:6.560000pt;}
.y142{bottom:7.040000pt;}
.y9d{bottom:9.440000pt;}
.yb6{bottom:9.600000pt;}
.yb8{bottom:9.626667pt;}
.yde{bottom:10.400000pt;}
.y105{bottom:10.560000pt;}
.y6{bottom:11.040000pt;}
.y179{bottom:11.680000pt;}
.y114{bottom:13.920000pt;}
.y152{bottom:13.960000pt;}
.y95{bottom:14.080000pt;}
.y12e{bottom:16.000000pt;}
.y8{bottom:16.160000pt;}
.y164{bottom:17.440000pt;}
.y174{bottom:17.600000pt;}
.ydc{bottom:19.200000pt;}
.y103{bottom:19.360000pt;}
.yd7{bottom:22.720000pt;}
.y151{bottom:22.760000pt;}
.y99{bottom:22.880000pt;}
.y123{bottom:22.906667pt;}
.y141{bottom:24.800000pt;}
.y165{bottom:26.240000pt;}
.y172{bottom:26.400000pt;}
.yda{bottom:28.000000pt;}
.y101{bottom:28.160000pt;}
.y177{bottom:29.280000pt;}
.y167{bottom:31.520000pt;}
.y93{bottom:31.680000pt;}
.y124{bottom:31.706667pt;}
.yc{bottom:32.000000pt;}
.y162{bottom:35.200000pt;}
.y170{bottom:35.226667pt;}
.y5{bottom:35.840000pt;}
.ydb{bottom:36.800000pt;}
.y102{bottom:36.960000pt;}
.y154{bottom:40.320000pt;}
.y98{bottom:40.480000pt;}
.y125{bottom:40.506667pt;}
.yd8{bottom:44.000000pt;}
.y171{bottom:44.026667pt;}
.y91{bottom:44.160000pt;}
.ydd{bottom:45.600000pt;}
.y104{bottom:45.760000pt;}
.y178{bottom:46.880000pt;}
.y92{bottom:49.280000pt;}
.yb{bottom:51.360000pt;}
.y163{bottom:52.800000pt;}
.y173{bottom:52.826667pt;}
.ybf{bottom:58.080000pt;}
.y97{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.ybd{bottom:66.880000pt;}
.y94{bottom:66.920000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.ybe{bottom:75.680000pt;}
.y96{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.y6b{bottom:89.440000pt;}
.y14d{bottom:92.320000pt;}
.y3c{bottom:93.760000pt;}
.yff{bottom:95.040000pt;}
.y129{bottom:96.000000pt;}
.y1a0{bottom:97.440000pt;}
.y8f{bottom:98.240000pt;}
.y175{bottom:98.400000pt;}
.y1be{bottom:99.360000pt;}
.yaa{bottom:100.480000pt;}
.y199{bottom:103.040000pt;}
.y1c1{bottom:103.520000pt;}
.y1ac{bottom:105.440000pt;}
.y6a{bottom:107.040000pt;}
.y128{bottom:109.120000pt;}
.y14c{bottom:109.920000pt;}
.y3b{bottom:111.360000pt;}
.y2{bottom:111.706667pt;}
.ybb{bottom:112.960000pt;}
.yfe{bottom:115.040000pt;}
.y8e{bottom:115.840000pt;}
.y1bd{bottom:116.960000pt;}
.ya9{bottom:119.360000pt;}
.y198{bottom:120.640000pt;}
.y1c0{bottom:121.120000pt;}
.y1ab{bottom:123.040000pt;}
.y69{bottom:124.800000pt;}
.yba{bottom:126.240000pt;}
.y127{bottom:126.880000pt;}
.y14b{bottom:127.520000pt;}
.y3a{bottom:128.960000pt;}
.y19f{bottom:132.800000pt;}
.y8d{bottom:133.440000pt;}
.y1bc{bottom:134.560000pt;}
.yfd{bottom:135.040000pt;}
.ya8{bottom:138.240000pt;}
.y1bf{bottom:138.720000pt;}
.y1aa{bottom:140.800000pt;}
.y68{bottom:142.400000pt;}
.y126{bottom:144.480000pt;}
.y14a{bottom:145.120000pt;}
.y39{bottom:146.720000pt;}
.y19e{bottom:150.400000pt;}
.y8c{bottom:151.040000pt;}
.y16f{bottom:152.000000pt;}
.y1bb{bottom:152.320000pt;}
.yb9{bottom:152.640000pt;}
.yfc{bottom:155.040000pt;}
.y197{bottom:156.000000pt;}
.ya7{bottom:157.120000pt;}
.y1a9{bottom:158.400000pt;}
.y67{bottom:160.000000pt;}
.y149{bottom:162.880000pt;}
.y38{bottom:164.320000pt;}
.y19d{bottom:168.000000pt;}
.y8b{bottom:168.800000pt;}
.y1ba{bottom:169.920000pt;}
.y196{bottom:173.600000pt;}
.yfb{bottom:175.040000pt;}
.ya6{bottom:176.000000pt;}
.y66{bottom:177.600000pt;}
.yb7{bottom:179.040000pt;}
.y148{bottom:180.480000pt;}
.y37{bottom:181.920000pt;}
.y19c{bottom:185.600000pt;}
.y8a{bottom:186.426667pt;}
.y1b9{bottom:187.546667pt;}
.y195{bottom:191.226667pt;}
.y1a8{bottom:193.626667pt;}
.ya5{bottom:194.906667pt;}
.yfa{bottom:195.066667pt;}
.y65{bottom:195.226667pt;}
.y147{bottom:198.106667pt;}
.y36{bottom:199.546667pt;}
.y19b{bottom:203.226667pt;}
.y89{bottom:204.026667pt;}
.y1b8{bottom:205.146667pt;}
.yb5{bottom:206.266667pt;}
.y194{bottom:208.826667pt;}
.y1a7{bottom:211.226667pt;}
.y64{bottom:212.986667pt;}
.ya4{bottom:213.786667pt;}
.yf9{bottom:215.066667pt;}
.y146{bottom:215.706667pt;}
.y35{bottom:217.146667pt;}
.y19a{bottom:220.986667pt;}
.y88{bottom:221.626667pt;}
.y1b7{bottom:222.746667pt;}
.y122{bottom:223.066667pt;}
.y193{bottom:226.426667pt;}
.y1a6{bottom:228.986667pt;}
.y63{bottom:230.586667pt;}
.ya3{bottom:232.666667pt;}
.y34{bottom:234.906667pt;}
.yf8{bottom:235.066667pt;}
.y16e{bottom:235.546667pt;}
.yb4{bottom:238.586667pt;}
.y87{bottom:239.226667pt;}
.y1b6{bottom:240.346667pt;}
.y121{bottom:240.826667pt;}
.y145{bottom:241.306667pt;}
.y192{bottom:244.186667pt;}
.y1a5{bottom:246.586667pt;}
.y62{bottom:248.186667pt;}
.ya1{bottom:251.386667pt;}
.y33{bottom:252.506667pt;}
.y16d{bottom:253.146667pt;}
.yf7{bottom:255.066667pt;}
.yb3{bottom:256.186667pt;}
.y86{bottom:256.986667pt;}
.y1b5{bottom:258.106667pt;}
.y120{bottom:258.426667pt;}
.y144{bottom:259.066667pt;}
.y191{bottom:261.786667pt;}
.y1a4{bottom:264.186667pt;}
.y61{bottom:265.786667pt;}
.y32{bottom:270.106667pt;}
.ya0{bottom:270.266667pt;}
.y16c{bottom:270.746667pt;}
.yb2{bottom:273.786667pt;}
.y85{bottom:274.586667pt;}
.yf6{bottom:275.066667pt;}
.y1b4{bottom:275.706667pt;}
.y11f{bottom:276.026667pt;}
.y143{bottom:276.666667pt;}
.y190{bottom:279.386667pt;}
.y1a3{bottom:281.786667pt;}
.y60{bottom:283.386667pt;}
.y31{bottom:287.706667pt;}
.y16b{bottom:288.346667pt;}
.y9f{bottom:289.146667pt;}
.y140{bottom:289.786667pt;}
.yb1{bottom:291.386667pt;}
.y84{bottom:292.186667pt;}
.y1b3{bottom:293.306667pt;}
.y11e{bottom:293.626667pt;}
.yf5{bottom:295.066667pt;}
.y18f{bottom:296.986667pt;}
.y1a2{bottom:299.386667pt;}
.y5f{bottom:301.146667pt;}
.y30{bottom:305.306667pt;}
.y16a{bottom:305.946667pt;}
.y9e{bottom:308.026667pt;}
.yb0{bottom:309.146667pt;}
.y83{bottom:309.786667pt;}
.y1b2{bottom:310.906667pt;}
.y11d{bottom:311.226667pt;}
.y18e{bottom:314.586667pt;}
.yf4{bottom:315.066667pt;}
.y1a1{bottom:317.146667pt;}
.y2f{bottom:323.066667pt;}
.y169{bottom:323.706667pt;}
.y1b1{bottom:326.266667pt;}
.y5e{bottom:326.746667pt;}
.y9b{bottom:326.906667pt;}
.y82{bottom:327.386667pt;}
.y18c{bottom:327.706667pt;}
.y11c{bottom:328.826667pt;}
.y13f{bottom:328.986667pt;}
.yaf{bottom:334.746667pt;}
.yf3{bottom:335.066667pt;}
.yd6{bottom:336.346667pt;}
.y2e{bottom:340.666667pt;}
.y168{bottom:341.306667pt;}
.y1b0{bottom:341.626667pt;}
.y5d{bottom:344.346667pt;}
.y81{bottom:345.146667pt;}
.y90{bottom:346.426667pt;}
.y11b{bottom:346.586667pt;}
.y18b{bottom:348.026667pt;}
.y13e{bottom:348.986667pt;}
.yae{bottom:352.346667pt;}
.y166{bottom:354.426667pt;}
.yf2{bottom:355.066667pt;}
.y1af{bottom:356.986667pt;}
.y2d{bottom:358.266667pt;}
.y5c{bottom:361.946667pt;}
.y80{bottom:362.746667pt;}
.y11a{bottom:364.186667pt;}
.y13d{bottom:368.986667pt;}
.yad{bottom:369.946667pt;}
.y1ae{bottom:372.346667pt;}
.yf1{bottom:375.066667pt;}
.y2c{bottom:375.866667pt;}
.y5b{bottom:379.546667pt;}
.y7f{bottom:380.346667pt;}
.y119{bottom:381.786667pt;}
.y18a{bottom:387.226667pt;}
.yac{bottom:387.546667pt;}
.y1ad{bottom:387.706667pt;}
.y13c{bottom:389.626667pt;}
.y2b{bottom:393.466667pt;}
.yef{bottom:395.066667pt;}
.y5a{bottom:397.346667pt;}
.y7e{bottom:397.986667pt;}
.y118{bottom:399.426667pt;}
.yab{bottom:405.346667pt;}
.y189{bottom:407.906667pt;}
.y2a{bottom:411.266667pt;}
.y117{bottom:412.546667pt;}
.yee{bottom:415.106667pt;}
.y7d{bottom:415.586667pt;}
.y59{bottom:422.946667pt;}
.yd5{bottom:425.186667pt;}
.y161{bottom:425.666667pt;}
.y29{bottom:428.866667pt;}
.y13b{bottom:433.186667pt;}
.y7c{bottom:433.346667pt;}
.yed{bottom:435.106667pt;}
.y58{bottom:440.546667pt;}
.yd4{bottom:444.066667pt;}
.y28{bottom:446.466667pt;}
.y13a{bottom:450.786667pt;}
.y7b{bottom:450.946667pt;}
.y188{bottom:453.026667pt;}
.yec{bottom:455.106667pt;}
.y57{bottom:458.146667pt;}
.yd3{bottom:462.946667pt;}
.y27{bottom:464.066667pt;}
.y116{bottom:465.506667pt;}
.y139{bottom:468.386667pt;}
.y7a{bottom:468.546667pt;}
.y187{bottom:470.626667pt;}
.yeb{bottom:475.106667pt;}
.y56{bottom:475.746667pt;}
.y26{bottom:481.666667pt;}
.yd2{bottom:481.826667pt;}
.y138{bottom:485.986667pt;}
.y79{bottom:486.146667pt;}
.y186{bottom:488.226667pt;}
.y55{bottom:493.506667pt;}
.yea{bottom:495.106667pt;}
.y25{bottom:499.426667pt;}
.yd1{bottom:500.706667pt;}
.y137{bottom:503.746667pt;}
.y185{bottom:505.826667pt;}
.y160{bottom:509.026667pt;}
.y54{bottom:511.106667pt;}
.ye9{bottom:515.106667pt;}
.y24{bottom:517.026667pt;}
.y115{bottom:518.466667pt;}
.yd0{bottom:519.586667pt;}
.y136{bottom:521.346667pt;}
.y184{bottom:523.426667pt;}
.y15f{bottom:526.786667pt;}
.y53{bottom:528.706667pt;}
.y23{bottom:532.386667pt;}
.ye8{bottom:535.106667pt;}
.y113{bottom:536.706667pt;}
.ycf{bottom:538.466667pt;}
.y183{bottom:541.186667pt;}
.y15e{bottom:544.386667pt;}
.y52{bottom:546.306667pt;}
.y135{bottom:546.946667pt;}
.y22{bottom:549.986667pt;}
.ye7{bottom:555.106667pt;}
.yce{bottom:557.186667pt;}
.y182{bottom:558.786667pt;}
.y15d{bottom:561.986667pt;}
.y51{bottom:563.906667pt;}
.y134{bottom:564.546667pt;}
.y21{bottom:567.586667pt;}
.ye6{bottom:575.106667pt;}
.ycd{bottom:576.066667pt;}
.y181{bottom:576.386667pt;}
.y15c{bottom:579.586667pt;}
.y50{bottom:581.666667pt;}
.y133{bottom:582.146667pt;}
.y20{bottom:582.946667pt;}
.ycc{bottom:594.946667pt;}
.ye5{bottom:595.106667pt;}
.y112{bottom:595.426667pt;}
.y15b{bottom:597.186667pt;}
.y4f{bottom:599.266667pt;}
.y132{bottom:599.906667pt;}
.y1f{bottom:600.546667pt;}
.y180{bottom:601.986667pt;}
.y111{bottom:613.053333pt;}
.ycb{bottom:613.853333pt;}
.y15a{bottom:614.973333pt;}
.ye4{bottom:615.133333pt;}
.y4e{bottom:616.893333pt;}
.y131{bottom:617.533333pt;}
.y1e{bottom:618.173333pt;}
.y17f{bottom:619.613333pt;}
.y110{bottom:630.653333pt;}
.y159{bottom:632.573333pt;}
.yca{bottom:632.733333pt;}
.y4d{bottom:634.493333pt;}
.ye3{bottom:635.133333pt;}
.y1d{bottom:635.773333pt;}
.y17e{bottom:637.373333pt;}
.y10f{bottom:648.413333pt;}
.y158{bottom:650.173333pt;}
.y12f{bottom:650.653333pt;}
.yc9{bottom:651.613333pt;}
.y4c{bottom:652.093333pt;}
.y1c{bottom:653.533333pt;}
.y78{bottom:653.853333pt;}
.y17d{bottom:654.973333pt;}
.ye2{bottom:655.133333pt;}
.y10e{bottom:666.013333pt;}
.y157{bottom:667.773333pt;}
.y4b{bottom:669.853333pt;}
.yc8{bottom:670.493333pt;}
.y1b{bottom:671.133333pt;}
.y12d{bottom:671.293333pt;}
.y17c{bottom:672.573333pt;}
.ye1{bottom:675.133333pt;}
.y77{bottom:679.453333pt;}
.y10d{bottom:683.613333pt;}
.y156{bottom:685.373333pt;}
.y4a{bottom:687.453333pt;}
.y1a{bottom:688.733333pt;}
.yc7{bottom:689.373333pt;}
.y17b{bottom:690.173333pt;}
.ydf{bottom:695.133333pt;}
.y76{bottom:697.053333pt;}
.y10c{bottom:701.213333pt;}
.y155{bottom:702.973333pt;}
.y17a{bottom:703.293333pt;}
.y49{bottom:705.053333pt;}
.y19{bottom:706.333333pt;}
.yc6{bottom:708.253333pt;}
.y10a{bottom:714.333333pt;}
.y75{bottom:714.653333pt;}
.yd9{bottom:715.933333pt;}
.y12c{bottom:716.253333pt;}
.y48{bottom:722.653333pt;}
.y18{bottom:723.933333pt;}
.yc5{bottom:727.133333pt;}
.y74{bottom:732.253333pt;}
.y12b{bottom:734.013333pt;}
.y47{bottom:740.253333pt;}
.y17{bottom:741.693333pt;}
.yc4{bottom:746.013333pt;}
.y73{bottom:750.013333pt;}
.y12a{bottom:751.613333pt;}
.y176{bottom:756.893333pt;}
.y46{bottom:758.013333pt;}
.y16{bottom:759.293333pt;}
.yc3{bottom:764.893333pt;}
.y72{bottom:767.613333pt;}
.y153{bottom:769.053333pt;}
.y45{bottom:775.613333pt;}
.y15{bottom:776.893333pt;}
.yc2{bottom:783.613333pt;}
.y109{bottom:784.893333pt;}
.y71{bottom:785.213333pt;}
.y14{bottom:792.253333pt;}
.y44{bottom:793.213333pt;}
.yc1{bottom:802.493333pt;}
.y70{bottom:802.813333pt;}
.y150{bottom:804.413333pt;}
.y108{bottom:804.893333pt;}
.y43{bottom:810.813333pt;}
.y13{bottom:814.493333pt;}
.y6f{bottom:820.453333pt;}
.yc0{bottom:821.413333pt;}
.y107{bottom:824.933333pt;}
.y12{bottom:827.973333pt;}
.y42{bottom:828.453333pt;}
.y6e{bottom:838.213333pt;}
.y14f{bottom:839.653333pt;}
.ybc{bottom:840.293333pt;}
.y106{bottom:844.933333pt;}
.y41{bottom:846.213333pt;}
.y11{bottom:846.853333pt;}
.y6d{bottom:855.813333pt;}
.y14e{bottom:857.893333pt;}
.y40{bottom:863.813333pt;}
.y100{bottom:864.933333pt;}
.y10{bottom:867.813333pt;}
.y6c{bottom:873.413333pt;}
.y3f{bottom:881.413333pt;}
.yf{bottom:895.813333pt;}
.y3e{bottom:899.013333pt;}
.y3d{bottom:916.613333pt;}
.y9{bottom:932.133333pt;}
.y1{bottom:945.093333pt;}
.y7{bottom:975.493333pt;}
.h7{height:2.295000pt;}
.h1e{height:17.600000pt;}
.h1f{height:17.760000pt;}
.h14{height:18.720000pt;}
.h13{height:18.880000pt;}
.h15{height:18.912000pt;}
.h22{height:19.200000pt;}
.ha{height:19.360000pt;}
.h1a{height:20.000000pt;}
.h1b{height:20.032000pt;}
.h2b{height:20.320000pt;}
.h16{height:26.400000pt;}
.h17{height:26.592000pt;}
.h8{height:29.760000pt;}
.hd{height:30.982500pt;}
.h20{height:35.200000pt;}
.h24{height:35.232000pt;}
.h25{height:35.360000pt;}
.h10{height:37.479688pt;}
.he{height:38.672812pt;}
.h23{height:39.200000pt;}
.h4{height:41.543750pt;}
.h12{height:43.108125pt;}
.hf{height:43.782500pt;}
.hc{height:47.310625pt;}
.h5{height:47.621250pt;}
.h9{height:52.785000pt;}
.h26{height:52.800000pt;}
.h2c{height:52.834688pt;}
.h1d{height:52.960000pt;}
.h21{height:52.992000pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.h19{height:63.520000pt;}
.h2a{height:65.792000pt;}
.h1c{height:70.560000pt;}
.h28{height:70.592000pt;}
.h27{height:77.600000pt;}
.h29{height:77.632000pt;}
.h18{height:88.160000pt;}
.h11{height:88.192000pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:8.640000pt;}
.w28{width:60.160000pt;}
.w24{width:68.352000pt;}
.w11{width:68.512000pt;}
.w2e{width:72.032000pt;}
.w1d{width:74.400000pt;}
.w16{width:81.920000pt;}
.w17{width:81.952000pt;}
.w2b{width:82.912000pt;}
.w2a{width:90.240000pt;}
.w10{width:90.880000pt;}
.w1f{width:91.232000pt;}
.w15{width:91.392000pt;}
.w20{width:97.280000pt;}
.w33{width:98.112000pt;}
.w30{width:98.912000pt;}
.w2c{width:100.512000pt;}
.w1a{width:102.720000pt;}
.w22{width:103.392000pt;}
.w31{width:105.760000pt;}
.w25{width:106.912000pt;}
.w9{width:107.552000pt;}
.w8{width:107.680000pt;}
.w7{width:107.712000pt;}
.w12{width:111.072000pt;}
.w18{width:114.112000pt;}
.wd{width:114.592000pt;}
.w3{width:117.152000pt;}
.w32{width:119.392000pt;}
.wc{width:124.000000pt;}
.w21{width:124.832000pt;}
.w2d{width:128.320000pt;}
.w13{width:134.586667pt;}
.we{width:137.146667pt;}
.w27{width:140.506667pt;}
.w1b{width:150.586667pt;}
.w23{width:160.026667pt;}
.w35{width:160.826667pt;}
.w26{width:161.466667pt;}
.wf{width:168.826667pt;}
.w36{width:177.306667pt;}
.w29{width:197.186667pt;}
.w2f{width:209.466667pt;}
.w14{width:233.946667pt;}
.w1e{width:252.706667pt;}
.w19{width:257.186667pt;}
.wa{width:302.146667pt;}
.wb{width:318.626667pt;}
.w34{width:359.293333pt;}
.w1c{width:428.413333pt;}
.w2{width:581.893333pt;}
.w6{width:793.279976pt;}
.w4{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.200000pt;}
.x47{left:48.159988pt;}
.x39{left:61.120000pt;}
.x2b{left:62.080000pt;}
.x45{left:72.031988pt;}
.x3f{left:80.992000pt;}
.x6{left:82.911988pt;}
.x14{left:86.432000pt;}
.xd{left:89.151976pt;}
.x16{left:94.272000pt;}
.x46{left:96.031988pt;}
.x4{left:105.146667pt;}
.x1b{left:109.792000pt;}
.xe{left:116.031988pt;}
.xf{left:127.072000pt;}
.x24{left:141.466667pt;}
.x29{left:145.306667pt;}
.xc{left:151.706655pt;}
.x7{left:178.266655pt;}
.x32{left:208.026667pt;}
.x17{left:218.266667pt;}
.xa{left:228.706655pt;}
.x10{left:234.786667pt;}
.x9{left:243.266655pt;}
.x3a{left:258.306667pt;}
.x33{left:276.386667pt;}
.x1c{left:278.626667pt;}
.x40{left:290.466667pt;}
.xb{left:297.986655pt;}
.x2c{left:314.786667pt;}
.x30{left:320.546643pt;}
.x20{left:329.026667pt;}
.x18{left:332.866667pt;}
.x11{left:342.466667pt;}
.x31{left:347.426655pt;}
.x3b{left:348.546667pt;}
.x1d{left:369.506667pt;}
.x27{left:374.173310pt;}
.x34{left:383.293333pt;}
.x15{left:388.573333pt;}
.x8{left:396.733322pt;}
.x25{left:398.653333pt;}
.x28{left:401.053322pt;}
.x2d{left:406.013333pt;}
.x43{left:407.293333pt;}
.x21{left:420.413333pt;}
.x3c{left:431.453333pt;}
.x1e{left:438.013333pt;}
.x19{left:447.453333pt;}
.x12{left:450.013333pt;}
.x37{left:463.933310pt;}
.x38{left:490.813322pt;}
.x41{left:495.133333pt;}
.x26{left:501.373333pt;}
.x22{left:502.333333pt;}
.x2e{left:503.293333pt;}
.x3d{left:531.973333pt;}
.x35{left:544.773333pt;}
.x1f{left:549.093333pt;}
.x13{left:557.733333pt;}
.x1a{left:562.053333pt;}
.x44{left:568.133333pt;}
.x2a{left:573.733333pt;}
.x23{left:584.293333pt;}
.x42{left:614.533333pt;}
.x2f{left:628.133333pt;}
.x3{left:629.093333pt;}
.x3e{left:660.293333pt;}
.x36{left:685.280000pt;}
.x5{left:736.800000pt;}
}




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