
    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_5d54ac6ee9a68e66fb36a736.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f14d392feeedfb99d5a36a79.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c269326fec7eaf262c0a8a45.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_663c1473cf6d54449a918b78.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a0b648f17067bfd81c09db48.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_8b9ec070a1f362c887cb35f7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_341fc80c7bb39998ef3bd6f0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_c923fa57ed03aef551343cbf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.853027;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_024470c8c67e7ed0d8508d39.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_bdacb0685885c080f7241f46.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{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);}
.v6{vertical-align:-69.840000px;}
.v5{vertical-align:-62.760002px;}
.v7{vertical-align:-52.680000px;}
.v3{vertical-align:-20.880000px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:23.760000px;}
.v8{vertical-align:26.340000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls20{letter-spacing:-1.170000px;}
.ls21{letter-spacing:-0.496200px;}
.ls1e{letter-spacing:-0.450600px;}
.lsd{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.223800px;}
.ls11{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.108000px;}
.ls22{letter-spacing:-0.090600px;}
.lsb{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls15{letter-spacing:0.018000px;}
.ls4{letter-spacing:0.036000px;}
.lse{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.ls23{letter-spacing:0.206640px;}
.ls1f{letter-spacing:0.223800px;}
.ls1c{letter-spacing:0.223920px;}
.ls12{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.315360px;}
.ls17{letter-spacing:0.324000px;}
.ls25{letter-spacing:0.326640px;}
.ls0{letter-spacing:0.360000px;}
.ls26{letter-spacing:0.496200px;}
.ls24{letter-spacing:0.900000px;}
.ls18{letter-spacing:0.924000px;}
.ls1d{letter-spacing:1.620000px;}
.ls8{letter-spacing:3.060000px;}
.lsf{letter-spacing:3.780000px;}
.ls9{letter-spacing:3.900000px;}
.ls6{letter-spacing:56.880000px;}
.ls7{letter-spacing:57.600000px;}
.ls5{letter-spacing:58.320000px;}
.ls13{letter-spacing:93.060000px;}
.ls16{letter-spacing:133.308000px;}
.ls14{letter-spacing:160.668000px;}
.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;}
.ws4{word-spacing:-18.000000px;}
.ws12{word-spacing:-15.864000px;}
.wsc{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.146400px;}
.ws5{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.733600px;}
.ws0{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.824000px;}
.wsa{word-spacing:-13.500000px;}
.ws16{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.ws1c{word-spacing:-12.556200px;}
.ws3{word-spacing:-12.420000px;}
.ws19{word-spacing:-12.283800px;}
.ws7{word-spacing:-12.060000px;}
.ws1b{word-spacing:-11.969400px;}
.wsf{word-spacing:-11.836200px;}
.ws6{word-spacing:-11.700000px;}
.ws1a{word-spacing:-11.563800px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.213800px;}
.ws14{word-spacing:-9.720000px;}
.ws9{word-spacing:-9.000000px;}
.ws8{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
.ws18{word-spacing:379.968000px;}
._7{margin-left:-11.016000px;}
._1b{margin-left:-7.162560px;}
._b{margin-left:-5.292000px;}
._3{margin-left:-2.213280px;}
._1{margin-left:-1.127520px;}
._0{width:1.419840px;}
._2{width:2.733600px;}
._c{width:4.374000px;}
._d{width:5.659920px;}
._e{width:7.644000px;}
._10{width:8.821440px;}
._16{width:10.295280px;}
._f{width:12.258000px;}
._15{width:13.692240px;}
._1a{width:16.276800px;}
._24{width:17.479920px;}
._18{width:21.729360px;}
._17{width:22.828320px;}
._13{width:24.707517px;}
._1c{width:26.181360px;}
._11{width:33.534000px;}
._12{width:34.884000px;}
._9{width:37.961280px;}
._8{width:39.028320px;}
._a{width:40.065120px;}
._2c{width:47.874000px;}
._27{width:49.011840px;}
._28{width:50.362560px;}
._2a{width:51.568560px;}
._2b{width:53.463120px;}
._6{width:58.536000px;}
._5{width:65.067840px;}
._25{width:74.820240px;}
._26{width:76.219200px;}
._22{width:81.953280px;}
._23{width:83.054400px;}
._21{width:90.076560px;}
._20{width:91.193760px;}
._29{width:94.260960px;}
._19{width:102.966480px;}
._1e{width:303.312000px;}
._1f{width:332.958000px;}
._1d{width:471.240000px;}
._14{width:1834.296000px;}
._4{width:2055.782880px;}
.fcb{color:rgb(46,65,79);}
.fc7{color:transparent;}
.fc6{color:rgb(0,0,255);}
.fca{color:rgb(46,116,181);}
.fc3{color:rgb(255,0,0);}
.fc9{color:rgb(51,51,51);}
.fc8{color:rgb(64,64,64);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:12.240000px;}
.fsc{font-size:18.000000px;}
.fs9{font-size:23.760000px;}
.fsa{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsd{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fse{font-size:84.240000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ybc{bottom:3.945000px;}
.yb5{bottom:4.125000px;}
.yb0{bottom:4.140000px;}
.yc7{bottom:4.176000px;}
.y47{bottom:4.320000px;}
.yb9{bottom:4.665000px;}
.yb3{bottom:4.680000px;}
.yc0{bottom:4.845000px;}
.ycb{bottom:4.860000px;}
.y127{bottom:5.205000px;}
.y140{bottom:5.220000px;}
.y12a{bottom:5.565000px;}
.y2e{bottom:5.580000px;}
.y12c{bottom:5.745000px;}
.y133{bottom:5.760000px;}
.yc5{bottom:6.105000px;}
.yf5{bottom:6.225000px;}
.yc9{bottom:7.560000px;}
.y11f{bottom:8.805000px;}
.yae{bottom:8.820000px;}
.y120{bottom:9.165000px;}
.y128{bottom:14.205000px;}
.y3{bottom:18.000000px;}
.y46{bottom:18.180000px;}
.y86{bottom:18.900000px;}
.y4a{bottom:19.260000px;}
.y2d{bottom:19.440000px;}
.y11d{bottom:22.305000px;}
.y126{bottom:23.025000px;}
.y2c{bottom:27.000000px;}
.y2{bottom:30.060000px;}
.yf3{bottom:30.750000px;}
.y2b{bottom:42.480000px;}
.y1{bottom:43.020000px;}
.y2a{bottom:58.140000px;}
.y29{bottom:73.620000px;}
.y1d4{bottom:74.520000px;}
.y13e{bottom:75.240000px;}
.y148{bottom:77.220000px;}
.yea{bottom:77.580000px;}
.yf1{bottom:78.945000px;}
.yf4{bottom:79.590000px;}
.y197{bottom:79.740000px;}
.y83{bottom:80.640000px;}
.y132{bottom:81.360000px;}
.y163{bottom:82.080000px;}
.ycc{bottom:83.160000px;}
.y28{bottom:89.100000px;}
.y1d3{bottom:90.000000px;}
.y13d{bottom:90.720000px;}
.y196{bottom:93.420000px;}
.y147{bottom:95.040000px;}
.ye9{bottom:97.560000px;}
.y82{bottom:97.920000px;}
.y131{bottom:99.360000px;}
.y44{bottom:100.260000px;}
.yca{bottom:100.980000px;}
.y162{bottom:101.880000px;}
.y13c{bottom:103.140000px;}
.y27{bottom:104.580000px;}
.y1d2{bottom:105.660000px;}
.y146{bottom:109.800000px;}
.y195{bottom:111.780000px;}
.yf0{bottom:111.930000px;}
.y81{bottom:115.020000px;}
.y130{bottom:117.180000px;}
.ye8{bottom:117.360000px;}
.y43{bottom:120.060000px;}
.y26{bottom:120.240000px;}
.yc8{bottom:120.420000px;}
.y1d1{bottom:121.140000px;}
.y161{bottom:121.860000px;}
.y194{bottom:125.640000px;}
.yf2{bottom:131.685000px;}
.y80{bottom:132.300000px;}
.y12f{bottom:135.000000px;}
.y25{bottom:135.720000px;}
.y1d0{bottom:136.620000px;}
.ye7{bottom:137.160000px;}
.y193{bottom:139.320000px;}
.y42{bottom:139.860000px;}
.y160{bottom:141.300000px;}
.yc6{bottom:145.440000px;}
.y7f{bottom:149.616000px;}
.y24{bottom:151.200000px;}
.y1cf{bottom:152.130000px;}
.y12e{bottom:152.865000px;}
.ye6{bottom:156.630000px;}
.y41{bottom:159.870000px;}
.y15f{bottom:161.490000px;}
.yc4{bottom:163.485000px;}
.y192{bottom:165.270000px;}
.y23{bottom:166.710000px;}
.y7e{bottom:166.890000px;}
.y1ce{bottom:167.790000px;}
.y12d{bottom:170.685000px;}
.yec{bottom:171.255000px;}
.ye5{bottom:176.790000px;}
.y30{bottom:178.410000px;}
.y191{bottom:178.950000px;}
.y40{bottom:179.670000px;}
.y15e{bottom:181.290000px;}
.y22{bottom:182.370000px;}
.y1cd{bottom:183.270000px;}
.y7d{bottom:184.170000px;}
.yc3{bottom:185.625000px;}
.y12b{bottom:188.505000px;}
.y190{bottom:192.810000px;}
.ye4{bottom:196.770000px;}
.y21{bottom:197.850000px;}
.y1cc{bottom:198.750000px;}
.y3f{bottom:199.470000px;}
.y15d{bottom:201.090000px;}
.y7c{bottom:201.270000px;}
.yc2{bottom:203.445000px;}
.y129{bottom:206.505000px;}
.y18f{bottom:211.170000px;}
.y20{bottom:213.330000px;}
.ye3{bottom:216.570000px;}
.y7b{bottom:218.190000px;}
.y3e{bottom:219.270000px;}
.y15c{bottom:221.070000px;}
.yc1{bottom:221.445000px;}
.yef{bottom:223.995000px;}
.y18e{bottom:224.850000px;}
.y125{bottom:225.045000px;}
.y1f{bottom:228.810000px;}
.y1cb{bottom:229.890000px;}
.yed{bottom:230.580000px;}
.y7a{bottom:235.830000px;}
.ye2{bottom:236.370000px;}
.y3d{bottom:239.070000px;}
.ybf{bottom:239.265000px;}
.y15b{bottom:240.870000px;}
.y18d{bottom:243.210000px;}
.y1e{bottom:244.470000px;}
.y1ca{bottom:245.370000px;}
.y79{bottom:253.110000px;}
.ye1{bottom:255.810000px;}
.ybe{bottom:258.525000px;}
.y3c{bottom:259.050000px;}
.y1d{bottom:259.950000px;}
.y15a{bottom:260.670000px;}
.y18c{bottom:261.570000px;}
.y124{bottom:265.170000px;}
.y1c9{bottom:266.790000px;}
.y78{bottom:270.390000px;}
.y18b{bottom:275.250000px;}
.y1c{bottom:275.430000px;}
.ybd{bottom:276.525000px;}
.ye0{bottom:277.230000px;}
.y3b{bottom:278.850000px;}
.y159{bottom:280.470000px;}
.y123{bottom:282.450000px;}
.yee{bottom:283.320000px;}
.y77{bottom:287.670000px;}
.y1c8{bottom:288.390000px;}
.y1b{bottom:290.910000px;}
.y18a{bottom:293.610000px;}
.ybb{bottom:294.525000px;}
.y3a{bottom:298.650000px;}
.ydf{bottom:299.370000px;}
.y158{bottom:300.270000px;}
.y122{bottom:304.590000px;}
.y76{bottom:304.770000px;}
.y1a{bottom:306.570000px;}
.y189{bottom:307.470000px;}
.y1c7{bottom:309.990000px;}
.yba{bottom:312.345000px;}
.yde{bottom:317.190000px;}
.y39{bottom:318.450000px;}
.y157{bottom:320.250000px;}
.y188{bottom:321.150000px;}
.y19{bottom:322.050000px;}
.y121{bottom:324.585000px;}
.yb8{bottom:330.345000px;}
.y1c6{bottom:331.410000px;}
.ydd{bottom:331.950000px;}
.yf6{bottom:332.250000px;}
.yeb{bottom:334.080000px;}
.y38{bottom:338.250000px;}
.y75{bottom:339.330000px;}
.y187{bottom:339.510000px;}
.y156{bottom:340.050000px;}
.y18{bottom:344.010000px;}
.yb7{bottom:349.605000px;}
.y11c{bottom:351.045000px;}
.y1c5{bottom:353.010000px;}
.y186{bottom:353.370000px;}
.y2f{bottom:356.610000px;}
.y37{bottom:358.230000px;}
.y155{bottom:359.850000px;}
.yb6{bottom:367.425000px;}
.y185{bottom:371.550000px;}
.y74{bottom:373.890000px;}
.y1c4{bottom:374.430000px;}
.y11e{bottom:377.505000px;}
.y36{bottom:378.030000px;}
.y154{bottom:379.650000px;}
.y184{bottom:385.410000px;}
.yb4{bottom:385.425000px;}
.y73{bottom:391.170000px;}
.y1c3{bottom:396.030000px;}
.y35{bottom:397.830000px;}
.y183{bottom:399.315000px;}
.y153{bottom:399.495000px;}
.yb2{bottom:403.455000px;}
.y72{bottom:408.315000px;}
.y11b{bottom:409.395000px;}
.y182{bottom:417.495000px;}
.y34{bottom:417.675000px;}
.y152{bottom:419.475000px;}
.yb1{bottom:422.715000px;}
.y13b{bottom:425.235000px;}
.y71{bottom:425.595000px;}
.y11a{bottom:429.195000px;}
.y181{bottom:431.355000px;}
.y33{bottom:437.475000px;}
.y1c2{bottom:439.095000px;}
.y151{bottom:439.275000px;}
.yaf{bottom:440.535000px;}
.y70{bottom:442.875000px;}
.y180{bottom:449.715000px;}
.y119{bottom:451.155000px;}
.y13a{bottom:452.595000px;}
.y32{bottom:457.095000px;}
.yad{bottom:458.535000px;}
.y150{bottom:459.075000px;}
.y6f{bottom:460.155000px;}
.y1c1{bottom:460.695000px;}
.y17f{bottom:463.395000px;}
.y139{bottom:466.815000px;}
.y118{bottom:476.895000px;}
.y31{bottom:477.255000px;}
.y6e{bottom:477.435000px;}
.y14f{bottom:478.875000px;}
.y17e{bottom:481.755000px;}
.y138{bottom:481.935000px;}
.y1c0{bottom:482.115000px;}
.y17{bottom:490.935000px;}
.yac{bottom:492.915000px;}
.y6d{bottom:494.175000px;}
.y137{bottom:494.535000px;}
.y17d{bottom:495.615000px;}
.y117{bottom:496.695000px;}
.y14e{bottom:498.675000px;}
.y1bf{bottom:500.475000px;}
.y6c{bottom:511.455000px;}
.yab{bottom:512.355000px;}
.y17c{bottom:513.795000px;}
.y116{bottom:516.495000px;}
.y14d{bottom:518.655000px;}
.y1be{bottom:520.455000px;}
.y17b{bottom:527.655000px;}
.y6b{bottom:529.095000px;}
.yaa{bottom:530.175000px;}
.y115{bottom:536.295000px;}
.y14c{bottom:538.455000px;}
.y17a{bottom:541.515000px;}
.y6a{bottom:546.375000px;}
.ya9{bottom:547.455000px;}
.y1bd{bottom:555.375000px;}
.y114{bottom:556.095000px;}
.y14b{bottom:558.255000px;}
.y179{bottom:560.415000px;}
.y69{bottom:563.295000px;}
.ya8{bottom:564.555000px;}
.y1bc{bottom:573.735000px;}
.y113{bottom:576.075000px;}
.y14a{bottom:578.055000px;}
.y178{bottom:579.855000px;}
.y68{bottom:580.575000px;}
.ya7{bottom:581.835000px;}
.y1bb{bottom:587.415000px;}
.y112{bottom:595.875000px;}
.y67{bottom:597.675000px;}
.y149{bottom:597.855000px;}
.ya6{bottom:599.115000px;}
.y177{bottom:601.275000px;}
.y1ba{bottom:605.775000px;}
.y13f{bottom:608.655000px;}
.y111{bottom:615.675000px;}
.ya5{bottom:616.035000px;}
.y66{bottom:617.835000px;}
.y1b9{bottom:619.635000px;}
.y176{bottom:621.435000px;}
.ya4{bottom:633.675000px;}
.y110{bottom:635.475000px;}
.y65{bottom:637.635000px;}
.y1b8{bottom:637.815000px;}
.y175{bottom:638.175000px;}
.ya3{bottom:650.985000px;}
.y1b7{bottom:651.705000px;}
.y10f{bottom:655.305000px;}
.y174{bottom:655.485000px;}
.y64{bottom:657.465000px;}
.y1b6{bottom:665.565000px;}
.ya2{bottom:668.085000px;}
.y173{bottom:673.125000px;}
.y10e{bottom:675.285000px;}
.y63{bottom:677.265000px;}
.y1b5{bottom:683.745000px;}
.ya1{bottom:685.365000px;}
.ydc{bottom:690.405000px;}
.y10d{bottom:695.085000px;}
.y62{bottom:697.065000px;}
.y1b4{bottom:697.605000px;}
.ya0{bottom:702.645000px;}
.y172{bottom:707.685000px;}
.ydb{bottom:713.085000px;}
.y10c{bottom:714.885000px;}
.y1b3{bottom:715.965000px;}
.y61{bottom:717.045000px;}
.y9f{bottom:719.925000px;}
.y171{bottom:724.605000px;}
.y1b2{bottom:729.645000px;}
.yda{bottom:732.885000px;}
.y10b{bottom:734.685000px;}
.y60{bottom:736.845000px;}
.y9e{bottom:737.205000px;}
.y170{bottom:741.705000px;}
.y1b1{bottom:748.005000px;}
.yd9{bottom:752.685000px;}
.y9d{bottom:754.305000px;}
.y10a{bottom:754.485000px;}
.y5f{bottom:756.645000px;}
.y16f{bottom:759.345000px;}
.y136{bottom:760.425000px;}
.y1b0{bottom:761.865000px;}
.y9c{bottom:771.585000px;}
.yd8{bottom:772.485000px;}
.y109{bottom:774.465000px;}
.y1af{bottom:775.545000px;}
.y16e{bottom:776.265000px;}
.y5e{bottom:776.445000px;}
.y135{bottom:786.705000px;}
.y9b{bottom:788.865000px;}
.yd7{bottom:792.285000px;}
.y16d{bottom:793.905000px;}
.y108{bottom:794.265000px;}
.y5d{bottom:796.245000px;}
.y9a{bottom:806.145000px;}
.y1ae{bottom:807.585000px;}
.y16c{bottom:811.185000px;}
.yd6{bottom:812.265000px;}
.y107{bottom:814.065000px;}
.y5c{bottom:816.225000px;}
.y99{bottom:823.425000px;}
.y1ad{bottom:825.945000px;}
.y16b{bottom:828.465000px;}
.yd5{bottom:832.065000px;}
.y106{bottom:833.865000px;}
.y5b{bottom:836.025000px;}
.y1ac{bottom:839.805000px;}
.y16a{bottom:845.565000px;}
.yd4{bottom:851.865000px;}
.y16{bottom:853.305000px;}
.y105{bottom:853.665000px;}
.y5a{bottom:855.825000px;}
.y98{bottom:857.805000px;}
.y1ab{bottom:857.985000px;}
.y169{bottom:862.485000px;}
.yd3{bottom:871.305000px;}
.y1aa{bottom:871.845000px;}
.y15{bottom:872.205000px;}
.y104{bottom:873.645000px;}
.y97{bottom:875.085000px;}
.y59{bottom:875.625000px;}
.y168{bottom:880.125000px;}
.y14{bottom:884.445000px;}
.y1a9{bottom:890.205000px;}
.yd2{bottom:891.465000px;}
.y96{bottom:892.365000px;}
.y103{bottom:893.445000px;}
.y58{bottom:895.425000px;}
.y13{bottom:897.450000px;}
.y1a8{bottom:903.930000px;}
.y95{bottom:909.690000px;}
.yd1{bottom:911.130000px;}
.y12{bottom:913.290000px;}
.y167{bottom:914.730000px;}
.y57{bottom:915.450000px;}
.y1a7{bottom:917.790000px;}
.y94{bottom:926.970000px;}
.y11{bottom:929.130000px;}
.y166{bottom:931.470000px;}
.yd0{bottom:932.190000px;}
.y102{bottom:933.090000px;}
.y56{bottom:935.250000px;}
.y1a6{bottom:936.150000px;}
.y10{bottom:937.410000px;}
.y93{bottom:944.250000px;}
.yf{bottom:948.750000px;}
.y1a5{bottom:949.830000px;}
.y101{bottom:952.890000px;}
.y55{bottom:955.050000px;}
.y92{bottom:961.350000px;}
.y1a4{bottom:968.190000px;}
.y165{bottom:968.550000px;}
.ye{bottom:969.630000px;}
.y145{bottom:972.150000px;}
.y100{bottom:972.870000px;}
.y54{bottom:974.850000px;}
.y91{bottom:978.630000px;}
.y1a3{bottom:982.050000px;}
.y144{bottom:988.890000px;}
.y164{bottom:989.610000px;}
.yd{bottom:990.510000px;}
.yff{bottom:992.670000px;}
.ycf{bottom:994.290000px;}
.y53{bottom:994.650000px;}
.y90{bottom:995.910000px;}
.y1a2{bottom:1000.230000px;}
.y143{bottom:1004.550000px;}
.yc{bottom:1010.670000px;}
.yfe{bottom:1012.470000px;}
.y8f{bottom:1012.830000px;}
.y1a1{bottom:1014.090000px;}
.yce{bottom:1014.270000px;}
.y52{bottom:1014.630000px;}
.y142{bottom:1016.790000px;}
.y1a0{bottom:1027.950000px;}
.y8e{bottom:1030.470000px;}
.yfd{bottom:1032.270000px;}
.y51{bottom:1034.430000px;}
.yb{bottom:1041.630000px;}
.y19f{bottom:1046.130000px;}
.y8d{bottom:1047.750000px;}
.yfc{bottom:1052.070000px;}
.y50{bottom:1054.230000px;}
.y19e{bottom:1059.990000px;}
.y8c{bottom:1064.850000px;}
.yfb{bottom:1072.050000px;}
.ya{bottom:1072.770000px;}
.y4f{bottom:1074.030000px;}
.y19d{bottom:1078.350000px;}
.y8b{bottom:1082.490000px;}
.yfa{bottom:1091.850000px;}
.y19c{bottom:1092.030000px;}
.y4e{bottom:1093.830000px;}
.y8a{bottom:1099.770000px;}
.y9{bottom:1101.210000px;}
.y19b{bottom:1110.390000px;}
.yf9{bottom:1111.650000px;}
.y45{bottom:1112.730000px;}
.y4d{bottom:1113.810000px;}
.y89{bottom:1117.050000px;}
.y8{bottom:1117.950000px;}
.y19a{bottom:1124.250000px;}
.yf8{bottom:1131.450000px;}
.y4c{bottom:1133.610000px;}
.y88{bottom:1134.330000px;}
.y199{bottom:1142.430000px;}
.y87{bottom:1151.100000px;}
.yf7{bottom:1151.280000px;}
.y141{bottom:1152.360000px;}
.ycd{bottom:1153.080000px;}
.y4b{bottom:1153.440000px;}
.y7{bottom:1155.960000px;}
.y134{bottom:1156.140000px;}
.y198{bottom:1156.320000px;}
.y6{bottom:1167.480000px;}
.y85{bottom:1169.460000px;}
.y49{bottom:1171.620000px;}
.y5{bottom:1175.940000px;}
.y84{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y48{bottom:1197.720000px;}
.h6{height:5.650313px;}
.hf{height:12.012891px;}
.h1d{height:17.085000px;}
.h24{height:17.098500px;}
.h1f{height:17.121000px;}
.h1b{height:17.265000px;}
.h21{height:17.316000px;}
.h2d{height:17.805000px;}
.h31{height:17.818500px;}
.h30{height:17.856000px;}
.h2f{height:17.985000px;}
.h32{height:17.998500px;}
.h11{height:18.140625px;}
.h1e{height:18.525000px;}
.h23{height:18.538500px;}
.h34{height:20.685000px;}
.h20{height:21.225000px;}
.hd{height:23.307539px;}
.h22{height:24.298500px;}
.h2a{height:24.825000px;}
.h29{height:25.041000px;}
.h1a{height:27.345000px;}
.h15{height:27.705000px;}
.he{height:29.664141px;}
.h2c{height:35.625000px;}
.h3{height:40.985156px;}
.h19{height:41.726953px;}
.h16{height:42.922699px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h28{height:51.501000px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h13{height:55.503472px;}
.h1c{height:55.503491px;}
.h14{height:58.651172px;}
.h2e{height:59.092031px;}
.h9{height:60.226875px;}
.h18{height:65.518594px;}
.hc{height:66.543750px;}
.h12{height:66.757500px;}
.h17{height:70.664062px;}
.h5{height:72.562500px;}
.ha{height:76.201172px;}
.h26{height:80.761875px;}
.h2b{height:82.676953px;}
.h27{height:84.898125px;}
.h33{height:105.996094px;}
.hb{height:108.843750px;}
.h25{height:349.020000px;}
.h10{height:356.610000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w7{width:39.636000px;}
.w5{width:40.129500px;}
.w14{width:62.820000px;}
.w1b{width:69.649500px;}
.w10{width:72.345000px;}
.w13{width:76.890000px;}
.wd{width:81.201000px;}
.we{width:81.720000px;}
.wa{width:82.789500px;}
.w16{width:83.916000px;}
.wf{width:86.436000px;}
.w11{width:87.501000px;}
.w1a{width:87.870000px;}
.w17{width:91.605000px;}
.w19{width:94.485000px;}
.w18{width:94.521000px;}
.w12{width:94.665000px;}
.w3{width:101.730000px;}
.w4{width:232.050000px;}
.w6{width:256.519500px;}
.w15{width:275.059500px;}
.wb{width:321.720000px;}
.wc{width:321.900000px;}
.w8{width:394.620000px;}
.w2{width:640.890000px;}
.w9{width:727.740000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xb{left:-36.900000px;}
.xa{left:-19.800000px;}
.x0{left:0.000000px;}
.x11{left:8.089500px;}
.x22{left:9.345000px;}
.x9{left:10.650000px;}
.x28{left:12.585000px;}
.x2a{left:14.940000px;}
.x1c{left:16.164000px;}
.x25{left:18.900000px;}
.x2d{left:20.160000px;}
.x2f{left:22.680000px;}
.x27{left:25.005000px;}
.x8{left:26.850000px;}
.x31{left:38.880000px;}
.x2e{left:40.500000px;}
.x7{left:42.510000px;}
.x34{left:44.310000px;}
.x37{left:45.390000px;}
.x6{left:58.710000px;}
.x1b{left:64.476000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x3a{left:90.046500px;}
.x16{left:98.310000px;}
.x21{left:102.450000px;}
.xc{left:108.036000px;}
.x3c{left:113.076000px;}
.x12{left:121.186500px;}
.x3d{left:158.250000px;}
.x1f{left:164.745000px;}
.x17{left:236.370000px;}
.x23{left:245.955000px;}
.x1d{left:285.090000px;}
.x24{left:327.675000px;}
.x30{left:353.955000px;}
.xe{left:359.715000px;}
.x18{left:374.400000px;}
.x13{left:377.715000px;}
.x1e{left:380.340000px;}
.x10{left:396.075000px;}
.x26{left:414.120000px;}
.x14{left:417.360000px;}
.xf{left:434.265000px;}
.x1{left:435.345000px;}
.x32{left:437.880000px;}
.x3{left:445.605000px;}
.x20{left:487.200000px;}
.x39{left:508.965000px;}
.x19{left:517.500000px;}
.x33{left:529.500000px;}
.x29{left:574.710000px;}
.xd{left:590.370000px;}
.x35{left:624.030000px;}
.x1a{left:650.490000px;}
.x2b{left:669.390000px;}
.x36{left:718.530000px;}
.x4{left:721.950000px;}
.x2c{left:746.280000px;}
.x3b{left:803.340000px;}
.x15{left:810.180000px;}
.x38{left:813.240000px;}
@media print{
.v6{vertical-align:-62.080000pt;}
.v5{vertical-align:-55.786668pt;}
.v7{vertical-align:-46.826667pt;}
.v3{vertical-align:-18.560000pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:21.120000pt;}
.v8{vertical-align:23.413333pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls20{letter-spacing:-1.040000pt;}
.ls21{letter-spacing:-0.441067pt;}
.ls1e{letter-spacing:-0.400533pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.198933pt;}
.ls11{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.096000pt;}
.ls22{letter-spacing:-0.080533pt;}
.lsb{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls15{letter-spacing:0.016000pt;}
.ls4{letter-spacing:0.032000pt;}
.lse{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.ls23{letter-spacing:0.183680pt;}
.ls1f{letter-spacing:0.198933pt;}
.ls1c{letter-spacing:0.199040pt;}
.ls12{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.280320pt;}
.ls17{letter-spacing:0.288000pt;}
.ls25{letter-spacing:0.290347pt;}
.ls0{letter-spacing:0.320000pt;}
.ls26{letter-spacing:0.441067pt;}
.ls24{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls8{letter-spacing:2.720000pt;}
.lsf{letter-spacing:3.360000pt;}
.ls9{letter-spacing:3.466667pt;}
.ls6{letter-spacing:50.560000pt;}
.ls7{letter-spacing:51.200000pt;}
.ls5{letter-spacing:51.840000pt;}
.ls13{letter-spacing:82.720000pt;}
.ls16{letter-spacing:118.496000pt;}
.ls14{letter-spacing:142.816000pt;}
.ws13{word-spacing:-53.120000pt;}
.ws4{word-spacing:-16.000000pt;}
.ws12{word-spacing:-14.101333pt;}
.wsc{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.463467pt;}
.ws5{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.288000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws16{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws1c{word-spacing:-11.161067pt;}
.ws3{word-spacing:-11.040000pt;}
.ws19{word-spacing:-10.918933pt;}
.ws7{word-spacing:-10.720000pt;}
.ws1b{word-spacing:-10.639467pt;}
.wsf{word-spacing:-10.521067pt;}
.ws6{word-spacing:-10.400000pt;}
.ws1a{word-spacing:-10.278933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-9.078933pt;}
.ws14{word-spacing:-8.640000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws8{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
.ws18{word-spacing:337.749333pt;}
._7{margin-left:-9.792000pt;}
._1b{margin-left:-6.366720pt;}
._b{margin-left:-4.704000pt;}
._3{margin-left:-1.967360pt;}
._1{margin-left:-1.002240pt;}
._0{width:1.262080pt;}
._2{width:2.429867pt;}
._c{width:3.888000pt;}
._d{width:5.031040pt;}
._e{width:6.794667pt;}
._10{width:7.841280pt;}
._16{width:9.151360pt;}
._f{width:10.896000pt;}
._15{width:12.170880pt;}
._1a{width:14.468267pt;}
._24{width:15.537707pt;}
._18{width:19.314987pt;}
._17{width:20.291840pt;}
._13{width:21.962237pt;}
._1c{width:23.272320pt;}
._11{width:29.808000pt;}
._12{width:31.008000pt;}
._9{width:33.743360pt;}
._8{width:34.691840pt;}
._a{width:35.613440pt;}
._2c{width:42.554667pt;}
._27{width:43.566080pt;}
._28{width:44.766720pt;}
._2a{width:45.838720pt;}
._2b{width:47.522773pt;}
._6{width:52.032000pt;}
._5{width:57.838080pt;}
._25{width:66.506880pt;}
._26{width:67.750400pt;}
._22{width:72.847360pt;}
._23{width:73.826133pt;}
._21{width:80.068053pt;}
._20{width:81.061120pt;}
._29{width:83.787520pt;}
._19{width:91.525760pt;}
._1e{width:269.610667pt;}
._1f{width:295.962667pt;}
._1d{width:418.880000pt;}
._14{width:1630.485333pt;}
._4{width:1827.362560pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:10.880000pt;}
.fsc{font-size:16.000000pt;}
.fs9{font-size:21.120000pt;}
.fsa{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsd{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fse{font-size:74.880000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ybc{bottom:3.506667pt;}
.yb5{bottom:3.666667pt;}
.yb0{bottom:3.680000pt;}
.yc7{bottom:3.712000pt;}
.y47{bottom:3.840000pt;}
.yb9{bottom:4.146667pt;}
.yb3{bottom:4.160000pt;}
.yc0{bottom:4.306667pt;}
.ycb{bottom:4.320000pt;}
.y127{bottom:4.626667pt;}
.y140{bottom:4.640000pt;}
.y12a{bottom:4.946667pt;}
.y2e{bottom:4.960000pt;}
.y12c{bottom:5.106667pt;}
.y133{bottom:5.120000pt;}
.yc5{bottom:5.426667pt;}
.yf5{bottom:5.533333pt;}
.yc9{bottom:6.720000pt;}
.y11f{bottom:7.826667pt;}
.yae{bottom:7.840000pt;}
.y120{bottom:8.146667pt;}
.y128{bottom:12.626667pt;}
.y3{bottom:16.000000pt;}
.y46{bottom:16.160000pt;}
.y86{bottom:16.800000pt;}
.y4a{bottom:17.120000pt;}
.y2d{bottom:17.280000pt;}
.y11d{bottom:19.826667pt;}
.y126{bottom:20.466667pt;}
.y2c{bottom:24.000000pt;}
.y2{bottom:26.720000pt;}
.yf3{bottom:27.333333pt;}
.y2b{bottom:37.760000pt;}
.y1{bottom:38.240000pt;}
.y2a{bottom:51.680000pt;}
.y29{bottom:65.440000pt;}
.y1d4{bottom:66.240000pt;}
.y13e{bottom:66.880000pt;}
.y148{bottom:68.640000pt;}
.yea{bottom:68.960000pt;}
.yf1{bottom:70.173333pt;}
.yf4{bottom:70.746667pt;}
.y197{bottom:70.880000pt;}
.y83{bottom:71.680000pt;}
.y132{bottom:72.320000pt;}
.y163{bottom:72.960000pt;}
.ycc{bottom:73.920000pt;}
.y28{bottom:79.200000pt;}
.y1d3{bottom:80.000000pt;}
.y13d{bottom:80.640000pt;}
.y196{bottom:83.040000pt;}
.y147{bottom:84.480000pt;}
.ye9{bottom:86.720000pt;}
.y82{bottom:87.040000pt;}
.y131{bottom:88.320000pt;}
.y44{bottom:89.120000pt;}
.yca{bottom:89.760000pt;}
.y162{bottom:90.560000pt;}
.y13c{bottom:91.680000pt;}
.y27{bottom:92.960000pt;}
.y1d2{bottom:93.920000pt;}
.y146{bottom:97.600000pt;}
.y195{bottom:99.360000pt;}
.yf0{bottom:99.493333pt;}
.y81{bottom:102.240000pt;}
.y130{bottom:104.160000pt;}
.ye8{bottom:104.320000pt;}
.y43{bottom:106.720000pt;}
.y26{bottom:106.880000pt;}
.yc8{bottom:107.040000pt;}
.y1d1{bottom:107.680000pt;}
.y161{bottom:108.320000pt;}
.y194{bottom:111.680000pt;}
.yf2{bottom:117.053333pt;}
.y80{bottom:117.600000pt;}
.y12f{bottom:120.000000pt;}
.y25{bottom:120.640000pt;}
.y1d0{bottom:121.440000pt;}
.ye7{bottom:121.920000pt;}
.y193{bottom:123.840000pt;}
.y42{bottom:124.320000pt;}
.y160{bottom:125.600000pt;}
.yc6{bottom:129.280000pt;}
.y7f{bottom:132.992000pt;}
.y24{bottom:134.400000pt;}
.y1cf{bottom:135.226667pt;}
.y12e{bottom:135.880000pt;}
.ye6{bottom:139.226667pt;}
.y41{bottom:142.106667pt;}
.y15f{bottom:143.546667pt;}
.yc4{bottom:145.320000pt;}
.y192{bottom:146.906667pt;}
.y23{bottom:148.186667pt;}
.y7e{bottom:148.346667pt;}
.y1ce{bottom:149.146667pt;}
.y12d{bottom:151.720000pt;}
.yec{bottom:152.226667pt;}
.ye5{bottom:157.146667pt;}
.y30{bottom:158.586667pt;}
.y191{bottom:159.066667pt;}
.y40{bottom:159.706667pt;}
.y15e{bottom:161.146667pt;}
.y22{bottom:162.106667pt;}
.y1cd{bottom:162.906667pt;}
.y7d{bottom:163.706667pt;}
.yc3{bottom:165.000000pt;}
.y12b{bottom:167.560000pt;}
.y190{bottom:171.386667pt;}
.ye4{bottom:174.906667pt;}
.y21{bottom:175.866667pt;}
.y1cc{bottom:176.666667pt;}
.y3f{bottom:177.306667pt;}
.y15d{bottom:178.746667pt;}
.y7c{bottom:178.906667pt;}
.yc2{bottom:180.840000pt;}
.y129{bottom:183.560000pt;}
.y18f{bottom:187.706667pt;}
.y20{bottom:189.626667pt;}
.ye3{bottom:192.506667pt;}
.y7b{bottom:193.946667pt;}
.y3e{bottom:194.906667pt;}
.y15c{bottom:196.506667pt;}
.yc1{bottom:196.840000pt;}
.yef{bottom:199.106667pt;}
.y18e{bottom:199.866667pt;}
.y125{bottom:200.040000pt;}
.y1f{bottom:203.386667pt;}
.y1cb{bottom:204.346667pt;}
.yed{bottom:204.960000pt;}
.y7a{bottom:209.626667pt;}
.ye2{bottom:210.106667pt;}
.y3d{bottom:212.506667pt;}
.ybf{bottom:212.680000pt;}
.y15b{bottom:214.106667pt;}
.y18d{bottom:216.186667pt;}
.y1e{bottom:217.306667pt;}
.y1ca{bottom:218.106667pt;}
.y79{bottom:224.986667pt;}
.ye1{bottom:227.386667pt;}
.ybe{bottom:229.800000pt;}
.y3c{bottom:230.266667pt;}
.y1d{bottom:231.066667pt;}
.y15a{bottom:231.706667pt;}
.y18c{bottom:232.506667pt;}
.y124{bottom:235.706667pt;}
.y1c9{bottom:237.146667pt;}
.y78{bottom:240.346667pt;}
.y18b{bottom:244.666667pt;}
.y1c{bottom:244.826667pt;}
.ybd{bottom:245.800000pt;}
.ye0{bottom:246.426667pt;}
.y3b{bottom:247.866667pt;}
.y159{bottom:249.306667pt;}
.y123{bottom:251.066667pt;}
.yee{bottom:251.840000pt;}
.y77{bottom:255.706667pt;}
.y1c8{bottom:256.346667pt;}
.y1b{bottom:258.586667pt;}
.y18a{bottom:260.986667pt;}
.ybb{bottom:261.800000pt;}
.y3a{bottom:265.466667pt;}
.ydf{bottom:266.106667pt;}
.y158{bottom:266.906667pt;}
.y122{bottom:270.746667pt;}
.y76{bottom:270.906667pt;}
.y1a{bottom:272.506667pt;}
.y189{bottom:273.306667pt;}
.y1c7{bottom:275.546667pt;}
.yba{bottom:277.640000pt;}
.yde{bottom:281.946667pt;}
.y39{bottom:283.066667pt;}
.y157{bottom:284.666667pt;}
.y188{bottom:285.466667pt;}
.y19{bottom:286.266667pt;}
.y121{bottom:288.520000pt;}
.yb8{bottom:293.640000pt;}
.y1c6{bottom:294.586667pt;}
.ydd{bottom:295.066667pt;}
.yf6{bottom:295.333333pt;}
.yeb{bottom:296.960000pt;}
.y38{bottom:300.666667pt;}
.y75{bottom:301.626667pt;}
.y187{bottom:301.786667pt;}
.y156{bottom:302.266667pt;}
.y18{bottom:305.786667pt;}
.yb7{bottom:310.760000pt;}
.y11c{bottom:312.040000pt;}
.y1c5{bottom:313.786667pt;}
.y186{bottom:314.106667pt;}
.y2f{bottom:316.986667pt;}
.y37{bottom:318.426667pt;}
.y155{bottom:319.866667pt;}
.yb6{bottom:326.600000pt;}
.y185{bottom:330.266667pt;}
.y74{bottom:332.346667pt;}
.y1c4{bottom:332.826667pt;}
.y11e{bottom:335.560000pt;}
.y36{bottom:336.026667pt;}
.y154{bottom:337.466667pt;}
.y184{bottom:342.586667pt;}
.yb4{bottom:342.600000pt;}
.y73{bottom:347.706667pt;}
.y1c3{bottom:352.026667pt;}
.y35{bottom:353.626667pt;}
.y183{bottom:354.946667pt;}
.y153{bottom:355.106667pt;}
.yb2{bottom:358.626667pt;}
.y72{bottom:362.946667pt;}
.y11b{bottom:363.906667pt;}
.y182{bottom:371.106667pt;}
.y34{bottom:371.266667pt;}
.y152{bottom:372.866667pt;}
.yb1{bottom:375.746667pt;}
.y13b{bottom:377.986667pt;}
.y71{bottom:378.306667pt;}
.y11a{bottom:381.506667pt;}
.y181{bottom:383.426667pt;}
.y33{bottom:388.866667pt;}
.y1c2{bottom:390.306667pt;}
.y151{bottom:390.466667pt;}
.yaf{bottom:391.586667pt;}
.y70{bottom:393.666667pt;}
.y180{bottom:399.746667pt;}
.y119{bottom:401.026667pt;}
.y13a{bottom:402.306667pt;}
.y32{bottom:406.306667pt;}
.yad{bottom:407.586667pt;}
.y150{bottom:408.066667pt;}
.y6f{bottom:409.026667pt;}
.y1c1{bottom:409.506667pt;}
.y17f{bottom:411.906667pt;}
.y139{bottom:414.946667pt;}
.y118{bottom:423.906667pt;}
.y31{bottom:424.226667pt;}
.y6e{bottom:424.386667pt;}
.y14f{bottom:425.666667pt;}
.y17e{bottom:428.226667pt;}
.y138{bottom:428.386667pt;}
.y1c0{bottom:428.546667pt;}
.y17{bottom:436.386667pt;}
.yac{bottom:438.146667pt;}
.y6d{bottom:439.266667pt;}
.y137{bottom:439.586667pt;}
.y17d{bottom:440.546667pt;}
.y117{bottom:441.506667pt;}
.y14e{bottom:443.266667pt;}
.y1bf{bottom:444.866667pt;}
.y6c{bottom:454.626667pt;}
.yab{bottom:455.426667pt;}
.y17c{bottom:456.706667pt;}
.y116{bottom:459.106667pt;}
.y14d{bottom:461.026667pt;}
.y1be{bottom:462.626667pt;}
.y17b{bottom:469.026667pt;}
.y6b{bottom:470.306667pt;}
.yaa{bottom:471.266667pt;}
.y115{bottom:476.706667pt;}
.y14c{bottom:478.626667pt;}
.y17a{bottom:481.346667pt;}
.y6a{bottom:485.666667pt;}
.ya9{bottom:486.626667pt;}
.y1bd{bottom:493.666667pt;}
.y114{bottom:494.306667pt;}
.y14b{bottom:496.226667pt;}
.y179{bottom:498.146667pt;}
.y69{bottom:500.706667pt;}
.ya8{bottom:501.826667pt;}
.y1bc{bottom:509.986667pt;}
.y113{bottom:512.066667pt;}
.y14a{bottom:513.826667pt;}
.y178{bottom:515.426667pt;}
.y68{bottom:516.066667pt;}
.ya7{bottom:517.186667pt;}
.y1bb{bottom:522.146667pt;}
.y112{bottom:529.666667pt;}
.y67{bottom:531.266667pt;}
.y149{bottom:531.426667pt;}
.ya6{bottom:532.546667pt;}
.y177{bottom:534.466667pt;}
.y1ba{bottom:538.466667pt;}
.y13f{bottom:541.026667pt;}
.y111{bottom:547.266667pt;}
.ya5{bottom:547.586667pt;}
.y66{bottom:549.186667pt;}
.y1b9{bottom:550.786667pt;}
.y176{bottom:552.386667pt;}
.ya4{bottom:563.266667pt;}
.y110{bottom:564.866667pt;}
.y65{bottom:566.786667pt;}
.y1b8{bottom:566.946667pt;}
.y175{bottom:567.266667pt;}
.ya3{bottom:578.653333pt;}
.y1b7{bottom:579.293333pt;}
.y10f{bottom:582.493333pt;}
.y174{bottom:582.653333pt;}
.y64{bottom:584.413333pt;}
.y1b6{bottom:591.613333pt;}
.ya2{bottom:593.853333pt;}
.y173{bottom:598.333333pt;}
.y10e{bottom:600.253333pt;}
.y63{bottom:602.013333pt;}
.y1b5{bottom:607.773333pt;}
.ya1{bottom:609.213333pt;}
.ydc{bottom:613.693333pt;}
.y10d{bottom:617.853333pt;}
.y62{bottom:619.613333pt;}
.y1b4{bottom:620.093333pt;}
.ya0{bottom:624.573333pt;}
.y172{bottom:629.053333pt;}
.ydb{bottom:633.853333pt;}
.y10c{bottom:635.453333pt;}
.y1b3{bottom:636.413333pt;}
.y61{bottom:637.373333pt;}
.y9f{bottom:639.933333pt;}
.y171{bottom:644.093333pt;}
.y1b2{bottom:648.573333pt;}
.yda{bottom:651.453333pt;}
.y10b{bottom:653.053333pt;}
.y60{bottom:654.973333pt;}
.y9e{bottom:655.293333pt;}
.y170{bottom:659.293333pt;}
.y1b1{bottom:664.893333pt;}
.yd9{bottom:669.053333pt;}
.y9d{bottom:670.493333pt;}
.y10a{bottom:670.653333pt;}
.y5f{bottom:672.573333pt;}
.y16f{bottom:674.973333pt;}
.y136{bottom:675.933333pt;}
.y1b0{bottom:677.213333pt;}
.y9c{bottom:685.853333pt;}
.yd8{bottom:686.653333pt;}
.y109{bottom:688.413333pt;}
.y1af{bottom:689.373333pt;}
.y16e{bottom:690.013333pt;}
.y5e{bottom:690.173333pt;}
.y135{bottom:699.293333pt;}
.y9b{bottom:701.213333pt;}
.yd7{bottom:704.253333pt;}
.y16d{bottom:705.693333pt;}
.y108{bottom:706.013333pt;}
.y5d{bottom:707.773333pt;}
.y9a{bottom:716.573333pt;}
.y1ae{bottom:717.853333pt;}
.y16c{bottom:721.053333pt;}
.yd6{bottom:722.013333pt;}
.y107{bottom:723.613333pt;}
.y5c{bottom:725.533333pt;}
.y99{bottom:731.933333pt;}
.y1ad{bottom:734.173333pt;}
.y16b{bottom:736.413333pt;}
.yd5{bottom:739.613333pt;}
.y106{bottom:741.213333pt;}
.y5b{bottom:743.133333pt;}
.y1ac{bottom:746.493333pt;}
.y16a{bottom:751.613333pt;}
.yd4{bottom:757.213333pt;}
.y16{bottom:758.493333pt;}
.y105{bottom:758.813333pt;}
.y5a{bottom:760.733333pt;}
.y98{bottom:762.493333pt;}
.y1ab{bottom:762.653333pt;}
.y169{bottom:766.653333pt;}
.yd3{bottom:774.493333pt;}
.y1aa{bottom:774.973333pt;}
.y15{bottom:775.293333pt;}
.y104{bottom:776.573333pt;}
.y97{bottom:777.853333pt;}
.y59{bottom:778.333333pt;}
.y168{bottom:782.333333pt;}
.y14{bottom:786.173333pt;}
.y1a9{bottom:791.293333pt;}
.yd2{bottom:792.413333pt;}
.y96{bottom:793.213333pt;}
.y103{bottom:794.173333pt;}
.y58{bottom:795.933333pt;}
.y13{bottom:797.733333pt;}
.y1a8{bottom:803.493333pt;}
.y95{bottom:808.613333pt;}
.yd1{bottom:809.893333pt;}
.y12{bottom:811.813333pt;}
.y167{bottom:813.093333pt;}
.y57{bottom:813.733333pt;}
.y1a7{bottom:815.813333pt;}
.y94{bottom:823.973333pt;}
.y11{bottom:825.893333pt;}
.y166{bottom:827.973333pt;}
.yd0{bottom:828.613333pt;}
.y102{bottom:829.413333pt;}
.y56{bottom:831.333333pt;}
.y1a6{bottom:832.133333pt;}
.y10{bottom:833.253333pt;}
.y93{bottom:839.333333pt;}
.yf{bottom:843.333333pt;}
.y1a5{bottom:844.293333pt;}
.y101{bottom:847.013333pt;}
.y55{bottom:848.933333pt;}
.y92{bottom:854.533333pt;}
.y1a4{bottom:860.613333pt;}
.y165{bottom:860.933333pt;}
.ye{bottom:861.893333pt;}
.y145{bottom:864.133333pt;}
.y100{bottom:864.773333pt;}
.y54{bottom:866.533333pt;}
.y91{bottom:869.893333pt;}
.y1a3{bottom:872.933333pt;}
.y144{bottom:879.013333pt;}
.y164{bottom:879.653333pt;}
.yd{bottom:880.453333pt;}
.yff{bottom:882.373333pt;}
.ycf{bottom:883.813333pt;}
.y53{bottom:884.133333pt;}
.y90{bottom:885.253333pt;}
.y1a2{bottom:889.093333pt;}
.y143{bottom:892.933333pt;}
.yc{bottom:898.373333pt;}
.yfe{bottom:899.973333pt;}
.y8f{bottom:900.293333pt;}
.y1a1{bottom:901.413333pt;}
.yce{bottom:901.573333pt;}
.y52{bottom:901.893333pt;}
.y142{bottom:903.813333pt;}
.y1a0{bottom:913.733333pt;}
.y8e{bottom:915.973333pt;}
.yfd{bottom:917.573333pt;}
.y51{bottom:919.493333pt;}
.yb{bottom:925.893333pt;}
.y19f{bottom:929.893333pt;}
.y8d{bottom:931.333333pt;}
.yfc{bottom:935.173333pt;}
.y50{bottom:937.093333pt;}
.y19e{bottom:942.213333pt;}
.y8c{bottom:946.533333pt;}
.yfb{bottom:952.933333pt;}
.ya{bottom:953.573333pt;}
.y4f{bottom:954.693333pt;}
.y19d{bottom:958.533333pt;}
.y8b{bottom:962.213333pt;}
.yfa{bottom:970.533333pt;}
.y19c{bottom:970.693333pt;}
.y4e{bottom:972.293333pt;}
.y8a{bottom:977.573333pt;}
.y9{bottom:978.853333pt;}
.y19b{bottom:987.013333pt;}
.yf9{bottom:988.133333pt;}
.y45{bottom:989.093333pt;}
.y4d{bottom:990.053333pt;}
.y89{bottom:992.933333pt;}
.y8{bottom:993.733333pt;}
.y19a{bottom:999.333333pt;}
.yf8{bottom:1005.733333pt;}
.y4c{bottom:1007.653333pt;}
.y88{bottom:1008.293333pt;}
.y199{bottom:1015.493333pt;}
.y87{bottom:1023.200000pt;}
.yf7{bottom:1023.360000pt;}
.y141{bottom:1024.320000pt;}
.ycd{bottom:1024.960000pt;}
.y4b{bottom:1025.280000pt;}
.y7{bottom:1027.520000pt;}
.y134{bottom:1027.680000pt;}
.y198{bottom:1027.840000pt;}
.y6{bottom:1037.760000pt;}
.y85{bottom:1039.520000pt;}
.y49{bottom:1041.440000pt;}
.y5{bottom:1045.280000pt;}
.y84{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y48{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.hf{height:10.678125pt;}
.h1d{height:15.186667pt;}
.h24{height:15.198667pt;}
.h1f{height:15.218667pt;}
.h1b{height:15.346667pt;}
.h21{height:15.392000pt;}
.h2d{height:15.826667pt;}
.h31{height:15.838667pt;}
.h30{height:15.872000pt;}
.h2f{height:15.986667pt;}
.h32{height:15.998667pt;}
.h11{height:16.125000pt;}
.h1e{height:16.466667pt;}
.h23{height:16.478667pt;}
.h34{height:18.386667pt;}
.h20{height:18.866667pt;}
.hd{height:20.717812pt;}
.h22{height:21.598667pt;}
.h2a{height:22.066667pt;}
.h29{height:22.258667pt;}
.h1a{height:24.306667pt;}
.h15{height:24.626667pt;}
.he{height:26.368125pt;}
.h2c{height:31.666667pt;}
.h3{height:36.431250pt;}
.h19{height:37.090625pt;}
.h16{height:38.153511pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h28{height:45.778667pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h13{height:49.336419pt;}
.h1c{height:49.336436pt;}
.h14{height:52.134375pt;}
.h2e{height:52.526250pt;}
.h9{height:53.535000pt;}
.h18{height:58.238750pt;}
.hc{height:59.150000pt;}
.h12{height:59.340000pt;}
.h17{height:62.812500pt;}
.h5{height:64.500000pt;}
.ha{height:67.734375pt;}
.h26{height:71.788333pt;}
.h2b{height:73.490625pt;}
.h27{height:75.465000pt;}
.h33{height:94.218750pt;}
.hb{height:96.750000pt;}
.h25{height:310.240000pt;}
.h10{height:316.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w7{width:35.232000pt;}
.w5{width:35.670667pt;}
.w14{width:55.840000pt;}
.w1b{width:61.910667pt;}
.w10{width:64.306667pt;}
.w13{width:68.346667pt;}
.wd{width:72.178667pt;}
.we{width:72.640000pt;}
.wa{width:73.590667pt;}
.w16{width:74.592000pt;}
.wf{width:76.832000pt;}
.w11{width:77.778667pt;}
.w1a{width:78.106667pt;}
.w17{width:81.426667pt;}
.w19{width:83.986667pt;}
.w18{width:84.018667pt;}
.w12{width:84.146667pt;}
.w3{width:90.426667pt;}
.w4{width:206.266667pt;}
.w6{width:228.017333pt;}
.w15{width:244.497333pt;}
.wb{width:285.973333pt;}
.wc{width:286.133333pt;}
.w8{width:350.773333pt;}
.w2{width:569.680000pt;}
.w9{width:646.880000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xb{left:-32.800000pt;}
.xa{left:-17.600000pt;}
.x0{left:0.000000pt;}
.x11{left:7.190667pt;}
.x22{left:8.306667pt;}
.x9{left:9.466667pt;}
.x28{left:11.186667pt;}
.x2a{left:13.280000pt;}
.x1c{left:14.368000pt;}
.x25{left:16.800000pt;}
.x2d{left:17.920000pt;}
.x2f{left:20.160000pt;}
.x27{left:22.226667pt;}
.x8{left:23.866667pt;}
.x31{left:34.560000pt;}
.x2e{left:36.000000pt;}
.x7{left:37.786667pt;}
.x34{left:39.386667pt;}
.x37{left:40.346667pt;}
.x6{left:52.186667pt;}
.x1b{left:57.312000pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x3a{left:80.041333pt;}
.x16{left:87.386667pt;}
.x21{left:91.066667pt;}
.xc{left:96.032000pt;}
.x3c{left:100.512000pt;}
.x12{left:107.721333pt;}
.x3d{left:140.666667pt;}
.x1f{left:146.440000pt;}
.x17{left:210.106667pt;}
.x23{left:218.626667pt;}
.x1d{left:253.413333pt;}
.x24{left:291.266667pt;}
.x30{left:314.626667pt;}
.xe{left:319.746667pt;}
.x18{left:332.800000pt;}
.x13{left:335.746667pt;}
.x1e{left:338.080000pt;}
.x10{left:352.066667pt;}
.x26{left:368.106667pt;}
.x14{left:370.986667pt;}
.xf{left:386.013333pt;}
.x1{left:386.973333pt;}
.x32{left:389.226667pt;}
.x3{left:396.093333pt;}
.x20{left:433.066667pt;}
.x39{left:452.413333pt;}
.x19{left:460.000000pt;}
.x33{left:470.666667pt;}
.x29{left:510.853333pt;}
.xd{left:524.773333pt;}
.x35{left:554.693333pt;}
.x1a{left:578.213333pt;}
.x2b{left:595.013333pt;}
.x36{left:638.693333pt;}
.x4{left:641.733333pt;}
.x2c{left:663.360000pt;}
.x3b{left:714.080000pt;}
.x15{left:720.160000pt;}
.x38{left:722.880000pt;}
}




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