
    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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9a0fb7158bcdf787eb215aa8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933594;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_03af0df2dad3f48b18b9677b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959473;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_e774c04542ffc788cc3145b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959473;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_300f60ad87e77930dbc0418b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767578;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_08ba10e6ce23acfcaf5acee0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_903b07d58ef6ffb1c6fcf163.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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_81e2aad22b9267e76a4bcd72.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.172852;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_0f6d75e0648cf438e1f6c003.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.780273;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_b32bdc738d31d907691901b0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.993652;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;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.540000px;}
.ls4{letter-spacing:-0.648000px;}
.ls3{letter-spacing:-0.504000px;}
.lsd{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.237600px;}
.ls14{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.005040px;}
.lsc{letter-spacing:0.052560px;}
.ls0{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.157680px;}
.ls7{letter-spacing:0.174000px;}
.lse{letter-spacing:0.175200px;}
.ls16{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.212400px;}
.ls8{letter-spacing:0.216000px;}
.lsb{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.550200px;}
.ls9{letter-spacing:1.440000px;}
.ls15{letter-spacing:6.480000px;}
.ls6{letter-spacing:1322.250240px;}
.ls5{letter-spacing:1431.096000px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws1{word-spacing:-21.060000px;}
.ws6{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.216000px;}
.ws5{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.ws11{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.352000px;}
.wsc{word-spacing:-15.490200px;}
.wsf{word-spacing:-15.152400px;}
.wsb{word-spacing:-15.115200px;}
.wse{word-spacing:-14.992560px;}
.wsa{word-spacing:-14.945040px;}
.ws8{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.702400px;}
.ws9{word-spacing:-14.680200px;}
.ws4{word-spacing:0.000000px;}
._1c{margin-left:-216.299760px;}
._19{margin-left:-153.628080px;}
._25{margin-left:-50.782800px;}
._24{margin-left:-47.715840px;}
._17{margin-left:-38.967840px;}
._21{margin-left:-31.006080px;}
._1f{margin-left:-25.433280px;}
._1b{margin-left:-23.764320px;}
._1e{margin-left:-21.940560px;}
._22{margin-left:-18.894960px;}
._18{margin-left:-13.759200px;}
._20{margin-left:-12.754080px;}
._1d{margin-left:-10.526400px;}
._1a{margin-left:-7.571520px;}
._23{margin-left:-6.538320px;}
._10{margin-left:-5.400000px;}
._9{margin-left:-3.816000px;}
._0{margin-left:-2.700000px;}
._1{margin-left:-1.026000px;}
._2{width:1.038000px;}
._8{width:2.370000px;}
._c{width:3.960000px;}
._b{width:5.760000px;}
._a{width:6.840000px;}
._f{width:8.712000px;}
._e{width:10.656000px;}
._11{width:12.384000px;}
._13{width:13.536000px;}
._12{width:14.760000px;}
._d{width:16.272000px;}
._44{width:17.748720px;}
._28{width:19.728000px;}
._26{width:21.168000px;}
._29{width:22.752000px;}
._14{width:23.832000px;}
._49{width:24.912000px;}
._4b{width:25.921440px;}
._3e{width:27.071280px;}
._27{width:28.278000px;}
._4{width:29.754000px;}
._3b{width:31.015440px;}
._35{width:32.748480px;}
._36{width:33.888720px;}
._2a{width:35.208000px;}
._3f{width:36.312000px;}
._31{width:39.919680px;}
._33{width:42.011280px;}
._39{width:44.043120px;}
._2d{width:49.062960px;}
._3d{width:52.230240px;}
._32{width:53.425440px;}
._2e{width:56.054880px;}
._48{width:60.477120px;}
._47{width:63.405360px;}
._45{width:65.975040px;}
._7{width:71.616000px;}
._34{width:74.102400px;}
._40{width:79.301520px;}
._2f{width:88.086240px;}
._3{width:90.504000px;}
._3c{width:92.747520px;}
._41{width:95.115840px;}
._4a{width:96.264000px;}
._2b{width:100.994400px;}
._38{width:106.910640px;}
._46{width:122.089680px;}
._3a{width:128.304720px;}
._30{width:144.320400px;}
._43{width:153.403920px;}
._16{width:180.120720px;}
._2c{width:203.243760px;}
._37{width:232.884720px;}
._42{width:263.123280px;}
._6{width:641.556000px;}
._15{width:1432.554240px;}
._5{width:1433.832000px;}
.fc5{color:transparent;}
.fc1{color:rgb(15,120,80);}
.fc4{color:rgb(128,128,128);}
.fc3{color:rgb(34,34,34);}
.fc2{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs7{font-size:62.991941px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y37{bottom:-5.400000px;}
.y0{bottom:0.000000px;}
.y35{bottom:3.600000px;}
.y99{bottom:3.960000px;}
.ycd{bottom:3.990000px;}
.y11f{bottom:20.700000px;}
.y115{bottom:20.880000px;}
.y11a{bottom:20.910000px;}
.y9b{bottom:21.600000px;}
.ya7{bottom:21.645000px;}
.y133{bottom:22.140000px;}
.y11d{bottom:37.620000px;}
.y12b{bottom:37.650000px;}
.y114{bottom:37.800000px;}
.y119{bottom:37.830000px;}
.y125{bottom:37.845000px;}
.ydf{bottom:39.060000px;}
.ya3{bottom:39.240000px;}
.yd9{bottom:39.285000px;}
.y11c{bottom:54.540000px;}
.y118{bottom:54.570000px;}
.y113{bottom:54.720000px;}
.y124{bottom:54.765000px;}
.y33{bottom:56.160000px;}
.y9e{bottom:56.880000px;}
.y7{bottom:57.600000px;}
.y32{bottom:69.660000px;}
.y6{bottom:76.860000px;}
.y5{bottom:91.980000px;}
.y34{bottom:98.280000px;}
.y36{bottom:104.580000px;}
.y4{bottom:107.280000px;}
.y3{bottom:122.400000px;}
.y2{bottom:137.520000px;}
.y31{bottom:148.500000px;}
.y68{bottom:165.810000px;}
.y2f{bottom:166.890000px;}
.y101{bottom:168.510000px;}
.y197{bottom:169.050000px;}
.y129{bottom:171.210000px;}
.y155{bottom:172.290000px;}
.y1ad{bottom:175.890000px;}
.ycb{bottom:179.130000px;}
.y180{bottom:180.210000px;}
.y67{bottom:185.970000px;}
.y100{bottom:186.150000px;}
.y128{bottom:187.770000px;}
.y196{bottom:189.390000px;}
.y154{bottom:192.450000px;}
.y97{bottom:195.870000px;}
.y1ac{bottom:196.050000px;}
.y2e{bottom:196.230000px;}
.yff{bottom:203.790000px;}
.y1cb{bottom:206.130000px;}
.y66{bottom:206.310000px;}
.yca{bottom:208.470000px;}
.y17f{bottom:209.550000px;}
.y153{bottom:212.790000px;}
.y96{bottom:216.210000px;}
.y1ab{bottom:216.390000px;}
.yfe{bottom:221.430000px;}
.y65{bottom:226.470000px;}
.y17e{bottom:229.890000px;}
.y2d{bottom:231.690000px;}
.y152{bottom:232.950000px;}
.y95{bottom:236.370000px;}
.y1aa{bottom:236.550000px;}
.yc9{bottom:237.630000px;}
.yfd{bottom:239.070000px;}
.y64{bottom:246.810000px;}
.y17d{bottom:250.050000px;}
.y151{bottom:253.290000px;}
.yc8{bottom:254.010000px;}
.y2c{bottom:254.910000px;}
.y127{bottom:255.990000px;}
.y94{bottom:256.710000px;}
.y1a9{bottom:256.890000px;}
.y63{bottom:266.970000px;}
.yfc{bottom:270.210000px;}
.y17c{bottom:270.390000px;}
.yc7{bottom:271.650000px;}
.y150{bottom:273.450000px;}
.y93{bottom:276.870000px;}
.y1a8{bottom:277.050000px;}
.y2b{bottom:278.130000px;}
.y62{bottom:287.310000px;}
.yc6{bottom:289.290000px;}
.y17b{bottom:290.550000px;}
.y14f{bottom:293.790000px;}
.y1ca{bottom:296.130000px;}
.y92{bottom:297.210000px;}
.y1a7{bottom:297.390000px;}
.yfb{bottom:299.550000px;}
.y2a{bottom:301.530000px;}
.yc5{bottom:306.930000px;}
.y126{bottom:307.290000px;}
.y61{bottom:307.470000px;}
.y17a{bottom:310.890000px;}
.y14e{bottom:313.950000px;}
.yfa{bottom:315.930000px;}
.y1c9{bottom:316.470000px;}
.y91{bottom:317.370000px;}
.y1a6{bottom:317.550000px;}
.yc4{bottom:324.570000px;}
.y60{bottom:327.810000px;}
.y29{bottom:330.510000px;}
.y179{bottom:331.050000px;}
.yf9{bottom:333.570000px;}
.y14d{bottom:334.290000px;}
.y1c8{bottom:336.810000px;}
.y90{bottom:337.710000px;}
.y1a5{bottom:337.890000px;}
.yc3{bottom:342.210000px;}
.y5f{bottom:347.970000px;}
.y28{bottom:350.850000px;}
.yf8{bottom:351.210000px;}
.y178{bottom:351.390000px;}
.y14c{bottom:354.450000px;}
.y8f{bottom:357.870000px;}
.y1a4{bottom:358.050000px;}
.yc2{bottom:359.850000px;}
.y1c7{bottom:365.970000px;}
.y5e{bottom:368.310000px;}
.yf7{bottom:368.850000px;}
.y177{bottom:371.550000px;}
.y14b{bottom:374.790000px;}
.y123{bottom:375.510000px;}
.yc1{bottom:377.490000px;}
.y8e{bottom:378.210000px;}
.y1a3{bottom:378.390000px;}
.y27{bottom:380.010000px;}
.y1c6{bottom:386.310000px;}
.yf6{bottom:386.490000px;}
.y5d{bottom:388.470000px;}
.y176{bottom:391.890000px;}
.y14a{bottom:394.950000px;}
.yc0{bottom:395.130000px;}
.y8d{bottom:398.370000px;}
.y26{bottom:400.350000px;}
.yf5{bottom:404.175000px;}
.y1c5{bottom:406.515000px;}
.y1a2{bottom:408.495000px;}
.y5c{bottom:408.855000px;}
.y175{bottom:412.095000px;}
.ybf{bottom:412.815000px;}
.y8c{bottom:418.755000px;}
.y25{bottom:420.735000px;}
.yf4{bottom:421.815000px;}
.y149{bottom:424.155000px;}
.y1c4{bottom:426.855000px;}
.y174{bottom:432.435000px;}
.y5b{bottom:438.015000px;}
.y8b{bottom:438.915000px;}
.yf3{bottom:439.275000px;}
.y1a1{bottom:440.175000px;}
.y24{bottom:440.895000px;}
.y195{bottom:441.255000px;}
.y122{bottom:443.775000px;}
.ybe{bottom:443.955000px;}
.y1c3{bottom:447.015000px;}
.y173{bottom:452.595000px;}
.y148{bottom:454.395000px;}
.yf2{bottom:456.915000px;}
.y5a{bottom:458.355000px;}
.y23{bottom:461.235000px;}
.y8a{bottom:468.075000px;}
.y1a0{bottom:469.515000px;}
.y194{bottom:470.595000px;}
.y172{bottom:472.935000px;}
.ybd{bottom:473.115000px;}
.y121{bottom:475.095000px;}
.y1c2{bottom:476.175000px;}
.y59{bottom:478.515000px;}
.y22{bottom:481.395000px;}
.y147{bottom:486.075000px;}
.yf1{bottom:488.235000px;}
.y89{bottom:488.415000px;}
.ybc{bottom:489.675000px;}
.y19f{bottom:489.855000px;}
.y193{bottom:490.935000px;}
.y171{bottom:493.095000px;}
.y1c1{bottom:496.515000px;}
.y58{bottom:498.855000px;}
.y21{bottom:501.735000px;}
.y146{bottom:502.455000px;}
.y120{bottom:504.255000px;}
.ybb{bottom:507.315000px;}
.y88{bottom:508.755000px;}
.y19e{bottom:510.015000px;}
.y192{bottom:511.095000px;}
.y170{bottom:513.435000px;}
.y1c0{bottom:516.855000px;}
.yf0{bottom:517.395000px;}
.y57{bottom:519.015000px;}
.y145{bottom:520.095000px;}
.y11e{bottom:520.815000px;}
.y20{bottom:521.895000px;}
.yba{bottom:524.775000px;}
.y87{bottom:528.915000px;}
.y19d{bottom:530.355000px;}
.y191{bottom:531.435000px;}
.y16f{bottom:533.595000px;}
.yef{bottom:533.775000px;}
.y144{bottom:537.735000px;}
.y56{bottom:539.355000px;}
.y1f{bottom:542.235000px;}
.yb9{bottom:542.415000px;}
.y1bf{bottom:546.015000px;}
.y86{bottom:549.255000px;}
.y19c{bottom:550.515000px;}
.yee{bottom:551.415000px;}
.y190{bottom:551.595000px;}
.y143{bottom:555.375000px;}
.y55{bottom:559.515000px;}
.yb8{bottom:560.055000px;}
.y1e1{bottom:560.595000px;}
.y1e{bottom:562.395000px;}
.y16e{bottom:562.755000px;}
.y1be{bottom:566.355000px;}
.yed{bottom:569.055000px;}
.y85{bottom:569.415000px;}
.y19b{bottom:570.855000px;}
.y18f{bottom:571.935000px;}
.y11b{bottom:572.115000px;}
.y142{bottom:573.015000px;}
.y54{bottom:579.855000px;}
.y1d{bottom:582.735000px;}
.y16d{bottom:583.095000px;}
.yec{bottom:586.695000px;}
.y1e0{bottom:589.755000px;}
.y141{bottom:590.655000px;}
.y84{bottom:591.015000px;}
.yb7{bottom:591.375000px;}
.y18e{bottom:592.095000px;}
.y1bd{bottom:595.515000px;}
.y53{bottom:600.015000px;}
.y1c{bottom:602.895000px;}
.y16c{bottom:603.435000px;}
.yeb{bottom:604.335000px;}
.y140{bottom:608.295000px;}
.y1df{bottom:610.095000px;}
.y83{bottom:611.355000px;}
.y18d{bottom:612.435000px;}
.y1bc{bottom:615.855000px;}
.y52{bottom:620.355000px;}
.yb6{bottom:620.535000px;}
.y1b{bottom:623.235000px;}
.y16b{bottom:623.595000px;}
.y82{bottom:631.515000px;}
.yea{bottom:635.655000px;}
.y1bb{bottom:636.015000px;}
.yb5{bottom:636.915000px;}
.y1de{bottom:639.255000px;}
.y13f{bottom:639.435000px;}
.y117{bottom:640.335000px;}
.y51{bottom:640.515000px;}
.y18c{bottom:641.595000px;}
.y1a{bottom:643.395000px;}
.y16a{bottom:643.935000px;}
.y81{bottom:651.885000px;}
.yb4{bottom:654.585000px;}
.y1ba{bottom:656.385000px;}
.y1dd{bottom:659.625000px;}
.y18b{bottom:661.965000px;}
.y19{bottom:663.765000px;}
.y169{bottom:664.125000px;}
.ye9{bottom:664.845000px;}
.y13e{bottom:668.805000px;}
.y50{bottom:669.705000px;}
.y80{bottom:672.045000px;}
.yb3{bottom:672.225000px;}
.ye7{bottom:681.225000px;}
.y18a{bottom:682.125000px;}
.y18{bottom:683.925000px;}
.y168{bottom:684.465000px;}
.y13d{bottom:685.185000px;}
.y1b9{bottom:685.545000px;}
.y1dc{bottom:688.785000px;}
.yb2{bottom:689.865000px;}
.y4f{bottom:690.045000px;}
.y7f{bottom:692.385000px;}
.ye8{bottom:698.865000px;}
.y189{bottom:702.465000px;}
.y13c{bottom:702.825000px;}
.y17{bottom:704.265000px;}
.y167{bottom:704.625000px;}
.y1b8{bottom:705.885000px;}
.yb1{bottom:707.505000px;}
.y116{bottom:708.585000px;}
.y1db{bottom:709.125000px;}
.y4e{bottom:710.385000px;}
.y7e{bottom:712.545000px;}
.ye4{bottom:716.505000px;}
.y13b{bottom:720.465000px;}
.y188{bottom:722.625000px;}
.y16{bottom:724.425000px;}
.y166{bottom:724.965000px;}
.yb0{bottom:725.145000px;}
.y1b7{bottom:726.045000px;}
.y1da{bottom:729.465000px;}
.y4d{bottom:730.545000px;}
.y7d{bottom:732.885000px;}
.ye6{bottom:734.145000px;}
.yaf{bottom:742.785000px;}
.y187{bottom:742.965000px;}
.y15{bottom:744.765000px;}
.y165{bottom:745.125000px;}
.y4c{bottom:750.885000px;}
.ye5{bottom:751.785000px;}
.y19a{bottom:753.045000px;}
.y13a{bottom:754.845000px;}
.y1b6{bottom:755.205000px;}
.y1d9{bottom:758.625000px;}
.y7c{bottom:762.045000px;}
.y186{bottom:763.125000px;}
.y14{bottom:764.925000px;}
.y164{bottom:765.465000px;}
.ye2{bottom:769.425000px;}
.y4b{bottom:771.045000px;}
.y139{bottom:772.485000px;}
.yae{bottom:773.925000px;}
.y1b5{bottom:775.545000px;}
.y112{bottom:776.805000px;}
.y1d8{bottom:778.965000px;}
.y7b{bottom:782.385000px;}
.y199{bottom:783.105000px;}
.y185{bottom:783.465000px;}
.ye3{bottom:787.065000px;}
.y138{bottom:790.125000px;}
.y4a{bottom:791.385000px;}
.y163{bottom:794.625000px;}
.y13{bottom:794.985000px;}
.y1b4{bottom:795.885000px;}
.y1d7{bottom:799.125000px;}
.y7a{bottom:802.545000px;}
.yad{bottom:803.265000px;}
.y184{bottom:803.625000px;}
.yde{bottom:804.705000px;}
.y49{bottom:811.545000px;}
.y198{bottom:814.785000px;}
.ya9{bottom:819.645000px;}
.ye1{bottom:822.345000px;}
.y79{bottom:822.885000px;}
.y162{bottom:823.785000px;}
.y183{bottom:823.965000px;}
.y1b3{bottom:825.045000px;}
.y12{bottom:826.665000px;}
.y1d6{bottom:828.285000px;}
.y48{bottom:831.885000px;}
.yac{bottom:837.285000px;}
.y137{bottom:838.185000px;}
.ye0{bottom:839.805000px;}
.y78{bottom:843.045000px;}
.y161{bottom:844.125000px;}
.y111{bottom:845.205000px;}
.y1b2{bottom:845.385000px;}
.y1d5{bottom:848.625000px;}
.y47{bottom:852.045000px;}
.yab{bottom:854.925000px;}
.y11{bottom:856.005000px;}
.ydc{bottom:857.445000px;}
.y77{bottom:863.385000px;}
.y160{bottom:864.465000px;}
.y1b1{bottom:865.545000px;}
.y136{bottom:867.525000px;}
.y1d4{bottom:868.965000px;}
.y46{bottom:872.385000px;}
.yaa{bottom:872.565000px;}
.ydd{bottom:875.085000px;}
.y10{bottom:876.345000px;}
.y76{bottom:883.545000px;}
.y135{bottom:883.905000px;}
.y15f{bottom:884.625000px;}
.ya6{bottom:890.205000px;}
.yd8{bottom:892.725000px;}
.y1b0{bottom:894.705000px;}
.yf{bottom:896.685000px;}
.y1d3{bottom:898.170000px;}
.y45{bottom:901.590000px;}
.y75{bottom:903.930000px;}
.y15e{bottom:905.010000px;}
.y110{bottom:905.730000px;}
.ya8{bottom:907.890000px;}
.ydb{bottom:910.410000px;}
.y1af{bottom:915.090000px;}
.y1d2{bottom:918.510000px;}
.y134{bottom:919.230000px;}
.y44{bottom:921.930000px;}
.y10f{bottom:922.110000px;}
.y74{bottom:924.090000px;}
.y15d{bottom:925.170000px;}
.ya2{bottom:925.350000px;}
.yda{bottom:928.050000px;}
.ye{bottom:928.230000px;}
.y1ae{bottom:935.430000px;}
.y132{bottom:936.870000px;}
.y10e{bottom:939.750000px;}
.y43{bottom:942.090000px;}
.ya5{bottom:942.990000px;}
.y73{bottom:944.430000px;}
.y15c{bottom:945.510000px;}
.yd7{bottom:945.690000px;}
.y1d1{bottom:947.670000px;}
.yd{bottom:948.570000px;}
.y10d{bottom:957.390000px;}
.ya4{bottom:960.630000px;}
.y42{bottom:962.430000px;}
.y72{bottom:964.590000px;}
.y15b{bottom:965.670000px;}
.y1d0{bottom:968.010000px;}
.yc{bottom:968.910000px;}
.y131{bottom:972.690000px;}
.y10c{bottom:974.850000px;}
.yd6{bottom:976.830000px;}
.y9d{bottom:978.270000px;}
.y41{bottom:982.590000px;}
.y71{bottom:984.930000px;}
.y15a{bottom:986.010000px;}
.y1cf{bottom:988.170000px;}
.y10b{bottom:992.490000px;}
.ya1{bottom:995.910000px;}
.y40{bottom:1002.930000px;}
.y70{bottom:1005.090000px;}
.yd5{bottom:1006.170000px;}
.y130{bottom:1007.250000px;}
.y10a{bottom:1010.130000px;}
.yb{bottom:1011.210000px;}
.ya0{bottom:1013.550000px;}
.y1ce{bottom:1017.330000px;}
.yd4{bottom:1022.550000px;}
.y3f{bottom:1023.090000px;}
.y6f{bottom:1025.430000px;}
.y159{bottom:1026.510000px;}
.y109{bottom:1027.770000px;}
.y9f{bottom:1031.190000px;}
.y1cd{bottom:1037.670000px;}
.ya{bottom:1038.210000px;}
.yd3{bottom:1040.190000px;}
.y12f{bottom:1041.630000px;}
.y3e{bottom:1043.430000px;}
.y108{bottom:1045.410000px;}
.y158{bottom:1046.670000px;}
.y9a{bottom:1048.830000px;}
.y6e{bottom:1055.310000px;}
.yd2{bottom:1057.830000px;}
.y12e{bottom:1059.270000px;}
.y107{bottom:1063.050000px;}
.y3d{bottom:1063.590000px;}
.y9{bottom:1065.210000px;}
.y9c{bottom:1066.470000px;}
.y1cc{bottom:1066.830000px;}
.y157{bottom:1067.010000px;}
.yd1{bottom:1075.470000px;}
.y12d{bottom:1076.910000px;}
.y106{bottom:1080.690000px;}
.y3c{bottom:1083.930000px;}
.y98{bottom:1084.110000px;}
.y6d{bottom:1087.170000px;}
.yd0{bottom:1093.110000px;}
.y12c{bottom:1094.550000px;}
.y8{bottom:1099.590000px;}
.y3b{bottom:1104.090000px;}
.y156{bottom:1107.510000px;}
.ycf{bottom:1110.750000px;}
.y105{bottom:1111.830000px;}
.y12a{bottom:1112.190000px;}
.y1{bottom:1115.250000px;}
.y6c{bottom:1116.330000px;}
.y3a{bottom:1124.430000px;}
.y182{bottom:1127.670000px;}
.yce{bottom:1128.390000px;}
.y6b{bottom:1136.670000px;}
.y104{bottom:1141.170000px;}
.y39{bottom:1144.590000px;}
.ycc{bottom:1145.850000px;}
.y181{bottom:1148.040000px;}
.y6a{bottom:1157.040000px;}
.y103{bottom:1157.580000px;}
.y38{bottom:1174.680000px;}
.y102{bottom:1175.220000px;}
.y69{bottom:1177.200000px;}
.y30{bottom:1196.820000px;}
.he{height:10.620000px;}
.hf{height:16.740000px;}
.h15{height:16.776000px;}
.h11{height:16.920000px;}
.h17{height:16.956000px;}
.hc{height:22.500000px;}
.h20{height:33.660000px;}
.h23{height:33.840000px;}
.h1b{height:34.380000px;}
.h14{height:34.416000px;}
.h10{height:34.560000px;}
.h21{height:35.100000px;}
.h3{height:36.571289px;}
.h4{height:37.599609px;}
.ha{height:41.610234px;}
.h18{height:43.860600px;}
.h7{height:48.761719px;}
.h5{height:50.132812px;}
.h22{height:50.364141px;}
.h1e{height:50.580000px;}
.h1f{height:50.616000px;}
.h1a{height:52.020000px;}
.h13{height:52.200000px;}
.h19{height:52.236000px;}
.h8{height:56.617031px;}
.h9{height:58.655391px;}
.hb{height:59.439023px;}
.h2{height:65.884219px;}
.h6{height:66.676641px;}
.h1c{height:67.500000px;}
.h1d{height:67.536000px;}
.h16{height:69.660000px;}
.h12{height:69.840000px;}
.hd{height:83.787539px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.500000px;}
.w3d{width:60.840000px;}
.w42{width:62.100000px;}
.w3a{width:62.280000px;}
.w43{width:62.460000px;}
.w3b{width:62.856000px;}
.w27{width:68.400000px;}
.w3c{width:69.660000px;}
.w41{width:70.560000px;}
.w38{width:70.956000px;}
.w39{width:71.100000px;}
.w4a{width:81.360000px;}
.w1f{width:81.576000px;}
.w1e{width:84.600000px;}
.w3f{width:85.500000px;}
.w40{width:85.896000px;}
.w36{width:86.256000px;}
.w37{width:86.580000px;}
.w45{width:89.640000px;}
.w3e{width:92.520000px;}
.w49{width:94.680000px;}
.w44{width:95.796000px;}
.we{width:95.976000px;}
.w28{width:99.720000px;}
.w18{width:100.800000px;}
.wf{width:100.836000px;}
.wc{width:106.380000px;}
.w14{width:110.520000px;}
.w1b{width:119.196000px;}
.w2c{width:127.260000px;}
.w20{width:127.620000px;}
.w1c{width:128.160000px;}
.w1a{width:129.996000px;}
.w12{width:133.956000px;}
.w2d{width:136.260000px;}
.w7{width:136.296000px;}
.w13{width:139.356000px;}
.w32{width:144.396000px;}
.w35{width:144.720000px;}
.w8{width:145.620000px;}
.w31{width:149.040000px;}
.w22{width:152.310000px;}
.w25{width:152.670000px;}
.w23{width:157.350000px;}
.w26{width:157.530000px;}
.w2e{width:158.430000px;}
.w48{width:159.510000px;}
.w2a{width:160.050000px;}
.wa{width:160.950000px;}
.w2b{width:164.910000px;}
.wb{width:166.170000px;}
.w16{width:167.430000px;}
.w46{width:168.840000px;}
.w17{width:172.110000px;}
.w10{width:172.980000px;}
.w6{width:178.950000px;}
.w34{width:194.070000px;}
.w30{width:199.470000px;}
.w47{width:213.915000px;}
.w2f{width:225.030000px;}
.w33{width:231.510000px;}
.w24{width:239.970000px;}
.w5{width:258.150000px;}
.w29{width:266.610000px;}
.w15{width:278.850000px;}
.w9{width:285.690000px;}
.w21{width:308.730000px;}
.w11{width:335.370000px;}
.w19{width:341.670000px;}
.wd{width:349.410000px;}
.w1d{width:425.415000px;}
.w4{width:719.640000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:7.740000px;}
.xf{left:10.836000px;}
.xe{left:21.960000px;}
.x2{left:84.995987px;}
.x4{left:87.875987px;}
.x22{left:101.190000px;}
.x23{left:104.970000px;}
.x3{left:110.555987px;}
.x41{left:156.809987px;}
.x33{left:163.469987px;}
.x30{left:172.649987px;}
.x18{left:179.129987px;}
.x20{left:183.989987px;}
.x2d{left:212.789987px;}
.xa{left:213.869987px;}
.x13{left:217.289987px;}
.x3b{left:220.529987px;}
.x3c{left:222.870000px;}
.x26{left:225.749987px;}
.x42{left:231.330000px;}
.x7{left:235.289987px;}
.x1c{left:244.649987px;}
.x29{left:252.569987px;}
.x4f{left:255.450000px;}
.x8{left:265.169987px;}
.x6{left:296.174987px;}
.x38{left:302.654987px;}
.x9{left:306.254987px;}
.x43{left:318.315000px;}
.x34{left:326.775000px;}
.x5{left:329.474987px;}
.x15{left:344.775000px;}
.x49{left:351.975000px;}
.x39{left:353.415000px;}
.x54{left:362.594987px;}
.x27{left:365.475000px;}
.x19{left:372.315000px;}
.x3f{left:380.955000px;}
.x3d{left:382.035000px;}
.x11{left:387.254987px;}
.x10{left:390.134987px;}
.x31{left:395.355000px;}
.x53{left:397.154987px;}
.x44{left:405.615000px;}
.xb{left:409.214987px;}
.x12{left:413.534987px;}
.x21{left:421.995000px;}
.x4a{left:423.255000px;}
.x2a{left:428.475000px;}
.x1d{left:436.035000px;}
.xc{left:446.504987px;}
.x50{left:470.265000px;}
.x45{left:477.465000px;}
.x35{left:480.165000px;}
.x4b{left:494.925000px;}
.x2e{left:512.025000px;}
.x3a{left:514.185000px;}
.x16{left:524.445000px;}
.x1e{left:532.725000px;}
.x1a{left:533.985000px;}
.x32{left:548.385000px;}
.x46{left:549.465000px;}
.x24{left:556.665000px;}
.x4c{left:557.745000px;}
.x2b{left:559.185000px;}
.x2f{left:597.345000px;}
.x3e{left:607.785000px;}
.x40{left:613.185000px;}
.x4d{left:621.105000px;}
.x51{left:630.510000px;}
.x1f{left:634.290000px;}
.x36{left:638.430000px;}
.x17{left:661.650000px;}
.x47{left:676.050000px;}
.x2c{left:679.110000px;}
.x25{left:696.750000px;}
.x1b{left:700.890000px;}
.x28{left:706.470000px;}
.x37{left:707.550000px;}
.x4e{left:717.630000px;}
.x52{left:725.910000px;}
.x48{left:746.430000px;}
.x1{left:807.809987px;}
.xd{left:810.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.480000pt;}
.ls4{letter-spacing:-0.576000pt;}
.ls3{letter-spacing:-0.448000pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.211200pt;}
.ls14{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004480pt;}
.lsc{letter-spacing:0.046720pt;}
.ls0{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.140160pt;}
.ls7{letter-spacing:0.154667pt;}
.lse{letter-spacing:0.155733pt;}
.ls16{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.188800pt;}
.ls8{letter-spacing:0.192000pt;}
.lsb{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.489067pt;}
.ls9{letter-spacing:1.280000pt;}
.ls15{letter-spacing:5.760000pt;}
.ls6{letter-spacing:1175.333547pt;}
.ls5{letter-spacing:1272.085333pt;}
.ws0{word-spacing:-64.000000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.192000pt;}
.ws5{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws11{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.424000pt;}
.wsc{word-spacing:-13.769067pt;}
.wsf{word-spacing:-13.468800pt;}
.wsb{word-spacing:-13.435733pt;}
.wse{word-spacing:-13.326720pt;}
.wsa{word-spacing:-13.284480pt;}
.ws8{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.068800pt;}
.ws9{word-spacing:-13.049067pt;}
.ws4{word-spacing:0.000000pt;}
._1c{margin-left:-192.266453pt;}
._19{margin-left:-136.558293pt;}
._25{margin-left:-45.140267pt;}
._24{margin-left:-42.414080pt;}
._17{margin-left:-34.638080pt;}
._21{margin-left:-27.560960pt;}
._1f{margin-left:-22.607360pt;}
._1b{margin-left:-21.123840pt;}
._1e{margin-left:-19.502720pt;}
._22{margin-left:-16.795520pt;}
._18{margin-left:-12.230400pt;}
._20{margin-left:-11.336960pt;}
._1d{margin-left:-9.356800pt;}
._1a{margin-left:-6.730240pt;}
._23{margin-left:-5.811840pt;}
._10{margin-left:-4.800000pt;}
._9{margin-left:-3.392000pt;}
._0{margin-left:-2.400000pt;}
._1{margin-left:-0.912000pt;}
._2{width:0.922667pt;}
._8{width:2.106667pt;}
._c{width:3.520000pt;}
._b{width:5.120000pt;}
._a{width:6.080000pt;}
._f{width:7.744000pt;}
._e{width:9.472000pt;}
._11{width:11.008000pt;}
._13{width:12.032000pt;}
._12{width:13.120000pt;}
._d{width:14.464000pt;}
._44{width:15.776640pt;}
._28{width:17.536000pt;}
._26{width:18.816000pt;}
._29{width:20.224000pt;}
._14{width:21.184000pt;}
._49{width:22.144000pt;}
._4b{width:23.041280pt;}
._3e{width:24.063360pt;}
._27{width:25.136000pt;}
._4{width:26.448000pt;}
._3b{width:27.569280pt;}
._35{width:29.109760pt;}
._36{width:30.123307pt;}
._2a{width:31.296000pt;}
._3f{width:32.277333pt;}
._31{width:35.484160pt;}
._33{width:37.343360pt;}
._39{width:39.149440pt;}
._2d{width:43.611520pt;}
._3d{width:46.426880pt;}
._32{width:47.489280pt;}
._2e{width:49.826560pt;}
._48{width:53.757440pt;}
._47{width:56.360320pt;}
._45{width:58.644480pt;}
._7{width:63.658667pt;}
._34{width:65.868800pt;}
._40{width:70.490240pt;}
._2f{width:78.298880pt;}
._3{width:80.448000pt;}
._3c{width:82.442240pt;}
._41{width:84.547413pt;}
._4a{width:85.568000pt;}
._2b{width:89.772800pt;}
._38{width:95.031680pt;}
._46{width:108.524160pt;}
._3a{width:114.048640pt;}
._30{width:128.284800pt;}
._43{width:136.359040pt;}
._16{width:160.107307pt;}
._2c{width:180.661120pt;}
._37{width:207.008640pt;}
._42{width:233.887360pt;}
._6{width:570.272000pt;}
._15{width:1273.381547pt;}
._5{width:1274.517333pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs7{font-size:55.992837pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y37{bottom:-4.800000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.200000pt;}
.y99{bottom:3.520000pt;}
.ycd{bottom:3.546667pt;}
.y11f{bottom:18.400000pt;}
.y115{bottom:18.560000pt;}
.y11a{bottom:18.586667pt;}
.y9b{bottom:19.200000pt;}
.ya7{bottom:19.240000pt;}
.y133{bottom:19.680000pt;}
.y11d{bottom:33.440000pt;}
.y12b{bottom:33.466667pt;}
.y114{bottom:33.600000pt;}
.y119{bottom:33.626667pt;}
.y125{bottom:33.640000pt;}
.ydf{bottom:34.720000pt;}
.ya3{bottom:34.880000pt;}
.yd9{bottom:34.920000pt;}
.y11c{bottom:48.480000pt;}
.y118{bottom:48.506667pt;}
.y113{bottom:48.640000pt;}
.y124{bottom:48.680000pt;}
.y33{bottom:49.920000pt;}
.y9e{bottom:50.560000pt;}
.y7{bottom:51.200000pt;}
.y32{bottom:61.920000pt;}
.y6{bottom:68.320000pt;}
.y5{bottom:81.760000pt;}
.y34{bottom:87.360000pt;}
.y36{bottom:92.960000pt;}
.y4{bottom:95.360000pt;}
.y3{bottom:108.800000pt;}
.y2{bottom:122.240000pt;}
.y31{bottom:132.000000pt;}
.y68{bottom:147.386667pt;}
.y2f{bottom:148.346667pt;}
.y101{bottom:149.786667pt;}
.y197{bottom:150.266667pt;}
.y129{bottom:152.186667pt;}
.y155{bottom:153.146667pt;}
.y1ad{bottom:156.346667pt;}
.ycb{bottom:159.226667pt;}
.y180{bottom:160.186667pt;}
.y67{bottom:165.306667pt;}
.y100{bottom:165.466667pt;}
.y128{bottom:166.906667pt;}
.y196{bottom:168.346667pt;}
.y154{bottom:171.066667pt;}
.y97{bottom:174.106667pt;}
.y1ac{bottom:174.266667pt;}
.y2e{bottom:174.426667pt;}
.yff{bottom:181.146667pt;}
.y1cb{bottom:183.226667pt;}
.y66{bottom:183.386667pt;}
.yca{bottom:185.306667pt;}
.y17f{bottom:186.266667pt;}
.y153{bottom:189.146667pt;}
.y96{bottom:192.186667pt;}
.y1ab{bottom:192.346667pt;}
.yfe{bottom:196.826667pt;}
.y65{bottom:201.306667pt;}
.y17e{bottom:204.346667pt;}
.y2d{bottom:205.946667pt;}
.y152{bottom:207.066667pt;}
.y95{bottom:210.106667pt;}
.y1aa{bottom:210.266667pt;}
.yc9{bottom:211.226667pt;}
.yfd{bottom:212.506667pt;}
.y64{bottom:219.386667pt;}
.y17d{bottom:222.266667pt;}
.y151{bottom:225.146667pt;}
.yc8{bottom:225.786667pt;}
.y2c{bottom:226.586667pt;}
.y127{bottom:227.546667pt;}
.y94{bottom:228.186667pt;}
.y1a9{bottom:228.346667pt;}
.y63{bottom:237.306667pt;}
.yfc{bottom:240.186667pt;}
.y17c{bottom:240.346667pt;}
.yc7{bottom:241.466667pt;}
.y150{bottom:243.066667pt;}
.y93{bottom:246.106667pt;}
.y1a8{bottom:246.266667pt;}
.y2b{bottom:247.226667pt;}
.y62{bottom:255.386667pt;}
.yc6{bottom:257.146667pt;}
.y17b{bottom:258.266667pt;}
.y14f{bottom:261.146667pt;}
.y1ca{bottom:263.226667pt;}
.y92{bottom:264.186667pt;}
.y1a7{bottom:264.346667pt;}
.yfb{bottom:266.266667pt;}
.y2a{bottom:268.026667pt;}
.yc5{bottom:272.826667pt;}
.y126{bottom:273.146667pt;}
.y61{bottom:273.306667pt;}
.y17a{bottom:276.346667pt;}
.y14e{bottom:279.066667pt;}
.yfa{bottom:280.826667pt;}
.y1c9{bottom:281.306667pt;}
.y91{bottom:282.106667pt;}
.y1a6{bottom:282.266667pt;}
.yc4{bottom:288.506667pt;}
.y60{bottom:291.386667pt;}
.y29{bottom:293.786667pt;}
.y179{bottom:294.266667pt;}
.yf9{bottom:296.506667pt;}
.y14d{bottom:297.146667pt;}
.y1c8{bottom:299.386667pt;}
.y90{bottom:300.186667pt;}
.y1a5{bottom:300.346667pt;}
.yc3{bottom:304.186667pt;}
.y5f{bottom:309.306667pt;}
.y28{bottom:311.866667pt;}
.yf8{bottom:312.186667pt;}
.y178{bottom:312.346667pt;}
.y14c{bottom:315.066667pt;}
.y8f{bottom:318.106667pt;}
.y1a4{bottom:318.266667pt;}
.yc2{bottom:319.866667pt;}
.y1c7{bottom:325.306667pt;}
.y5e{bottom:327.386667pt;}
.yf7{bottom:327.866667pt;}
.y177{bottom:330.266667pt;}
.y14b{bottom:333.146667pt;}
.y123{bottom:333.786667pt;}
.yc1{bottom:335.546667pt;}
.y8e{bottom:336.186667pt;}
.y1a3{bottom:336.346667pt;}
.y27{bottom:337.786667pt;}
.y1c6{bottom:343.386667pt;}
.yf6{bottom:343.546667pt;}
.y5d{bottom:345.306667pt;}
.y176{bottom:348.346667pt;}
.y14a{bottom:351.066667pt;}
.yc0{bottom:351.226667pt;}
.y8d{bottom:354.106667pt;}
.y26{bottom:355.866667pt;}
.yf5{bottom:359.266667pt;}
.y1c5{bottom:361.346667pt;}
.y1a2{bottom:363.106667pt;}
.y5c{bottom:363.426667pt;}
.y175{bottom:366.306667pt;}
.ybf{bottom:366.946667pt;}
.y8c{bottom:372.226667pt;}
.y25{bottom:373.986667pt;}
.yf4{bottom:374.946667pt;}
.y149{bottom:377.026667pt;}
.y1c4{bottom:379.426667pt;}
.y174{bottom:384.386667pt;}
.y5b{bottom:389.346667pt;}
.y8b{bottom:390.146667pt;}
.yf3{bottom:390.466667pt;}
.y1a1{bottom:391.266667pt;}
.y24{bottom:391.906667pt;}
.y195{bottom:392.226667pt;}
.y122{bottom:394.466667pt;}
.ybe{bottom:394.626667pt;}
.y1c3{bottom:397.346667pt;}
.y173{bottom:402.306667pt;}
.y148{bottom:403.906667pt;}
.yf2{bottom:406.146667pt;}
.y5a{bottom:407.426667pt;}
.y23{bottom:409.986667pt;}
.y8a{bottom:416.066667pt;}
.y1a0{bottom:417.346667pt;}
.y194{bottom:418.306667pt;}
.y172{bottom:420.386667pt;}
.ybd{bottom:420.546667pt;}
.y121{bottom:422.306667pt;}
.y1c2{bottom:423.266667pt;}
.y59{bottom:425.346667pt;}
.y22{bottom:427.906667pt;}
.y147{bottom:432.066667pt;}
.yf1{bottom:433.986667pt;}
.y89{bottom:434.146667pt;}
.ybc{bottom:435.266667pt;}
.y19f{bottom:435.426667pt;}
.y193{bottom:436.386667pt;}
.y171{bottom:438.306667pt;}
.y1c1{bottom:441.346667pt;}
.y58{bottom:443.426667pt;}
.y21{bottom:445.986667pt;}
.y146{bottom:446.626667pt;}
.y120{bottom:448.226667pt;}
.ybb{bottom:450.946667pt;}
.y88{bottom:452.226667pt;}
.y19e{bottom:453.346667pt;}
.y192{bottom:454.306667pt;}
.y170{bottom:456.386667pt;}
.y1c0{bottom:459.426667pt;}
.yf0{bottom:459.906667pt;}
.y57{bottom:461.346667pt;}
.y145{bottom:462.306667pt;}
.y11e{bottom:462.946667pt;}
.y20{bottom:463.906667pt;}
.yba{bottom:466.466667pt;}
.y87{bottom:470.146667pt;}
.y19d{bottom:471.426667pt;}
.y191{bottom:472.386667pt;}
.y16f{bottom:474.306667pt;}
.yef{bottom:474.466667pt;}
.y144{bottom:477.986667pt;}
.y56{bottom:479.426667pt;}
.y1f{bottom:481.986667pt;}
.yb9{bottom:482.146667pt;}
.y1bf{bottom:485.346667pt;}
.y86{bottom:488.226667pt;}
.y19c{bottom:489.346667pt;}
.yee{bottom:490.146667pt;}
.y190{bottom:490.306667pt;}
.y143{bottom:493.666667pt;}
.y55{bottom:497.346667pt;}
.yb8{bottom:497.826667pt;}
.y1e1{bottom:498.306667pt;}
.y1e{bottom:499.906667pt;}
.y16e{bottom:500.226667pt;}
.y1be{bottom:503.426667pt;}
.yed{bottom:505.826667pt;}
.y85{bottom:506.146667pt;}
.y19b{bottom:507.426667pt;}
.y18f{bottom:508.386667pt;}
.y11b{bottom:508.546667pt;}
.y142{bottom:509.346667pt;}
.y54{bottom:515.426667pt;}
.y1d{bottom:517.986667pt;}
.y16d{bottom:518.306667pt;}
.yec{bottom:521.506667pt;}
.y1e0{bottom:524.226667pt;}
.y141{bottom:525.026667pt;}
.y84{bottom:525.346667pt;}
.yb7{bottom:525.666667pt;}
.y18e{bottom:526.306667pt;}
.y1bd{bottom:529.346667pt;}
.y53{bottom:533.346667pt;}
.y1c{bottom:535.906667pt;}
.y16c{bottom:536.386667pt;}
.yeb{bottom:537.186667pt;}
.y140{bottom:540.706667pt;}
.y1df{bottom:542.306667pt;}
.y83{bottom:543.426667pt;}
.y18d{bottom:544.386667pt;}
.y1bc{bottom:547.426667pt;}
.y52{bottom:551.426667pt;}
.yb6{bottom:551.586667pt;}
.y1b{bottom:553.986667pt;}
.y16b{bottom:554.306667pt;}
.y82{bottom:561.346667pt;}
.yea{bottom:565.026667pt;}
.y1bb{bottom:565.346667pt;}
.yb5{bottom:566.146667pt;}
.y1de{bottom:568.226667pt;}
.y13f{bottom:568.386667pt;}
.y117{bottom:569.186667pt;}
.y51{bottom:569.346667pt;}
.y18c{bottom:570.306667pt;}
.y1a{bottom:571.906667pt;}
.y16a{bottom:572.386667pt;}
.y81{bottom:579.453333pt;}
.yb4{bottom:581.853333pt;}
.y1ba{bottom:583.453333pt;}
.y1dd{bottom:586.333333pt;}
.y18b{bottom:588.413333pt;}
.y19{bottom:590.013333pt;}
.y169{bottom:590.333333pt;}
.ye9{bottom:590.973333pt;}
.y13e{bottom:594.493333pt;}
.y50{bottom:595.293333pt;}
.y80{bottom:597.373333pt;}
.yb3{bottom:597.533333pt;}
.ye7{bottom:605.533333pt;}
.y18a{bottom:606.333333pt;}
.y18{bottom:607.933333pt;}
.y168{bottom:608.413333pt;}
.y13d{bottom:609.053333pt;}
.y1b9{bottom:609.373333pt;}
.y1dc{bottom:612.253333pt;}
.yb2{bottom:613.213333pt;}
.y4f{bottom:613.373333pt;}
.y7f{bottom:615.453333pt;}
.ye8{bottom:621.213333pt;}
.y189{bottom:624.413333pt;}
.y13c{bottom:624.733333pt;}
.y17{bottom:626.013333pt;}
.y167{bottom:626.333333pt;}
.y1b8{bottom:627.453333pt;}
.yb1{bottom:628.893333pt;}
.y116{bottom:629.853333pt;}
.y1db{bottom:630.333333pt;}
.y4e{bottom:631.453333pt;}
.y7e{bottom:633.373333pt;}
.ye4{bottom:636.893333pt;}
.y13b{bottom:640.413333pt;}
.y188{bottom:642.333333pt;}
.y16{bottom:643.933333pt;}
.y166{bottom:644.413333pt;}
.yb0{bottom:644.573333pt;}
.y1b7{bottom:645.373333pt;}
.y1da{bottom:648.413333pt;}
.y4d{bottom:649.373333pt;}
.y7d{bottom:651.453333pt;}
.ye6{bottom:652.573333pt;}
.yaf{bottom:660.253333pt;}
.y187{bottom:660.413333pt;}
.y15{bottom:662.013333pt;}
.y165{bottom:662.333333pt;}
.y4c{bottom:667.453333pt;}
.ye5{bottom:668.253333pt;}
.y19a{bottom:669.373333pt;}
.y13a{bottom:670.973333pt;}
.y1b6{bottom:671.293333pt;}
.y1d9{bottom:674.333333pt;}
.y7c{bottom:677.373333pt;}
.y186{bottom:678.333333pt;}
.y14{bottom:679.933333pt;}
.y164{bottom:680.413333pt;}
.ye2{bottom:683.933333pt;}
.y4b{bottom:685.373333pt;}
.y139{bottom:686.653333pt;}
.yae{bottom:687.933333pt;}
.y1b5{bottom:689.373333pt;}
.y112{bottom:690.493333pt;}
.y1d8{bottom:692.413333pt;}
.y7b{bottom:695.453333pt;}
.y199{bottom:696.093333pt;}
.y185{bottom:696.413333pt;}
.ye3{bottom:699.613333pt;}
.y138{bottom:702.333333pt;}
.y4a{bottom:703.453333pt;}
.y163{bottom:706.333333pt;}
.y13{bottom:706.653333pt;}
.y1b4{bottom:707.453333pt;}
.y1d7{bottom:710.333333pt;}
.y7a{bottom:713.373333pt;}
.yad{bottom:714.013333pt;}
.y184{bottom:714.333333pt;}
.yde{bottom:715.293333pt;}
.y49{bottom:721.373333pt;}
.y198{bottom:724.253333pt;}
.ya9{bottom:728.573333pt;}
.ye1{bottom:730.973333pt;}
.y79{bottom:731.453333pt;}
.y162{bottom:732.253333pt;}
.y183{bottom:732.413333pt;}
.y1b3{bottom:733.373333pt;}
.y12{bottom:734.813333pt;}
.y1d6{bottom:736.253333pt;}
.y48{bottom:739.453333pt;}
.yac{bottom:744.253333pt;}
.y137{bottom:745.053333pt;}
.ye0{bottom:746.493333pt;}
.y78{bottom:749.373333pt;}
.y161{bottom:750.333333pt;}
.y111{bottom:751.293333pt;}
.y1b2{bottom:751.453333pt;}
.y1d5{bottom:754.333333pt;}
.y47{bottom:757.373333pt;}
.yab{bottom:759.933333pt;}
.y11{bottom:760.893333pt;}
.ydc{bottom:762.173333pt;}
.y77{bottom:767.453333pt;}
.y160{bottom:768.413333pt;}
.y1b1{bottom:769.373333pt;}
.y136{bottom:771.133333pt;}
.y1d4{bottom:772.413333pt;}
.y46{bottom:775.453333pt;}
.yaa{bottom:775.613333pt;}
.ydd{bottom:777.853333pt;}
.y10{bottom:778.973333pt;}
.y76{bottom:785.373333pt;}
.y135{bottom:785.693333pt;}
.y15f{bottom:786.333333pt;}
.ya6{bottom:791.293333pt;}
.yd8{bottom:793.533333pt;}
.y1b0{bottom:795.293333pt;}
.yf{bottom:797.053333pt;}
.y1d3{bottom:798.373333pt;}
.y45{bottom:801.413333pt;}
.y75{bottom:803.493333pt;}
.y15e{bottom:804.453333pt;}
.y110{bottom:805.093333pt;}
.ya8{bottom:807.013333pt;}
.ydb{bottom:809.253333pt;}
.y1af{bottom:813.413333pt;}
.y1d2{bottom:816.453333pt;}
.y134{bottom:817.093333pt;}
.y44{bottom:819.493333pt;}
.y10f{bottom:819.653333pt;}
.y74{bottom:821.413333pt;}
.y15d{bottom:822.373333pt;}
.ya2{bottom:822.533333pt;}
.yda{bottom:824.933333pt;}
.ye{bottom:825.093333pt;}
.y1ae{bottom:831.493333pt;}
.y132{bottom:832.773333pt;}
.y10e{bottom:835.333333pt;}
.y43{bottom:837.413333pt;}
.ya5{bottom:838.213333pt;}
.y73{bottom:839.493333pt;}
.y15c{bottom:840.453333pt;}
.yd7{bottom:840.613333pt;}
.y1d1{bottom:842.373333pt;}
.yd{bottom:843.173333pt;}
.y10d{bottom:851.013333pt;}
.ya4{bottom:853.893333pt;}
.y42{bottom:855.493333pt;}
.y72{bottom:857.413333pt;}
.y15b{bottom:858.373333pt;}
.y1d0{bottom:860.453333pt;}
.yc{bottom:861.253333pt;}
.y131{bottom:864.613333pt;}
.y10c{bottom:866.533333pt;}
.yd6{bottom:868.293333pt;}
.y9d{bottom:869.573333pt;}
.y41{bottom:873.413333pt;}
.y71{bottom:875.493333pt;}
.y15a{bottom:876.453333pt;}
.y1cf{bottom:878.373333pt;}
.y10b{bottom:882.213333pt;}
.ya1{bottom:885.253333pt;}
.y40{bottom:891.493333pt;}
.y70{bottom:893.413333pt;}
.yd5{bottom:894.373333pt;}
.y130{bottom:895.333333pt;}
.y10a{bottom:897.893333pt;}
.yb{bottom:898.853333pt;}
.ya0{bottom:900.933333pt;}
.y1ce{bottom:904.293333pt;}
.yd4{bottom:908.933333pt;}
.y3f{bottom:909.413333pt;}
.y6f{bottom:911.493333pt;}
.y159{bottom:912.453333pt;}
.y109{bottom:913.573333pt;}
.y9f{bottom:916.613333pt;}
.y1cd{bottom:922.373333pt;}
.ya{bottom:922.853333pt;}
.yd3{bottom:924.613333pt;}
.y12f{bottom:925.893333pt;}
.y3e{bottom:927.493333pt;}
.y108{bottom:929.253333pt;}
.y158{bottom:930.373333pt;}
.y9a{bottom:932.293333pt;}
.y6e{bottom:938.053333pt;}
.yd2{bottom:940.293333pt;}
.y12e{bottom:941.573333pt;}
.y107{bottom:944.933333pt;}
.y3d{bottom:945.413333pt;}
.y9{bottom:946.853333pt;}
.y9c{bottom:947.973333pt;}
.y1cc{bottom:948.293333pt;}
.y157{bottom:948.453333pt;}
.yd1{bottom:955.973333pt;}
.y12d{bottom:957.253333pt;}
.y106{bottom:960.613333pt;}
.y3c{bottom:963.493333pt;}
.y98{bottom:963.653333pt;}
.y6d{bottom:966.373333pt;}
.yd0{bottom:971.653333pt;}
.y12c{bottom:972.933333pt;}
.y8{bottom:977.413333pt;}
.y3b{bottom:981.413333pt;}
.y156{bottom:984.453333pt;}
.ycf{bottom:987.333333pt;}
.y105{bottom:988.293333pt;}
.y12a{bottom:988.613333pt;}
.y1{bottom:991.333333pt;}
.y6c{bottom:992.293333pt;}
.y3a{bottom:999.493333pt;}
.y182{bottom:1002.373333pt;}
.yce{bottom:1003.013333pt;}
.y6b{bottom:1010.373333pt;}
.y104{bottom:1014.373333pt;}
.y39{bottom:1017.413333pt;}
.ycc{bottom:1018.533333pt;}
.y181{bottom:1020.480000pt;}
.y6a{bottom:1028.480000pt;}
.y103{bottom:1028.960000pt;}
.y38{bottom:1044.160000pt;}
.y102{bottom:1044.640000pt;}
.y69{bottom:1046.400000pt;}
.y30{bottom:1063.840000pt;}
.he{height:9.440000pt;}
.hf{height:14.880000pt;}
.h15{height:14.912000pt;}
.h11{height:15.040000pt;}
.h17{height:15.072000pt;}
.hc{height:20.000000pt;}
.h20{height:29.920000pt;}
.h23{height:30.080000pt;}
.h1b{height:30.560000pt;}
.h14{height:30.592000pt;}
.h10{height:30.720000pt;}
.h21{height:31.200000pt;}
.h3{height:32.507812pt;}
.h4{height:33.421875pt;}
.ha{height:36.986875pt;}
.h18{height:38.987200pt;}
.h7{height:43.343750pt;}
.h5{height:44.562500pt;}
.h22{height:44.768125pt;}
.h1e{height:44.960000pt;}
.h1f{height:44.992000pt;}
.h1a{height:46.240000pt;}
.h13{height:46.400000pt;}
.h19{height:46.432000pt;}
.h8{height:50.326250pt;}
.h9{height:52.138125pt;}
.hb{height:52.834688pt;}
.h2{height:58.563750pt;}
.h6{height:59.268125pt;}
.h1c{height:60.000000pt;}
.h1d{height:60.032000pt;}
.h16{height:61.920000pt;}
.h12{height:62.080000pt;}
.hd{height:74.477812pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.000000pt;}
.w3d{width:54.080000pt;}
.w42{width:55.200000pt;}
.w3a{width:55.360000pt;}
.w43{width:55.520000pt;}
.w3b{width:55.872000pt;}
.w27{width:60.800000pt;}
.w3c{width:61.920000pt;}
.w41{width:62.720000pt;}
.w38{width:63.072000pt;}
.w39{width:63.200000pt;}
.w4a{width:72.320000pt;}
.w1f{width:72.512000pt;}
.w1e{width:75.200000pt;}
.w3f{width:76.000000pt;}
.w40{width:76.352000pt;}
.w36{width:76.672000pt;}
.w37{width:76.960000pt;}
.w45{width:79.680000pt;}
.w3e{width:82.240000pt;}
.w49{width:84.160000pt;}
.w44{width:85.152000pt;}
.we{width:85.312000pt;}
.w28{width:88.640000pt;}
.w18{width:89.600000pt;}
.wf{width:89.632000pt;}
.wc{width:94.560000pt;}
.w14{width:98.240000pt;}
.w1b{width:105.952000pt;}
.w2c{width:113.120000pt;}
.w20{width:113.440000pt;}
.w1c{width:113.920000pt;}
.w1a{width:115.552000pt;}
.w12{width:119.072000pt;}
.w2d{width:121.120000pt;}
.w7{width:121.152000pt;}
.w13{width:123.872000pt;}
.w32{width:128.352000pt;}
.w35{width:128.640000pt;}
.w8{width:129.440000pt;}
.w31{width:132.480000pt;}
.w22{width:135.386667pt;}
.w25{width:135.706667pt;}
.w23{width:139.866667pt;}
.w26{width:140.026667pt;}
.w2e{width:140.826667pt;}
.w48{width:141.786667pt;}
.w2a{width:142.266667pt;}
.wa{width:143.066667pt;}
.w2b{width:146.586667pt;}
.wb{width:147.706667pt;}
.w16{width:148.826667pt;}
.w46{width:150.080000pt;}
.w17{width:152.986667pt;}
.w10{width:153.760000pt;}
.w6{width:159.066667pt;}
.w34{width:172.506667pt;}
.w30{width:177.306667pt;}
.w47{width:190.146667pt;}
.w2f{width:200.026667pt;}
.w33{width:205.786667pt;}
.w24{width:213.306667pt;}
.w5{width:229.466667pt;}
.w29{width:236.986667pt;}
.w15{width:247.866667pt;}
.w9{width:253.946667pt;}
.w21{width:274.426667pt;}
.w11{width:298.106667pt;}
.w19{width:303.706667pt;}
.wd{width:310.586667pt;}
.w1d{width:378.146667pt;}
.w4{width:639.680000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:6.880000pt;}
.xf{left:9.632000pt;}
.xe{left:19.520000pt;}
.x2{left:75.551988pt;}
.x4{left:78.111988pt;}
.x22{left:89.946667pt;}
.x23{left:93.306667pt;}
.x3{left:98.271988pt;}
.x41{left:139.386655pt;}
.x33{left:145.306655pt;}
.x30{left:153.466655pt;}
.x18{left:159.226655pt;}
.x20{left:163.546655pt;}
.x2d{left:189.146655pt;}
.xa{left:190.106655pt;}
.x13{left:193.146655pt;}
.x3b{left:196.026655pt;}
.x3c{left:198.106667pt;}
.x26{left:200.666655pt;}
.x42{left:205.626667pt;}
.x7{left:209.146655pt;}
.x1c{left:217.466655pt;}
.x29{left:224.506655pt;}
.x4f{left:227.066667pt;}
.x8{left:235.706655pt;}
.x6{left:263.266655pt;}
.x38{left:269.026655pt;}
.x9{left:272.226655pt;}
.x43{left:282.946667pt;}
.x34{left:290.466667pt;}
.x5{left:292.866655pt;}
.x15{left:306.466667pt;}
.x49{left:312.866667pt;}
.x39{left:314.146667pt;}
.x54{left:322.306655pt;}
.x27{left:324.866667pt;}
.x19{left:330.946667pt;}
.x3f{left:338.626667pt;}
.x3d{left:339.586667pt;}
.x11{left:344.226655pt;}
.x10{left:346.786655pt;}
.x31{left:351.426667pt;}
.x53{left:353.026655pt;}
.x44{left:360.546667pt;}
.xb{left:363.746655pt;}
.x12{left:367.586655pt;}
.x21{left:375.106667pt;}
.x4a{left:376.226667pt;}
.x2a{left:380.866667pt;}
.x1d{left:387.586667pt;}
.xc{left:396.893322pt;}
.x50{left:418.013333pt;}
.x45{left:424.413333pt;}
.x35{left:426.813333pt;}
.x4b{left:439.933333pt;}
.x2e{left:455.133333pt;}
.x3a{left:457.053333pt;}
.x16{left:466.173333pt;}
.x1e{left:473.533333pt;}
.x1a{left:474.653333pt;}
.x32{left:487.453333pt;}
.x46{left:488.413333pt;}
.x24{left:494.813333pt;}
.x4c{left:495.773333pt;}
.x2b{left:497.053333pt;}
.x2f{left:530.973333pt;}
.x3e{left:540.253333pt;}
.x40{left:545.053333pt;}
.x4d{left:552.093333pt;}
.x51{left:560.453333pt;}
.x1f{left:563.813333pt;}
.x36{left:567.493333pt;}
.x17{left:588.133333pt;}
.x47{left:600.933333pt;}
.x2c{left:603.653333pt;}
.x25{left:619.333333pt;}
.x1b{left:623.013333pt;}
.x28{left:627.973333pt;}
.x37{left:628.933333pt;}
.x4e{left:637.893333pt;}
.x52{left:645.253333pt;}
.x48{left:663.493333pt;}
.x1{left:718.053322pt;}
.xd{left:720.320000pt;}
}




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