
    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_56d7f41b8aae1f18ade7e6a6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_c8135af44dfd73c0dd1c1f9a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_1980605d28d433eb23cb0585.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2ea45e28a1868e493fc4aea4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_057879056d68a6d45459d6ba.woff')format("woff");}.ff5{font-family:ff5;line-height:1.065430;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_ed9e82820fa1c2afb856ebe2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;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_4b30736f444bc9d231ad4cdf.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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_6cee6499ed5ee159210e3c43.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-12.240000px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.880000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:15.120000px;}
.ls29{letter-spacing:-1.626000px;}
.ls3{letter-spacing:-0.540000px;}
.ls31{letter-spacing:-0.288600px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.270600px;}
.ls8{letter-spacing:-0.240000px;}
.lsa{letter-spacing:-0.094800px;}
.ls1d{letter-spacing:-0.046800px;}
.ls4{letter-spacing:-0.036000px;}
.lsf{letter-spacing:-0.010800px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.012960px;}
.ls2b{letter-spacing:0.023040px;}
.ls21{letter-spacing:0.041760px;}
.lsb{letter-spacing:0.060480px;}
.ls14{letter-spacing:0.126600px;}
.ls33{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.180480px;}
.ls11{letter-spacing:0.211680px;}
.lsc{letter-spacing:0.211800px;}
.ls32{letter-spacing:0.285600px;}
.ls20{letter-spacing:0.308880px;}
.ls16{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.328200px;}
.ls2a{letter-spacing:0.328800px;}
.ls1f{letter-spacing:0.332640px;}
.ls12{letter-spacing:0.351360px;}
.ls30{letter-spacing:0.357000px;}
.ls1{letter-spacing:0.360000px;}
.ls23{letter-spacing:0.366000px;}
.ls25{letter-spacing:0.466560px;}
.ls1a{letter-spacing:0.532800px;}
.ls17{letter-spacing:0.618000px;}
.ls2c{letter-spacing:0.712800px;}
.lse{letter-spacing:0.732000px;}
.ls13{letter-spacing:0.780480px;}
.ls24{letter-spacing:0.781920px;}
.ls19{letter-spacing:0.799200px;}
.ls22{letter-spacing:0.815040px;}
.ls27{letter-spacing:0.863040px;}
.ls15{letter-spacing:0.930000px;}
.ls26{letter-spacing:1.052640px;}
.ls34{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.972800px;}
.ls1e{letter-spacing:3.412800px;}
.ls10{letter-spacing:9.892800px;}
.lsd{letter-spacing:18.540000px;}
.ls2e{letter-spacing:46.002720px;}
.ls1c{letter-spacing:46.026720px;}
.ls2d{letter-spacing:49.602720px;}
.ls2f{letter-spacing:52.482720px;}
.ls18{letter-spacing:202.828800px;}
.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;}
}
.ws14{word-spacing:-14.227200px;}
.wsa{word-spacing:-13.879200px;}
.ws11{word-spacing:-13.504200px;}
.ws13{word-spacing:-13.432800px;}
.ws9{word-spacing:-13.359000px;}
.ws8{word-spacing:-13.160160px;}
.ws7{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.136400px;}
.ws10{word-spacing:-13.100400px;}
.ws12{word-spacing:-12.858600px;}
.wsd{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.880000px;}
.ws5{word-spacing:-10.612800px;}
.ws4{word-spacing:-10.342200px;}
.ws6{word-spacing:-9.092400px;}
.wsb{word-spacing:-8.553600px;}
.wse{word-spacing:-7.920000px;}
.ws1{word-spacing:-7.884000px;}
.ws2{word-spacing:-7.632000px;}
.ws3{word-spacing:0.000000px;}
._32{margin-left:-11.789040px;}
._2d{margin-left:-5.967600px;}
._26{margin-left:-4.026960px;}
._1c{margin-left:-2.742960px;}
._2{margin-left:-1.098000px;}
._1{width:1.488000px;}
._f{width:2.748960px;}
._14{width:3.782880px;}
._15{width:5.079600px;}
._16{width:6.334560px;}
._d{width:7.894320px;}
._e{width:9.029760px;}
._11{width:10.108080px;}
._4{width:11.286000px;}
._1d{width:13.170000px;}
._1b{width:14.826480px;}
._1a{width:16.135200px;}
._19{width:17.444640px;}
._10{width:18.501600px;}
._8{width:19.906080px;}
._7{width:21.274560px;}
._18{width:22.683360px;}
._17{width:24.143040px;}
._2a{width:25.684800px;}
._9{width:27.137040px;}
._a{width:28.647600px;}
._c{width:29.820240px;}
._21{width:31.313280px;}
._b{width:33.943680px;}
._20{width:34.959600px;}
._24{width:36.894480px;}
._23{width:38.164080px;}
._27{width:39.386640px;}
._29{width:45.227040px;}
._28{width:46.245120px;}
._1e{width:47.456280px;}
._6{width:49.899600px;}
._12{width:56.359680px;}
._13{width:57.542880px;}
._0{width:75.000000px;}
._31{width:77.390880px;}
._30{width:103.057680px;}
._2e{width:125.537760px;}
._2b{width:137.285040px;}
._2c{width:141.796560px;}
._33{width:143.027520px;}
._3{width:181.080000px;}
._2f{width:195.323040px;}
._5{width:200.280000px;}
._22{width:202.828800px;}
._25{width:851.008800px;}
._1f{width:1069.687200px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y10a{bottom:3.060000px;}
.yc8{bottom:3.420000px;}
.ye1{bottom:3.465000px;}
.y108{bottom:7.200000px;}
.y186{bottom:7.560000px;}
.y134{bottom:10.800000px;}
.y10d{bottom:11.340000px;}
.y111{bottom:11.520000px;}
.y1b3{bottom:11.880000px;}
.y17e{bottom:13.140000px;}
.y13d{bottom:13.860000px;}
.y145{bottom:14.040000px;}
.y10b{bottom:18.900000px;}
.y13b{bottom:19.260000px;}
.y1b8{bottom:19.980000px;}
.y11a{bottom:20.340000px;}
.yda{bottom:20.880000px;}
.y105{bottom:21.054000px;}
.yc7{bottom:21.060000px;}
.y187{bottom:22.860000px;}
.y183{bottom:24.300000px;}
.y148{bottom:24.480000px;}
.y169{bottom:24.525000px;}
.y144{bottom:24.660000px;}
.y10f{bottom:28.800000px;}
.y55{bottom:32.760000px;}
.y102{bottom:38.520000px;}
.y140{bottom:38.700000px;}
.y138{bottom:40.140000px;}
.y54{bottom:46.080000px;}
.y113{bottom:46.110000px;}
.y7{bottom:56.340000px;}
.y58{bottom:56.520000px;}
.y53{bottom:56.700000px;}
.y181{bottom:62.460000px;}
.y52{bottom:67.140000px;}
.y6{bottom:70.056000px;}
.y165{bottom:80.280000px;}
.y142{bottom:80.460000px;}
.y51{bottom:84.780000px;}
.yd0{bottom:108.936000px;}
.y1c6{bottom:112.176000px;}
.y106{bottom:114.336000px;}
.y40{bottom:116.496000px;}
.y194{bottom:117.756000px;}
.y13a{bottom:119.196000px;}
.ycf{bottom:127.296000px;}
.y104{bottom:129.276000px;}
.y1c5{bottom:129.636000px;}
.y3f{bottom:134.136000px;}
.y193{bottom:135.216000px;}
.y50{bottom:137.700000px;}
.y92{bottom:139.896000px;}
.yce{bottom:145.656000px;}
.y1c4{bottom:147.276000px;}
.y3e{bottom:151.770000px;}
.y4f{bottom:151.920000px;}
.y192{bottom:152.850000px;}
.y137{bottom:154.110000px;}
.y91{bottom:157.350000px;}
.ycd{bottom:164.010000px;}
.y1c3{bottom:164.910000px;}
.y103{bottom:165.270000px;}
.y4e{bottom:165.960000px;}
.y3d{bottom:169.410000px;}
.y191{bottom:170.490000px;}
.y139{bottom:173.190000px;}
.y90{bottom:174.990000px;}
.y4d{bottom:180.000000px;}
.ycc{bottom:182.370000px;}
.y3c{bottom:186.870000px;}
.y190{bottom:187.950000px;}
.y8f{bottom:192.630000px;}
.y4c{bottom:194.040000px;}
.y1c2{bottom:200.010000px;}
.ycb{bottom:200.730000px;}
.y101{bottom:201.090000px;}
.y3b{bottom:204.510000px;}
.y18f{bottom:205.590000px;}
.y4b{bottom:208.080000px;}
.y135{bottom:209.910000px;}
.y8e{bottom:210.270000px;}
.y1c1{bottom:217.650000px;}
.yca{bottom:218.910000px;}
.y4a{bottom:222.120000px;}
.y3a{bottom:222.150000px;}
.y18e{bottom:223.230000px;}
.y136{bottom:227.370000px;}
.y8d{bottom:227.730000px;}
.y49{bottom:234.720000px;}
.y1c0{bottom:235.110000px;}
.yc9{bottom:237.270000px;}
.y39{bottom:239.610000px;}
.y18d{bottom:240.870000px;}
.y48{bottom:243.360000px;}
.y8c{bottom:245.370000px;}
.y1bf{bottom:252.750000px;}
.y100{bottom:254.550000px;}
.yc6{bottom:255.630000px;}
.y38{bottom:257.250000px;}
.y47{bottom:257.445000px;}
.y18c{bottom:258.330000px;}
.y133{bottom:259.950000px;}
.y8b{bottom:263.010000px;}
.y1be{bottom:270.390000px;}
.y46{bottom:271.485000px;}
.y37{bottom:274.890000px;}
.y18b{bottom:275.970000px;}
.y1c7{bottom:277.410000px;}
.y8a{bottom:280.470000px;}
.y45{bottom:285.525000px;}
.y1bd{bottom:287.850000px;}
.y36{bottom:292.350000px;}
.y18a{bottom:293.610000px;}
.yff{bottom:293.970000px;}
.yc5{bottom:295.050000px;}
.y132{bottom:295.770000px;}
.y89{bottom:298.110000px;}
.y44{bottom:299.565000px;}
.y1bc{bottom:305.490000px;}
.y160{bottom:307.650000px;}
.y35{bottom:309.990000px;}
.y189{bottom:311.070000px;}
.yfe{bottom:311.610000px;}
.y43{bottom:312.165000px;}
.yc4{bottom:312.510000px;}
.y131{bottom:313.410000px;}
.y88{bottom:315.750000px;}
.y1bb{bottom:323.130000px;}
.y42{bottom:323.325000px;}
.y15f{bottom:325.290000px;}
.y34{bottom:327.630000px;}
.y188{bottom:328.710000px;}
.yfd{bottom:329.070000px;}
.yc3{bottom:330.150000px;}
.y130{bottom:331.050000px;}
.y87{bottom:333.210000px;}
.y1ba{bottom:340.815000px;}
.y15e{bottom:342.975000px;}
.y33{bottom:345.315000px;}
.yfc{bottom:346.755000px;}
.yc2{bottom:347.835000px;}
.y123{bottom:348.555000px;}
.y86{bottom:350.895000px;}
.y1b9{bottom:358.275000px;}
.y15d{bottom:360.435000px;}
.y32{bottom:362.775000px;}
.yfb{bottom:364.395000px;}
.yc1{bottom:365.295000px;}
.y122{bottom:366.195000px;}
.y85{bottom:368.535000px;}
.y1b7{bottom:372.495000px;}
.y15c{bottom:378.075000px;}
.y185{bottom:380.055000px;}
.y31{bottom:380.415000px;}
.yfa{bottom:381.855000px;}
.yc0{bottom:382.935000px;}
.y121{bottom:383.835000px;}
.y84{bottom:386.175000px;}
.y15b{bottom:395.715000px;}
.y30{bottom:398.055000px;}
.yf9{bottom:399.495000px;}
.ybf{bottom:400.575000px;}
.y120{bottom:401.295000px;}
.y180{bottom:403.275000px;}
.y83{bottom:403.635000px;}
.y1b6{bottom:406.695000px;}
.y15a{bottom:413.355000px;}
.y2f{bottom:415.515000px;}
.yf8{bottom:417.135000px;}
.ybe{bottom:418.215000px;}
.y11f{bottom:418.935000px;}
.y82{bottom:421.275000px;}
.y184{bottom:422.355000px;}
.y1b5{bottom:425.775000px;}
.y159{bottom:430.815000px;}
.yf7{bottom:432.075000px;}
.y2e{bottom:434.955000px;}
.ybd{bottom:435.675000px;}
.y11e{bottom:436.575000px;}
.y81{bottom:438.915000px;}
.y182{bottom:441.435000px;}
.y1b4{bottom:444.855000px;}
.y158{bottom:448.455000px;}
.yf6{bottom:450.255000px;}
.y12f{bottom:450.615000px;}
.y2d{bottom:451.155000px;}
.ybc{bottom:453.315000px;}
.y11d{bottom:454.035000px;}
.y80{bottom:456.375000px;}
.y157{bottom:466.095000px;}
.yf5{bottom:468.615000px;}
.y2c{bottom:468.795000px;}
.ybb{bottom:470.955000px;}
.y11c{bottom:471.675000px;}
.y7f{bottom:474.015000px;}
.y1b2{bottom:479.955000px;}
.y17f{bottom:481.395000px;}
.y156{bottom:483.555000px;}
.y2b{bottom:486.435000px;}
.yf4{bottom:486.975000px;}
.y118{bottom:487.335000px;}
.yba{bottom:488.415000px;}
.y7e{bottom:491.655000px;}
.y17d{bottom:499.035000px;}
.y155{bottom:501.195000px;}
.y2a{bottom:504.075000px;}
.y11b{bottom:504.615000px;}
.yf3{bottom:505.335000px;}
.yb9{bottom:506.055000px;}
.y7d{bottom:509.115000px;}
.y1b1{bottom:517.575000px;}
.y154{bottom:518.835000px;}
.y29{bottom:521.535000px;}
.y119{bottom:522.075000px;}
.yb8{bottom:523.695000px;}
.y7c{bottom:526.755000px;}
.y1b0{bottom:535.215000px;}
.y153{bottom:536.295000px;}
.y28{bottom:539.175000px;}
.y17c{bottom:539.535000px;}
.yb7{bottom:541.155000px;}
.yf2{bottom:542.055000px;}
.y7b{bottom:544.395000px;}
.y117{bottom:547.635000px;}
.y1af{bottom:552.855000px;}
.y152{bottom:553.935000px;}
.y27{bottom:556.815000px;}
.y17b{bottom:556.995000px;}
.yb6{bottom:558.795000px;}
.yf1{bottom:560.415000px;}
.y7a{bottom:561.855000px;}
.y1ae{bottom:570.495000px;}
.y151{bottom:571.575000px;}
.y116{bottom:573.375000px;}
.y26{bottom:574.275000px;}
.y17a{bottom:574.635000px;}
.yb5{bottom:576.435000px;}
.yf0{bottom:578.775000px;}
.y79{bottom:579.495000px;}
.y1ad{bottom:587.955000px;}
.y150{bottom:589.215000px;}
.y25{bottom:591.915000px;}
.y179{bottom:592.275000px;}
.yb4{bottom:594.075000px;}
.yef{bottom:596.955000px;}
.y78{bottom:597.135000px;}
.y112{bottom:598.935000px;}
.y1ac{bottom:605.625000px;}
.y14f{bottom:606.705000px;}
.y24{bottom:609.585000px;}
.y178{bottom:609.945000px;}
.yb3{bottom:611.565000px;}
.y77{bottom:614.805000px;}
.yee{bottom:615.345000px;}
.y115{bottom:616.245000px;}
.y41{bottom:617.505000px;}
.y1ab{bottom:623.265000px;}
.y14e{bottom:624.345000px;}
.y23{bottom:627.045000px;}
.y177{bottom:627.405000px;}
.yb2{bottom:629.205000px;}
.y76{bottom:632.265000px;}
.y114{bottom:633.705000px;}
.y1aa{bottom:640.725000px;}
.y14d{bottom:641.985000px;}
.y22{bottom:644.685000px;}
.y176{bottom:645.045000px;}
.yb1{bottom:646.845000px;}
.y75{bottom:649.905000px;}
.yed{bottom:654.765000px;}
.y1a9{bottom:658.365000px;}
.y10e{bottom:659.265000px;}
.y14c{bottom:659.445000px;}
.y21{bottom:662.325000px;}
.y175{bottom:662.685000px;}
.yb0{bottom:664.305000px;}
.y74{bottom:667.545000px;}
.yec{bottom:672.405000px;}
.y1a8{bottom:676.005000px;}
.y110{bottom:676.545000px;}
.y14b{bottom:677.085000px;}
.y20{bottom:679.785000px;}
.y174{bottom:680.145000px;}
.yaf{bottom:681.945000px;}
.y73{bottom:685.005000px;}
.yeb{bottom:689.865000px;}
.y1a7{bottom:693.465000px;}
.y14a{bottom:694.725000px;}
.y1f{bottom:697.425000px;}
.y173{bottom:697.785000px;}
.yae{bottom:699.585000px;}
.y10c{bottom:702.285000px;}
.y72{bottom:702.645000px;}
.y12e{bottom:704.985000px;}
.yea{bottom:707.505000px;}
.y1a6{bottom:711.105000px;}
.y149{bottom:712.185000px;}
.y1e{bottom:715.065000px;}
.y172{bottom:715.425000px;}
.yad{bottom:717.045000px;}
.y71{bottom:720.285000px;}
.y12d{bottom:722.625000px;}
.ye9{bottom:725.145000px;}
.y1a5{bottom:725.325000px;}
.y147{bottom:726.405000px;}
.y109{bottom:727.845000px;}
.y1d{bottom:732.705000px;}
.y171{bottom:732.885000px;}
.yac{bottom:734.685000px;}
.y70{bottom:737.745000px;}
.y12c{bottom:740.265000px;}
.ye8{bottom:742.605000px;}
.y1a4{bottom:742.785000px;}
.y1c{bottom:750.165000px;}
.y170{bottom:750.525000px;}
.yab{bottom:752.325000px;}
.y6f{bottom:755.385000px;}
.ye7{bottom:757.545000px;}
.y12b{bottom:757.725000px;}
.y1a3{bottom:762.045000px;}
.y141{bottom:766.545000px;}
.y1b{bottom:767.805000px;}
.y16f{bottom:768.165000px;}
.yaa{bottom:769.965000px;}
.y6e{bottom:773.025000px;}
.y12a{bottom:775.365000px;}
.ye6{bottom:775.905000px;}
.y107{bottom:777.525000px;}
.y1a2{bottom:781.125000px;}
.y1a{bottom:785.445000px;}
.y146{bottom:785.625000px;}
.y16e{bottom:785.805000px;}
.ya9{bottom:787.425000px;}
.y6d{bottom:790.665000px;}
.y129{bottom:793.005000px;}
.ye5{bottom:794.265000px;}
.y19{bottom:802.905000px;}
.y16d{bottom:803.265000px;}
.ya8{bottom:805.065000px;}
.y6c{bottom:808.125000px;}
.y128{bottom:810.465000px;}
.ye4{bottom:812.625000px;}
.y1a1{bottom:816.225000px;}
.y18{bottom:820.545000px;}
.y16c{bottom:820.905000px;}
.y143{bottom:822.345000px;}
.ya7{bottom:822.705000px;}
.y6b{bottom:825.765000px;}
.y127{bottom:828.105000px;}
.ye3{bottom:830.985000px;}
.y1a0{bottom:837.285000px;}
.y17{bottom:838.185000px;}
.y16b{bottom:838.545000px;}
.ya6{bottom:840.165000px;}
.y6a{bottom:843.405000px;}
.y126{bottom:845.745000px;}
.ye2{bottom:849.165000px;}
.y19f{bottom:854.745000px;}
.y16{bottom:855.645000px;}
.y16a{bottom:856.005000px;}
.ya5{bottom:857.805000px;}
.y69{bottom:860.865000px;}
.y13e{bottom:862.665000px;}
.y125{bottom:863.205000px;}
.ye0{bottom:867.525000px;}
.y168{bottom:870.225000px;}
.y19e{bottom:872.430000px;}
.y15{bottom:873.330000px;}
.ya4{bottom:875.490000px;}
.y124{bottom:877.470000px;}
.y68{bottom:878.550000px;}
.y13f{bottom:880.170000px;}
.ydf{bottom:885.930000px;}
.y19d{bottom:890.070000px;}
.y14{bottom:890.970000px;}
.ya3{bottom:892.950000px;}
.y67{bottom:896.190000px;}
.yde{bottom:904.290000px;}
.y19c{bottom:907.530000px;}
.y13{bottom:908.610000px;}
.y164{bottom:910.410000px;}
.ya2{bottom:910.590000px;}
.y66{bottom:913.650000px;}
.ydd{bottom:922.650000px;}
.y19b{bottom:925.170000px;}
.y12{bottom:926.070000px;}
.ya1{bottom:928.230000px;}
.y167{bottom:929.490000px;}
.y65{bottom:931.290000px;}
.ydc{bottom:941.010000px;}
.y19a{bottom:942.810000px;}
.y11{bottom:943.710000px;}
.ya0{bottom:945.690000px;}
.y64{bottom:948.930000px;}
.y13c{bottom:956.490000px;}
.y199{bottom:957.030000px;}
.ydb{bottom:959.370000px;}
.y10{bottom:960.990000px;}
.y9f{bottom:963.330000px;}
.y166{bottom:966.210000px;}
.y63{bottom:966.570000px;}
.y198{bottom:974.490000px;}
.yf{bottom:976.470000px;}
.yd9{bottom:977.730000px;}
.y9e{bottom:980.970000px;}
.y62{bottom:984.030000px;}
.ye{bottom:990.870000px;}
.y197{bottom:993.570000px;}
.y9d{bottom:998.610000px;}
.y61{bottom:1001.670000px;}
.y162{bottom:1006.350000px;}
.yd{bottom:1007.250000px;}
.y196{bottom:1012.650000px;}
.y9c{bottom:1016.070000px;}
.yd8{bottom:1016.970000px;}
.y60{bottom:1019.310000px;}
.y163{bottom:1023.990000px;}
.yc{bottom:1026.690000px;}
.y9b{bottom:1033.710000px;}
.yd7{bottom:1034.610000px;}
.y5f{bottom:1036.770000px;}
.yb{bottom:1046.670000px;}
.y195{bottom:1047.930000px;}
.y9a{bottom:1051.350000px;}
.yd6{bottom:1052.070000px;}
.y5e{bottom:1054.410000px;}
.y99{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.yd5{bottom:1069.710000px;}
.y5d{bottom:1072.050000px;}
.y98{bottom:1086.450000px;}
.yd4{bottom:1087.350000px;}
.y5c{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y161{bottom:1100.130000px;}
.y97{bottom:1104.090000px;}
.yd3{bottom:1104.990000px;}
.y5b{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.yd2{bottom:1119.750000px;}
.y96{bottom:1121.550000px;}
.y5a{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.yd1{bottom:1138.140000px;}
.y95{bottom:1139.220000px;}
.y59{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y94{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y57{bottom:1175.220000px;}
.y93{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y56{bottom:1197.540000px;}
.h1a{height:15.840000px;}
.h1c{height:15.876000px;}
.h12{height:17.460000px;}
.h27{height:17.496000px;}
.h11{height:17.640000px;}
.h14{height:17.676000px;}
.hc{height:20.117109px;}
.h2f{height:21.780000px;}
.h16{height:24.120000px;}
.h19{height:24.300000px;}
.hd{height:30.480469px;}
.h1f{height:32.400000px;}
.h21{height:32.580000px;}
.h1e{height:33.120000px;}
.h23{height:33.480000px;}
.h4{height:33.683203px;}
.h30{height:34.200000px;}
.h13{height:35.100000px;}
.h10{height:35.280000px;}
.h2{height:35.357344px;}
.h2c{height:37.080000px;}
.h3{height:38.100586px;}
.h2e{height:38.520000px;}
.h24{height:38.700000px;}
.h29{height:38.736000px;}
.h9{height:40.843828px;}
.h18{height:41.580000px;}
.h8{height:45.720703px;}
.h17{height:49.680000px;}
.h20{height:50.040000px;}
.he{height:50.273438px;}
.h5{height:50.597578px;}
.h15{height:52.740000px;}
.h22{height:54.180000px;}
.h7{height:56.084062px;}
.hf{height:58.819922px;}
.h1d{height:58.860000px;}
.h1b{height:58.896000px;}
.ha{height:60.960938px;}
.h6{height:65.837812px;}
.h2b{height:76.140000px;}
.h26{height:76.320000px;}
.h2d{height:76.680000px;}
.h2a{height:93.780000px;}
.h25{height:93.816000px;}
.h28{height:94.500000px;}
.hb{height:336.090000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w1f{width:42.840000px;}
.w27{width:56.520000px;}
.w1b{width:58.356000px;}
.w1c{width:59.040000px;}
.w15{width:64.116000px;}
.w2a{width:64.260000px;}
.w1e{width:73.116000px;}
.w30{width:73.800000px;}
.w1d{width:73.980000px;}
.w24{width:77.256000px;}
.w26{width:78.120000px;}
.w1a{width:84.600000px;}
.w2c{width:87.840000px;}
.w14{width:88.236000px;}
.w2b{width:88.596000px;}
.w13{width:89.460000px;}
.w28{width:91.656000px;}
.wf{width:97.020000px;}
.w25{width:99.360000px;}
.w32{width:100.980000px;}
.w31{width:101.916000px;}
.wb{width:108.936000px;}
.w23{width:112.680000px;}
.w4{width:122.400000px;}
.w5{width:122.436000px;}
.w2d{width:127.296000px;}
.w2e{width:128.016000px;}
.w20{width:144.036000px;}
.w33{width:146.556000px;}
.w34{width:147.276000px;}
.w22{width:148.176000px;}
.w19{width:148.536000px;}
.w7{width:153.180000px;}
.w6{width:153.210000px;}
.w8{width:153.390000px;}
.we{width:163.290000px;}
.wc{width:171.030000px;}
.w12{width:179.130000px;}
.w18{width:186.870000px;}
.w16{width:214.590000px;}
.w3{width:221.970000px;}
.wd{width:260.310000px;}
.w11{width:278.715000px;}
.wa{width:431.355000px;}
.w10{width:457.845000px;}
.w29{width:500.685000px;}
.w9{width:540.285000px;}
.w17{width:541.725000px;}
.w2f{width:574.845000px;}
.w21{width:598.965000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x62{left:4.680000px;}
.x10{left:7.920000px;}
.x25{left:10.260000px;}
.x3a{left:12.600000px;}
.x29{left:15.834000px;}
.x58{left:18.360000px;}
.x26{left:19.434000px;}
.x22{left:22.170000px;}
.x19{left:24.165000px;}
.x20{left:25.560000px;}
.x3d{left:27.900000px;}
.x59{left:28.980000px;}
.x17{left:30.600000px;}
.x3c{left:33.120000px;}
.x55{left:34.560000px;}
.x63{left:35.820000px;}
.x24{left:39.420000px;}
.x3f{left:40.860000px;}
.x1a{left:43.065000px;}
.x12{left:44.505000px;}
.x64{left:45.900000px;}
.x14{left:47.700000px;}
.x16{left:50.040000px;}
.x50{left:53.994000px;}
.x21{left:58.320000px;}
.x6c{left:59.760000px;}
.x40{left:61.020000px;}
.x28{left:62.490000px;}
.x27{left:63.894000px;}
.x6b{left:65.370000px;}
.x2b{left:66.594000px;}
.x6a{left:73.125000px;}
.x2a{left:76.500000px;}
.x6e{left:82.485000px;}
.x6d{left:86.070000px;}
.x41{left:97.065000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x66{left:118.125000px;}
.x38{left:119.205000px;}
.x65{left:122.805000px;}
.x4{left:124.415987px;}
.x4b{left:133.415987px;}
.xa{left:134.994000px;}
.x3{left:136.655987px;}
.xc{left:137.915987px;}
.xf{left:138.996000px;}
.x4e{left:147.096000px;}
.x6f{left:148.895987px;}
.x7{left:152.309987px;}
.x68{left:159.150000px;}
.xb{left:160.409987px;}
.x5a{left:167.799000px;}
.x2d{left:176.430000px;}
.x37{left:185.805000px;}
.x5d{left:191.385000px;}
.x5c{left:196.230000px;}
.x57{left:203.610000px;}
.x36{left:217.650000px;}
.xe{left:223.589987px;}
.x43{left:227.925000px;}
.x32{left:231.869987px;}
.x69{left:232.950000px;}
.x6{left:248.249987px;}
.x5b{left:259.049987px;}
.x5e{left:260.490000px;}
.x11{left:262.110000px;}
.x1b{left:267.149987px;}
.x4f{left:272.019000px;}
.x3e{left:281.775000px;}
.x67{left:288.974987px;}
.x1f{left:292.935000px;}
.x51{left:295.275000px;}
.x1c{left:305.174987px;}
.x42{left:313.634987px;}
.x2c{left:321.734987px;}
.x34{left:329.294987px;}
.x1d{left:330.374987px;}
.x4d{left:332.714987px;}
.x33{left:337.214987px;}
.x4a{left:338.834987px;}
.x9{left:342.614987px;}
.x2f{left:347.475000px;}
.x5f{left:350.715000px;}
.x5{left:355.754987px;}
.x1e{left:360.794987px;}
.x44{left:362.595000px;}
.x49{left:373.934987px;}
.x4c{left:376.454987px;}
.x13{left:385.455000px;}
.x52{left:409.575000px;}
.x48{left:438.015000px;}
.x60{left:439.995000px;}
.x8{left:446.654987px;}
.x53{left:488.265000px;}
.x39{left:496.365000px;}
.x15{left:508.605000px;}
.x30{left:510.765000px;}
.x45{left:512.565000px;}
.xd{left:546.944987px;}
.x61{left:568.905000px;}
.x3b{left:587.265000px;}
.x54{left:589.065000px;}
.x46{left:598.605000px;}
.x23{left:600.945000px;}
.x2e{left:607.785000px;}
.x18{left:631.725000px;}
.x47{left:658.410000px;}
.x56{left:667.950000px;}
.x35{left:704.309987px;}
.x31{left:705.389987px;}
@media print{
.v4{vertical-align:-10.880000pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.560000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:13.440000pt;}
.ls29{letter-spacing:-1.445333pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls31{letter-spacing:-0.256533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls8{letter-spacing:-0.213333pt;}
.lsa{letter-spacing:-0.084267pt;}
.ls1d{letter-spacing:-0.041600pt;}
.ls4{letter-spacing:-0.032000pt;}
.lsf{letter-spacing:-0.009600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.011520pt;}
.ls2b{letter-spacing:0.020480pt;}
.ls21{letter-spacing:0.037120pt;}
.lsb{letter-spacing:0.053760pt;}
.ls14{letter-spacing:0.112533pt;}
.ls33{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.160427pt;}
.ls11{letter-spacing:0.188160pt;}
.lsc{letter-spacing:0.188267pt;}
.ls32{letter-spacing:0.253867pt;}
.ls20{letter-spacing:0.274560pt;}
.ls16{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.291733pt;}
.ls2a{letter-spacing:0.292267pt;}
.ls1f{letter-spacing:0.295680pt;}
.ls12{letter-spacing:0.312320pt;}
.ls30{letter-spacing:0.317333pt;}
.ls1{letter-spacing:0.320000pt;}
.ls23{letter-spacing:0.325333pt;}
.ls25{letter-spacing:0.414720pt;}
.ls1a{letter-spacing:0.473600pt;}
.ls17{letter-spacing:0.549333pt;}
.ls2c{letter-spacing:0.633600pt;}
.lse{letter-spacing:0.650667pt;}
.ls13{letter-spacing:0.693760pt;}
.ls24{letter-spacing:0.695040pt;}
.ls19{letter-spacing:0.710400pt;}
.ls22{letter-spacing:0.724480pt;}
.ls27{letter-spacing:0.767147pt;}
.ls15{letter-spacing:0.826667pt;}
.ls26{letter-spacing:0.935680pt;}
.ls34{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.753600pt;}
.ls1e{letter-spacing:3.033600pt;}
.ls10{letter-spacing:8.793600pt;}
.lsd{letter-spacing:16.480000pt;}
.ls2e{letter-spacing:40.891307pt;}
.ls1c{letter-spacing:40.912640pt;}
.ls2d{letter-spacing:44.091307pt;}
.ls2f{letter-spacing:46.651307pt;}
.ls18{letter-spacing:180.292267pt;}
.ws14{word-spacing:-12.646400pt;}
.wsa{word-spacing:-12.337067pt;}
.ws11{word-spacing:-12.003733pt;}
.ws13{word-spacing:-11.940267pt;}
.ws9{word-spacing:-11.874667pt;}
.ws8{word-spacing:-11.697920pt;}
.ws7{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.676800pt;}
.ws10{word-spacing:-11.644800pt;}
.ws12{word-spacing:-11.429867pt;}
.wsd{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.560000pt;}
.ws5{word-spacing:-9.433600pt;}
.ws4{word-spacing:-9.193067pt;}
.ws6{word-spacing:-8.082133pt;}
.wsb{word-spacing:-7.603200pt;}
.wse{word-spacing:-7.040000pt;}
.ws1{word-spacing:-7.008000pt;}
.ws2{word-spacing:-6.784000pt;}
.ws3{word-spacing:0.000000pt;}
._32{margin-left:-10.479147pt;}
._2d{margin-left:-5.304533pt;}
._26{margin-left:-3.579520pt;}
._1c{margin-left:-2.438187pt;}
._2{margin-left:-0.976000pt;}
._1{width:1.322667pt;}
._f{width:2.443520pt;}
._14{width:3.362560pt;}
._15{width:4.515200pt;}
._16{width:5.630720pt;}
._d{width:7.017173pt;}
._e{width:8.026453pt;}
._11{width:8.984960pt;}
._4{width:10.032000pt;}
._1d{width:11.706667pt;}
._1b{width:13.179093pt;}
._1a{width:14.342400pt;}
._19{width:15.506347pt;}
._10{width:16.445867pt;}
._8{width:17.694293pt;}
._7{width:18.910720pt;}
._18{width:20.162987pt;}
._17{width:21.460480pt;}
._2a{width:22.830933pt;}
._9{width:24.121813pt;}
._a{width:25.464533pt;}
._c{width:26.506880pt;}
._21{width:27.834027pt;}
._b{width:30.172160pt;}
._20{width:31.075200pt;}
._24{width:32.795093pt;}
._23{width:33.923627pt;}
._27{width:35.010347pt;}
._29{width:40.201813pt;}
._28{width:41.106773pt;}
._1e{width:42.183360pt;}
._6{width:44.355200pt;}
._12{width:50.097493pt;}
._13{width:51.149227pt;}
._0{width:66.666667pt;}
._31{width:68.791893pt;}
._30{width:91.606827pt;}
._2e{width:111.589120pt;}
._2b{width:122.031147pt;}
._2c{width:126.041387pt;}
._33{width:127.135573pt;}
._3{width:160.960000pt;}
._2f{width:173.620480pt;}
._5{width:178.026667pt;}
._22{width:180.292267pt;}
._25{width:756.452267pt;}
._1f{width:950.833067pt;}
.fs7{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y10a{bottom:2.720000pt;}
.yc8{bottom:3.040000pt;}
.ye1{bottom:3.080000pt;}
.y108{bottom:6.400000pt;}
.y186{bottom:6.720000pt;}
.y134{bottom:9.600000pt;}
.y10d{bottom:10.080000pt;}
.y111{bottom:10.240000pt;}
.y1b3{bottom:10.560000pt;}
.y17e{bottom:11.680000pt;}
.y13d{bottom:12.320000pt;}
.y145{bottom:12.480000pt;}
.y10b{bottom:16.800000pt;}
.y13b{bottom:17.120000pt;}
.y1b8{bottom:17.760000pt;}
.y11a{bottom:18.080000pt;}
.yda{bottom:18.560000pt;}
.y105{bottom:18.714667pt;}
.yc7{bottom:18.720000pt;}
.y187{bottom:20.320000pt;}
.y183{bottom:21.600000pt;}
.y148{bottom:21.760000pt;}
.y169{bottom:21.800000pt;}
.y144{bottom:21.920000pt;}
.y10f{bottom:25.600000pt;}
.y55{bottom:29.120000pt;}
.y102{bottom:34.240000pt;}
.y140{bottom:34.400000pt;}
.y138{bottom:35.680000pt;}
.y54{bottom:40.960000pt;}
.y113{bottom:40.986667pt;}
.y7{bottom:50.080000pt;}
.y58{bottom:50.240000pt;}
.y53{bottom:50.400000pt;}
.y181{bottom:55.520000pt;}
.y52{bottom:59.680000pt;}
.y6{bottom:62.272000pt;}
.y165{bottom:71.360000pt;}
.y142{bottom:71.520000pt;}
.y51{bottom:75.360000pt;}
.yd0{bottom:96.832000pt;}
.y1c6{bottom:99.712000pt;}
.y106{bottom:101.632000pt;}
.y40{bottom:103.552000pt;}
.y194{bottom:104.672000pt;}
.y13a{bottom:105.952000pt;}
.ycf{bottom:113.152000pt;}
.y104{bottom:114.912000pt;}
.y1c5{bottom:115.232000pt;}
.y3f{bottom:119.232000pt;}
.y193{bottom:120.192000pt;}
.y50{bottom:122.400000pt;}
.y92{bottom:124.352000pt;}
.yce{bottom:129.472000pt;}
.y1c4{bottom:130.912000pt;}
.y3e{bottom:134.906667pt;}
.y4f{bottom:135.040000pt;}
.y192{bottom:135.866667pt;}
.y137{bottom:136.986667pt;}
.y91{bottom:139.866667pt;}
.ycd{bottom:145.786667pt;}
.y1c3{bottom:146.586667pt;}
.y103{bottom:146.906667pt;}
.y4e{bottom:147.520000pt;}
.y3d{bottom:150.586667pt;}
.y191{bottom:151.546667pt;}
.y139{bottom:153.946667pt;}
.y90{bottom:155.546667pt;}
.y4d{bottom:160.000000pt;}
.ycc{bottom:162.106667pt;}
.y3c{bottom:166.106667pt;}
.y190{bottom:167.066667pt;}
.y8f{bottom:171.226667pt;}
.y4c{bottom:172.480000pt;}
.y1c2{bottom:177.786667pt;}
.ycb{bottom:178.426667pt;}
.y101{bottom:178.746667pt;}
.y3b{bottom:181.786667pt;}
.y18f{bottom:182.746667pt;}
.y4b{bottom:184.960000pt;}
.y135{bottom:186.586667pt;}
.y8e{bottom:186.906667pt;}
.y1c1{bottom:193.466667pt;}
.yca{bottom:194.586667pt;}
.y4a{bottom:197.440000pt;}
.y3a{bottom:197.466667pt;}
.y18e{bottom:198.426667pt;}
.y136{bottom:202.106667pt;}
.y8d{bottom:202.426667pt;}
.y49{bottom:208.640000pt;}
.y1c0{bottom:208.986667pt;}
.yc9{bottom:210.906667pt;}
.y39{bottom:212.986667pt;}
.y18d{bottom:214.106667pt;}
.y48{bottom:216.320000pt;}
.y8c{bottom:218.106667pt;}
.y1bf{bottom:224.666667pt;}
.y100{bottom:226.266667pt;}
.yc6{bottom:227.226667pt;}
.y38{bottom:228.666667pt;}
.y47{bottom:228.840000pt;}
.y18c{bottom:229.626667pt;}
.y133{bottom:231.066667pt;}
.y8b{bottom:233.786667pt;}
.y1be{bottom:240.346667pt;}
.y46{bottom:241.320000pt;}
.y37{bottom:244.346667pt;}
.y18b{bottom:245.306667pt;}
.y1c7{bottom:246.586667pt;}
.y8a{bottom:249.306667pt;}
.y45{bottom:253.800000pt;}
.y1bd{bottom:255.866667pt;}
.y36{bottom:259.866667pt;}
.y18a{bottom:260.986667pt;}
.yff{bottom:261.306667pt;}
.yc5{bottom:262.266667pt;}
.y132{bottom:262.906667pt;}
.y89{bottom:264.986667pt;}
.y44{bottom:266.280000pt;}
.y1bc{bottom:271.546667pt;}
.y160{bottom:273.466667pt;}
.y35{bottom:275.546667pt;}
.y189{bottom:276.506667pt;}
.yfe{bottom:276.986667pt;}
.y43{bottom:277.480000pt;}
.yc4{bottom:277.786667pt;}
.y131{bottom:278.586667pt;}
.y88{bottom:280.666667pt;}
.y1bb{bottom:287.226667pt;}
.y42{bottom:287.400000pt;}
.y15f{bottom:289.146667pt;}
.y34{bottom:291.226667pt;}
.y188{bottom:292.186667pt;}
.yfd{bottom:292.506667pt;}
.yc3{bottom:293.466667pt;}
.y130{bottom:294.266667pt;}
.y87{bottom:296.186667pt;}
.y1ba{bottom:302.946667pt;}
.y15e{bottom:304.866667pt;}
.y33{bottom:306.946667pt;}
.yfc{bottom:308.226667pt;}
.yc2{bottom:309.186667pt;}
.y123{bottom:309.826667pt;}
.y86{bottom:311.906667pt;}
.y1b9{bottom:318.466667pt;}
.y15d{bottom:320.386667pt;}
.y32{bottom:322.466667pt;}
.yfb{bottom:323.906667pt;}
.yc1{bottom:324.706667pt;}
.y122{bottom:325.506667pt;}
.y85{bottom:327.586667pt;}
.y1b7{bottom:331.106667pt;}
.y15c{bottom:336.066667pt;}
.y185{bottom:337.826667pt;}
.y31{bottom:338.146667pt;}
.yfa{bottom:339.426667pt;}
.yc0{bottom:340.386667pt;}
.y121{bottom:341.186667pt;}
.y84{bottom:343.266667pt;}
.y15b{bottom:351.746667pt;}
.y30{bottom:353.826667pt;}
.yf9{bottom:355.106667pt;}
.ybf{bottom:356.066667pt;}
.y120{bottom:356.706667pt;}
.y180{bottom:358.466667pt;}
.y83{bottom:358.786667pt;}
.y1b6{bottom:361.506667pt;}
.y15a{bottom:367.426667pt;}
.y2f{bottom:369.346667pt;}
.yf8{bottom:370.786667pt;}
.ybe{bottom:371.746667pt;}
.y11f{bottom:372.386667pt;}
.y82{bottom:374.466667pt;}
.y184{bottom:375.426667pt;}
.y1b5{bottom:378.466667pt;}
.y159{bottom:382.946667pt;}
.yf7{bottom:384.066667pt;}
.y2e{bottom:386.626667pt;}
.ybd{bottom:387.266667pt;}
.y11e{bottom:388.066667pt;}
.y81{bottom:390.146667pt;}
.y182{bottom:392.386667pt;}
.y1b4{bottom:395.426667pt;}
.y158{bottom:398.626667pt;}
.yf6{bottom:400.226667pt;}
.y12f{bottom:400.546667pt;}
.y2d{bottom:401.026667pt;}
.ybc{bottom:402.946667pt;}
.y11d{bottom:403.586667pt;}
.y80{bottom:405.666667pt;}
.y157{bottom:414.306667pt;}
.yf5{bottom:416.546667pt;}
.y2c{bottom:416.706667pt;}
.ybb{bottom:418.626667pt;}
.y11c{bottom:419.266667pt;}
.y7f{bottom:421.346667pt;}
.y1b2{bottom:426.626667pt;}
.y17f{bottom:427.906667pt;}
.y156{bottom:429.826667pt;}
.y2b{bottom:432.386667pt;}
.yf4{bottom:432.866667pt;}
.y118{bottom:433.186667pt;}
.yba{bottom:434.146667pt;}
.y7e{bottom:437.026667pt;}
.y17d{bottom:443.586667pt;}
.y155{bottom:445.506667pt;}
.y2a{bottom:448.066667pt;}
.y11b{bottom:448.546667pt;}
.yf3{bottom:449.186667pt;}
.yb9{bottom:449.826667pt;}
.y7d{bottom:452.546667pt;}
.y1b1{bottom:460.066667pt;}
.y154{bottom:461.186667pt;}
.y29{bottom:463.586667pt;}
.y119{bottom:464.066667pt;}
.yb8{bottom:465.506667pt;}
.y7c{bottom:468.226667pt;}
.y1b0{bottom:475.746667pt;}
.y153{bottom:476.706667pt;}
.y28{bottom:479.266667pt;}
.y17c{bottom:479.586667pt;}
.yb7{bottom:481.026667pt;}
.yf2{bottom:481.826667pt;}
.y7b{bottom:483.906667pt;}
.y117{bottom:486.786667pt;}
.y1af{bottom:491.426667pt;}
.y152{bottom:492.386667pt;}
.y27{bottom:494.946667pt;}
.y17b{bottom:495.106667pt;}
.yb6{bottom:496.706667pt;}
.yf1{bottom:498.146667pt;}
.y7a{bottom:499.426667pt;}
.y1ae{bottom:507.106667pt;}
.y151{bottom:508.066667pt;}
.y116{bottom:509.666667pt;}
.y26{bottom:510.466667pt;}
.y17a{bottom:510.786667pt;}
.yb5{bottom:512.386667pt;}
.yf0{bottom:514.466667pt;}
.y79{bottom:515.106667pt;}
.y1ad{bottom:522.626667pt;}
.y150{bottom:523.746667pt;}
.y25{bottom:526.146667pt;}
.y179{bottom:526.466667pt;}
.yb4{bottom:528.066667pt;}
.yef{bottom:530.626667pt;}
.y78{bottom:530.786667pt;}
.y112{bottom:532.386667pt;}
.y1ac{bottom:538.333333pt;}
.y14f{bottom:539.293333pt;}
.y24{bottom:541.853333pt;}
.y178{bottom:542.173333pt;}
.yb3{bottom:543.613333pt;}
.y77{bottom:546.493333pt;}
.yee{bottom:546.973333pt;}
.y115{bottom:547.773333pt;}
.y41{bottom:548.893333pt;}
.y1ab{bottom:554.013333pt;}
.y14e{bottom:554.973333pt;}
.y23{bottom:557.373333pt;}
.y177{bottom:557.693333pt;}
.yb2{bottom:559.293333pt;}
.y76{bottom:562.013333pt;}
.y114{bottom:563.293333pt;}
.y1aa{bottom:569.533333pt;}
.y14d{bottom:570.653333pt;}
.y22{bottom:573.053333pt;}
.y176{bottom:573.373333pt;}
.yb1{bottom:574.973333pt;}
.y75{bottom:577.693333pt;}
.yed{bottom:582.013333pt;}
.y1a9{bottom:585.213333pt;}
.y10e{bottom:586.013333pt;}
.y14c{bottom:586.173333pt;}
.y21{bottom:588.733333pt;}
.y175{bottom:589.053333pt;}
.yb0{bottom:590.493333pt;}
.y74{bottom:593.373333pt;}
.yec{bottom:597.693333pt;}
.y1a8{bottom:600.893333pt;}
.y110{bottom:601.373333pt;}
.y14b{bottom:601.853333pt;}
.y20{bottom:604.253333pt;}
.y174{bottom:604.573333pt;}
.yaf{bottom:606.173333pt;}
.y73{bottom:608.893333pt;}
.yeb{bottom:613.213333pt;}
.y1a7{bottom:616.413333pt;}
.y14a{bottom:617.533333pt;}
.y1f{bottom:619.933333pt;}
.y173{bottom:620.253333pt;}
.yae{bottom:621.853333pt;}
.y10c{bottom:624.253333pt;}
.y72{bottom:624.573333pt;}
.y12e{bottom:626.653333pt;}
.yea{bottom:628.893333pt;}
.y1a6{bottom:632.093333pt;}
.y149{bottom:633.053333pt;}
.y1e{bottom:635.613333pt;}
.y172{bottom:635.933333pt;}
.yad{bottom:637.373333pt;}
.y71{bottom:640.253333pt;}
.y12d{bottom:642.333333pt;}
.ye9{bottom:644.573333pt;}
.y1a5{bottom:644.733333pt;}
.y147{bottom:645.693333pt;}
.y109{bottom:646.973333pt;}
.y1d{bottom:651.293333pt;}
.y171{bottom:651.453333pt;}
.yac{bottom:653.053333pt;}
.y70{bottom:655.773333pt;}
.y12c{bottom:658.013333pt;}
.ye8{bottom:660.093333pt;}
.y1a4{bottom:660.253333pt;}
.y1c{bottom:666.813333pt;}
.y170{bottom:667.133333pt;}
.yab{bottom:668.733333pt;}
.y6f{bottom:671.453333pt;}
.ye7{bottom:673.373333pt;}
.y12b{bottom:673.533333pt;}
.y1a3{bottom:677.373333pt;}
.y141{bottom:681.373333pt;}
.y1b{bottom:682.493333pt;}
.y16f{bottom:682.813333pt;}
.yaa{bottom:684.413333pt;}
.y6e{bottom:687.133333pt;}
.y12a{bottom:689.213333pt;}
.ye6{bottom:689.693333pt;}
.y107{bottom:691.133333pt;}
.y1a2{bottom:694.333333pt;}
.y1a{bottom:698.173333pt;}
.y146{bottom:698.333333pt;}
.y16e{bottom:698.493333pt;}
.ya9{bottom:699.933333pt;}
.y6d{bottom:702.813333pt;}
.y129{bottom:704.893333pt;}
.ye5{bottom:706.013333pt;}
.y19{bottom:713.693333pt;}
.y16d{bottom:714.013333pt;}
.ya8{bottom:715.613333pt;}
.y6c{bottom:718.333333pt;}
.y128{bottom:720.413333pt;}
.ye4{bottom:722.333333pt;}
.y1a1{bottom:725.533333pt;}
.y18{bottom:729.373333pt;}
.y16c{bottom:729.693333pt;}
.y143{bottom:730.973333pt;}
.ya7{bottom:731.293333pt;}
.y6b{bottom:734.013333pt;}
.y127{bottom:736.093333pt;}
.ye3{bottom:738.653333pt;}
.y1a0{bottom:744.253333pt;}
.y17{bottom:745.053333pt;}
.y16b{bottom:745.373333pt;}
.ya6{bottom:746.813333pt;}
.y6a{bottom:749.693333pt;}
.y126{bottom:751.773333pt;}
.ye2{bottom:754.813333pt;}
.y19f{bottom:759.773333pt;}
.y16{bottom:760.573333pt;}
.y16a{bottom:760.893333pt;}
.ya5{bottom:762.493333pt;}
.y69{bottom:765.213333pt;}
.y13e{bottom:766.813333pt;}
.y125{bottom:767.293333pt;}
.ye0{bottom:771.133333pt;}
.y168{bottom:773.533333pt;}
.y19e{bottom:775.493333pt;}
.y15{bottom:776.293333pt;}
.ya4{bottom:778.213333pt;}
.y124{bottom:779.973333pt;}
.y68{bottom:780.933333pt;}
.y13f{bottom:782.373333pt;}
.ydf{bottom:787.493333pt;}
.y19d{bottom:791.173333pt;}
.y14{bottom:791.973333pt;}
.ya3{bottom:793.733333pt;}
.y67{bottom:796.613333pt;}
.yde{bottom:803.813333pt;}
.y19c{bottom:806.693333pt;}
.y13{bottom:807.653333pt;}
.y164{bottom:809.253333pt;}
.ya2{bottom:809.413333pt;}
.y66{bottom:812.133333pt;}
.ydd{bottom:820.133333pt;}
.y19b{bottom:822.373333pt;}
.y12{bottom:823.173333pt;}
.ya1{bottom:825.093333pt;}
.y167{bottom:826.213333pt;}
.y65{bottom:827.813333pt;}
.ydc{bottom:836.453333pt;}
.y19a{bottom:838.053333pt;}
.y11{bottom:838.853333pt;}
.ya0{bottom:840.613333pt;}
.y64{bottom:843.493333pt;}
.y13c{bottom:850.213333pt;}
.y199{bottom:850.693333pt;}
.ydb{bottom:852.773333pt;}
.y10{bottom:854.213333pt;}
.y9f{bottom:856.293333pt;}
.y166{bottom:858.853333pt;}
.y63{bottom:859.173333pt;}
.y198{bottom:866.213333pt;}
.yf{bottom:867.973333pt;}
.yd9{bottom:869.093333pt;}
.y9e{bottom:871.973333pt;}
.y62{bottom:874.693333pt;}
.ye{bottom:880.773333pt;}
.y197{bottom:883.173333pt;}
.y9d{bottom:887.653333pt;}
.y61{bottom:890.373333pt;}
.y162{bottom:894.533333pt;}
.yd{bottom:895.333333pt;}
.y196{bottom:900.133333pt;}
.y9c{bottom:903.173333pt;}
.yd8{bottom:903.973333pt;}
.y60{bottom:906.053333pt;}
.y163{bottom:910.213333pt;}
.yc{bottom:912.613333pt;}
.y9b{bottom:918.853333pt;}
.yd7{bottom:919.653333pt;}
.y5f{bottom:921.573333pt;}
.yb{bottom:930.373333pt;}
.y195{bottom:931.493333pt;}
.y9a{bottom:934.533333pt;}
.yd6{bottom:935.173333pt;}
.y5e{bottom:937.253333pt;}
.y99{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.yd5{bottom:950.853333pt;}
.y5d{bottom:952.933333pt;}
.y98{bottom:965.733333pt;}
.yd4{bottom:966.533333pt;}
.y5c{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y161{bottom:977.893333pt;}
.y97{bottom:981.413333pt;}
.yd3{bottom:982.213333pt;}
.y5b{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.yd2{bottom:995.333333pt;}
.y96{bottom:996.933333pt;}
.y5a{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.yd1{bottom:1011.680000pt;}
.y95{bottom:1012.640000pt;}
.y59{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y94{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y57{bottom:1044.640000pt;}
.y93{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y56{bottom:1064.480000pt;}
.h1a{height:14.080000pt;}
.h1c{height:14.112000pt;}
.h12{height:15.520000pt;}
.h27{height:15.552000pt;}
.h11{height:15.680000pt;}
.h14{height:15.712000pt;}
.hc{height:17.881875pt;}
.h2f{height:19.360000pt;}
.h16{height:21.440000pt;}
.h19{height:21.600000pt;}
.hd{height:27.093750pt;}
.h1f{height:28.800000pt;}
.h21{height:28.960000pt;}
.h1e{height:29.440000pt;}
.h23{height:29.760000pt;}
.h4{height:29.940625pt;}
.h30{height:30.400000pt;}
.h13{height:31.200000pt;}
.h10{height:31.360000pt;}
.h2{height:31.428750pt;}
.h2c{height:32.960000pt;}
.h3{height:33.867188pt;}
.h2e{height:34.240000pt;}
.h24{height:34.400000pt;}
.h29{height:34.432000pt;}
.h9{height:36.305625pt;}
.h18{height:36.960000pt;}
.h8{height:40.640625pt;}
.h17{height:44.160000pt;}
.h20{height:44.480000pt;}
.he{height:44.687500pt;}
.h5{height:44.975625pt;}
.h15{height:46.880000pt;}
.h22{height:48.160000pt;}
.h7{height:49.852500pt;}
.hf{height:52.284375pt;}
.h1d{height:52.320000pt;}
.h1b{height:52.352000pt;}
.ha{height:54.187500pt;}
.h6{height:58.522500pt;}
.h2b{height:67.680000pt;}
.h26{height:67.840000pt;}
.h2d{height:68.160000pt;}
.h2a{height:83.360000pt;}
.h25{height:83.392000pt;}
.h28{height:84.000000pt;}
.hb{height:298.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w1f{width:38.080000pt;}
.w27{width:50.240000pt;}
.w1b{width:51.872000pt;}
.w1c{width:52.480000pt;}
.w15{width:56.992000pt;}
.w2a{width:57.120000pt;}
.w1e{width:64.992000pt;}
.w30{width:65.600000pt;}
.w1d{width:65.760000pt;}
.w24{width:68.672000pt;}
.w26{width:69.440000pt;}
.w1a{width:75.200000pt;}
.w2c{width:78.080000pt;}
.w14{width:78.432000pt;}
.w2b{width:78.752000pt;}
.w13{width:79.520000pt;}
.w28{width:81.472000pt;}
.wf{width:86.240000pt;}
.w25{width:88.320000pt;}
.w32{width:89.760000pt;}
.w31{width:90.592000pt;}
.wb{width:96.832000pt;}
.w23{width:100.160000pt;}
.w4{width:108.800000pt;}
.w5{width:108.832000pt;}
.w2d{width:113.152000pt;}
.w2e{width:113.792000pt;}
.w20{width:128.032000pt;}
.w33{width:130.272000pt;}
.w34{width:130.912000pt;}
.w22{width:131.712000pt;}
.w19{width:132.032000pt;}
.w7{width:136.160000pt;}
.w6{width:136.186667pt;}
.w8{width:136.346667pt;}
.we{width:145.146667pt;}
.wc{width:152.026667pt;}
.w12{width:159.226667pt;}
.w18{width:166.106667pt;}
.w16{width:190.746667pt;}
.w3{width:197.306667pt;}
.wd{width:231.386667pt;}
.w11{width:247.746667pt;}
.wa{width:383.426667pt;}
.w10{width:406.973333pt;}
.w29{width:445.053333pt;}
.w9{width:480.253333pt;}
.w17{width:481.533333pt;}
.w2f{width:510.973333pt;}
.w21{width:532.413333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x62{left:4.160000pt;}
.x10{left:7.040000pt;}
.x25{left:9.120000pt;}
.x3a{left:11.200000pt;}
.x29{left:14.074667pt;}
.x58{left:16.320000pt;}
.x26{left:17.274667pt;}
.x22{left:19.706667pt;}
.x19{left:21.480000pt;}
.x20{left:22.720000pt;}
.x3d{left:24.800000pt;}
.x59{left:25.760000pt;}
.x17{left:27.200000pt;}
.x3c{left:29.440000pt;}
.x55{left:30.720000pt;}
.x63{left:31.840000pt;}
.x24{left:35.040000pt;}
.x3f{left:36.320000pt;}
.x1a{left:38.280000pt;}
.x12{left:39.560000pt;}
.x64{left:40.800000pt;}
.x14{left:42.400000pt;}
.x16{left:44.480000pt;}
.x50{left:47.994667pt;}
.x21{left:51.840000pt;}
.x6c{left:53.120000pt;}
.x40{left:54.240000pt;}
.x28{left:55.546667pt;}
.x27{left:56.794667pt;}
.x6b{left:58.106667pt;}
.x2b{left:59.194667pt;}
.x6a{left:65.000000pt;}
.x2a{left:68.000000pt;}
.x6e{left:73.320000pt;}
.x6d{left:76.506667pt;}
.x41{left:86.280000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x66{left:105.000000pt;}
.x38{left:105.960000pt;}
.x65{left:109.160000pt;}
.x4{left:110.591988pt;}
.x4b{left:118.591988pt;}
.xa{left:119.994667pt;}
.x3{left:121.471988pt;}
.xc{left:122.591988pt;}
.xf{left:123.552000pt;}
.x4e{left:130.752000pt;}
.x6f{left:132.351988pt;}
.x7{left:135.386655pt;}
.x68{left:141.466667pt;}
.xb{left:142.586655pt;}
.x5a{left:149.154667pt;}
.x2d{left:156.826667pt;}
.x37{left:165.160000pt;}
.x5d{left:170.120000pt;}
.x5c{left:174.426667pt;}
.x57{left:180.986667pt;}
.x36{left:193.466667pt;}
.xe{left:198.746655pt;}
.x43{left:202.600000pt;}
.x32{left:206.106655pt;}
.x69{left:207.066667pt;}
.x6{left:220.666655pt;}
.x5b{left:230.266655pt;}
.x5e{left:231.546667pt;}
.x11{left:232.986667pt;}
.x1b{left:237.466655pt;}
.x4f{left:241.794667pt;}
.x3e{left:250.466667pt;}
.x67{left:256.866655pt;}
.x1f{left:260.386667pt;}
.x51{left:262.466667pt;}
.x1c{left:271.266655pt;}
.x42{left:278.786655pt;}
.x2c{left:285.986655pt;}
.x34{left:292.706655pt;}
.x1d{left:293.666655pt;}
.x4d{left:295.746655pt;}
.x33{left:299.746655pt;}
.x4a{left:301.186655pt;}
.x9{left:304.546655pt;}
.x2f{left:308.866667pt;}
.x5f{left:311.746667pt;}
.x5{left:316.226655pt;}
.x1e{left:320.706655pt;}
.x44{left:322.306667pt;}
.x49{left:332.386655pt;}
.x4c{left:334.626655pt;}
.x13{left:342.626667pt;}
.x52{left:364.066667pt;}
.x48{left:389.346667pt;}
.x60{left:391.106667pt;}
.x8{left:397.026655pt;}
.x53{left:434.013333pt;}
.x39{left:441.213333pt;}
.x15{left:452.093333pt;}
.x30{left:454.013333pt;}
.x45{left:455.613333pt;}
.xd{left:486.173322pt;}
.x61{left:505.693333pt;}
.x3b{left:522.013333pt;}
.x54{left:523.613333pt;}
.x46{left:532.093333pt;}
.x23{left:534.173333pt;}
.x2e{left:540.253333pt;}
.x18{left:561.533333pt;}
.x47{left:585.253333pt;}
.x56{left:593.733333pt;}
.x35{left:626.053322pt;}
.x31{left:627.013322pt;}
}




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