
    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_6bad6cb384324c8fe9782150.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_4f13374660fd63080ead888f.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_cfd98cf46eaf928f916de89e.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_d070097ed23952b05f1280bf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_b3bd3846a6878bef154f7d82.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_862483424b1fea6acf1763b4.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_3d983c68e33ffb4be7a01a4c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.125737;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:-69.120000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls27{letter-spacing:-1.260000px;}
.lsb{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls28{letter-spacing:-0.538800px;}
.ls18{letter-spacing:-0.460200px;}
.ls5{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.269400px;}
.ls29{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls1f{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.153360px;}
.ls1a{letter-spacing:0.156000px;}
.ls1{letter-spacing:0.180000px;}
.ls26{letter-spacing:0.181200px;}
.ls25{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.206640px;}
.ls6{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls21{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls16{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.620000px;}
.lsa{letter-spacing:2.520000px;}
.ls17{letter-spacing:3.780000px;}
.ls19{letter-spacing:5.220000px;}
.ls20{letter-spacing:6.660000px;}
.ls9{letter-spacing:7.560000px;}
.ls1d{letter-spacing:8.100000px;}
.ls24{letter-spacing:8.820000px;}
.ls22{letter-spacing:10.260000px;}
.ls3{letter-spacing:66.162720px;}
.ls1c{letter-spacing:72.900000px;}
.ls1b{letter-spacing:103.116000px;}
.lsd{letter-spacing:201.036000px;}
.lsf{letter-spacing:377.436000px;}
.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;}
}
.ws13{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws12{word-spacing:-15.146400px;}
.wsf{word-spacing:-15.046800px;}
.ws11{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.166000px;}
.ws4{word-spacing:-13.860000px;}
.ws3{word-spacing:-13.608000px;}
.ws15{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.284000px;}
.wsb{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.060000px;}
.wsc{word-spacing:-11.790600px;}
.ws14{word-spacing:-11.700000px;}
.ws8{word-spacing:-9.720000px;}
.ws10{word-spacing:-7.560000px;}
.ws6{word-spacing:0.000000px;}
._13{margin-left:-7.020000px;}
._24{margin-left:-4.693680px;}
._12{margin-left:-3.574800px;}
._10{margin-left:-2.514960px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._7{width:3.984000px;}
._11{width:5.258880px;}
._4{width:6.840000px;}
._a{width:7.896240px;}
._c{width:9.090000px;}
._f{width:10.152000px;}
._b{width:12.096000px;}
._16{width:13.229520px;}
._e{width:14.850000px;}
._d{width:16.416000px;}
._17{width:17.808480px;}
._1a{width:19.661040px;}
._1b{width:21.573360px;}
._6{width:23.863680px;}
._5{width:25.056000px;}
._1e{width:26.873280px;}
._1c{width:30.136080px;}
._1f{width:33.506640px;}
._22{width:34.988160px;}
._20{width:36.793440px;}
._23{width:38.578800px;}
._9{width:41.695680px;}
._8{width:42.768000px;}
._28{width:44.073840px;}
._1d{width:50.119920px;}
._25{width:51.493680px;}
._26{width:52.740000px;}
._27{width:54.301680px;}
._2a{width:55.833600px;}
._21{width:59.108160px;}
._29{width:61.470000px;}
._18{width:509.086560px;}
._14{width:736.380000px;}
._19{width:865.686720px;}
._15{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:2.520000px;}
.y28{bottom:2.880000px;}
.y1d6{bottom:3.060000px;}
.yf{bottom:3.240000px;}
.y158{bottom:3.600000px;}
.y15a{bottom:3.780000px;}
.y30{bottom:9.000000px;}
.y10e{bottom:9.360000px;}
.y36{bottom:12.240000px;}
.yf1{bottom:16.200000px;}
.yf8{bottom:16.380000px;}
.yfb{bottom:16.425000px;}
.y27{bottom:18.540000px;}
.yea{bottom:20.340000px;}
.y14{bottom:20.520000px;}
.y162{bottom:20.565000px;}
.yf9{bottom:23.220000px;}
.y35{bottom:29.520000px;}
.yfe{bottom:30.060000px;}
.yf7{bottom:30.240000px;}
.y1d4{bottom:33.114000px;}
.y26{bottom:34.020000px;}
.ye9{bottom:37.620000px;}
.y13{bottom:37.800000px;}
.y161{bottom:37.845000px;}
.yf6{bottom:43.920000px;}
.y34{bottom:46.800000px;}
.y1d3{bottom:48.774000px;}
.y25{bottom:49.500000px;}
.ye8{bottom:54.930000px;}
.y160{bottom:54.945000px;}
.y12{bottom:55.080000px;}
.yf4{bottom:57.780000px;}
.y1de{bottom:59.760000px;}
.y33{bottom:64.080000px;}
.y1d2{bottom:64.254000px;}
.y24{bottom:64.980000px;}
.y2f{bottom:65.880000px;}
.y15f{bottom:72.225000px;}
.y1dd{bottom:75.240000px;}
.y1d1{bottom:79.734000px;}
.y1e6{bottom:79.740000px;}
.y1ee{bottom:79.950000px;}
.y23{bottom:80.640000px;}
.y11{bottom:81.225000px;}
.y5{bottom:88.200000px;}
.y32{bottom:90.360000px;}
.y1dc{bottom:90.720000px;}
.y1d0{bottom:95.214000px;}
.y1e5{bottom:95.220000px;}
.y1ed{bottom:95.430000px;}
.y22{bottom:96.120000px;}
.y1db{bottom:106.380000px;}
.y1e4{bottom:110.745000px;}
.y1cf{bottom:110.874000px;}
.y1ec{bottom:110.910000px;}
.y21{bottom:111.600000px;}
.yb1{bottom:114.660000px;}
.y12c{bottom:117.540000px;}
.y1d5{bottom:121.140000px;}
.y1da{bottom:121.860000px;}
.y1ce{bottom:126.354000px;}
.y1eb{bottom:126.390000px;}
.y1e3{bottom:126.405000px;}
.y20{bottom:127.080000px;}
.y155{bottom:127.260000px;}
.y82{bottom:128.160000px;}
.yb0{bottom:131.940000px;}
.ydc{bottom:132.840000px;}
.y12b{bottom:134.856000px;}
.y1cb{bottom:136.836000px;}
.y1d9{bottom:137.340000px;}
.y2e{bottom:137.910000px;}
.y1cd{bottom:141.834000px;}
.y1e2{bottom:141.885000px;}
.y1ea{bottom:142.050000px;}
.y1f{bottom:142.740000px;}
.y154{bottom:144.576000px;}
.y81{bottom:145.476000px;}
.y18e{bottom:146.736000px;}
.yef{bottom:149.076000px;}
.yaf{bottom:149.256000px;}
.ydb{bottom:150.150000px;}
.y12a{bottom:151.950000px;}
.y1d8{bottom:152.820000px;}
.y2d{bottom:155.190000px;}
.y47{bottom:156.990000px;}
.y1cc{bottom:157.314000px;}
.y1e1{bottom:157.365000px;}
.y1e9{bottom:157.530000px;}
.y1e{bottom:158.220000px;}
.y18d{bottom:160.410000px;}
.y153{bottom:161.850000px;}
.y80{bottom:162.750000px;}
.yae{bottom:166.350000px;}
.yda{bottom:167.250000px;}
.y129{bottom:169.230000px;}
.y2c{bottom:172.470000px;}
.y1d{bottom:173.700000px;}
.y46{bottom:174.270000px;}
.y152{bottom:178.950000px;}
.y7f{bottom:179.850000px;}
.yad{bottom:183.630000px;}
.yd9{bottom:184.530000px;}
.y128{bottom:186.510000px;}
.y18c{bottom:188.130000px;}
.y1c{bottom:189.180000px;}
.y2b{bottom:189.750000px;}
.y45{bottom:191.550000px;}
.y151{bottom:196.230000px;}
.y7e{bottom:197.130000px;}
.yac{bottom:200.910000px;}
.yd8{bottom:201.810000px;}
.y127{bottom:203.790000px;}
.y1b{bottom:204.840000px;}
.y2a{bottom:206.850000px;}
.y44{bottom:208.650000px;}
.y150{bottom:213.510000px;}
.y7d{bottom:214.410000px;}
.y18b{bottom:215.670000px;}
.yab{bottom:218.190000px;}
.yd7{bottom:219.090000px;}
.y1a{bottom:220.320000px;}
.y126{bottom:221.070000px;}
.y43{bottom:225.930000px;}
.y18a{bottom:229.530000px;}
.y14f{bottom:230.790000px;}
.y7c{bottom:231.690000px;}
.y29{bottom:233.130000px;}
.yaa{bottom:235.470000px;}
.y19{bottom:235.800000px;}
.yd6{bottom:236.370000px;}
.y125{bottom:238.350000px;}
.y42{bottom:243.210000px;}
.y14e{bottom:248.070000px;}
.y7b{bottom:248.970000px;}
.y18{bottom:251.325000px;}
.yee{bottom:252.570000px;}
.ya9{bottom:252.750000px;}
.yd5{bottom:253.650000px;}
.y124{bottom:255.450000px;}
.y189{bottom:257.070000px;}
.y41{bottom:260.490000px;}
.y14d{bottom:265.170000px;}
.y7a{bottom:266.250000px;}
.ya8{bottom:269.850000px;}
.yd4{bottom:270.750000px;}
.y188{bottom:270.930000px;}
.y123{bottom:272.730000px;}
.y40{bottom:277.770000px;}
.y14c{bottom:282.450000px;}
.y79{bottom:283.350000px;}
.y187{bottom:284.610000px;}
.ya7{bottom:287.130000px;}
.yd3{bottom:288.030000px;}
.y122{bottom:290.010000px;}
.y3f{bottom:295.050000px;}
.y186{bottom:298.470000px;}
.y14b{bottom:299.730000px;}
.y78{bottom:300.630000px;}
.yed{bottom:301.170000px;}
.ya6{bottom:304.410000px;}
.yd2{bottom:305.310000px;}
.y121{bottom:307.290000px;}
.y1ca{bottom:311.070000px;}
.y3e{bottom:312.150000px;}
.y185{bottom:312.330000px;}
.y14a{bottom:317.010000px;}
.y77{bottom:317.910000px;}
.ya5{bottom:321.690000px;}
.yd1{bottom:322.590000px;}
.y120{bottom:324.570000px;}
.y184{bottom:326.010000px;}
.y1c9{bottom:328.350000px;}
.y3d{bottom:329.430000px;}
.y149{bottom:334.290000px;}
.y76{bottom:335.190000px;}
.y16{bottom:338.115000px;}
.ya4{bottom:338.970000px;}
.yd0{bottom:339.870000px;}
.y11f{bottom:341.850000px;}
.y1c8{bottom:344.730000px;}
.y3c{bottom:346.710000px;}
.y148{bottom:351.570000px;}
.y75{bottom:352.470000px;}
.y183{bottom:353.730000px;}
.ya3{bottom:356.070000px;}
.y1c7{bottom:358.590000px;}
.y11e{bottom:358.950000px;}
.y3b{bottom:363.990000px;}
.y182{bottom:367.410000px;}
.y147{bottom:368.670000px;}
.y74{bottom:369.750000px;}
.y1c6{bottom:372.450000px;}
.ya2{bottom:373.350000px;}
.ycf{bottom:374.250000px;}
.y11d{bottom:376.230000px;}
.y3a{bottom:381.270000px;}
.y146{bottom:385.950000px;}
.y1c5{bottom:386.130000px;}
.y73{bottom:386.850000px;}
.ya1{bottom:390.675000px;}
.yce{bottom:391.575000px;}
.y11c{bottom:393.555000px;}
.y181{bottom:395.175000px;}
.y39{bottom:398.415000px;}
.y1c4{bottom:400.035000px;}
.y145{bottom:403.275000px;}
.y72{bottom:404.175000px;}
.ycd{bottom:406.335000px;}
.ya0{bottom:407.955000px;}
.y180{bottom:408.855000px;}
.y11b{bottom:410.835000px;}
.y1c3{bottom:413.895000px;}
.y38{bottom:415.695000px;}
.ycc{bottom:420.195000px;}
.y144{bottom:420.555000px;}
.y71{bottom:421.455000px;}
.y17f{bottom:422.715000px;}
.y9f{bottom:425.235000px;}
.y1c2{bottom:427.575000px;}
.y37{bottom:432.975000px;}
.ycb{bottom:434.055000px;}
.y17e{bottom:436.575000px;}
.y143{bottom:437.835000px;}
.y70{bottom:438.735000px;}
.y1c1{bottom:441.435000px;}
.y9e{bottom:442.515000px;}
.y11a{bottom:445.395000px;}
.yca{bottom:447.735000px;}
.y31{bottom:449.175000px;}
.y17d{bottom:450.255000px;}
.y142{bottom:455.115000px;}
.y1c0{bottom:455.295000px;}
.y6f{bottom:456.015000px;}
.y9d{bottom:459.615000px;}
.yc9{bottom:461.595000px;}
.y119{bottom:462.495000px;}
.y17c{bottom:464.115000px;}
.y1bf{bottom:468.975000px;}
.y141{bottom:472.215000px;}
.y6e{bottom:473.115000px;}
.yc8{bottom:475.275000px;}
.y9c{bottom:476.895000px;}
.y17b{bottom:477.795000px;}
.y118{bottom:479.055000px;}
.y1be{bottom:482.835000px;}
.yc7{bottom:489.135000px;}
.y140{bottom:489.495000px;}
.y6d{bottom:490.395000px;}
.y117{bottom:491.115000px;}
.y17a{bottom:491.655000px;}
.y9b{bottom:494.175000px;}
.y1bd{bottom:496.695000px;}
.yc6{bottom:502.995000px;}
.y116{bottom:504.975000px;}
.y179{bottom:505.515000px;}
.y13f{bottom:506.775000px;}
.y6c{bottom:507.675000px;}
.y1bc{bottom:510.375000px;}
.y9a{bottom:511.455000px;}
.yc5{bottom:516.675000px;}
.y115{bottom:518.655000px;}
.y178{bottom:519.195000px;}
.y13e{bottom:524.055000px;}
.y1bb{bottom:524.235000px;}
.y6b{bottom:524.955000px;}
.y99{bottom:528.735000px;}
.yc4{bottom:530.535000px;}
.y114{bottom:532.515000px;}
.y177{bottom:533.055000px;}
.y1ba{bottom:538.095000px;}
.y13d{bottom:541.335000px;}
.y6a{bottom:542.235000px;}
.yc3{bottom:544.395000px;}
.y98{bottom:546.015000px;}
.y113{bottom:546.375000px;}
.y176{bottom:546.915000px;}
.y1b9{bottom:551.775000px;}
.yec{bottom:556.455000px;}
.yc2{bottom:558.075000px;}
.y13c{bottom:558.615000px;}
.y69{bottom:559.515000px;}
.y112{bottom:560.055000px;}
.y175{bottom:560.595000px;}
.y97{bottom:563.115000px;}
.y15{bottom:563.295000px;}
.y1b8{bottom:565.635000px;}
.yc1{bottom:571.935000px;}
.yeb{bottom:573.735000px;}
.y111{bottom:573.915000px;}
.y174{bottom:574.455000px;}
.y13b{bottom:575.715000px;}
.y68{bottom:576.615000px;}
.y1b7{bottom:579.495000px;}
.y96{bottom:580.395000px;}
.yc0{bottom:585.795000px;}
.ye7{bottom:587.775000px;}
.y173{bottom:588.315000px;}
.y13a{bottom:592.995000px;}
.y1b6{bottom:593.175000px;}
.y67{bottom:593.895000px;}
.y95{bottom:597.675000px;}
.ybf{bottom:599.475000px;}
.y110{bottom:601.455000px;}
.y1ef{bottom:602.535000px;}
.y172{bottom:602.715000px;}
.y1e8{bottom:603.795000px;}
.y1b5{bottom:607.035000px;}
.y139{bottom:610.275000px;}
.y66{bottom:611.175000px;}
.ybe{bottom:613.335000px;}
.y94{bottom:614.955000px;}
.y10d{bottom:615.315000px;}
.y171{bottom:619.275000px;}
.y1b4{bottom:620.895000px;}
.ybd{bottom:627.195000px;}
.y138{bottom:627.555000px;}
.y65{bottom:628.455000px;}
.y10f{bottom:629.175000px;}
.y93{bottom:632.235000px;}
.y170{bottom:633.135000px;}
.y1b3{bottom:634.575000px;}
.ybc{bottom:640.905000px;}
.y10b{bottom:643.605000px;}
.y137{bottom:644.865000px;}
.y64{bottom:645.765000px;}
.y16f{bottom:647.745000px;}
.y1b2{bottom:648.465000px;}
.y92{bottom:649.365000px;}
.y17{bottom:651.525000px;}
.ybb{bottom:654.765000px;}
.ye6{bottom:656.745000px;}
.y10c{bottom:657.465000px;}
.y136{bottom:661.965000px;}
.y1b1{bottom:662.325000px;}
.y63{bottom:663.045000px;}
.y16e{bottom:664.845000px;}
.y91{bottom:666.645000px;}
.yba{bottom:668.625000px;}
.y10a{bottom:675.285000px;}
.y1b0{bottom:676.005000px;}
.y135{bottom:679.245000px;}
.y62{bottom:680.145000px;}
.y16d{bottom:681.405000px;}
.yb9{bottom:682.305000px;}
.y90{bottom:683.925000px;}
.y1af{bottom:689.865000px;}
.y16c{bottom:695.265000px;}
.yb8{bottom:696.165000px;}
.y134{bottom:696.525000px;}
.y61{bottom:697.425000px;}
.y1ae{bottom:703.725000px;}
.y109{bottom:709.845000px;}
.yb7{bottom:710.025000px;}
.y133{bottom:713.805000px;}
.y60{bottom:714.705000px;}
.y1ad{bottom:717.405000px;}
.y8f{bottom:718.485000px;}
.yb6{bottom:723.705000px;}
.y108{bottom:726.945000px;}
.y132{bottom:731.085000px;}
.y1ac{bottom:731.265000px;}
.y5f{bottom:731.985000px;}
.y8e{bottom:735.765000px;}
.yb5{bottom:737.565000px;}
.y107{bottom:743.505000px;}
.y16b{bottom:744.225000px;}
.y1ab{bottom:745.125000px;}
.y131{bottom:748.365000px;}
.y5e{bottom:749.265000px;}
.yb4{bottom:751.425000px;}
.y8d{bottom:752.865000px;}
.y105{bottom:755.565000px;}
.y1aa{bottom:758.805000px;}
.y16a{bottom:761.505000px;}
.y130{bottom:765.465000px;}
.yb2{bottom:766.005000px;}
.y5d{bottom:766.545000px;}
.y106{bottom:769.425000px;}
.y8c{bottom:770.145000px;}
.y1a9{bottom:772.665000px;}
.y1e7{bottom:774.825000px;}
.y169{bottom:778.785000px;}
.y103{bottom:783.105000px;}
.y5c{bottom:783.645000px;}
.y8b{bottom:784.185000px;}
.y1a8{bottom:786.525000px;}
.y1e0{bottom:790.485000px;}
.y168{bottom:795.345000px;}
.y104{bottom:796.965000px;}
.y12f{bottom:800.025000px;}
.y1a7{bottom:800.205000px;}
.y5b{bottom:800.925000px;}
.ye5{bottom:801.645000px;}
.y167{bottom:809.025000px;}
.y101{bottom:810.825000px;}
.y1a6{bottom:814.065000px;}
.y12e{bottom:817.305000px;}
.y5a{bottom:818.205000px;}
.ye4{bottom:818.925000px;}
.y10{bottom:820.185000px;}
.y166{bottom:823.605000px;}
.y102{bottom:824.505000px;}
.y1a5{bottom:827.745000px;}
.y12d{bottom:831.345000px;}
.y59{bottom:835.485000px;}
.ye3{bottom:836.205000px;}
.yfd{bottom:838.365000px;}
.y165{bottom:840.885000px;}
.y1a4{bottom:841.605000px;}
.y100{bottom:852.225000px;}
.y58{bottom:852.765000px;}
.ye2{bottom:853.485000px;}
.y1a3{bottom:855.465000px;}
.y164{bottom:857.445000px;}
.yff{bottom:865.905000px;}
.y1a2{bottom:869.145000px;}
.y57{bottom:869.865000px;}
.ye1{bottom:870.765000px;}
.y163{bottom:871.125000px;}
.yfa{bottom:879.765000px;}
.y15e{bottom:882.465000px;}
.y1a1{bottom:883.005000px;}
.y56{bottom:887.145000px;}
.ye0{bottom:887.865000px;}
.yfc{bottom:893.670000px;}
.y1a0{bottom:896.910000px;}
.y55{bottom:904.470000px;}
.ydf{bottom:905.190000px;}
.yf3{bottom:907.350000px;}
.y19f{bottom:910.590000px;}
.y54{bottom:921.750000px;}
.yde{bottom:922.470000px;}
.y19e{bottom:924.450000px;}
.ye{bottom:925.170000px;}
.y19d{bottom:938.310000px;}
.y53{bottom:939.030000px;}
.ydd{bottom:939.750000px;}
.y19c{bottom:951.990000px;}
.y52{bottom:956.310000px;}
.yd{bottom:957.030000px;}
.y1df{bottom:961.530000px;}
.yf5{bottom:962.610000px;}
.y19b{bottom:965.850000px;}
.y15d{bottom:971.970000px;}
.y51{bottom:973.410000px;}
.yc{bottom:974.310000px;}
.y1d7{bottom:977.010000px;}
.yf0{bottom:977.190000px;}
.y19a{bottom:979.710000px;}
.y15c{bottom:986.730000px;}
.yb{bottom:990.690000px;}
.yf2{bottom:990.870000px;}
.y8a{bottom:991.410000px;}
.y199{bottom:993.390000px;}
.y15b{bottom:1004.010000px;}
.ya{bottom:1005.270000px;}
.y198{bottom:1007.250000px;}
.y50{bottom:1007.970000px;}
.y89{bottom:1008.690000px;}
.y197{bottom:1021.110000px;}
.y159{bottom:1021.290000px;}
.y9{bottom:1022.550000px;}
.y4f{bottom:1025.250000px;}
.y88{bottom:1025.970000px;}
.y196{bottom:1034.790000px;}
.y157{bottom:1038.570000px;}
.y8{bottom:1039.830000px;}
.y4e{bottom:1042.530000px;}
.y87{bottom:1043.250000px;}
.y195{bottom:1048.650000px;}
.y156{bottom:1056.570000px;}
.y7{bottom:1059.090000px;}
.y4d{bottom:1059.810000px;}
.y86{bottom:1060.530000px;}
.y194{bottom:1062.510000px;}
.y193{bottom:1076.190000px;}
.y4c{bottom:1076.910000px;}
.y85{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y192{bottom:1090.050000px;}
.y4b{bottom:1094.190000px;}
.y84{bottom:1094.910000px;}
.y191{bottom:1103.910000px;}
.y4a{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y190{bottom:1117.590000px;}
.y49{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y18f{bottom:1131.450000px;}
.y2{bottom:1146.780000px;}
.y83{bottom:1160.640000px;}
.y48{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h2e{height:5.653125px;}
.h17{height:13.680000px;}
.h19{height:13.716000px;}
.h18{height:13.860000px;}
.h20{height:13.896000px;}
.h2b{height:15.480000px;}
.h2d{height:15.660000px;}
.h29{height:15.696000px;}
.h13{height:17.100000px;}
.h16{height:17.280000px;}
.h7{height:26.280000px;}
.h1c{height:27.540000px;}
.h1f{height:27.576000px;}
.h22{height:27.720000px;}
.h26{height:33.683203px;}
.hd{height:37.705078px;}
.h21{height:41.400000px;}
.h14{height:41.726953px;}
.h25{height:47.321367px;}
.h6{height:47.344922px;}
.h24{height:48.616875px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h28{height:54.421875px;}
.h1e{height:55.260000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h15{height:59.038594px;}
.h2{height:60.226875px;}
.h12{height:62.211094px;}
.h1b{height:68.976000px;}
.h1d{height:69.120000px;}
.h8{height:70.664062px;}
.h23{height:86.256000px;}
.hf{height:87.516000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h11{height:113.400000px;}
.h1a{height:141.660000px;}
.h2a{height:166.500000px;}
.h27{height:171.000000px;}
.h2c{height:171.030000px;}
.he{height:256.170000px;}
.hb{height:272.910000px;}
.ha{height:361.155000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w8{width:29.880000px;}
.w7{width:30.060000px;}
.w25{width:35.100000px;}
.w20{width:35.280000px;}
.w24{width:35.316000px;}
.w21{width:35.640000px;}
.w26{width:36.036000px;}
.w22{width:36.180000px;}
.w27{width:36.360000px;}
.w28{width:36.540000px;}
.w23{width:36.720000px;}
.wf{width:38.340000px;}
.w17{width:49.860000px;}
.w1c{width:52.200000px;}
.w1a{width:76.500000px;}
.wa{width:76.680000px;}
.w1b{width:97.236000px;}
.w14{width:102.960000px;}
.w13{width:103.356000px;}
.w12{width:103.500000px;}
.w16{width:104.976000px;}
.w1e{width:130.896000px;}
.w2c{width:144.540000px;}
.wc{width:153.210000px;}
.w1f{width:158.070000px;}
.w2b{width:198.570000px;}
.w15{width:205.230000px;}
.w3{width:209.190000px;}
.w29{width:214.770000px;}
.w19{width:225.930000px;}
.w1d{width:243.210000px;}
.w2a{width:244.290000px;}
.w11{width:309.810000px;}
.w10{width:310.215000px;}
.we{width:329.115000px;}
.wd{width:329.250000px;}
.wb{width:349.275000px;}
.w18{width:374.115000px;}
.w5{width:433.155000px;}
.w9{width:502.485000px;}
.w2d{width:525.705000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x9{left:10.620000px;}
.x25{left:12.600000px;}
.x2e{left:14.580000px;}
.x2b{left:16.560000px;}
.x1c{left:19.080000px;}
.x3a{left:20.340000px;}
.x29{left:21.600000px;}
.x3c{left:24.120000px;}
.x1d{left:25.734000px;}
.x30{left:29.700000px;}
.x2d{left:33.480000px;}
.x33{left:34.560000px;}
.x34{left:35.640000px;}
.x32{left:37.980000px;}
.x31{left:41.400000px;}
.x35{left:49.500000px;}
.x28{left:58.320000px;}
.x26{left:74.160000px;}
.xb{left:106.560000px;}
.x4f{left:116.496000px;}
.x1f{left:119.730000px;}
.x6{left:125.496000px;}
.x1{left:127.655987px;}
.x51{left:131.754000px;}
.x1e{left:136.614000px;}
.x2{left:142.955987px;}
.x21{left:148.175987px;}
.xf{left:154.649987px;}
.xe{left:157.349987px;}
.x14{left:159.689987px;}
.x1b{left:164.559000px;}
.x23{left:165.629987px;}
.x15{left:167.610000px;}
.x36{left:177.510000px;}
.x10{left:179.489987px;}
.xd{left:181.649987px;}
.x5{left:185.609987px;}
.x16{left:188.685000px;}
.x13{left:209.909987px;}
.x24{left:239.429987px;}
.x4{left:241.769987px;}
.x50{left:261.030000px;}
.x1a{left:264.675000px;}
.x3e{left:267.509987px;}
.x3f{left:286.095000px;}
.x19{left:309.639000px;}
.x40{left:321.375000px;}
.x8{left:334.695000px;}
.x4d{left:343.155000px;}
.xa{left:355.755000px;}
.x41{left:357.015000px;}
.x2f{left:371.235000px;}
.x42{left:393.195000px;}
.x22{left:398.054987px;}
.x3b{left:420.735000px;}
.xc{left:425.055000px;}
.x43{left:429.915000px;}
.x3{left:457.274987px;}
.x44{left:466.095000px;}
.x27{left:476.205000px;}
.x45{left:501.405000px;}
.x18{left:516.885000px;}
.x46{left:536.685000px;}
.x37{left:551.625000px;}
.x47{left:571.965000px;}
.x2a{left:579.705000px;}
.x4e{left:587.445000px;}
.x48{left:607.065000px;}
.x3d{left:620.924987px;}
.x38{left:628.125000px;}
.x49{left:642.345000px;}
.x17{left:670.110000px;}
.x4a{left:678.390000px;}
.x2c{left:683.070000px;}
.x20{left:685.949987px;}
.x12{left:689.729987px;}
.x4b{left:714.750000px;}
.x39{left:725.370000px;}
.x4c{left:749.850000px;}
.x11{left:756.870000px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls27{letter-spacing:-1.120000pt;}
.lsb{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls28{letter-spacing:-0.478933pt;}
.ls18{letter-spacing:-0.409067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.239467pt;}
.ls29{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.136320pt;}
.ls1a{letter-spacing:0.138667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls26{letter-spacing:0.161067pt;}
.ls25{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.183680pt;}
.ls6{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls21{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls16{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.440000pt;}
.lsa{letter-spacing:2.240000pt;}
.ls17{letter-spacing:3.360000pt;}
.ls19{letter-spacing:4.640000pt;}
.ls20{letter-spacing:5.920000pt;}
.ls9{letter-spacing:6.720000pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls24{letter-spacing:7.840000pt;}
.ls22{letter-spacing:9.120000pt;}
.ls3{letter-spacing:58.811307pt;}
.ls1c{letter-spacing:64.800000pt;}
.ls1b{letter-spacing:91.658667pt;}
.lsd{letter-spacing:178.698667pt;}
.lsf{letter-spacing:335.498667pt;}
.ws13{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws12{word-spacing:-13.463467pt;}
.wsf{word-spacing:-13.374933pt;}
.ws11{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.592000pt;}
.ws4{word-spacing:-12.320000pt;}
.ws3{word-spacing:-12.096000pt;}
.ws15{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.808000pt;}
.wsb{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.720000pt;}
.wsc{word-spacing:-10.480533pt;}
.ws14{word-spacing:-10.400000pt;}
.ws8{word-spacing:-8.640000pt;}
.ws10{word-spacing:-6.720000pt;}
.ws6{word-spacing:0.000000pt;}
._13{margin-left:-6.240000pt;}
._24{margin-left:-4.172160pt;}
._12{margin-left:-3.177600pt;}
._10{margin-left:-2.235520pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._7{width:3.541333pt;}
._11{width:4.674560pt;}
._4{width:6.080000pt;}
._a{width:7.018880pt;}
._c{width:8.080000pt;}
._f{width:9.024000pt;}
._b{width:10.752000pt;}
._16{width:11.759573pt;}
._e{width:13.200000pt;}
._d{width:14.592000pt;}
._17{width:15.829760pt;}
._1a{width:17.476480pt;}
._1b{width:19.176320pt;}
._6{width:21.212160pt;}
._5{width:22.272000pt;}
._1e{width:23.887360pt;}
._1c{width:26.787627pt;}
._1f{width:29.783680pt;}
._22{width:31.100587pt;}
._20{width:32.705280pt;}
._23{width:34.292267pt;}
._9{width:37.062827pt;}
._8{width:38.016000pt;}
._28{width:39.176747pt;}
._1d{width:44.551040pt;}
._25{width:45.772160pt;}
._26{width:46.880000pt;}
._27{width:48.268160pt;}
._2a{width:49.629867pt;}
._21{width:52.540587pt;}
._29{width:54.640000pt;}
._18{width:452.521387pt;}
._14{width:654.560000pt;}
._19{width:769.499307pt;}
._15{width:953.866667pt;}
._3{width:979.477333pt;}
.fs7{font-size:5.120000pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.240000pt;}
.y28{bottom:2.560000pt;}
.y1d6{bottom:2.720000pt;}
.yf{bottom:2.880000pt;}
.y158{bottom:3.200000pt;}
.y15a{bottom:3.360000pt;}
.y30{bottom:8.000000pt;}
.y10e{bottom:8.320000pt;}
.y36{bottom:10.880000pt;}
.yf1{bottom:14.400000pt;}
.yf8{bottom:14.560000pt;}
.yfb{bottom:14.600000pt;}
.y27{bottom:16.480000pt;}
.yea{bottom:18.080000pt;}
.y14{bottom:18.240000pt;}
.y162{bottom:18.280000pt;}
.yf9{bottom:20.640000pt;}
.y35{bottom:26.240000pt;}
.yfe{bottom:26.720000pt;}
.yf7{bottom:26.880000pt;}
.y1d4{bottom:29.434667pt;}
.y26{bottom:30.240000pt;}
.ye9{bottom:33.440000pt;}
.y13{bottom:33.600000pt;}
.y161{bottom:33.640000pt;}
.yf6{bottom:39.040000pt;}
.y34{bottom:41.600000pt;}
.y1d3{bottom:43.354667pt;}
.y25{bottom:44.000000pt;}
.ye8{bottom:48.826667pt;}
.y160{bottom:48.840000pt;}
.y12{bottom:48.960000pt;}
.yf4{bottom:51.360000pt;}
.y1de{bottom:53.120000pt;}
.y33{bottom:56.960000pt;}
.y1d2{bottom:57.114667pt;}
.y24{bottom:57.760000pt;}
.y2f{bottom:58.560000pt;}
.y15f{bottom:64.200000pt;}
.y1dd{bottom:66.880000pt;}
.y1d1{bottom:70.874667pt;}
.y1e6{bottom:70.880000pt;}
.y1ee{bottom:71.066667pt;}
.y23{bottom:71.680000pt;}
.y11{bottom:72.200000pt;}
.y5{bottom:78.400000pt;}
.y32{bottom:80.320000pt;}
.y1dc{bottom:80.640000pt;}
.y1d0{bottom:84.634667pt;}
.y1e5{bottom:84.640000pt;}
.y1ed{bottom:84.826667pt;}
.y22{bottom:85.440000pt;}
.y1db{bottom:94.560000pt;}
.y1e4{bottom:98.440000pt;}
.y1cf{bottom:98.554667pt;}
.y1ec{bottom:98.586667pt;}
.y21{bottom:99.200000pt;}
.yb1{bottom:101.920000pt;}
.y12c{bottom:104.480000pt;}
.y1d5{bottom:107.680000pt;}
.y1da{bottom:108.320000pt;}
.y1ce{bottom:112.314667pt;}
.y1eb{bottom:112.346667pt;}
.y1e3{bottom:112.360000pt;}
.y20{bottom:112.960000pt;}
.y155{bottom:113.120000pt;}
.y82{bottom:113.920000pt;}
.yb0{bottom:117.280000pt;}
.ydc{bottom:118.080000pt;}
.y12b{bottom:119.872000pt;}
.y1cb{bottom:121.632000pt;}
.y1d9{bottom:122.080000pt;}
.y2e{bottom:122.586667pt;}
.y1cd{bottom:126.074667pt;}
.y1e2{bottom:126.120000pt;}
.y1ea{bottom:126.266667pt;}
.y1f{bottom:126.880000pt;}
.y154{bottom:128.512000pt;}
.y81{bottom:129.312000pt;}
.y18e{bottom:130.432000pt;}
.yef{bottom:132.512000pt;}
.yaf{bottom:132.672000pt;}
.ydb{bottom:133.466667pt;}
.y12a{bottom:135.066667pt;}
.y1d8{bottom:135.840000pt;}
.y2d{bottom:137.946667pt;}
.y47{bottom:139.546667pt;}
.y1cc{bottom:139.834667pt;}
.y1e1{bottom:139.880000pt;}
.y1e9{bottom:140.026667pt;}
.y1e{bottom:140.640000pt;}
.y18d{bottom:142.586667pt;}
.y153{bottom:143.866667pt;}
.y80{bottom:144.666667pt;}
.yae{bottom:147.866667pt;}
.yda{bottom:148.666667pt;}
.y129{bottom:150.426667pt;}
.y2c{bottom:153.306667pt;}
.y1d{bottom:154.400000pt;}
.y46{bottom:154.906667pt;}
.y152{bottom:159.066667pt;}
.y7f{bottom:159.866667pt;}
.yad{bottom:163.226667pt;}
.yd9{bottom:164.026667pt;}
.y128{bottom:165.786667pt;}
.y18c{bottom:167.226667pt;}
.y1c{bottom:168.160000pt;}
.y2b{bottom:168.666667pt;}
.y45{bottom:170.266667pt;}
.y151{bottom:174.426667pt;}
.y7e{bottom:175.226667pt;}
.yac{bottom:178.586667pt;}
.yd8{bottom:179.386667pt;}
.y127{bottom:181.146667pt;}
.y1b{bottom:182.080000pt;}
.y2a{bottom:183.866667pt;}
.y44{bottom:185.466667pt;}
.y150{bottom:189.786667pt;}
.y7d{bottom:190.586667pt;}
.y18b{bottom:191.706667pt;}
.yab{bottom:193.946667pt;}
.yd7{bottom:194.746667pt;}
.y1a{bottom:195.840000pt;}
.y126{bottom:196.506667pt;}
.y43{bottom:200.826667pt;}
.y18a{bottom:204.026667pt;}
.y14f{bottom:205.146667pt;}
.y7c{bottom:205.946667pt;}
.y29{bottom:207.226667pt;}
.yaa{bottom:209.306667pt;}
.y19{bottom:209.600000pt;}
.yd6{bottom:210.106667pt;}
.y125{bottom:211.866667pt;}
.y42{bottom:216.186667pt;}
.y14e{bottom:220.506667pt;}
.y7b{bottom:221.306667pt;}
.y18{bottom:223.400000pt;}
.yee{bottom:224.506667pt;}
.ya9{bottom:224.666667pt;}
.yd5{bottom:225.466667pt;}
.y124{bottom:227.066667pt;}
.y189{bottom:228.506667pt;}
.y41{bottom:231.546667pt;}
.y14d{bottom:235.706667pt;}
.y7a{bottom:236.666667pt;}
.ya8{bottom:239.866667pt;}
.yd4{bottom:240.666667pt;}
.y188{bottom:240.826667pt;}
.y123{bottom:242.426667pt;}
.y40{bottom:246.906667pt;}
.y14c{bottom:251.066667pt;}
.y79{bottom:251.866667pt;}
.y187{bottom:252.986667pt;}
.ya7{bottom:255.226667pt;}
.yd3{bottom:256.026667pt;}
.y122{bottom:257.786667pt;}
.y3f{bottom:262.266667pt;}
.y186{bottom:265.306667pt;}
.y14b{bottom:266.426667pt;}
.y78{bottom:267.226667pt;}
.yed{bottom:267.706667pt;}
.ya6{bottom:270.586667pt;}
.yd2{bottom:271.386667pt;}
.y121{bottom:273.146667pt;}
.y1ca{bottom:276.506667pt;}
.y3e{bottom:277.466667pt;}
.y185{bottom:277.626667pt;}
.y14a{bottom:281.786667pt;}
.y77{bottom:282.586667pt;}
.ya5{bottom:285.946667pt;}
.yd1{bottom:286.746667pt;}
.y120{bottom:288.506667pt;}
.y184{bottom:289.786667pt;}
.y1c9{bottom:291.866667pt;}
.y3d{bottom:292.826667pt;}
.y149{bottom:297.146667pt;}
.y76{bottom:297.946667pt;}
.y16{bottom:300.546667pt;}
.ya4{bottom:301.306667pt;}
.yd0{bottom:302.106667pt;}
.y11f{bottom:303.866667pt;}
.y1c8{bottom:306.426667pt;}
.y3c{bottom:308.186667pt;}
.y148{bottom:312.506667pt;}
.y75{bottom:313.306667pt;}
.y183{bottom:314.426667pt;}
.ya3{bottom:316.506667pt;}
.y1c7{bottom:318.746667pt;}
.y11e{bottom:319.066667pt;}
.y3b{bottom:323.546667pt;}
.y182{bottom:326.586667pt;}
.y147{bottom:327.706667pt;}
.y74{bottom:328.666667pt;}
.y1c6{bottom:331.066667pt;}
.ya2{bottom:331.866667pt;}
.ycf{bottom:332.666667pt;}
.y11d{bottom:334.426667pt;}
.y3a{bottom:338.906667pt;}
.y146{bottom:343.066667pt;}
.y1c5{bottom:343.226667pt;}
.y73{bottom:343.866667pt;}
.ya1{bottom:347.266667pt;}
.yce{bottom:348.066667pt;}
.y11c{bottom:349.826667pt;}
.y181{bottom:351.266667pt;}
.y39{bottom:354.146667pt;}
.y1c4{bottom:355.586667pt;}
.y145{bottom:358.466667pt;}
.y72{bottom:359.266667pt;}
.ycd{bottom:361.186667pt;}
.ya0{bottom:362.626667pt;}
.y180{bottom:363.426667pt;}
.y11b{bottom:365.186667pt;}
.y1c3{bottom:367.906667pt;}
.y38{bottom:369.506667pt;}
.ycc{bottom:373.506667pt;}
.y144{bottom:373.826667pt;}
.y71{bottom:374.626667pt;}
.y17f{bottom:375.746667pt;}
.y9f{bottom:377.986667pt;}
.y1c2{bottom:380.066667pt;}
.y37{bottom:384.866667pt;}
.ycb{bottom:385.826667pt;}
.y17e{bottom:388.066667pt;}
.y143{bottom:389.186667pt;}
.y70{bottom:389.986667pt;}
.y1c1{bottom:392.386667pt;}
.y9e{bottom:393.346667pt;}
.y11a{bottom:395.906667pt;}
.yca{bottom:397.986667pt;}
.y31{bottom:399.266667pt;}
.y17d{bottom:400.226667pt;}
.y142{bottom:404.546667pt;}
.y1c0{bottom:404.706667pt;}
.y6f{bottom:405.346667pt;}
.y9d{bottom:408.546667pt;}
.yc9{bottom:410.306667pt;}
.y119{bottom:411.106667pt;}
.y17c{bottom:412.546667pt;}
.y1bf{bottom:416.866667pt;}
.y141{bottom:419.746667pt;}
.y6e{bottom:420.546667pt;}
.yc8{bottom:422.466667pt;}
.y9c{bottom:423.906667pt;}
.y17b{bottom:424.706667pt;}
.y118{bottom:425.826667pt;}
.y1be{bottom:429.186667pt;}
.yc7{bottom:434.786667pt;}
.y140{bottom:435.106667pt;}
.y6d{bottom:435.906667pt;}
.y117{bottom:436.546667pt;}
.y17a{bottom:437.026667pt;}
.y9b{bottom:439.266667pt;}
.y1bd{bottom:441.506667pt;}
.yc6{bottom:447.106667pt;}
.y116{bottom:448.866667pt;}
.y179{bottom:449.346667pt;}
.y13f{bottom:450.466667pt;}
.y6c{bottom:451.266667pt;}
.y1bc{bottom:453.666667pt;}
.y9a{bottom:454.626667pt;}
.yc5{bottom:459.266667pt;}
.y115{bottom:461.026667pt;}
.y178{bottom:461.506667pt;}
.y13e{bottom:465.826667pt;}
.y1bb{bottom:465.986667pt;}
.y6b{bottom:466.626667pt;}
.y99{bottom:469.986667pt;}
.yc4{bottom:471.586667pt;}
.y114{bottom:473.346667pt;}
.y177{bottom:473.826667pt;}
.y1ba{bottom:478.306667pt;}
.y13d{bottom:481.186667pt;}
.y6a{bottom:481.986667pt;}
.yc3{bottom:483.906667pt;}
.y98{bottom:485.346667pt;}
.y113{bottom:485.666667pt;}
.y176{bottom:486.146667pt;}
.y1b9{bottom:490.466667pt;}
.yec{bottom:494.626667pt;}
.yc2{bottom:496.066667pt;}
.y13c{bottom:496.546667pt;}
.y69{bottom:497.346667pt;}
.y112{bottom:497.826667pt;}
.y175{bottom:498.306667pt;}
.y97{bottom:500.546667pt;}
.y15{bottom:500.706667pt;}
.y1b8{bottom:502.786667pt;}
.yc1{bottom:508.386667pt;}
.yeb{bottom:509.986667pt;}
.y111{bottom:510.146667pt;}
.y174{bottom:510.626667pt;}
.y13b{bottom:511.746667pt;}
.y68{bottom:512.546667pt;}
.y1b7{bottom:515.106667pt;}
.y96{bottom:515.906667pt;}
.yc0{bottom:520.706667pt;}
.ye7{bottom:522.466667pt;}
.y173{bottom:522.946667pt;}
.y13a{bottom:527.106667pt;}
.y1b6{bottom:527.266667pt;}
.y67{bottom:527.906667pt;}
.y95{bottom:531.266667pt;}
.ybf{bottom:532.866667pt;}
.y110{bottom:534.626667pt;}
.y1ef{bottom:535.586667pt;}
.y172{bottom:535.746667pt;}
.y1e8{bottom:536.706667pt;}
.y1b5{bottom:539.586667pt;}
.y139{bottom:542.466667pt;}
.y66{bottom:543.266667pt;}
.ybe{bottom:545.186667pt;}
.y94{bottom:546.626667pt;}
.y10d{bottom:546.946667pt;}
.y171{bottom:550.466667pt;}
.y1b4{bottom:551.906667pt;}
.ybd{bottom:557.506667pt;}
.y138{bottom:557.826667pt;}
.y65{bottom:558.626667pt;}
.y10f{bottom:559.266667pt;}
.y93{bottom:561.986667pt;}
.y170{bottom:562.786667pt;}
.y1b3{bottom:564.066667pt;}
.ybc{bottom:569.693333pt;}
.y10b{bottom:572.093333pt;}
.y137{bottom:573.213333pt;}
.y64{bottom:574.013333pt;}
.y16f{bottom:575.773333pt;}
.y1b2{bottom:576.413333pt;}
.y92{bottom:577.213333pt;}
.y17{bottom:579.133333pt;}
.ybb{bottom:582.013333pt;}
.ye6{bottom:583.773333pt;}
.y10c{bottom:584.413333pt;}
.y136{bottom:588.413333pt;}
.y1b1{bottom:588.733333pt;}
.y63{bottom:589.373333pt;}
.y16e{bottom:590.973333pt;}
.y91{bottom:592.573333pt;}
.yba{bottom:594.333333pt;}
.y10a{bottom:600.253333pt;}
.y1b0{bottom:600.893333pt;}
.y135{bottom:603.773333pt;}
.y62{bottom:604.573333pt;}
.y16d{bottom:605.693333pt;}
.yb9{bottom:606.493333pt;}
.y90{bottom:607.933333pt;}
.y1af{bottom:613.213333pt;}
.y16c{bottom:618.013333pt;}
.yb8{bottom:618.813333pt;}
.y134{bottom:619.133333pt;}
.y61{bottom:619.933333pt;}
.y1ae{bottom:625.533333pt;}
.y109{bottom:630.973333pt;}
.yb7{bottom:631.133333pt;}
.y133{bottom:634.493333pt;}
.y60{bottom:635.293333pt;}
.y1ad{bottom:637.693333pt;}
.y8f{bottom:638.653333pt;}
.yb6{bottom:643.293333pt;}
.y108{bottom:646.173333pt;}
.y132{bottom:649.853333pt;}
.y1ac{bottom:650.013333pt;}
.y5f{bottom:650.653333pt;}
.y8e{bottom:654.013333pt;}
.yb5{bottom:655.613333pt;}
.y107{bottom:660.893333pt;}
.y16b{bottom:661.533333pt;}
.y1ab{bottom:662.333333pt;}
.y131{bottom:665.213333pt;}
.y5e{bottom:666.013333pt;}
.yb4{bottom:667.933333pt;}
.y8d{bottom:669.213333pt;}
.y105{bottom:671.613333pt;}
.y1aa{bottom:674.493333pt;}
.y16a{bottom:676.893333pt;}
.y130{bottom:680.413333pt;}
.yb2{bottom:680.893333pt;}
.y5d{bottom:681.373333pt;}
.y106{bottom:683.933333pt;}
.y8c{bottom:684.573333pt;}
.y1a9{bottom:686.813333pt;}
.y1e7{bottom:688.733333pt;}
.y169{bottom:692.253333pt;}
.y103{bottom:696.093333pt;}
.y5c{bottom:696.573333pt;}
.y8b{bottom:697.053333pt;}
.y1a8{bottom:699.133333pt;}
.y1e0{bottom:702.653333pt;}
.y168{bottom:706.973333pt;}
.y104{bottom:708.413333pt;}
.y12f{bottom:711.133333pt;}
.y1a7{bottom:711.293333pt;}
.y5b{bottom:711.933333pt;}
.ye5{bottom:712.573333pt;}
.y167{bottom:719.133333pt;}
.y101{bottom:720.733333pt;}
.y1a6{bottom:723.613333pt;}
.y12e{bottom:726.493333pt;}
.y5a{bottom:727.293333pt;}
.ye4{bottom:727.933333pt;}
.y10{bottom:729.053333pt;}
.y166{bottom:732.093333pt;}
.y102{bottom:732.893333pt;}
.y1a5{bottom:735.773333pt;}
.y12d{bottom:738.973333pt;}
.y59{bottom:742.653333pt;}
.ye3{bottom:743.293333pt;}
.yfd{bottom:745.213333pt;}
.y165{bottom:747.453333pt;}
.y1a4{bottom:748.093333pt;}
.y100{bottom:757.533333pt;}
.y58{bottom:758.013333pt;}
.ye2{bottom:758.653333pt;}
.y1a3{bottom:760.413333pt;}
.y164{bottom:762.173333pt;}
.yff{bottom:769.693333pt;}
.y1a2{bottom:772.573333pt;}
.y57{bottom:773.213333pt;}
.ye1{bottom:774.013333pt;}
.y163{bottom:774.333333pt;}
.yfa{bottom:782.013333pt;}
.y15e{bottom:784.413333pt;}
.y1a1{bottom:784.893333pt;}
.y56{bottom:788.573333pt;}
.ye0{bottom:789.213333pt;}
.yfc{bottom:794.373333pt;}
.y1a0{bottom:797.253333pt;}
.y55{bottom:803.973333pt;}
.ydf{bottom:804.613333pt;}
.yf3{bottom:806.533333pt;}
.y19f{bottom:809.413333pt;}
.y54{bottom:819.333333pt;}
.yde{bottom:819.973333pt;}
.y19e{bottom:821.733333pt;}
.ye{bottom:822.373333pt;}
.y19d{bottom:834.053333pt;}
.y53{bottom:834.693333pt;}
.ydd{bottom:835.333333pt;}
.y19c{bottom:846.213333pt;}
.y52{bottom:850.053333pt;}
.yd{bottom:850.693333pt;}
.y1df{bottom:854.693333pt;}
.yf5{bottom:855.653333pt;}
.y19b{bottom:858.533333pt;}
.y15d{bottom:863.973333pt;}
.y51{bottom:865.253333pt;}
.yc{bottom:866.053333pt;}
.y1d7{bottom:868.453333pt;}
.yf0{bottom:868.613333pt;}
.y19a{bottom:870.853333pt;}
.y15c{bottom:877.093333pt;}
.yb{bottom:880.613333pt;}
.yf2{bottom:880.773333pt;}
.y8a{bottom:881.253333pt;}
.y199{bottom:883.013333pt;}
.y15b{bottom:892.453333pt;}
.ya{bottom:893.573333pt;}
.y198{bottom:895.333333pt;}
.y50{bottom:895.973333pt;}
.y89{bottom:896.613333pt;}
.y197{bottom:907.653333pt;}
.y159{bottom:907.813333pt;}
.y9{bottom:908.933333pt;}
.y4f{bottom:911.333333pt;}
.y88{bottom:911.973333pt;}
.y196{bottom:919.813333pt;}
.y157{bottom:923.173333pt;}
.y8{bottom:924.293333pt;}
.y4e{bottom:926.693333pt;}
.y87{bottom:927.333333pt;}
.y195{bottom:932.133333pt;}
.y156{bottom:939.173333pt;}
.y7{bottom:941.413333pt;}
.y4d{bottom:942.053333pt;}
.y86{bottom:942.693333pt;}
.y194{bottom:944.453333pt;}
.y193{bottom:956.613333pt;}
.y4c{bottom:957.253333pt;}
.y85{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y192{bottom:968.933333pt;}
.y4b{bottom:972.613333pt;}
.y84{bottom:973.253333pt;}
.y191{bottom:981.253333pt;}
.y4a{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y190{bottom:993.413333pt;}
.y49{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y18f{bottom:1005.733333pt;}
.y2{bottom:1019.360000pt;}
.y83{bottom:1031.680000pt;}
.y48{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h2e{height:5.025000pt;}
.h17{height:12.160000pt;}
.h19{height:12.192000pt;}
.h18{height:12.320000pt;}
.h20{height:12.352000pt;}
.h2b{height:13.760000pt;}
.h2d{height:13.920000pt;}
.h29{height:13.952000pt;}
.h13{height:15.200000pt;}
.h16{height:15.360000pt;}
.h7{height:23.360000pt;}
.h1c{height:24.480000pt;}
.h1f{height:24.512000pt;}
.h22{height:24.640000pt;}
.h26{height:29.940625pt;}
.hd{height:33.515625pt;}
.h21{height:36.800000pt;}
.h14{height:37.090625pt;}
.h25{height:42.063437pt;}
.h6{height:42.084375pt;}
.h24{height:43.215000pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h28{height:48.375000pt;}
.h1e{height:49.120000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h15{height:52.478750pt;}
.h2{height:53.535000pt;}
.h12{height:55.298750pt;}
.h1b{height:61.312000pt;}
.h1d{height:61.440000pt;}
.h8{height:62.812500pt;}
.h23{height:76.672000pt;}
.hf{height:77.792000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h11{height:100.800000pt;}
.h1a{height:125.920000pt;}
.h2a{height:148.000000pt;}
.h27{height:152.000000pt;}
.h2c{height:152.026667pt;}
.he{height:227.706667pt;}
.hb{height:242.586667pt;}
.ha{height:321.026667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w8{width:26.560000pt;}
.w7{width:26.720000pt;}
.w25{width:31.200000pt;}
.w20{width:31.360000pt;}
.w24{width:31.392000pt;}
.w21{width:31.680000pt;}
.w26{width:32.032000pt;}
.w22{width:32.160000pt;}
.w27{width:32.320000pt;}
.w28{width:32.480000pt;}
.w23{width:32.640000pt;}
.wf{width:34.080000pt;}
.w17{width:44.320000pt;}
.w1c{width:46.400000pt;}
.w1a{width:68.000000pt;}
.wa{width:68.160000pt;}
.w1b{width:86.432000pt;}
.w14{width:91.520000pt;}
.w13{width:91.872000pt;}
.w12{width:92.000000pt;}
.w16{width:93.312000pt;}
.w1e{width:116.352000pt;}
.w2c{width:128.480000pt;}
.wc{width:136.186667pt;}
.w1f{width:140.506667pt;}
.w2b{width:176.506667pt;}
.w15{width:182.426667pt;}
.w3{width:185.946667pt;}
.w29{width:190.906667pt;}
.w19{width:200.826667pt;}
.w1d{width:216.186667pt;}
.w2a{width:217.146667pt;}
.w11{width:275.386667pt;}
.w10{width:275.746667pt;}
.we{width:292.546667pt;}
.wd{width:292.666667pt;}
.wb{width:310.466667pt;}
.w18{width:332.546667pt;}
.w5{width:385.026667pt;}
.w9{width:446.653333pt;}
.w2d{width:467.293333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x9{left:9.440000pt;}
.x25{left:11.200000pt;}
.x2e{left:12.960000pt;}
.x2b{left:14.720000pt;}
.x1c{left:16.960000pt;}
.x3a{left:18.080000pt;}
.x29{left:19.200000pt;}
.x3c{left:21.440000pt;}
.x1d{left:22.874667pt;}
.x30{left:26.400000pt;}
.x2d{left:29.760000pt;}
.x33{left:30.720000pt;}
.x34{left:31.680000pt;}
.x32{left:33.760000pt;}
.x31{left:36.800000pt;}
.x35{left:44.000000pt;}
.x28{left:51.840000pt;}
.x26{left:65.920000pt;}
.xb{left:94.720000pt;}
.x4f{left:103.552000pt;}
.x1f{left:106.426667pt;}
.x6{left:111.552000pt;}
.x1{left:113.471988pt;}
.x51{left:117.114667pt;}
.x1e{left:121.434667pt;}
.x2{left:127.071988pt;}
.x21{left:131.711988pt;}
.xf{left:137.466655pt;}
.xe{left:139.866655pt;}
.x14{left:141.946655pt;}
.x1b{left:146.274667pt;}
.x23{left:147.226655pt;}
.x15{left:148.986667pt;}
.x36{left:157.786667pt;}
.x10{left:159.546655pt;}
.xd{left:161.466655pt;}
.x5{left:164.986655pt;}
.x16{left:167.720000pt;}
.x13{left:186.586655pt;}
.x24{left:212.826655pt;}
.x4{left:214.906655pt;}
.x50{left:232.026667pt;}
.x1a{left:235.266667pt;}
.x3e{left:237.786655pt;}
.x3f{left:254.306667pt;}
.x19{left:275.234667pt;}
.x40{left:285.666667pt;}
.x8{left:297.506667pt;}
.x4d{left:305.026667pt;}
.xa{left:316.226667pt;}
.x41{left:317.346667pt;}
.x2f{left:329.986667pt;}
.x42{left:349.506667pt;}
.x22{left:353.826655pt;}
.x3b{left:373.986667pt;}
.xc{left:377.826667pt;}
.x43{left:382.146667pt;}
.x3{left:406.466655pt;}
.x44{left:414.306667pt;}
.x27{left:423.293333pt;}
.x45{left:445.693333pt;}
.x18{left:459.453333pt;}
.x46{left:477.053333pt;}
.x37{left:490.333333pt;}
.x47{left:508.413333pt;}
.x2a{left:515.293333pt;}
.x4e{left:522.173333pt;}
.x48{left:539.613333pt;}
.x3d{left:551.933322pt;}
.x38{left:558.333333pt;}
.x49{left:570.973333pt;}
.x17{left:595.653333pt;}
.x4a{left:603.013333pt;}
.x2c{left:607.173333pt;}
.x20{left:609.733322pt;}
.x12{left:613.093322pt;}
.x4b{left:635.333333pt;}
.x39{left:644.773333pt;}
.x4c{left:666.533333pt;}
.x11{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; }
  