
    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_da7992b3fa76161fd66374e2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d231019c68802fdafa70417e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5f8671f07ced5b74ba5a9de7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5fef77d89a02b2174c42165.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1eac889b5fe313370f40d79b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9bbf248b08654c8d95b2aea7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.887695;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_d987217f0319743fdafdcc77.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1bb351fec73e87b531b7d782.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vb{vertical-align:-73.440000px;}
.v4{vertical-align:-70.560000px;}
.v8{vertical-align:-69.300000px;}
.ve{vertical-align:-61.920000px;}
.vc{vertical-align:-54.000000px;}
.v7{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v5{vertical-align:-9.360000px;}
.vd{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:9.360000px;}
.va{vertical-align:20.880000px;}
.v6{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.v2{vertical-align:30.240000px;}
.ls2d{letter-spacing:-1.662000px;}
.ls2e{letter-spacing:-0.942000px;}
.ls2c{letter-spacing:-0.768000px;}
.ls21{letter-spacing:-0.666000px;}
.ls10{letter-spacing:-0.540000px;}
.ls18{letter-spacing:-0.538800px;}
.ls1c{letter-spacing:-0.513600px;}
.ls23{letter-spacing:-0.504000px;}
.ls19{letter-spacing:-0.460200px;}
.ls28{letter-spacing:-0.450600px;}
.lsd{letter-spacing:-0.360000px;}
.ls2b{letter-spacing:-0.269400px;}
.ls12{letter-spacing:-0.223800px;}
.ls22{letter-spacing:-0.206400px;}
.ls1b{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.012960px;}
.ls25{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.126000px;}
.ls26{letter-spacing:0.152640px;}
.ls3{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.259920px;}
.ls27{letter-spacing:0.269400px;}
.ls16{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.315360px;}
.ls0{letter-spacing:0.360000px;}
.ls2a{letter-spacing:0.450600px;}
.lsa{letter-spacing:0.493800px;}
.ls17{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.774000px;}
.ls13{letter-spacing:0.828000px;}
.ls1f{letter-spacing:0.924000px;}
.ls1d{letter-spacing:1.620000px;}
.ls5{letter-spacing:2.340000px;}
.ls29{letter-spacing:2.880000px;}
.ls20{letter-spacing:8.640000px;}
.ls11{letter-spacing:8.820000px;}
.ls8{letter-spacing:13.140000px;}
.ls6{letter-spacing:15.480000px;}
.ls4{letter-spacing:66.240000px;}
.ls24{letter-spacing:90.000000px;}
.ls1e{letter-spacing:93.060000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd{word-spacing:-54.000000px;}
.ws6{word-spacing:-27.000000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.865400px;}
.ws1a{word-spacing:-15.864000px;}
.ws13{word-spacing:-15.714000px;}
.wsf{word-spacing:-15.300000px;}
.ws18{word-spacing:-15.238800px;}
.ws16{word-spacing:-15.146400px;}
.ws12{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.ws17{word-spacing:-14.886720px;}
.ws1c{word-spacing:-14.733600px;}
.ws1f{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.479800px;}
.ws19{word-spacing:-14.426400px;}
.ws0{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.626000px;}
.ws9{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsc{word-spacing:-13.140000px;}
.ws1d{word-spacing:-12.996000px;}
.ws21{word-spacing:-12.510600px;}
.ws3{word-spacing:-12.420000px;}
.ws1e{word-spacing:-12.060000px;}
.ws11{word-spacing:-11.836200px;}
.ws22{word-spacing:-11.790600px;}
.ws20{word-spacing:-11.700000px;}
.ws14{word-spacing:-11.521200px;}
.ws23{word-spacing:-11.292000px;}
.ws2{word-spacing:-10.933800px;}
.ws1{word-spacing:-10.440000px;}
.ws24{word-spacing:-10.398000px;}
.ws7{word-spacing:-9.720000px;}
.ws1b{word-spacing:-9.000000px;}
.ws8{word-spacing:-7.560000px;}
.ws10{word-spacing:0.000000px;}
._18{margin-left:-6.500160px;}
._1e{margin-left:-2.183280px;}
._1{margin-left:-1.164480px;}
._0{width:1.586880px;}
._2{width:2.757120px;}
._a{width:3.888000px;}
._9{width:5.064960px;}
._10{width:6.116640px;}
._4{width:7.128000px;}
._f{width:8.265360px;}
._e{width:9.351120px;}
._b{width:10.638000px;}
._c{width:11.718000px;}
._13{width:13.255680px;}
._8{width:14.568720px;}
._d{width:15.660000px;}
._11{width:16.697280px;}
._14{width:18.417360px;}
._17{width:19.545600px;}
._19{width:21.513600px;}
._15{width:23.485680px;}
._16{width:24.886800px;}
._24{width:47.874000px;}
._20{width:51.134400px;}
._21{width:52.629840px;}
._1d{width:61.843680px;}
._1f{width:65.979840px;}
._7{width:67.307040px;}
._5{width:80.352000px;}
._6{width:81.756000px;}
._1b{width:83.452320px;}
._1c{width:84.665520px;}
._22{width:106.531440px;}
._23{width:108.057600px;}
._1a{width:250.882080px;}
._12{width:1834.296000px;}
._3{width:2055.355680px;}
.fc8{color:rgb(0,0,255);}
.fc7{color:transparent;}
.fc6{color:rgb(3,50,255);}
.fc3{color:rgb(255,0,0);}
.fc5{color:rgb(166,166,166);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(13,13,13);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:12.240000px;}
.fsb{font-size:18.000000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fsc{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fsd{font-size:84.240000px;}
.fse{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y166{bottom:2.865000px;}
.ye5{bottom:2.880000px;}
.y167{bottom:4.125000px;}
.y47{bottom:4.320000px;}
.y169{bottom:4.665000px;}
.y16d{bottom:4.680000px;}
.ye8{bottom:5.400000px;}
.y29{bottom:5.580000px;}
.y18e{bottom:5.940000px;}
.y190{bottom:8.100000px;}
.y10e{bottom:8.280000px;}
.y123{bottom:8.445000px;}
.y11a{bottom:8.820000px;}
.y110{bottom:9.000000px;}
.y120{bottom:9.165000px;}
.y113{bottom:9.180000px;}
.y11e{bottom:9.345000px;}
.y111{bottom:9.360000px;}
.ye6{bottom:10.620000px;}
.y163{bottom:11.865000px;}
.y46{bottom:18.180000px;}
.y165{bottom:18.345000px;}
.y10d{bottom:18.360000px;}
.ye4{bottom:18.540000px;}
.y87{bottom:18.900000px;}
.y4a{bottom:19.260000px;}
.y28{bottom:19.440000px;}
.y3{bottom:19.800000px;}
.y10a{bottom:23.760000px;}
.y27{bottom:27.000000px;}
.y162{bottom:27.345000px;}
.y2{bottom:33.840000px;}
.y10c{bottom:34.020000px;}
.y109{bottom:39.420000px;}
.y26{bottom:42.480000px;}
.y1{bottom:46.620000px;}
.y25{bottom:58.140000px;}
.y171{bottom:70.380000px;}
.y1c0{bottom:71.280000px;}
.y232{bottom:72.360000px;}
.y24{bottom:73.650000px;}
.y1fe{bottom:75.240000px;}
.y101{bottom:75.600000px;}
.yc3{bottom:81.900000px;}
.y12c{bottom:82.080000px;}
.y84{bottom:82.260000px;}
.y170{bottom:84.240000px;}
.y1bf{bottom:85.140000px;}
.y44{bottom:86.040000px;}
.y189{bottom:87.480000px;}
.y231{bottom:87.840000px;}
.y1fd{bottom:89.100000px;}
.y23{bottom:89.130000px;}
.y100{bottom:92.880000px;}
.y16f{bottom:95.760000px;}
.y12b{bottom:98.640000px;}
.yc2{bottom:99.180000px;}
.y83{bottom:99.540000px;}
.y1fc{bottom:102.960000px;}
.y230{bottom:103.320000px;}
.y22{bottom:104.610000px;}
.y188{bottom:104.760000px;}
.y1be{bottom:104.940000px;}
.y43{bottom:105.840000px;}
.yff{bottom:109.800000px;}
.y12a{bottom:112.320000px;}
.y16e{bottom:114.120000px;}
.yc1{bottom:116.100000px;}
.y82{bottom:116.820000px;}
.y1bd{bottom:118.620000px;}
.y22f{bottom:118.800000px;}
.y21{bottom:120.270000px;}
.y1fb{bottom:122.760000px;}
.y129{bottom:124.020000px;}
.y42{bottom:125.640000px;}
.yfe{bottom:127.080000px;}
.y16c{bottom:132.480000px;}
.yc0{bottom:133.380000px;}
.y81{bottom:134.100000px;}
.y22e{bottom:134.280000px;}
.y20{bottom:135.750000px;}
.y1fa{bottom:136.440000px;}
.y1bc{bottom:138.420000px;}
.y187{bottom:138.780000px;}
.yfd{bottom:144.720000px;}
.y41{bottom:145.620000px;}
.y22d{bottom:149.976000px;}
.ybf{bottom:150.870000px;}
.y16b{bottom:150.885000px;}
.y80{bottom:151.050000px;}
.y1f{bottom:151.230000px;}
.y128{bottom:151.425000px;}
.y1bb{bottom:152.310000px;}
.y2b{bottom:155.010000px;}
.y186{bottom:155.730000px;}
.y1f9{bottom:156.270000px;}
.yfc{bottom:161.850000px;}
.y40{bottom:165.450000px;}
.y1ba{bottom:166.170000px;}
.y1e{bottom:166.710000px;}
.ybe{bottom:168.150000px;}
.y7f{bottom:168.510000px;}
.y16a{bottom:169.245000px;}
.y185{bottom:169.770000px;}
.y1f8{bottom:170.130000px;}
.y127{bottom:178.965000px;}
.yfb{bottom:179.130000px;}
.y22c{bottom:180.930000px;}
.y184{bottom:182.190000px;}
.y1d{bottom:182.370000px;}
.y3f{bottom:185.250000px;}
.ybd{bottom:185.430000px;}
.y7e{bottom:185.790000px;}
.y1b9{bottom:185.970000px;}
.y168{bottom:187.605000px;}
.y1f7{bottom:189.930000px;}
.yfa{bottom:196.410000px;}
.y1c{bottom:197.850000px;}
.y1b8{bottom:199.650000px;}
.ybc{bottom:202.710000px;}
.y7d{bottom:203.070000px;}
.y1f6{bottom:203.790000px;}
.y3e{bottom:205.050000px;}
.y126{bottom:206.325000px;}
.y161{bottom:206.685000px;}
.y1b{bottom:213.330000px;}
.y1b7{bottom:213.510000px;}
.yf9{bottom:213.690000px;}
.ybb{bottom:219.990000px;}
.y7c{bottom:220.350000px;}
.y1f5{bottom:223.590000px;}
.y164{bottom:224.505000px;}
.y3d{bottom:224.850000px;}
.y22b{bottom:227.550000px;}
.y1b6{bottom:228.090000px;}
.y1a{bottom:228.810000px;}
.yf8{bottom:230.970000px;}
.y125{bottom:233.865000px;}
.yba{bottom:237.270000px;}
.y7b{bottom:237.630000px;}
.y22a{bottom:243.030000px;}
.y19{bottom:244.470000px;}
.y3c{bottom:244.830000px;}
.y1b5{bottom:247.350000px;}
.yf7{bottom:247.890000px;}
.y1f4{bottom:251.130000px;}
.yb9{bottom:254.370000px;}
.y7a{bottom:254.910000px;}
.y18{bottom:259.950000px;}
.y124{bottom:261.225000px;}
.y3b{bottom:264.630000px;}
.yf6{bottom:264.990000px;}
.y1b4{bottom:270.030000px;}
.y1f3{bottom:270.930000px;}
.yb8{bottom:271.290000px;}
.y79{bottom:272.010000px;}
.y17{bottom:275.430000px;}
.y160{bottom:277.590000px;}
.yf5{bottom:282.630000px;}
.y3a{bottom:284.430000px;}
.y1f2{bottom:284.790000px;}
.y229{bottom:286.050000px;}
.yb7{bottom:288.570000px;}
.y78{bottom:288.930000px;}
.y122{bottom:289.485000px;}
.y1b3{bottom:295.230000px;}
.y16{bottom:297.390000px;}
.y15f{bottom:297.930000px;}
.yf4{bottom:299.910000px;}
.y39{bottom:304.230000px;}
.y1f1{bottom:304.590000px;}
.yb6{bottom:306.210000px;}
.y228{bottom:307.650000px;}
.y2a{bottom:309.990000px;}
.y1b2{bottom:312.330000px;}
.y15e{bottom:315.210000px;}
.yf3{bottom:317.190000px;}
.y121{bottom:317.565000px;}
.y1f0{bottom:318.270000px;}
.yb5{bottom:323.490000px;}
.y77{bottom:323.850000px;}
.y38{bottom:324.030000px;}
.y227{bottom:329.070000px;}
.y1b1{bottom:329.970000px;}
.y15d{bottom:332.490000px;}
.yf2{bottom:334.470000px;}
.y1ef{bottom:338.070000px;}
.yb4{bottom:340.770000px;}
.y76{bottom:341.130000px;}
.y37{bottom:344.010000px;}
.y11f{bottom:345.105000px;}
.y1b0{bottom:347.250000px;}
.y15c{bottom:349.770000px;}
.y226{bottom:350.670000px;}
.yf1{bottom:351.750000px;}
.y1ee{bottom:351.930000px;}
.yb3{bottom:357.870000px;}
.y75{bottom:358.230000px;}
.y36{bottom:363.810000px;}
.y1af{bottom:364.530000px;}
.y15b{bottom:366.870000px;}
.yf0{bottom:368.850000px;}
.y1ed{bottom:371.730000px;}
.y225{bottom:372.270000px;}
.y11d{bottom:372.465000px;}
.y74{bottom:375.150000px;}
.y1ae{bottom:381.450000px;}
.y35{bottom:383.610000px;}
.y15a{bottom:384.150000px;}
.y1ec{bottom:385.590000px;}
.yb2{bottom:392.430000px;}
.y73{bottom:392.790000px;}
.y224{bottom:393.690000px;}
.y1ad{bottom:398.955000px;}
.y11c{bottom:400.035000px;}
.y159{bottom:401.475000px;}
.yef{bottom:403.095000px;}
.y34{bottom:403.455000px;}
.y1eb{bottom:405.435000px;}
.yb1{bottom:409.755000px;}
.y72{bottom:410.115000px;}
.y223{bottom:415.335000px;}
.y1ac{bottom:416.235000px;}
.y158{bottom:418.755000px;}
.y1ea{bottom:419.115000px;}
.y33{bottom:423.255000px;}
.yee{bottom:425.235000px;}
.yb0{bottom:427.035000px;}
.y71{bottom:427.395000px;}
.yed{bottom:431.535000px;}
.y1ab{bottom:433.155000px;}
.y157{bottom:436.035000px;}
.y222{bottom:436.755000px;}
.y1e9{bottom:438.915000px;}
.y32{bottom:443.235000px;}
.yaf{bottom:444.315000px;}
.y70{bottom:444.675000px;}
.y1aa{bottom:450.795000px;}
.yec{bottom:451.155000px;}
.y1e8{bottom:452.775000px;}
.y156{bottom:453.315000px;}
.y11b{bottom:454.935000px;}
.y221{bottom:458.355000px;}
.yae{bottom:461.415000px;}
.y6f{bottom:461.775000px;}
.y31{bottom:463.035000px;}
.y1e7{bottom:466.635000px;}
.y1a9{bottom:468.075000px;}
.y155{bottom:470.415000px;}
.yeb{bottom:470.955000px;}
.y183{bottom:477.075000px;}
.y6e{bottom:478.695000px;}
.y220{bottom:479.955000px;}
.y30{bottom:482.835000px;}
.y119{bottom:483.195000px;}
.y1a8{bottom:484.815000px;}
.y1e6{bottom:486.435000px;}
.y154{bottom:487.695000px;}
.yea{bottom:490.755000px;}
.y6d{bottom:495.975000px;}
.y1e5{bottom:500.115000px;}
.y182{bottom:500.295000px;}
.y1a7{bottom:501.195000px;}
.y21f{bottom:501.375000px;}
.y2f{bottom:502.635000px;}
.y153{bottom:504.975000px;}
.ye9{bottom:510.375000px;}
.y118{bottom:511.275000px;}
.yad{bottom:513.255000px;}
.y6c{bottom:513.615000px;}
.y1a6{bottom:514.515000px;}
.y181{bottom:517.395000px;}
.y1e4{bottom:519.915000px;}
.y152{bottom:522.255000px;}
.y2e{bottom:522.435000px;}
.y21e{bottom:522.975000px;}
.yac{bottom:530.175000px;}
.y6b{bottom:530.895000px;}
.y1a5{bottom:531.795000px;}
.y1e3{bottom:533.775000px;}
.y180{bottom:534.675000px;}
.y117{bottom:538.815000px;}
.y151{bottom:539.535000px;}
.y2d{bottom:542.055000px;}
.y21d{bottom:544.395000px;}
.yab{bottom:547.635000px;}
.y6a{bottom:548.175000px;}
.y1a4{bottom:549.075000px;}
.ye7{bottom:549.795000px;}
.y17f{bottom:551.955000px;}
.y1e2{bottom:553.575000px;}
.y150{bottom:556.635000px;}
.y2c{bottom:562.215000px;}
.yaa{bottom:564.915000px;}
.y69{bottom:565.275000px;}
.y1a3{bottom:565.995000px;}
.y116{bottom:566.175000px;}
.y1e1{bottom:567.435000px;}
.y17e{bottom:569.235000px;}
.ye3{bottom:570.315000px;}
.y14f{bottom:573.915000px;}
.y15{bottom:575.895000px;}
.ya9{bottom:582.195000px;}
.y68{bottom:584.715000px;}
.y17d{bottom:586.515000px;}
.y1e0{bottom:587.235000px;}
.y21c{bottom:587.415000px;}
.y14e{bottom:591.195000px;}
.y115{bottom:593.715000px;}
.y1a2{bottom:595.695000px;}
.ya8{bottom:599.475000px;}
.y1df{bottom:600.915000px;}
.y17c{bottom:603.795000px;}
.y67{bottom:604.515000px;}
.ye2{bottom:605.955000px;}
.y14d{bottom:608.475000px;}
.y21b{bottom:609.015000px;}
.y1a1{bottom:612.975000px;}
.ya7{bottom:616.755000px;}
.y1de{bottom:620.715000px;}
.y17b{bottom:620.895000px;}
.y114{bottom:621.075000px;}
.ye1{bottom:623.055000px;}
.y66{bottom:624.315000px;}
.y14c{bottom:625.755000px;}
.y21a{bottom:627.375000px;}
.ya6{bottom:634.035000px;}
.y1dd{bottom:634.575000px;}
.y17a{bottom:638.175000px;}
.ye0{bottom:640.335000px;}
.y14b{bottom:643.035000px;}
.y65{bottom:644.115000px;}
.y1a0{bottom:646.995000px;}
.y219{bottom:647.175000px;}
.y1dc{bottom:648.465000px;}
.y112{bottom:648.645000px;}
.ya5{bottom:651.165000px;}
.y179{bottom:655.485000px;}
.ydf{bottom:657.645000px;}
.y14a{bottom:659.805000px;}
.y64{bottom:664.305000px;}
.y19f{bottom:666.645000px;}
.y218{bottom:667.185000px;}
.y1db{bottom:668.265000px;}
.ya4{bottom:668.445000px;}
.y178{bottom:672.765000px;}
.yde{bottom:674.925000px;}
.y10f{bottom:676.725000px;}
.y149{bottom:677.085000px;}
.y1da{bottom:681.945000px;}
.y63{bottom:684.285000px;}
.ya3{bottom:685.725000px;}
.y217{bottom:686.985000px;}
.y19e{bottom:689.145000px;}
.y177{bottom:690.045000px;}
.ydd{bottom:692.205000px;}
.y148{bottom:694.725000px;}
.y1d9{bottom:701.745000px;}
.ya2{bottom:703.005000px;}
.y62{bottom:704.085000px;}
.y108{bottom:704.985000px;}
.y216{bottom:706.785000px;}
.y176{bottom:707.145000px;}
.ydc{bottom:709.485000px;}
.y147{bottom:712.005000px;}
.y19d{bottom:714.705000px;}
.y1d8{bottom:715.605000px;}
.ya1{bottom:720.285000px;}
.y61{bottom:723.885000px;}
.y175{bottom:724.425000px;}
.ydb{bottom:726.585000px;}
.y146{bottom:729.285000px;}
.y1d7{bottom:729.465000px;}
.y10b{bottom:731.265000px;}
.y19c{bottom:734.505000px;}
.ya0{bottom:737.565000px;}
.y60{bottom:743.685000px;}
.yda{bottom:743.865000px;}
.y215{bottom:746.385000px;}
.y145{bottom:746.565000px;}
.y1d6{bottom:749.265000px;}
.y19b{bottom:754.305000px;}
.y9f{bottom:754.665000px;}
.y174{bottom:759.705000px;}
.yd9{bottom:761.145000px;}
.y1d5{bottom:762.945000px;}
.y5f{bottom:763.485000px;}
.y144{bottom:763.665000px;}
.y214{bottom:766.365000px;}
.y9e{bottom:771.945000px;}
.y19a{bottom:774.105000px;}
.y1d4{bottom:776.805000px;}
.yd8{bottom:778.425000px;}
.y173{bottom:779.145000px;}
.y143{bottom:780.945000px;}
.y107{bottom:782.385000px;}
.y5e{bottom:783.465000px;}
.y213{bottom:786.165000px;}
.y9d{bottom:789.225000px;}
.y172{bottom:791.385000px;}
.y199{bottom:794.085000px;}
.yd7{bottom:795.705000px;}
.y1d3{bottom:796.605000px;}
.y142{bottom:798.225000px;}
.y106{bottom:799.665000px;}
.y5d{bottom:803.265000px;}
.y212{bottom:805.965000px;}
.y9c{bottom:806.505000px;}
.y1d2{bottom:810.285000px;}
.yd6{bottom:812.805000px;}
.y198{bottom:813.885000px;}
.y141{bottom:815.505000px;}
.y105{bottom:818.205000px;}
.y5c{bottom:823.065000px;}
.y9b{bottom:823.785000px;}
.y211{bottom:825.765000px;}
.yd5{bottom:830.085000px;}
.y140{bottom:832.785000px;}
.y197{bottom:833.685000px;}
.y9a{bottom:840.885000px;}
.y5b{bottom:842.865000px;}
.y1d1{bottom:843.945000px;}
.y210{bottom:845.565000px;}
.yd4{bottom:847.005000px;}
.y13f{bottom:849.885000px;}
.y196{bottom:853.485000px;}
.y99{bottom:858.165000px;}
.y5a{bottom:862.665000px;}
.y1d0{bottom:863.745000px;}
.yd3{bottom:864.285000px;}
.y20f{bottom:865.545000px;}
.y13e{bottom:867.165000px;}
.y195{bottom:871.665000px;}
.y98{bottom:875.445000px;}
.y1cf{bottom:877.605000px;}
.yd2{bottom:881.925000px;}
.y59{bottom:882.645000px;}
.y13d{bottom:884.445000px;}
.y20e{bottom:885.345000px;}
.y194{bottom:891.285000px;}
.y14{bottom:891.645000px;}
.y97{bottom:892.365000px;}
.y104{bottom:892.725000px;}
.yd1{bottom:899.250000px;}
.y13c{bottom:901.770000px;}
.y58{bottom:902.490000px;}
.y20d{bottom:905.190000px;}
.y96{bottom:909.690000px;}
.y103{bottom:910.050000px;}
.y193{bottom:910.410000px;}
.y13{bottom:910.770000px;}
.y1ce{bottom:911.130000px;}
.yd0{bottom:916.350000px;}
.y13b{bottom:919.050000px;}
.y57{bottom:922.290000px;}
.y12{bottom:923.010000px;}
.y1cd{bottom:924.990000px;}
.y95{bottom:927.330000px;}
.ycf{bottom:933.630000px;}
.y11{bottom:933.810000px;}
.y192{bottom:935.790000px;}
.y13a{bottom:936.330000px;}
.y1cc{bottom:938.850000px;}
.y56{bottom:942.090000px;}
.y94{bottom:944.430000px;}
.y20c{bottom:944.790000px;}
.y10{bottom:947.670000px;}
.yce{bottom:950.910000px;}
.y191{bottom:952.530000px;}
.y139{bottom:953.430000px;}
.yf{bottom:956.490000px;}
.y1cb{bottom:958.650000px;}
.y93{bottom:961.710000px;}
.y55{bottom:961.890000px;}
.y20b{bottom:964.770000px;}
.ye{bottom:968.190000px;}
.y138{bottom:970.710000px;}
.y1ca{bottom:972.330000px;}
.y18f{bottom:972.690000px;}
.y92{bottom:978.990000px;}
.y54{bottom:981.870000px;}
.y20a{bottom:984.570000px;}
.ycd{bottom:985.470000px;}
.y137{bottom:987.990000px;}
.yd{bottom:990.510000px;}
.y1c9{bottom:992.130000px;}
.y91{bottom:996.270000px;}
.y18d{bottom:997.710000px;}
.y53{bottom:1001.670000px;}
.ycc{bottom:1002.390000px;}
.y136{bottom:1005.270000px;}
.y1c8{bottom:1005.990000px;}
.y209{bottom:1007.250000px;}
.yc{bottom:1010.670000px;}
.y90{bottom:1013.550000px;}
.y18c{bottom:1019.310000px;}
.y208{bottom:1020.930000px;}
.y52{bottom:1021.470000px;}
.y135{bottom:1022.550000px;}
.y1c7{bottom:1025.790000px;}
.y8f{bottom:1030.830000px;}
.y207{bottom:1034.790000px;}
.ycb{bottom:1037.130000px;}
.y1c6{bottom:1039.650000px;}
.y134{bottom:1039.830000px;}
.y51{bottom:1041.270000px;}
.yb{bottom:1041.630000px;}
.y8e{bottom:1047.930000px;}
.y18b{bottom:1050.090000px;}
.yca{bottom:1054.410000px;}
.y206{bottom:1054.590000px;}
.y133{bottom:1056.930000px;}
.y1c5{bottom:1059.450000px;}
.y50{bottom:1061.070000px;}
.y8d{bottom:1065.210000px;}
.y205{bottom:1068.450000px;}
.y18a{bottom:1068.630000px;}
.yc9{bottom:1071.690000px;}
.ya{bottom:1072.770000px;}
.y1c4{bottom:1073.130000px;}
.y132{bottom:1074.210000px;}
.y4f{bottom:1081.050000px;}
.y204{bottom:1082.130000px;}
.y8c{bottom:1082.490000px;}
.y1c3{bottom:1086.990000px;}
.yc8{bottom:1088.970000px;}
.y131{bottom:1091.490000px;}
.y8b{bottom:1099.770000px;}
.y4e{bottom:1100.850000px;}
.y9{bottom:1101.210000px;}
.y203{bottom:1101.930000px;}
.yc7{bottom:1106.250000px;}
.y1c2{bottom:1106.790000px;}
.y130{bottom:1108.770000px;}
.y45{bottom:1112.730000px;}
.y202{bottom:1115.790000px;}
.y8a{bottom:1117.050000px;}
.y8{bottom:1117.950000px;}
.y4d{bottom:1120.650000px;}
.yc6{bottom:1122.990000px;}
.y12f{bottom:1126.050000px;}
.y89{bottom:1134.330000px;}
.y201{bottom:1135.590000px;}
.yc5{bottom:1140.270000px;}
.y4c{bottom:1140.450000px;}
.y12e{bottom:1143.330000px;}
.y200{bottom:1149.480000px;}
.y88{bottom:1151.100000px;}
.y102{bottom:1151.460000px;}
.y1c1{bottom:1154.160000px;}
.y7{bottom:1155.960000px;}
.yc4{bottom:1159.920000px;}
.y4b{bottom:1160.280000px;}
.y12d{bottom:1160.460000px;}
.y1ff{bottom:1163.160000px;}
.y6{bottom:1167.480000px;}
.y86{bottom:1169.460000px;}
.y5{bottom:1175.940000px;}
.y49{bottom:1178.460000px;}
.y85{bottom:1188.720000px;}
.y4{bottom:1197.540000px;}
.y48{bottom:1197.720000px;}
.h6{height:5.650313px;}
.he{height:12.012891px;}
.h2e{height:17.085000px;}
.h10{height:18.140625px;}
.h2f{height:18.345000px;}
.h31{height:18.358500px;}
.h30{height:18.396000px;}
.h1c{height:19.605000px;}
.h1a{height:19.785000px;}
.h36{height:20.145000px;}
.h34{height:20.865000px;}
.h35{height:25.005000px;}
.h22{height:25.560000px;}
.h33{height:26.265000px;}
.h27{height:27.345000px;}
.h24{height:27.360000px;}
.h2a{height:27.396000px;}
.h28{height:27.525000px;}
.h23{height:27.540000px;}
.h29{height:27.561000px;}
.h26{height:27.570000px;}
.h14{height:27.705000px;}
.hd{height:29.664141px;}
.h1d{height:29.678906px;}
.h2d{height:30.945000px;}
.h19{height:31.125000px;}
.hc{height:36.281250px;}
.h3{height:40.985156px;}
.h38{height:42.086250px;}
.h15{height:42.922699px;}
.h21{height:46.620000px;}
.h7{height:47.344922px;}
.h4{height:48.616875px;}
.h2c{height:48.765000px;}
.h2b{height:50.558906px;}
.h2{height:52.998047px;}
.h8{height:54.421875px;}
.h12{height:55.503472px;}
.h17{height:58.621992px;}
.h13{height:58.651172px;}
.h1b{height:59.092031px;}
.h25{height:60.041250px;}
.h9{height:60.226875px;}
.h1f{height:65.010937px;}
.h18{height:65.518594px;}
.hb{height:66.543750px;}
.h11{height:66.757500px;}
.h16{height:70.664062px;}
.h5{height:72.562500px;}
.h20{height:72.900000px;}
.h1e{height:82.676953px;}
.h32{height:84.898125px;}
.h37{height:96.508125px;}
.ha{height:108.843750px;}
.hf{height:309.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:101.730000px;}
.wc{width:108.021000px;}
.wb{width:111.636000px;}
.we{width:111.990000px;}
.wd{width:120.585000px;}
.w6{width:137.361000px;}
.w7{width:139.890000px;}
.w12{width:142.941000px;}
.w13{width:149.610000px;}
.w11{width:154.830000px;}
.w9{width:219.675000px;}
.w14{width:223.579500px;}
.w15{width:229.530000px;}
.w4{width:232.050000px;}
.wa{width:232.590000px;}
.w8{width:276.499500px;}
.w16{width:276.900000px;}
.wf{width:279.559500px;}
.w10{width:447.405000px;}
.w5{width:454.924500px;}
.w2{width:640.890000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.xc{left:-36.900000px;}
.xb{left:-19.800000px;}
.xa{left:-5.040000px;}
.x0{left:0.000000px;}
.x12{left:8.089500px;}
.x9{left:10.650000px;}
.x2a{left:17.625000px;}
.x1d{left:19.260000px;}
.x2c{left:21.600000px;}
.x2b{left:23.940000px;}
.x2d{left:25.020000px;}
.x8{left:26.850000px;}
.x21{left:29.520000px;}
.x17{left:32.205000px;}
.x18{left:33.480000px;}
.x19{left:34.590000px;}
.x1a{left:35.640000px;}
.x36{left:37.440000px;}
.x35{left:38.520000px;}
.x34{left:40.680000px;}
.x7{left:42.510000px;}
.x27{left:49.170000px;}
.x24{left:50.565000px;}
.x14{left:52.050000px;}
.x16{left:53.100000px;}
.x28{left:55.830000px;}
.x25{left:56.880000px;}
.x6{left:58.710000px;}
.x29{left:60.300000px;}
.x32{left:67.890000px;}
.x3e{left:72.540000px;}
.x30{left:73.830000px;}
.x1e{left:77.070000px;}
.x5{left:78.150000px;}
.x2{left:81.036000px;}
.x22{left:83.700000px;}
.x3b{left:89.670000px;}
.x1c{left:98.130000px;}
.x3c{left:100.620000px;}
.x2f{left:102.450000px;}
.x20{left:104.760000px;}
.xd{left:108.036000px;}
.x3f{left:113.076000px;}
.x3d{left:129.270000px;}
.x40{left:158.250000px;}
.x2e{left:212.115000px;}
.x39{left:302.475000px;}
.x1b{left:357.555000px;}
.xf{left:359.715000px;}
.x11{left:396.435000px;}
.x10{left:434.265000px;}
.x1{left:435.345000px;}
.x3{left:445.605000px;}
.x23{left:469.200000px;}
.x31{left:515.460000px;}
.x3a{left:532.020000px;}
.x13{left:533.820000px;}
.x1f{left:577.230000px;}
.xe{left:590.370000px;}
.x38{left:594.150000px;}
.x33{left:658.410000px;}
.x15{left:671.190000px;}
.x26{left:697.830000px;}
.x4{left:721.950000px;}
.x37{left:810.180000px;}
@media print{
.vb{vertical-align:-65.280000pt;}
.v4{vertical-align:-62.720000pt;}
.v8{vertical-align:-61.600000pt;}
.ve{vertical-align:-55.040000pt;}
.vc{vertical-align:-48.000000pt;}
.v7{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v5{vertical-align:-8.320000pt;}
.vd{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:8.320000pt;}
.va{vertical-align:18.560000pt;}
.v6{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.v2{vertical-align:26.880000pt;}
.ls2d{letter-spacing:-1.477333pt;}
.ls2e{letter-spacing:-0.837333pt;}
.ls2c{letter-spacing:-0.682667pt;}
.ls21{letter-spacing:-0.592000pt;}
.ls10{letter-spacing:-0.480000pt;}
.ls18{letter-spacing:-0.478933pt;}
.ls1c{letter-spacing:-0.456533pt;}
.ls23{letter-spacing:-0.448000pt;}
.ls19{letter-spacing:-0.409067pt;}
.ls28{letter-spacing:-0.400533pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2b{letter-spacing:-0.239467pt;}
.ls12{letter-spacing:-0.198933pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1b{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.011520pt;}
.ls25{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.112000pt;}
.ls26{letter-spacing:0.135680pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.231040pt;}
.ls27{letter-spacing:0.239467pt;}
.ls16{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.280320pt;}
.ls0{letter-spacing:0.320000pt;}
.ls2a{letter-spacing:0.400533pt;}
.lsa{letter-spacing:0.438933pt;}
.ls17{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.688000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls1f{letter-spacing:0.821333pt;}
.ls1d{letter-spacing:1.440000pt;}
.ls5{letter-spacing:2.080000pt;}
.ls29{letter-spacing:2.560000pt;}
.ls20{letter-spacing:7.680000pt;}
.ls11{letter-spacing:7.840000pt;}
.ls8{letter-spacing:11.680000pt;}
.ls6{letter-spacing:13.760000pt;}
.ls4{letter-spacing:58.880000pt;}
.ls24{letter-spacing:80.000000pt;}
.ls1e{letter-spacing:82.720000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws6{word-spacing:-24.000000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.991467pt;}
.ws1a{word-spacing:-14.101333pt;}
.ws13{word-spacing:-13.968000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws18{word-spacing:-13.545600pt;}
.ws16{word-spacing:-13.463467pt;}
.ws12{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.ws17{word-spacing:-13.232640pt;}
.ws1c{word-spacing:-13.096533pt;}
.ws1f{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.870933pt;}
.ws19{word-spacing:-12.823467pt;}
.ws0{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.112000pt;}
.ws9{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsc{word-spacing:-11.680000pt;}
.ws1d{word-spacing:-11.552000pt;}
.ws21{word-spacing:-11.120533pt;}
.ws3{word-spacing:-11.040000pt;}
.ws1e{word-spacing:-10.720000pt;}
.ws11{word-spacing:-10.521067pt;}
.ws22{word-spacing:-10.480533pt;}
.ws20{word-spacing:-10.400000pt;}
.ws14{word-spacing:-10.241067pt;}
.ws23{word-spacing:-10.037333pt;}
.ws2{word-spacing:-9.718933pt;}
.ws1{word-spacing:-9.280000pt;}
.ws24{word-spacing:-9.242667pt;}
.ws7{word-spacing:-8.640000pt;}
.ws1b{word-spacing:-8.000000pt;}
.ws8{word-spacing:-6.720000pt;}
.ws10{word-spacing:0.000000pt;}
._18{margin-left:-5.777920pt;}
._1e{margin-left:-1.940693pt;}
._1{margin-left:-1.035093pt;}
._0{width:1.410560pt;}
._2{width:2.450773pt;}
._a{width:3.456000pt;}
._9{width:4.502187pt;}
._10{width:5.437013pt;}
._4{width:6.336000pt;}
._f{width:7.346987pt;}
._e{width:8.312107pt;}
._b{width:9.456000pt;}
._c{width:10.416000pt;}
._13{width:11.782827pt;}
._8{width:12.949973pt;}
._d{width:13.920000pt;}
._11{width:14.842027pt;}
._14{width:16.370987pt;}
._17{width:17.373867pt;}
._19{width:19.123200pt;}
._15{width:20.876160pt;}
._16{width:22.121600pt;}
._24{width:42.554667pt;}
._20{width:45.452800pt;}
._21{width:46.782080pt;}
._1d{width:54.972160pt;}
._1f{width:58.648747pt;}
._7{width:59.828480pt;}
._5{width:71.424000pt;}
._6{width:72.672000pt;}
._1b{width:74.179840pt;}
._1c{width:75.258240pt;}
._22{width:94.694613pt;}
._23{width:96.051200pt;}
._1a{width:223.006293pt;}
._12{width:1630.485333pt;}
._3{width:1826.982827pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:10.880000pt;}
.fsb{font-size:16.000000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fsc{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fsd{font-size:74.880000pt;}
.fse{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y166{bottom:2.546667pt;}
.ye5{bottom:2.560000pt;}
.y167{bottom:3.666667pt;}
.y47{bottom:3.840000pt;}
.y169{bottom:4.146667pt;}
.y16d{bottom:4.160000pt;}
.ye8{bottom:4.800000pt;}
.y29{bottom:4.960000pt;}
.y18e{bottom:5.280000pt;}
.y190{bottom:7.200000pt;}
.y10e{bottom:7.360000pt;}
.y123{bottom:7.506667pt;}
.y11a{bottom:7.840000pt;}
.y110{bottom:8.000000pt;}
.y120{bottom:8.146667pt;}
.y113{bottom:8.160000pt;}
.y11e{bottom:8.306667pt;}
.y111{bottom:8.320000pt;}
.ye6{bottom:9.440000pt;}
.y163{bottom:10.546667pt;}
.y46{bottom:16.160000pt;}
.y165{bottom:16.306667pt;}
.y10d{bottom:16.320000pt;}
.ye4{bottom:16.480000pt;}
.y87{bottom:16.800000pt;}
.y4a{bottom:17.120000pt;}
.y28{bottom:17.280000pt;}
.y3{bottom:17.600000pt;}
.y10a{bottom:21.120000pt;}
.y27{bottom:24.000000pt;}
.y162{bottom:24.306667pt;}
.y2{bottom:30.080000pt;}
.y10c{bottom:30.240000pt;}
.y109{bottom:35.040000pt;}
.y26{bottom:37.760000pt;}
.y1{bottom:41.440000pt;}
.y25{bottom:51.680000pt;}
.y171{bottom:62.560000pt;}
.y1c0{bottom:63.360000pt;}
.y232{bottom:64.320000pt;}
.y24{bottom:65.466667pt;}
.y1fe{bottom:66.880000pt;}
.y101{bottom:67.200000pt;}
.yc3{bottom:72.800000pt;}
.y12c{bottom:72.960000pt;}
.y84{bottom:73.120000pt;}
.y170{bottom:74.880000pt;}
.y1bf{bottom:75.680000pt;}
.y44{bottom:76.480000pt;}
.y189{bottom:77.760000pt;}
.y231{bottom:78.080000pt;}
.y1fd{bottom:79.200000pt;}
.y23{bottom:79.226667pt;}
.y100{bottom:82.560000pt;}
.y16f{bottom:85.120000pt;}
.y12b{bottom:87.680000pt;}
.yc2{bottom:88.160000pt;}
.y83{bottom:88.480000pt;}
.y1fc{bottom:91.520000pt;}
.y230{bottom:91.840000pt;}
.y22{bottom:92.986667pt;}
.y188{bottom:93.120000pt;}
.y1be{bottom:93.280000pt;}
.y43{bottom:94.080000pt;}
.yff{bottom:97.600000pt;}
.y12a{bottom:99.840000pt;}
.y16e{bottom:101.440000pt;}
.yc1{bottom:103.200000pt;}
.y82{bottom:103.840000pt;}
.y1bd{bottom:105.440000pt;}
.y22f{bottom:105.600000pt;}
.y21{bottom:106.906667pt;}
.y1fb{bottom:109.120000pt;}
.y129{bottom:110.240000pt;}
.y42{bottom:111.680000pt;}
.yfe{bottom:112.960000pt;}
.y16c{bottom:117.760000pt;}
.yc0{bottom:118.560000pt;}
.y81{bottom:119.200000pt;}
.y22e{bottom:119.360000pt;}
.y20{bottom:120.666667pt;}
.y1fa{bottom:121.280000pt;}
.y1bc{bottom:123.040000pt;}
.y187{bottom:123.360000pt;}
.yfd{bottom:128.640000pt;}
.y41{bottom:129.440000pt;}
.y22d{bottom:133.312000pt;}
.ybf{bottom:134.106667pt;}
.y16b{bottom:134.120000pt;}
.y80{bottom:134.266667pt;}
.y1f{bottom:134.426667pt;}
.y128{bottom:134.600000pt;}
.y1bb{bottom:135.386667pt;}
.y2b{bottom:137.786667pt;}
.y186{bottom:138.426667pt;}
.y1f9{bottom:138.906667pt;}
.yfc{bottom:143.866667pt;}
.y40{bottom:147.066667pt;}
.y1ba{bottom:147.706667pt;}
.y1e{bottom:148.186667pt;}
.ybe{bottom:149.466667pt;}
.y7f{bottom:149.786667pt;}
.y16a{bottom:150.440000pt;}
.y185{bottom:150.906667pt;}
.y1f8{bottom:151.226667pt;}
.y127{bottom:159.080000pt;}
.yfb{bottom:159.226667pt;}
.y22c{bottom:160.826667pt;}
.y184{bottom:161.946667pt;}
.y1d{bottom:162.106667pt;}
.y3f{bottom:164.666667pt;}
.ybd{bottom:164.826667pt;}
.y7e{bottom:165.146667pt;}
.y1b9{bottom:165.306667pt;}
.y168{bottom:166.760000pt;}
.y1f7{bottom:168.826667pt;}
.yfa{bottom:174.586667pt;}
.y1c{bottom:175.866667pt;}
.y1b8{bottom:177.466667pt;}
.ybc{bottom:180.186667pt;}
.y7d{bottom:180.506667pt;}
.y1f6{bottom:181.146667pt;}
.y3e{bottom:182.266667pt;}
.y126{bottom:183.400000pt;}
.y161{bottom:183.720000pt;}
.y1b{bottom:189.626667pt;}
.y1b7{bottom:189.786667pt;}
.yf9{bottom:189.946667pt;}
.ybb{bottom:195.546667pt;}
.y7c{bottom:195.866667pt;}
.y1f5{bottom:198.746667pt;}
.y164{bottom:199.560000pt;}
.y3d{bottom:199.866667pt;}
.y22b{bottom:202.266667pt;}
.y1b6{bottom:202.746667pt;}
.y1a{bottom:203.386667pt;}
.yf8{bottom:205.306667pt;}
.y125{bottom:207.880000pt;}
.yba{bottom:210.906667pt;}
.y7b{bottom:211.226667pt;}
.y22a{bottom:216.026667pt;}
.y19{bottom:217.306667pt;}
.y3c{bottom:217.626667pt;}
.y1b5{bottom:219.866667pt;}
.yf7{bottom:220.346667pt;}
.y1f4{bottom:223.226667pt;}
.yb9{bottom:226.106667pt;}
.y7a{bottom:226.586667pt;}
.y18{bottom:231.066667pt;}
.y124{bottom:232.200000pt;}
.y3b{bottom:235.226667pt;}
.yf6{bottom:235.546667pt;}
.y1b4{bottom:240.026667pt;}
.y1f3{bottom:240.826667pt;}
.yb8{bottom:241.146667pt;}
.y79{bottom:241.786667pt;}
.y17{bottom:244.826667pt;}
.y160{bottom:246.746667pt;}
.yf5{bottom:251.226667pt;}
.y3a{bottom:252.826667pt;}
.y1f2{bottom:253.146667pt;}
.y229{bottom:254.266667pt;}
.yb7{bottom:256.506667pt;}
.y78{bottom:256.826667pt;}
.y122{bottom:257.320000pt;}
.y1b3{bottom:262.426667pt;}
.y16{bottom:264.346667pt;}
.y15f{bottom:264.826667pt;}
.yf4{bottom:266.586667pt;}
.y39{bottom:270.426667pt;}
.y1f1{bottom:270.746667pt;}
.yb6{bottom:272.186667pt;}
.y228{bottom:273.466667pt;}
.y2a{bottom:275.546667pt;}
.y1b2{bottom:277.626667pt;}
.y15e{bottom:280.186667pt;}
.yf3{bottom:281.946667pt;}
.y121{bottom:282.280000pt;}
.y1f0{bottom:282.906667pt;}
.yb5{bottom:287.546667pt;}
.y77{bottom:287.866667pt;}
.y38{bottom:288.026667pt;}
.y227{bottom:292.506667pt;}
.y1b1{bottom:293.306667pt;}
.y15d{bottom:295.546667pt;}
.yf2{bottom:297.306667pt;}
.y1ef{bottom:300.506667pt;}
.yb4{bottom:302.906667pt;}
.y76{bottom:303.226667pt;}
.y37{bottom:305.786667pt;}
.y11f{bottom:306.760000pt;}
.y1b0{bottom:308.666667pt;}
.y15c{bottom:310.906667pt;}
.y226{bottom:311.706667pt;}
.yf1{bottom:312.666667pt;}
.y1ee{bottom:312.826667pt;}
.yb3{bottom:318.106667pt;}
.y75{bottom:318.426667pt;}
.y36{bottom:323.386667pt;}
.y1af{bottom:324.026667pt;}
.y15b{bottom:326.106667pt;}
.yf0{bottom:327.866667pt;}
.y1ed{bottom:330.426667pt;}
.y225{bottom:330.906667pt;}
.y11d{bottom:331.080000pt;}
.y74{bottom:333.466667pt;}
.y1ae{bottom:339.066667pt;}
.y35{bottom:340.986667pt;}
.y15a{bottom:341.466667pt;}
.y1ec{bottom:342.746667pt;}
.yb2{bottom:348.826667pt;}
.y73{bottom:349.146667pt;}
.y224{bottom:349.946667pt;}
.y1ad{bottom:354.626667pt;}
.y11c{bottom:355.586667pt;}
.y159{bottom:356.866667pt;}
.yef{bottom:358.306667pt;}
.y34{bottom:358.626667pt;}
.y1eb{bottom:360.386667pt;}
.yb1{bottom:364.226667pt;}
.y72{bottom:364.546667pt;}
.y223{bottom:369.186667pt;}
.y1ac{bottom:369.986667pt;}
.y158{bottom:372.226667pt;}
.y1ea{bottom:372.546667pt;}
.y33{bottom:376.226667pt;}
.yee{bottom:377.986667pt;}
.yb0{bottom:379.586667pt;}
.y71{bottom:379.906667pt;}
.yed{bottom:383.586667pt;}
.y1ab{bottom:385.026667pt;}
.y157{bottom:387.586667pt;}
.y222{bottom:388.226667pt;}
.y1e9{bottom:390.146667pt;}
.y32{bottom:393.986667pt;}
.yaf{bottom:394.946667pt;}
.y70{bottom:395.266667pt;}
.y1aa{bottom:400.706667pt;}
.yec{bottom:401.026667pt;}
.y1e8{bottom:402.466667pt;}
.y156{bottom:402.946667pt;}
.y11b{bottom:404.386667pt;}
.y221{bottom:407.426667pt;}
.yae{bottom:410.146667pt;}
.y6f{bottom:410.466667pt;}
.y31{bottom:411.586667pt;}
.y1e7{bottom:414.786667pt;}
.y1a9{bottom:416.066667pt;}
.y155{bottom:418.146667pt;}
.yeb{bottom:418.626667pt;}
.y183{bottom:424.066667pt;}
.y6e{bottom:425.506667pt;}
.y220{bottom:426.626667pt;}
.y30{bottom:429.186667pt;}
.y119{bottom:429.506667pt;}
.y1a8{bottom:430.946667pt;}
.y1e6{bottom:432.386667pt;}
.y154{bottom:433.506667pt;}
.yea{bottom:436.226667pt;}
.y6d{bottom:440.866667pt;}
.y1e5{bottom:444.546667pt;}
.y182{bottom:444.706667pt;}
.y1a7{bottom:445.506667pt;}
.y21f{bottom:445.666667pt;}
.y2f{bottom:446.786667pt;}
.y153{bottom:448.866667pt;}
.ye9{bottom:453.666667pt;}
.y118{bottom:454.466667pt;}
.yad{bottom:456.226667pt;}
.y6c{bottom:456.546667pt;}
.y1a6{bottom:457.346667pt;}
.y181{bottom:459.906667pt;}
.y1e4{bottom:462.146667pt;}
.y152{bottom:464.226667pt;}
.y2e{bottom:464.386667pt;}
.y21e{bottom:464.866667pt;}
.yac{bottom:471.266667pt;}
.y6b{bottom:471.906667pt;}
.y1a5{bottom:472.706667pt;}
.y1e3{bottom:474.466667pt;}
.y180{bottom:475.266667pt;}
.y117{bottom:478.946667pt;}
.y151{bottom:479.586667pt;}
.y2d{bottom:481.826667pt;}
.y21d{bottom:483.906667pt;}
.yab{bottom:486.786667pt;}
.y6a{bottom:487.266667pt;}
.y1a4{bottom:488.066667pt;}
.ye7{bottom:488.706667pt;}
.y17f{bottom:490.626667pt;}
.y1e2{bottom:492.066667pt;}
.y150{bottom:494.786667pt;}
.y2c{bottom:499.746667pt;}
.yaa{bottom:502.146667pt;}
.y69{bottom:502.466667pt;}
.y1a3{bottom:503.106667pt;}
.y116{bottom:503.266667pt;}
.y1e1{bottom:504.386667pt;}
.y17e{bottom:505.986667pt;}
.ye3{bottom:506.946667pt;}
.y14f{bottom:510.146667pt;}
.y15{bottom:511.906667pt;}
.ya9{bottom:517.506667pt;}
.y68{bottom:519.746667pt;}
.y17d{bottom:521.346667pt;}
.y1e0{bottom:521.986667pt;}
.y21c{bottom:522.146667pt;}
.y14e{bottom:525.506667pt;}
.y115{bottom:527.746667pt;}
.y1a2{bottom:529.506667pt;}
.ya8{bottom:532.866667pt;}
.y1df{bottom:534.146667pt;}
.y17c{bottom:536.706667pt;}
.y67{bottom:537.346667pt;}
.ye2{bottom:538.626667pt;}
.y14d{bottom:540.866667pt;}
.y21b{bottom:541.346667pt;}
.y1a1{bottom:544.866667pt;}
.ya7{bottom:548.226667pt;}
.y1de{bottom:551.746667pt;}
.y17b{bottom:551.906667pt;}
.y114{bottom:552.066667pt;}
.ye1{bottom:553.826667pt;}
.y66{bottom:554.946667pt;}
.y14c{bottom:556.226667pt;}
.y21a{bottom:557.666667pt;}
.ya6{bottom:563.586667pt;}
.y1dd{bottom:564.066667pt;}
.y17a{bottom:567.266667pt;}
.ye0{bottom:569.186667pt;}
.y14b{bottom:571.586667pt;}
.y65{bottom:572.546667pt;}
.y1a0{bottom:575.106667pt;}
.y219{bottom:575.266667pt;}
.y1dc{bottom:576.413333pt;}
.y112{bottom:576.573333pt;}
.ya5{bottom:578.813333pt;}
.y179{bottom:582.653333pt;}
.ydf{bottom:584.573333pt;}
.y14a{bottom:586.493333pt;}
.y64{bottom:590.493333pt;}
.y19f{bottom:592.573333pt;}
.y218{bottom:593.053333pt;}
.y1db{bottom:594.013333pt;}
.ya4{bottom:594.173333pt;}
.y178{bottom:598.013333pt;}
.yde{bottom:599.933333pt;}
.y10f{bottom:601.533333pt;}
.y149{bottom:601.853333pt;}
.y1da{bottom:606.173333pt;}
.y63{bottom:608.253333pt;}
.ya3{bottom:609.533333pt;}
.y217{bottom:610.653333pt;}
.y19e{bottom:612.573333pt;}
.y177{bottom:613.373333pt;}
.ydd{bottom:615.293333pt;}
.y148{bottom:617.533333pt;}
.y1d9{bottom:623.773333pt;}
.ya2{bottom:624.893333pt;}
.y62{bottom:625.853333pt;}
.y108{bottom:626.653333pt;}
.y216{bottom:628.253333pt;}
.y176{bottom:628.573333pt;}
.ydc{bottom:630.653333pt;}
.y147{bottom:632.893333pt;}
.y19d{bottom:635.293333pt;}
.y1d8{bottom:636.093333pt;}
.ya1{bottom:640.253333pt;}
.y61{bottom:643.453333pt;}
.y175{bottom:643.933333pt;}
.ydb{bottom:645.853333pt;}
.y146{bottom:648.253333pt;}
.y1d7{bottom:648.413333pt;}
.y10b{bottom:650.013333pt;}
.y19c{bottom:652.893333pt;}
.ya0{bottom:655.613333pt;}
.y60{bottom:661.053333pt;}
.yda{bottom:661.213333pt;}
.y215{bottom:663.453333pt;}
.y145{bottom:663.613333pt;}
.y1d6{bottom:666.013333pt;}
.y19b{bottom:670.493333pt;}
.y9f{bottom:670.813333pt;}
.y174{bottom:675.293333pt;}
.yd9{bottom:676.573333pt;}
.y1d5{bottom:678.173333pt;}
.y5f{bottom:678.653333pt;}
.y144{bottom:678.813333pt;}
.y214{bottom:681.213333pt;}
.y9e{bottom:686.173333pt;}
.y19a{bottom:688.093333pt;}
.y1d4{bottom:690.493333pt;}
.yd8{bottom:691.933333pt;}
.y173{bottom:692.573333pt;}
.y143{bottom:694.173333pt;}
.y107{bottom:695.453333pt;}
.y5e{bottom:696.413333pt;}
.y213{bottom:698.813333pt;}
.y9d{bottom:701.533333pt;}
.y172{bottom:703.453333pt;}
.y199{bottom:705.853333pt;}
.yd7{bottom:707.293333pt;}
.y1d3{bottom:708.093333pt;}
.y142{bottom:709.533333pt;}
.y106{bottom:710.813333pt;}
.y5d{bottom:714.013333pt;}
.y212{bottom:716.413333pt;}
.y9c{bottom:716.893333pt;}
.y1d2{bottom:720.253333pt;}
.yd6{bottom:722.493333pt;}
.y198{bottom:723.453333pt;}
.y141{bottom:724.893333pt;}
.y105{bottom:727.293333pt;}
.y5c{bottom:731.613333pt;}
.y9b{bottom:732.253333pt;}
.y211{bottom:734.013333pt;}
.yd5{bottom:737.853333pt;}
.y140{bottom:740.253333pt;}
.y197{bottom:741.053333pt;}
.y9a{bottom:747.453333pt;}
.y5b{bottom:749.213333pt;}
.y1d1{bottom:750.173333pt;}
.y210{bottom:751.613333pt;}
.yd4{bottom:752.893333pt;}
.y13f{bottom:755.453333pt;}
.y196{bottom:758.653333pt;}
.y99{bottom:762.813333pt;}
.y5a{bottom:766.813333pt;}
.y1d0{bottom:767.773333pt;}
.yd3{bottom:768.253333pt;}
.y20f{bottom:769.373333pt;}
.y13e{bottom:770.813333pt;}
.y195{bottom:774.813333pt;}
.y98{bottom:778.173333pt;}
.y1cf{bottom:780.093333pt;}
.yd2{bottom:783.933333pt;}
.y59{bottom:784.573333pt;}
.y13d{bottom:786.173333pt;}
.y20e{bottom:786.973333pt;}
.y194{bottom:792.253333pt;}
.y14{bottom:792.573333pt;}
.y97{bottom:793.213333pt;}
.y104{bottom:793.533333pt;}
.yd1{bottom:799.333333pt;}
.y13c{bottom:801.573333pt;}
.y58{bottom:802.213333pt;}
.y20d{bottom:804.613333pt;}
.y96{bottom:808.613333pt;}
.y103{bottom:808.933333pt;}
.y193{bottom:809.253333pt;}
.y13{bottom:809.573333pt;}
.y1ce{bottom:809.893333pt;}
.yd0{bottom:814.533333pt;}
.y13b{bottom:816.933333pt;}
.y57{bottom:819.813333pt;}
.y12{bottom:820.453333pt;}
.y1cd{bottom:822.213333pt;}
.y95{bottom:824.293333pt;}
.ycf{bottom:829.893333pt;}
.y11{bottom:830.053333pt;}
.y192{bottom:831.813333pt;}
.y13a{bottom:832.293333pt;}
.y1cc{bottom:834.533333pt;}
.y56{bottom:837.413333pt;}
.y94{bottom:839.493333pt;}
.y20c{bottom:839.813333pt;}
.y10{bottom:842.373333pt;}
.yce{bottom:845.253333pt;}
.y191{bottom:846.693333pt;}
.y139{bottom:847.493333pt;}
.yf{bottom:850.213333pt;}
.y1cb{bottom:852.133333pt;}
.y93{bottom:854.853333pt;}
.y55{bottom:855.013333pt;}
.y20b{bottom:857.573333pt;}
.ye{bottom:860.613333pt;}
.y138{bottom:862.853333pt;}
.y1ca{bottom:864.293333pt;}
.y18f{bottom:864.613333pt;}
.y92{bottom:870.213333pt;}
.y54{bottom:872.773333pt;}
.y20a{bottom:875.173333pt;}
.ycd{bottom:875.973333pt;}
.y137{bottom:878.213333pt;}
.yd{bottom:880.453333pt;}
.y1c9{bottom:881.893333pt;}
.y91{bottom:885.573333pt;}
.y18d{bottom:886.853333pt;}
.y53{bottom:890.373333pt;}
.ycc{bottom:891.013333pt;}
.y136{bottom:893.573333pt;}
.y1c8{bottom:894.213333pt;}
.y209{bottom:895.333333pt;}
.yc{bottom:898.373333pt;}
.y90{bottom:900.933333pt;}
.y18c{bottom:906.053333pt;}
.y208{bottom:907.493333pt;}
.y52{bottom:907.973333pt;}
.y135{bottom:908.933333pt;}
.y1c7{bottom:911.813333pt;}
.y8f{bottom:916.293333pt;}
.y207{bottom:919.813333pt;}
.ycb{bottom:921.893333pt;}
.y1c6{bottom:924.133333pt;}
.y134{bottom:924.293333pt;}
.y51{bottom:925.573333pt;}
.yb{bottom:925.893333pt;}
.y8e{bottom:931.493333pt;}
.y18b{bottom:933.413333pt;}
.yca{bottom:937.253333pt;}
.y206{bottom:937.413333pt;}
.y133{bottom:939.493333pt;}
.y1c5{bottom:941.733333pt;}
.y50{bottom:943.173333pt;}
.y8d{bottom:946.853333pt;}
.y205{bottom:949.733333pt;}
.y18a{bottom:949.893333pt;}
.yc9{bottom:952.613333pt;}
.ya{bottom:953.573333pt;}
.y1c4{bottom:953.893333pt;}
.y132{bottom:954.853333pt;}
.y4f{bottom:960.933333pt;}
.y204{bottom:961.893333pt;}
.y8c{bottom:962.213333pt;}
.y1c3{bottom:966.213333pt;}
.yc8{bottom:967.973333pt;}
.y131{bottom:970.213333pt;}
.y8b{bottom:977.573333pt;}
.y4e{bottom:978.533333pt;}
.y9{bottom:978.853333pt;}
.y203{bottom:979.493333pt;}
.yc7{bottom:983.333333pt;}
.y1c2{bottom:983.813333pt;}
.y130{bottom:985.573333pt;}
.y45{bottom:989.093333pt;}
.y202{bottom:991.813333pt;}
.y8a{bottom:992.933333pt;}
.y8{bottom:993.733333pt;}
.y4d{bottom:996.133333pt;}
.yc6{bottom:998.213333pt;}
.y12f{bottom:1000.933333pt;}
.y89{bottom:1008.293333pt;}
.y201{bottom:1009.413333pt;}
.yc5{bottom:1013.573333pt;}
.y4c{bottom:1013.733333pt;}
.y12e{bottom:1016.293333pt;}
.y200{bottom:1021.760000pt;}
.y88{bottom:1023.200000pt;}
.y102{bottom:1023.520000pt;}
.y1c1{bottom:1025.920000pt;}
.y7{bottom:1027.520000pt;}
.yc4{bottom:1031.040000pt;}
.y4b{bottom:1031.360000pt;}
.y12d{bottom:1031.520000pt;}
.y1ff{bottom:1033.920000pt;}
.y6{bottom:1037.760000pt;}
.y86{bottom:1039.520000pt;}
.y5{bottom:1045.280000pt;}
.y49{bottom:1047.520000pt;}
.y85{bottom:1056.640000pt;}
.y4{bottom:1064.480000pt;}
.y48{bottom:1064.640000pt;}
.h6{height:5.022500pt;}
.he{height:10.678125pt;}
.h2e{height:15.186667pt;}
.h10{height:16.125000pt;}
.h2f{height:16.306667pt;}
.h31{height:16.318667pt;}
.h30{height:16.352000pt;}
.h1c{height:17.426667pt;}
.h1a{height:17.586667pt;}
.h36{height:17.906667pt;}
.h34{height:18.546667pt;}
.h35{height:22.226667pt;}
.h22{height:22.720000pt;}
.h33{height:23.346667pt;}
.h27{height:24.306667pt;}
.h24{height:24.320000pt;}
.h2a{height:24.352000pt;}
.h28{height:24.466667pt;}
.h23{height:24.480000pt;}
.h29{height:24.498667pt;}
.h26{height:24.506667pt;}
.h14{height:24.626667pt;}
.hd{height:26.368125pt;}
.h1d{height:26.381250pt;}
.h2d{height:27.506667pt;}
.h19{height:27.666667pt;}
.hc{height:32.250000pt;}
.h3{height:36.431250pt;}
.h38{height:37.410000pt;}
.h15{height:38.153511pt;}
.h21{height:41.440000pt;}
.h7{height:42.084375pt;}
.h4{height:43.215000pt;}
.h2c{height:43.346667pt;}
.h2b{height:44.941250pt;}
.h2{height:47.109375pt;}
.h8{height:48.375000pt;}
.h12{height:49.336419pt;}
.h17{height:52.108438pt;}
.h13{height:52.134375pt;}
.h1b{height:52.526250pt;}
.h25{height:53.370000pt;}
.h9{height:53.535000pt;}
.h1f{height:57.787500pt;}
.h18{height:58.238750pt;}
.hb{height:59.150000pt;}
.h11{height:59.340000pt;}
.h16{height:62.812500pt;}
.h5{height:64.500000pt;}
.h20{height:64.800000pt;}
.h1e{height:73.490625pt;}
.h32{height:75.465000pt;}
.h37{height:85.785000pt;}
.ha{height:96.750000pt;}
.hf{height:275.546667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:90.426667pt;}
.wc{width:96.018667pt;}
.wb{width:99.232000pt;}
.we{width:99.546667pt;}
.wd{width:107.186667pt;}
.w6{width:122.098667pt;}
.w7{width:124.346667pt;}
.w12{width:127.058667pt;}
.w13{width:132.986667pt;}
.w11{width:137.626667pt;}
.w9{width:195.266667pt;}
.w14{width:198.737333pt;}
.w15{width:204.026667pt;}
.w4{width:206.266667pt;}
.wa{width:206.746667pt;}
.w8{width:245.777333pt;}
.w16{width:246.133333pt;}
.wf{width:248.497333pt;}
.w10{width:397.693333pt;}
.w5{width:404.377333pt;}
.w2{width:569.680000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.xc{left:-32.800000pt;}
.xb{left:-17.600000pt;}
.xa{left:-4.480000pt;}
.x0{left:0.000000pt;}
.x12{left:7.190667pt;}
.x9{left:9.466667pt;}
.x2a{left:15.666667pt;}
.x1d{left:17.120000pt;}
.x2c{left:19.200000pt;}
.x2b{left:21.280000pt;}
.x2d{left:22.240000pt;}
.x8{left:23.866667pt;}
.x21{left:26.240000pt;}
.x17{left:28.626667pt;}
.x18{left:29.760000pt;}
.x19{left:30.746667pt;}
.x1a{left:31.680000pt;}
.x36{left:33.280000pt;}
.x35{left:34.240000pt;}
.x34{left:36.160000pt;}
.x7{left:37.786667pt;}
.x27{left:43.706667pt;}
.x24{left:44.946667pt;}
.x14{left:46.266667pt;}
.x16{left:47.200000pt;}
.x28{left:49.626667pt;}
.x25{left:50.560000pt;}
.x6{left:52.186667pt;}
.x29{left:53.600000pt;}
.x32{left:60.346667pt;}
.x3e{left:64.480000pt;}
.x30{left:65.626667pt;}
.x1e{left:68.506667pt;}
.x5{left:69.466667pt;}
.x2{left:72.032000pt;}
.x22{left:74.400000pt;}
.x3b{left:79.706667pt;}
.x1c{left:87.226667pt;}
.x3c{left:89.440000pt;}
.x2f{left:91.066667pt;}
.x20{left:93.120000pt;}
.xd{left:96.032000pt;}
.x3f{left:100.512000pt;}
.x3d{left:114.906667pt;}
.x40{left:140.666667pt;}
.x2e{left:188.546667pt;}
.x39{left:268.866667pt;}
.x1b{left:317.826667pt;}
.xf{left:319.746667pt;}
.x11{left:352.386667pt;}
.x10{left:386.013333pt;}
.x1{left:386.973333pt;}
.x3{left:396.093333pt;}
.x23{left:417.066667pt;}
.x31{left:458.186667pt;}
.x3a{left:472.906667pt;}
.x13{left:474.506667pt;}
.x1f{left:513.093333pt;}
.xe{left:524.773333pt;}
.x38{left:528.133333pt;}
.x33{left:585.253333pt;}
.x15{left:596.613333pt;}
.x26{left:620.293333pt;}
.x4{left:641.733333pt;}
.x37{left:720.160000pt;}
}




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