
    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_145279346f11ed069cf02a38.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_338e4640e3fc3e49342bee0d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_63466cf468d530d4940ebb29.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e3a7043d731d0eb10b65a662.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_eb6bf2a19f90f4f363fcadf4.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_fc0f44d00a7918584bede631.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_10c611d186f2780f6c01b52e.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_5984ed7113f7865db2b11d7f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-72.120000px;}
.v4{vertical-align:-64.800000px;}
.v5{vertical-align:-40.320000px;}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:24.480000px;}
.v1{vertical-align:30.240000px;}
.ls1d{letter-spacing:-2.880000px;}
.ls1c{letter-spacing:-2.160000px;}
.ls19{letter-spacing:-2.070000px;}
.ls12{letter-spacing:-1.938000px;}
.lse{letter-spacing:-1.926000px;}
.ls7{letter-spacing:-1.440000px;}
.ls16{letter-spacing:-1.254000px;}
.ls10{letter-spacing:-0.972000px;}
.ls1b{letter-spacing:-0.942000px;}
.lsc{letter-spacing:-0.810000px;}
.ls3{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.630000px;}
.ls4{letter-spacing:-0.498000px;}
.lsf{letter-spacing:-0.486600px;}
.ls13{letter-spacing:-0.466800px;}
.ls17{letter-spacing:-0.313800px;}
.ls18{letter-spacing:-0.184200px;}
.ls2{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.466800px;}
.lsb{letter-spacing:0.498000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.972000px;}
.ls14{letter-spacing:1.440000px;}
.ls6{letter-spacing:1.908000px;}
.ls1a{letter-spacing:3.600000px;}
.lsa{letter-spacing:12.327840px;}
.ls8{letter-spacing:68.400000px;}
.ls9{letter-spacing:892.536000px;}
.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;}
}
.wsc{word-spacing:-16.560000px;}
.ws5{word-spacing:-16.092000px;}
.ws4{word-spacing:-15.120000px;}
.ws13{word-spacing:-14.400000px;}
.wsb{word-spacing:-14.178000px;}
.ws0{word-spacing:-13.680000px;}
.wsf{word-spacing:-13.495800px;}
.wse{word-spacing:-13.366200px;}
.ws2{word-spacing:-13.182000px;}
.ws7{word-spacing:-13.050000px;}
.ws1{word-spacing:-12.960000px;}
.ws6{word-spacing:-12.870000px;}
.ws11{word-spacing:-12.738000px;}
.wsd{word-spacing:-12.426000px;}
.ws8{word-spacing:-12.240000px;}
.ws9{word-spacing:-11.742000px;}
.ws10{word-spacing:-11.610000px;}
.ws12{word-spacing:-10.800000px;}
.wsa{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-14.312160px;}
._16{margin-left:-11.432160px;}
._14{margin-left:-8.598240px;}
._17{margin-left:-6.126720px;}
._f{margin-left:-4.890240px;}
._5{margin-left:-3.323520px;}
._0{margin-left:-1.915200px;}
._1{width:1.203840px;}
._3{width:2.836800px;}
._2{width:4.621920px;}
._7{width:6.456960px;}
._9{width:7.879680px;}
._8{width:9.702720px;}
._d{width:11.113920px;}
._e{width:12.165120px;}
._c{width:13.170240px;}
._24{width:14.364480px;}
._25{width:15.676800px;}
._10{width:16.762080px;}
._6{width:18.720000px;}
._4{width:19.840800px;}
._a{width:21.530880px;}
._b{width:23.220960px;}
._12{width:24.258240px;}
._13{width:25.736160px;}
._20{width:27.905280px;}
._1f{width:28.946880px;}
._1e{width:30.314880px;}
._19{width:31.872960px;}
._1a{width:33.027840px;}
._1b{width:34.516320px;}
._23{width:35.623200px;}
._21{width:37.423200px;}
._1c{width:38.453760px;}
._22{width:41.165760px;}
._26{width:53.939520px;}
._27{width:55.299360px;}
._18{width:57.456000px;}
._11{width:461.785920px;}
._1d{width:816.485760px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:2.880000px;}
.fs8{font-size:5.760000px;}
.fs6{font-size:11.520000px;}
.fsa{font-size:24.480000px;}
.fs9{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs2{font-size:60.480000px;}
.fs4{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.y171{bottom:-4.680000px;}
.y174{bottom:-4.320000px;}
.y0{bottom:0.000000px;}
.y16c{bottom:0.720000px;}
.y3a{bottom:2.865000px;}
.yf6{bottom:2.880000px;}
.y125{bottom:3.225000px;}
.y133{bottom:3.235500px;}
.y2{bottom:3.240000px;}
.y165{bottom:3.270000px;}
.y121{bottom:3.585000px;}
.y18a{bottom:3.595500px;}
.y4{bottom:3.600000px;}
.y41{bottom:3.960000px;}
.y3c{bottom:7.920000px;}
.y10a{bottom:10.425000px;}
.y17d{bottom:10.785000px;}
.y104{bottom:10.800000px;}
.y127{bottom:11.145000px;}
.y135{bottom:11.155500px;}
.y119{bottom:11.160000px;}
.yfd{bottom:11.520000px;}
.yf1{bottom:15.480000px;}
.y68{bottom:16.200000px;}
.y67{bottom:17.280000px;}
.y15a{bottom:18.000000px;}
.y163{bottom:18.030000px;}
.y167{bottom:18.360000px;}
.y123{bottom:18.705000px;}
.y18b{bottom:18.715500px;}
.y103{bottom:18.720000px;}
.y129{bottom:19.065000px;}
.y131{bottom:19.075500px;}
.y36{bottom:19.080000px;}
.y11f{bottom:19.095000px;}
.yf8{bottom:19.440000px;}
.y101{bottom:19.485000px;}
.y6c{bottom:20.520000px;}
.y151{bottom:21.240000px;}
.y157{bottom:25.560000px;}
.y15e{bottom:25.605000px;}
.y16b{bottom:25.920000px;}
.y126{bottom:26.625000px;}
.y12f{bottom:26.635500px;}
.y11b{bottom:26.640000px;}
.y115{bottom:26.685000px;}
.y17f{bottom:27.705000px;}
.y106{bottom:27.720000px;}
.y159{bottom:33.120000px;}
.y164{bottom:33.150000px;}
.y15c{bottom:33.165000px;}
.y124{bottom:34.185000px;}
.y11d{bottom:34.200000px;}
.y12a{bottom:34.545000px;}
.y130{bottom:34.555500px;}
.y35{bottom:34.560000px;}
.y120{bottom:34.575000px;}
.y117{bottom:34.605000px;}
.y184{bottom:35.629500px;}
.y6b{bottom:36.000000px;}
.y150{bottom:38.520000px;}
.y161{bottom:40.680000px;}
.y134{bottom:42.115500px;}
.y12d{bottom:42.150000px;}
.y118{bottom:42.165000px;}
.y34{bottom:46.794000px;}
.y158{bottom:47.880000px;}
.y160{bottom:48.240000px;}
.y16a{bottom:48.270000px;}
.y15d{bottom:48.285000px;}
.y11c{bottom:49.680000px;}
.y12c{bottom:49.710000px;}
.y132{bottom:50.035500px;}
.y116{bottom:50.085000px;}
.y6a{bottom:51.840000px;}
.y14f{bottom:55.830000px;}
.y69{bottom:64.800000px;}
.y40{bottom:65.160000px;}
.y6{bottom:66.600000px;}
.y3f{bottom:67.320000px;}
.y14e{bottom:73.110000px;}
.y136{bottom:85.716000px;}
.y38{bottom:88.236000px;}
.y14d{bottom:90.390000px;}
.y189{bottom:96.160500px;}
.y37{bottom:98.316000px;}
.y83{bottom:98.676000px;}
.y1b0{bottom:99.036000px;}
.y226{bottom:99.396000px;}
.y12e{bottom:99.760500px;}
.yee{bottom:100.116000px;}
.y5f{bottom:100.836000px;}
.yb2{bottom:101.556000px;}
.y14c{bottom:107.670000px;}
.y33{bottom:111.996000px;}
.y1f0{bottom:114.876000px;}
.y1af{bottom:115.236000px;}
.y82{bottom:115.956000px;}
.yed{bottom:117.396000px;}
.y5e{bottom:118.116000px;}
.yb1{bottom:118.836000px;}
.y14b{bottom:124.950000px;}
.y183{bottom:128.200500px;}
.y1ef{bottom:130.356000px;}
.y1ae{bottom:131.796000px;}
.y81{bottom:132.876000px;}
.yec{bottom:134.676000px;}
.y5d{bottom:135.396000px;}
.yb0{bottom:136.116000px;}
.y14a{bottom:142.230000px;}
.y188{bottom:144.400500px;}
.y225{bottom:145.836000px;}
.y1ee{bottom:146.916000px;}
.y1ad{bottom:147.276000px;}
.y80{bottom:150.150000px;}
.yeb{bottom:151.590000px;}
.y5c{bottom:152.670000px;}
.yaf{bottom:153.390000px;}
.y149{bottom:159.510000px;}
.y187{bottom:160.605000px;}
.y224{bottom:161.310000px;}
.y1ac{bottom:162.750000px;}
.y12b{bottom:162.765000px;}
.y1ed{bottom:163.470000px;}
.y7f{bottom:167.430000px;}
.yea{bottom:168.870000px;}
.y5b{bottom:169.950000px;}
.yae{bottom:170.670000px;}
.y148{bottom:176.460000px;}
.y223{bottom:176.790000px;}
.y186{bottom:176.805000px;}
.y1ab{bottom:178.230000px;}
.y1ec{bottom:180.030000px;}
.y7e{bottom:184.350000px;}
.ye9{bottom:186.150000px;}
.y5a{bottom:187.230000px;}
.yad{bottom:187.950000px;}
.y222{bottom:192.270000px;}
.y185{bottom:193.365000px;}
.y1aa{bottom:193.710000px;}
.y147{bottom:193.740000px;}
.y1eb{bottom:196.590000px;}
.y22d{bottom:196.950000px;}
.y22c{bottom:200.550000px;}
.y7d{bottom:200.910000px;}
.ye8{bottom:203.475000px;}
.y22b{bottom:203.835000px;}
.y59{bottom:204.555000px;}
.yac{bottom:205.275000px;}
.y39{bottom:206.370000px;}
.y221{bottom:208.155000px;}
.y1a9{bottom:209.235000px;}
.y22a{bottom:209.595000px;}
.y17e{bottom:209.610000px;}
.y146{bottom:211.020000px;}
.y1ea{bottom:213.195000px;}
.y7c{bottom:217.515000px;}
.y229{bottom:220.410000px;}
.ye7{bottom:220.755000px;}
.y58{bottom:221.835000px;}
.yab{bottom:222.555000px;}
.y220{bottom:223.635000px;}
.y1a8{bottom:224.715000px;}
.y128{bottom:225.450000px;}
.y182{bottom:225.810000px;}
.y145{bottom:228.300000px;}
.y1e9{bottom:229.395000px;}
.y7b{bottom:234.795000px;}
.ye6{bottom:238.035000px;}
.y228{bottom:238.755000px;}
.y57{bottom:239.115000px;}
.yaa{bottom:239.835000px;}
.y1a7{bottom:240.195000px;}
.y181{bottom:242.010000px;}
.y1e8{bottom:244.875000px;}
.y144{bottom:245.580000px;}
.y7a{bottom:252.075000px;}
.y227{bottom:253.515000px;}
.y21f{bottom:254.595000px;}
.ye5{bottom:255.315000px;}
.y56{bottom:255.675000px;}
.ya9{bottom:257.115000px;}
.y180{bottom:258.210000px;}
.y1e7{bottom:260.355000px;}
.y143{bottom:262.860000px;}
.y79{bottom:269.355000px;}
.y21e{bottom:270.075000px;}
.y55{bottom:271.155000px;}
.y1a6{bottom:271.515000px;}
.yf4{bottom:271.860000px;}
.ye4{bottom:272.595000px;}
.y122{bottom:272.970000px;}
.ya8{bottom:274.035000px;}
.y17c{bottom:274.770000px;}
.y1e6{bottom:275.835000px;}
.y66{bottom:276.540000px;}
.yf3{bottom:277.620000px;}
.y142{bottom:280.140000px;}
.y65{bottom:282.300000px;}
.y21d{bottom:285.555000px;}
.y54{bottom:286.635000px;}
.y1a5{bottom:288.075000px;}
.ya7{bottom:289.515000px;}
.ye3{bottom:289.875000px;}
.y190{bottom:291.315000px;}
.y64{bottom:297.060000px;}
.y141{bottom:297.465000px;}
.y53{bottom:298.875000px;}
.ya6{bottom:299.955000px;}
.y21c{bottom:301.035000px;}
.y78{bottom:303.915000px;}
.y1a4{bottom:304.635000px;}
.y1e5{bottom:306.795000px;}
.ye2{bottom:307.155000px;}
.y17b{bottom:307.515000px;}
.y18f{bottom:308.595000px;}
.y63{bottom:309.660000px;}
.y62{bottom:310.740000px;}
.y17a{bottom:313.275000px;}
.y140{bottom:314.745000px;}
.ya5{bottom:315.435000px;}
.y21b{bottom:316.515000px;}
.y11e{bottom:320.130000px;}
.y77{bottom:321.195000px;}
.y1e4{bottom:322.275000px;}
.ye1{bottom:324.435000px;}
.ya4{bottom:325.905000px;}
.y179{bottom:329.505000px;}
.y13f{bottom:332.025000px;}
.y21a{bottom:332.385000px;}
.y1a3{bottom:337.425000px;}
.y1e3{bottom:338.145000px;}
.y76{bottom:338.505000px;}
.ye0{bottom:341.745000px;}
.ya3{bottom:343.185000px;}
.y178{bottom:343.545000px;}
.y219{bottom:347.865000px;}
.y13e{bottom:349.305000px;}
.y3b{bottom:352.545000px;}
.y1a2{bottom:352.905000px;}
.y1e2{bottom:353.625000px;}
.y75{bottom:355.785000px;}
.ydf{bottom:358.305000px;}
.y177{bottom:359.745000px;}
.ya2{bottom:360.465000px;}
.y218{bottom:363.345000px;}
.y13d{bottom:366.225000px;}
.y11a{bottom:367.665000px;}
.y1a1{bottom:368.385000px;}
.y1e1{bottom:369.105000px;}
.y74{bottom:372.705000px;}
.yde{bottom:374.865000px;}
.y176{bottom:375.945000px;}
.ya1{bottom:377.745000px;}
.y217{bottom:378.825000px;}
.y13c{bottom:383.505000px;}
.y1a0{bottom:383.865000px;}
.y1e0{bottom:384.585000px;}
.y73{bottom:389.985000px;}
.ydd{bottom:391.425000px;}
.y175{bottom:392.145000px;}
.y216{bottom:394.305000px;}
.ya0{bottom:395.025000px;}
.y19f{bottom:399.345000px;}
.y1df{bottom:400.065000px;}
.y13b{bottom:400.425000px;}
.y72{bottom:407.265000px;}
.ydc{bottom:407.985000px;}
.y173{bottom:408.345000px;}
.y215{bottom:409.785000px;}
.y9f{bottom:412.305000px;}
.y154{bottom:413.745000px;}
.y19e{bottom:415.185000px;}
.y1de{bottom:415.545000px;}
.y13a{bottom:416.985000px;}
.y153{bottom:419.505000px;}
.y71{bottom:424.545000px;}
.y172{bottom:424.905000px;}
.y214{bottom:425.265000px;}
.y9e{bottom:429.585000px;}
.y114{bottom:430.305000px;}
.y19d{bottom:430.665000px;}
.y1dd{bottom:431.025000px;}
.y139{bottom:433.575000px;}
.y152{bottom:435.015000px;}
.y213{bottom:440.745000px;}
.ydb{bottom:441.105000px;}
.y70{bottom:441.825000px;}
.y32{bottom:443.985000px;}
.y19c{bottom:446.145000px;}
.y1dc{bottom:446.505000px;}
.y9d{bottom:446.865000px;}
.y212{bottom:456.630000px;}
.yda{bottom:457.350000px;}
.y6f{bottom:459.150000px;}
.y31{bottom:459.870000px;}
.y19b{bottom:461.670000px;}
.y1db{bottom:462.390000px;}
.y9c{bottom:464.190000px;}
.y211{bottom:472.110000px;}
.yd9{bottom:474.270000px;}
.y170{bottom:474.630000px;}
.y6e{bottom:476.430000px;}
.y30{bottom:477.150000px;}
.y1da{bottom:477.870000px;}
.y16f{bottom:480.390000px;}
.y9b{bottom:481.110000px;}
.y210{bottom:487.590000px;}
.yd8{bottom:489.750000px;}
.y6d{bottom:492.630000px;}
.y113{bottom:493.350000px;}
.y2f{bottom:494.430000px;}
.y9a{bottom:498.390000px;}
.yd7{bottom:500.190000px;}
.y20f{bottom:503.070000px;}
.y61{bottom:503.430000px;}
.y16e{bottom:504.870000px;}
.y19a{bottom:508.110000px;}
.y1d9{bottom:508.830000px;}
.y112{bottom:510.630000px;}
.y2e{bottom:511.710000px;}
.y99{bottom:515.670000px;}
.y20e{bottom:518.550000px;}
.y16d{bottom:521.070000px;}
.y199{bottom:523.590000px;}
.y1d8{bottom:524.670000px;}
.yd6{bottom:526.110000px;}
.y2d{bottom:528.990000px;}
.y138{bottom:530.430000px;}
.y169{bottom:531.870000px;}
.y111{bottom:532.590000px;}
.y98{bottom:532.950000px;}
.y20d{bottom:534.030000px;}
.y198{bottom:539.430000px;}
.y1d7{bottom:541.230000px;}
.yd5{bottom:543.390000px;}
.y2c{bottom:546.270000px;}
.y110{bottom:549.510000px;}
.y97{bottom:550.230000px;}
.y197{bottom:554.910000px;}
.y1d6{bottom:557.430000px;}
.yd4{bottom:560.670000px;}
.y2b{bottom:563.550000px;}
.y20c{bottom:564.990000px;}
.y10f{bottom:566.790000px;}
.y96{bottom:567.510000px;}
.y196{bottom:570.390000px;}
.y1d5{bottom:573.990000px;}
.yd3{bottom:577.980000px;}
.y2a{bottom:580.500000px;}
.y20b{bottom:580.860000px;}
.y95{bottom:584.460000px;}
.y18e{bottom:584.820000px;}
.y195{bottom:585.900000px;}
.y1d4{bottom:590.220000px;}
.y168{bottom:592.740000px;}
.yd2{bottom:595.260000px;}
.y20a{bottom:596.340000px;}
.y29{bottom:596.700000px;}
.y10e{bottom:601.380000px;}
.y94{bottom:601.740000px;}
.y18d{bottom:602.100000px;}
.y1d3{bottom:605.700000px;}
.y28{bottom:611.460000px;}
.y209{bottom:611.820000px;}
.yd1{bottom:612.540000px;}
.y10d{bottom:618.660000px;}
.y93{bottom:619.020000px;}
.y18c{bottom:619.380000px;}
.y1d2{bottom:621.540000px;}
.y208{bottom:627.300000px;}
.y27{bottom:629.460000px;}
.y10c{bottom:635.940000px;}
.y92{bottom:636.660000px;}
.y1d1{bottom:637.020000px;}
.y166{bottom:638.460000px;}
.y207{bottom:642.780000px;}
.yd0{bottom:646.740000px;}
.y26{bottom:649.260000px;}
.y1d0{bottom:652.500000px;}
.y10b{bottom:653.220000px;}
.y91{bottom:653.940000px;}
.y206{bottom:658.260000px;}
.y25{bottom:664.020000px;}
.y1cf{bottom:667.980000px;}
.y52{bottom:670.140000px;}
.y194{bottom:670.500000px;}
.y90{bottom:670.860000px;}
.y205{bottom:673.740000px;}
.y24{bottom:678.420000px;}
.ycf{bottom:679.500000px;}
.y1ce{bottom:683.460000px;}
.y193{bottom:687.780000px;}
.y8f{bottom:688.140000px;}
.y204{bottom:689.220000px;}
.yce{bottom:689.940000px;}
.y23{bottom:693.900000px;}
.y1cd{bottom:698.940000px;}
.y162{bottom:699.300000px;}
.ycd{bottom:704.730000px;}
.y8e{bottom:705.450000px;}
.y22{bottom:709.410000px;}
.ycc{bottom:714.090000px;}
.y1cc{bottom:714.450000px;}
.yf0{bottom:720.210000px;}
.yf2{bottom:720.225000px;}
.y203{bottom:720.570000px;}
.y8d{bottom:722.730000px;}
.y21{bottom:725.250000px;}
.y1cb{bottom:729.930000px;}
.ycb{bottom:731.370000px;}
.y202{bottom:736.050000px;}
.y8c{bottom:740.010000px;}
.y20{bottom:740.730000px;}
.y15f{bottom:745.050000px;}
.y1ca{bottom:745.770000px;}
.y109{bottom:747.930000px;}
.yca{bottom:748.650000px;}
.y201{bottom:751.530000px;}
.y1f{bottom:756.210000px;}
.y8b{bottom:757.290000px;}
.y1c9{bottom:761.250000px;}
.y108{bottom:764.130000px;}
.yc9{bottom:765.930000px;}
.y200{bottom:767.010000px;}
.y1e{bottom:771.690000px;}
.y8a{bottom:774.570000px;}
.y1c8{bottom:776.730000px;}
.y107{bottom:780.330000px;}
.y1ff{bottom:782.490000px;}
.yc8{bottom:783.210000px;}
.y1d{bottom:787.170000px;}
.y89{bottom:791.850000px;}
.y1c7{bottom:792.210000px;}
.y105{bottom:796.530000px;}
.y1fe{bottom:797.970000px;}
.yc7{bottom:800.490000px;}
.y1c{bottom:801.930000px;}
.y15b{bottom:805.890000px;}
.y1c6{bottom:807.690000px;}
.y88{bottom:809.130000px;}
.y100{bottom:812.730000px;}
.y1fd{bottom:813.450000px;}
.y1b{bottom:816.330000px;}
.yc6{bottom:817.770000px;}
.y1a{bottom:822.090000px;}
.y1c5{bottom:823.170000px;}
.y87{bottom:826.455000px;}
.y1fc{bottom:828.975000px;}
.y102{bottom:829.335000px;}
.yc5{bottom:835.095000px;}
.y19{bottom:837.615000px;}
.y1c4{bottom:838.695000px;}
.y86{bottom:843.735000px;}
.y1fb{bottom:844.815000px;}
.yc4{bottom:852.375000px;}
.y18{bottom:853.455000px;}
.y1c3{bottom:854.175000px;}
.y1fa{bottom:860.295000px;}
.y85{bottom:860.655000px;}
.yff{bottom:861.015000px;}
.y17{bottom:866.415000px;}
.y156{bottom:866.775000px;}
.yc3{bottom:869.295000px;}
.y1c2{bottom:870.015000px;}
.y16{bottom:875.775000px;}
.yfc{bottom:877.215000px;}
.y84{bottom:877.935000px;}
.y51{bottom:879.015000px;}
.yc2{bottom:884.775000px;}
.y1c1{bottom:885.495000px;}
.y1f9{bottom:891.255000px;}
.yfe{bottom:893.415000px;}
.y50{bottom:895.215000px;}
.y15{bottom:895.935000px;}
.y1c0{bottom:900.975000px;}
.y1f8{bottom:906.735000px;}
.yfb{bottom:909.615000px;}
.yc1{bottom:910.695000px;}
.y14{bottom:912.495000px;}
.y1bf{bottom:916.455000px;}
.yc0{bottom:921.135000px;}
.y1f7{bottom:922.215000px;}
.yf7{bottom:926.175000px;}
.y155{bottom:927.255000px;}
.y13{bottom:928.695000px;}
.y4f{bottom:929.775000px;}
.y1be{bottom:932.295000px;}
.y1f6{bottom:937.695000px;}
.ybf{bottom:938.415000px;}
.yfa{bottom:942.375000px;}
.y12{bottom:946.695000px;}
.y4e{bottom:947.055000px;}
.y1bd{bottom:948.855000px;}
.y1f5{bottom:953.205000px;}
.ybe{bottom:955.725000px;}
.yf9{bottom:958.605000px;}
.y11{bottom:960.765000px;}
.y4d{bottom:964.365000px;}
.y1bc{bottom:965.085000px;}
.y1f4{bottom:969.045000px;}
.ybd{bottom:973.005000px;}
.yf5{bottom:974.805000px;}
.y10{bottom:976.965000px;}
.y4c{bottom:981.645000px;}
.y1f3{bottom:984.525000px;}
.ybc{bottom:990.285000px;}
.yf{bottom:994.965000px;}
.y1bb{bottom:998.205000px;}
.y4b{bottom:998.925000px;}
.y1f2{bottom:1000.005000px;}
.ybb{bottom:1007.565000px;}
.ye{bottom:1009.005000px;}
.y1ba{bottom:1014.765000px;}
.y1f1{bottom:1015.485000px;}
.y4a{bottom:1016.205000px;}
.yba{bottom:1024.845000px;}
.yd{bottom:1025.205000px;}
.y1b9{bottom:1030.965000px;}
.y49{bottom:1033.485000px;}
.yb9{bottom:1042.125000px;}
.yc{bottom:1044.645000px;}
.y1b8{bottom:1046.445000px;}
.y48{bottom:1050.765000px;}
.yb8{bottom:1059.045000px;}
.y1b7{bottom:1061.925000px;}
.yb{bottom:1064.805000px;}
.y47{bottom:1067.685000px;}
.y60{bottom:1070.205000px;}
.yb7{bottom:1076.370000px;}
.y1b6{bottom:1077.450000px;}
.ya{bottom:1082.130000px;}
.y46{bottom:1085.010000px;}
.y1b5{bottom:1093.290000px;}
.yb6{bottom:1093.650000px;}
.y9{bottom:1101.210000px;}
.y192{bottom:1101.930000px;}
.y45{bottom:1102.290000px;}
.y1b4{bottom:1108.770000px;}
.yb5{bottom:1110.930000px;}
.y191{bottom:1119.210000px;}
.y44{bottom:1119.570000px;}
.y8{bottom:1120.650000px;}
.y1b3{bottom:1124.250000px;}
.yef{bottom:1126.410000px;}
.yb4{bottom:1128.210000px;}
.y43{bottom:1136.850000px;}
.y1b2{bottom:1139.730000px;}
.y7{bottom:1140.810000px;}
.yb3{bottom:1143.690000px;}
.y137{bottom:1153.770000px;}
.y42{bottom:1154.130000px;}
.y1b1{bottom:1155.210000px;}
.y5{bottom:1157.010000px;}
.y3{bottom:1167.810000px;}
.y3e{bottom:1170.330000px;}
.y1{bottom:1183.650000px;}
.y3d{bottom:1186.890000px;}
.h25{height:2.826563px;}
.h19{height:5.653125px;}
.hc{height:11.306250px;}
.ha{height:11.610000px;}
.h31{height:15.120000px;}
.h2{height:15.465000px;}
.h3d{height:15.475500px;}
.h1e{height:15.480000px;}
.h3c{height:15.501000px;}
.h38{height:15.510000px;}
.h17{height:15.516000px;}
.h4{height:15.825000px;}
.h20{height:15.840000px;}
.h13{height:16.185000px;}
.h15{height:16.596000px;}
.h14{height:20.865000px;}
.h1b{height:24.025781px;}
.h1a{height:29.678906px;}
.h39{height:30.945000px;}
.h23{height:30.960000px;}
.h3e{height:31.315500px;}
.h21{height:31.680000px;}
.h12{height:35.332031px;}
.h37{height:40.985156px;}
.h36{height:45.000000px;}
.h35{height:45.036000px;}
.h2b{height:46.425000px;}
.h5{height:46.638281px;}
.h2c{height:46.785000px;}
.h2a{height:46.800000px;}
.h22{height:47.556000px;}
.hd{height:47.891250px;}
.h1f{height:47.916000px;}
.h2e{height:49.055625px;}
.h3f{height:53.677969px;}
.h3{height:53.704687px;}
.h16{height:54.219375px;}
.hb{height:55.147500px;}
.h28{height:56.243537px;}
.h41{height:59.328281px;}
.h6{height:59.357813px;}
.h32{height:59.760000px;}
.h40{height:59.812031px;}
.h34{height:60.120000px;}
.h33{height:60.156000px;}
.hf{height:60.952500px;}
.h29{height:61.905000px;}
.h2d{height:61.941000px;}
.h2f{height:62.275500px;}
.h27{height:62.310000px;}
.h3a{height:64.425000px;}
.h24{height:64.440000px;}
.h26{height:65.010937px;}
.h8{height:66.757500px;}
.h7{height:70.664062px;}
.h9{height:72.326250px;}
.he{height:72.562500px;}
.h3b{height:80.671500px;}
.h1d{height:300.645000px;}
.h1c{height:300.675000px;}
.h10{height:328.395000px;}
.h30{height:447.240000px;}
.h18{height:563.910000px;}
.h11{height:1262.876085px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:29.880000px;}
.w9{width:31.680000px;}
.w1e{width:35.280000px;}
.w1d{width:36.036000px;}
.w1a{width:43.560000px;}
.w2c{width:60.105000px;}
.w12{width:61.200000px;}
.wf{width:61.236000px;}
.w29{width:61.920000px;}
.w11{width:65.556000px;}
.w26{width:66.262500px;}
.w28{width:68.430000px;}
.w2b{width:77.040000px;}
.w1c{width:77.400000px;}
.w10{width:79.596000px;}
.w19{width:82.116000px;}
.w20{width:86.760000px;}
.w21{width:86.790000px;}
.w23{width:86.796000px;}
.w25{width:87.120000px;}
.w24{width:87.141000px;}
.w1f{width:87.142500px;}
.w22{width:87.150000px;}
.w31{width:88.222500px;}
.w2d{width:95.070000px;}
.w13{width:96.862500px;}
.w8{width:97.950000px;}
.w16{width:102.990000px;}
.w14{width:106.920000px;}
.w2a{width:110.232000px;}
.w1b{width:112.032000px;}
.w33{width:154.470000px;}
.w32{width:154.485000px;}
.w34{width:154.515000px;}
.w30{width:155.910000px;}
.w7{width:188.325000px;}
.w35{width:190.125000px;}
.w27{width:198.765000px;}
.w2{width:264.690000px;}
.w2e{width:265.770000px;}
.wc{width:276.210000px;}
.we{width:280.890000px;}
.w2f{width:320.880000px;}
.w17{width:340.335000px;}
.w5{width:356.175000px;}
.w4{width:388.200000px;}
.w18{width:404.055000px;}
.w15{width:429.285000px;}
.wd{width:463.485000px;}
.wb{width:468.165000px;}
.w3{width:479.685000px;}
.w6{width:893.156250px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:1.080000px;}
.x1e{left:2.160000px;}
.x2a{left:3.942000px;}
.x41{left:5.400000px;}
.x42{left:6.840000px;}
.x2{left:8.266500px;}
.x1a{left:10.785000px;}
.x16{left:11.865000px;}
.x37{left:12.960000px;}
.x33{left:14.025000px;}
.x3f{left:15.120000px;}
.x2e{left:16.170000px;}
.x55{left:17.266500px;}
.x3c{left:18.360000px;}
.x3a{left:19.800000px;}
.x4b{left:21.226500px;}
.x3e{left:22.680000px;}
.x45{left:24.825000px;}
.x3b{left:25.920000px;}
.x49{left:27.345000px;}
.x40{left:29.160000px;}
.x12{left:30.582000px;}
.x3d{left:32.400000px;}
.x4a{left:34.546500px;}
.x65{left:36.765000px;}
.x11{left:38.502000px;}
.x28{left:39.582000px;}
.x2d{left:40.695000px;}
.x5c{left:43.245000px;}
.x27{left:51.138000px;}
.x15{left:58.695000px;}
.x31{left:67.701000px;}
.x5e{left:69.855000px;}
.x2f{left:73.815000px;}
.x66{left:77.065500px;}
.x17{left:81.375000px;}
.x1{left:85.009500px;}
.x69{left:86.449500px;}
.x44{left:88.249500px;}
.x67{left:103.345500px;}
.xf{left:106.236000px;}
.x4d{left:111.630000px;}
.x68{left:126.750000px;}
.xe{left:134.712000px;}
.x23{left:137.232000px;}
.x43{left:140.100000px;}
.xb{left:146.232000px;}
.x5d{left:152.370000px;}
.x19{left:154.530000px;}
.x47{left:160.635000px;}
.xc{left:162.075000px;}
.x8{left:166.035000px;}
.x34{left:167.100000px;}
.x6a{left:174.690000px;}
.x9{left:185.115000px;}
.x56{left:194.490000px;}
.x54{left:208.515000px;}
.x26{left:229.776000px;}
.x4{left:230.865000px;}
.x29{left:231.936000px;}
.x22{left:238.065000px;}
.x1b{left:244.905000px;}
.x21{left:252.105000px;}
.x1c{left:254.625000px;}
.x2c{left:279.450000px;}
.x57{left:282.345000px;}
.x46{left:293.505000px;}
.x18{left:301.065000px;}
.x5{left:310.785000px;}
.x6b{left:329.190000px;}
.x3{left:349.710000px;}
.x5f{left:351.870000px;}
.x14{left:353.655000px;}
.x58{left:369.870000px;}
.xa{left:377.430000px;}
.xd{left:386.430000px;}
.x10{left:395.430000px;}
.x60{left:421.380000px;}
.x4c{left:425.340000px;}
.x4e{left:432.540000px;}
.x1d{left:447.300000px;}
.x30{left:454.836000px;}
.x7{left:457.020000px;}
.x25{left:464.916000px;}
.x13{left:473.235000px;}
.x61{left:484.380000px;}
.x4f{left:515.370000px;}
.x59{left:545.265000px;}
.x32{left:548.505000px;}
.x2b{left:553.200000px;}
.x35{left:557.130000px;}
.x50{left:559.650000px;}
.x62{left:595.710000px;}
.x36{left:619.455000px;}
.x5a{left:633.150000px;}
.x6c{left:638.190000px;}
.x6{left:667.005000px;}
.x51{left:672.405000px;}
.x63{left:673.485000px;}
.x38{left:699.765000px;}
.x5b{left:721.005000px;}
.x48{left:723.525000px;}
.x1f{left:730.725000px;}
.x64{left:734.325000px;}
.x52{left:750.525000px;}
.x39{left:766.050000px;}
.x53{left:787.290000px;}
.x20{left:796.290000px;}
@media print{
.v3{vertical-align:-64.106667pt;}
.v4{vertical-align:-57.600000pt;}
.v5{vertical-align:-35.840000pt;}
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:21.760000pt;}
.v1{vertical-align:26.880000pt;}
.ls1d{letter-spacing:-2.560000pt;}
.ls1c{letter-spacing:-1.920000pt;}
.ls19{letter-spacing:-1.840000pt;}
.ls12{letter-spacing:-1.722667pt;}
.lse{letter-spacing:-1.712000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls16{letter-spacing:-1.114667pt;}
.ls10{letter-spacing:-0.864000pt;}
.ls1b{letter-spacing:-0.837333pt;}
.lsc{letter-spacing:-0.720000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.560000pt;}
.ls4{letter-spacing:-0.442667pt;}
.lsf{letter-spacing:-0.432533pt;}
.ls13{letter-spacing:-0.414933pt;}
.ls17{letter-spacing:-0.278933pt;}
.ls18{letter-spacing:-0.163733pt;}
.ls2{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.414933pt;}
.lsb{letter-spacing:0.442667pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.864000pt;}
.ls14{letter-spacing:1.280000pt;}
.ls6{letter-spacing:1.696000pt;}
.ls1a{letter-spacing:3.200000pt;}
.lsa{letter-spacing:10.958080pt;}
.ls8{letter-spacing:60.800000pt;}
.ls9{letter-spacing:793.365333pt;}
.wsc{word-spacing:-14.720000pt;}
.ws5{word-spacing:-14.304000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws13{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.602667pt;}
.ws0{word-spacing:-12.160000pt;}
.wsf{word-spacing:-11.996267pt;}
.wse{word-spacing:-11.881067pt;}
.ws2{word-spacing:-11.717333pt;}
.ws7{word-spacing:-11.600000pt;}
.ws1{word-spacing:-11.520000pt;}
.ws6{word-spacing:-11.440000pt;}
.ws11{word-spacing:-11.322667pt;}
.wsd{word-spacing:-11.045333pt;}
.ws8{word-spacing:-10.880000pt;}
.ws9{word-spacing:-10.437333pt;}
.ws10{word-spacing:-10.320000pt;}
.ws12{word-spacing:-9.600000pt;}
.wsa{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-12.721920pt;}
._16{margin-left:-10.161920pt;}
._14{margin-left:-7.642880pt;}
._17{margin-left:-5.445973pt;}
._f{margin-left:-4.346880pt;}
._5{margin-left:-2.954240pt;}
._0{margin-left:-1.702400pt;}
._1{width:1.070080pt;}
._3{width:2.521600pt;}
._2{width:4.108373pt;}
._7{width:5.739520pt;}
._9{width:7.004160pt;}
._8{width:8.624640pt;}
._d{width:9.879040pt;}
._e{width:10.813440pt;}
._c{width:11.706880pt;}
._24{width:12.768427pt;}
._25{width:13.934933pt;}
._10{width:14.899627pt;}
._6{width:16.640000pt;}
._4{width:17.636267pt;}
._a{width:19.138560pt;}
._b{width:20.640853pt;}
._12{width:21.562880pt;}
._13{width:22.876587pt;}
._20{width:24.804693pt;}
._1f{width:25.730560pt;}
._1e{width:26.946560pt;}
._19{width:28.331520pt;}
._1a{width:29.358080pt;}
._1b{width:30.681173pt;}
._23{width:31.665067pt;}
._21{width:33.265067pt;}
._1c{width:34.181120pt;}
._22{width:36.591787pt;}
._26{width:47.946240pt;}
._27{width:49.154987pt;}
._18{width:51.072000pt;}
._11{width:410.476373pt;}
._1d{width:725.765120pt;}
.fsb{font-size:2.560000pt;}
.fs8{font-size:5.120000pt;}
.fs6{font-size:10.240000pt;}
.fsa{font-size:21.760000pt;}
.fs9{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs2{font-size:53.760000pt;}
.fs4{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.y171{bottom:-4.160000pt;}
.y174{bottom:-3.840000pt;}
.y0{bottom:0.000000pt;}
.y16c{bottom:0.640000pt;}
.y3a{bottom:2.546667pt;}
.yf6{bottom:2.560000pt;}
.y125{bottom:2.866667pt;}
.y133{bottom:2.876000pt;}
.y2{bottom:2.880000pt;}
.y165{bottom:2.906667pt;}
.y121{bottom:3.186667pt;}
.y18a{bottom:3.196000pt;}
.y4{bottom:3.200000pt;}
.y41{bottom:3.520000pt;}
.y3c{bottom:7.040000pt;}
.y10a{bottom:9.266667pt;}
.y17d{bottom:9.586667pt;}
.y104{bottom:9.600000pt;}
.y127{bottom:9.906667pt;}
.y135{bottom:9.916000pt;}
.y119{bottom:9.920000pt;}
.yfd{bottom:10.240000pt;}
.yf1{bottom:13.760000pt;}
.y68{bottom:14.400000pt;}
.y67{bottom:15.360000pt;}
.y15a{bottom:16.000000pt;}
.y163{bottom:16.026667pt;}
.y167{bottom:16.320000pt;}
.y123{bottom:16.626667pt;}
.y18b{bottom:16.636000pt;}
.y103{bottom:16.640000pt;}
.y129{bottom:16.946667pt;}
.y131{bottom:16.956000pt;}
.y36{bottom:16.960000pt;}
.y11f{bottom:16.973333pt;}
.yf8{bottom:17.280000pt;}
.y101{bottom:17.320000pt;}
.y6c{bottom:18.240000pt;}
.y151{bottom:18.880000pt;}
.y157{bottom:22.720000pt;}
.y15e{bottom:22.760000pt;}
.y16b{bottom:23.040000pt;}
.y126{bottom:23.666667pt;}
.y12f{bottom:23.676000pt;}
.y11b{bottom:23.680000pt;}
.y115{bottom:23.720000pt;}
.y17f{bottom:24.626667pt;}
.y106{bottom:24.640000pt;}
.y159{bottom:29.440000pt;}
.y164{bottom:29.466667pt;}
.y15c{bottom:29.480000pt;}
.y124{bottom:30.386667pt;}
.y11d{bottom:30.400000pt;}
.y12a{bottom:30.706667pt;}
.y130{bottom:30.716000pt;}
.y35{bottom:30.720000pt;}
.y120{bottom:30.733333pt;}
.y117{bottom:30.760000pt;}
.y184{bottom:31.670667pt;}
.y6b{bottom:32.000000pt;}
.y150{bottom:34.240000pt;}
.y161{bottom:36.160000pt;}
.y134{bottom:37.436000pt;}
.y12d{bottom:37.466667pt;}
.y118{bottom:37.480000pt;}
.y34{bottom:41.594667pt;}
.y158{bottom:42.560000pt;}
.y160{bottom:42.880000pt;}
.y16a{bottom:42.906667pt;}
.y15d{bottom:42.920000pt;}
.y11c{bottom:44.160000pt;}
.y12c{bottom:44.186667pt;}
.y132{bottom:44.476000pt;}
.y116{bottom:44.520000pt;}
.y6a{bottom:46.080000pt;}
.y14f{bottom:49.626667pt;}
.y69{bottom:57.600000pt;}
.y40{bottom:57.920000pt;}
.y6{bottom:59.200000pt;}
.y3f{bottom:59.840000pt;}
.y14e{bottom:64.986667pt;}
.y136{bottom:76.192000pt;}
.y38{bottom:78.432000pt;}
.y14d{bottom:80.346667pt;}
.y189{bottom:85.476000pt;}
.y37{bottom:87.392000pt;}
.y83{bottom:87.712000pt;}
.y1b0{bottom:88.032000pt;}
.y226{bottom:88.352000pt;}
.y12e{bottom:88.676000pt;}
.yee{bottom:88.992000pt;}
.y5f{bottom:89.632000pt;}
.yb2{bottom:90.272000pt;}
.y14c{bottom:95.706667pt;}
.y33{bottom:99.552000pt;}
.y1f0{bottom:102.112000pt;}
.y1af{bottom:102.432000pt;}
.y82{bottom:103.072000pt;}
.yed{bottom:104.352000pt;}
.y5e{bottom:104.992000pt;}
.yb1{bottom:105.632000pt;}
.y14b{bottom:111.066667pt;}
.y183{bottom:113.956000pt;}
.y1ef{bottom:115.872000pt;}
.y1ae{bottom:117.152000pt;}
.y81{bottom:118.112000pt;}
.yec{bottom:119.712000pt;}
.y5d{bottom:120.352000pt;}
.yb0{bottom:120.992000pt;}
.y14a{bottom:126.426667pt;}
.y188{bottom:128.356000pt;}
.y225{bottom:129.632000pt;}
.y1ee{bottom:130.592000pt;}
.y1ad{bottom:130.912000pt;}
.y80{bottom:133.466667pt;}
.yeb{bottom:134.746667pt;}
.y5c{bottom:135.706667pt;}
.yaf{bottom:136.346667pt;}
.y149{bottom:141.786667pt;}
.y187{bottom:142.760000pt;}
.y224{bottom:143.386667pt;}
.y1ac{bottom:144.666667pt;}
.y12b{bottom:144.680000pt;}
.y1ed{bottom:145.306667pt;}
.y7f{bottom:148.826667pt;}
.yea{bottom:150.106667pt;}
.y5b{bottom:151.066667pt;}
.yae{bottom:151.706667pt;}
.y148{bottom:156.853333pt;}
.y223{bottom:157.146667pt;}
.y186{bottom:157.160000pt;}
.y1ab{bottom:158.426667pt;}
.y1ec{bottom:160.026667pt;}
.y7e{bottom:163.866667pt;}
.ye9{bottom:165.466667pt;}
.y5a{bottom:166.426667pt;}
.yad{bottom:167.066667pt;}
.y222{bottom:170.906667pt;}
.y185{bottom:171.880000pt;}
.y1aa{bottom:172.186667pt;}
.y147{bottom:172.213333pt;}
.y1eb{bottom:174.746667pt;}
.y22d{bottom:175.066667pt;}
.y22c{bottom:178.266667pt;}
.y7d{bottom:178.586667pt;}
.ye8{bottom:180.866667pt;}
.y22b{bottom:181.186667pt;}
.y59{bottom:181.826667pt;}
.yac{bottom:182.466667pt;}
.y39{bottom:183.440000pt;}
.y221{bottom:185.026667pt;}
.y1a9{bottom:185.986667pt;}
.y22a{bottom:186.306667pt;}
.y17e{bottom:186.320000pt;}
.y146{bottom:187.573333pt;}
.y1ea{bottom:189.506667pt;}
.y7c{bottom:193.346667pt;}
.y229{bottom:195.920000pt;}
.ye7{bottom:196.226667pt;}
.y58{bottom:197.186667pt;}
.yab{bottom:197.826667pt;}
.y220{bottom:198.786667pt;}
.y1a8{bottom:199.746667pt;}
.y128{bottom:200.400000pt;}
.y182{bottom:200.720000pt;}
.y145{bottom:202.933333pt;}
.y1e9{bottom:203.906667pt;}
.y7b{bottom:208.706667pt;}
.ye6{bottom:211.586667pt;}
.y228{bottom:212.226667pt;}
.y57{bottom:212.546667pt;}
.yaa{bottom:213.186667pt;}
.y1a7{bottom:213.506667pt;}
.y181{bottom:215.120000pt;}
.y1e8{bottom:217.666667pt;}
.y144{bottom:218.293333pt;}
.y7a{bottom:224.066667pt;}
.y227{bottom:225.346667pt;}
.y21f{bottom:226.306667pt;}
.ye5{bottom:226.946667pt;}
.y56{bottom:227.266667pt;}
.ya9{bottom:228.546667pt;}
.y180{bottom:229.520000pt;}
.y1e7{bottom:231.426667pt;}
.y143{bottom:233.653333pt;}
.y79{bottom:239.426667pt;}
.y21e{bottom:240.066667pt;}
.y55{bottom:241.026667pt;}
.y1a6{bottom:241.346667pt;}
.yf4{bottom:241.653333pt;}
.ye4{bottom:242.306667pt;}
.y122{bottom:242.640000pt;}
.ya8{bottom:243.586667pt;}
.y17c{bottom:244.240000pt;}
.y1e6{bottom:245.186667pt;}
.y66{bottom:245.813333pt;}
.yf3{bottom:246.773333pt;}
.y142{bottom:249.013333pt;}
.y65{bottom:250.933333pt;}
.y21d{bottom:253.826667pt;}
.y54{bottom:254.786667pt;}
.y1a5{bottom:256.066667pt;}
.ya7{bottom:257.346667pt;}
.ye3{bottom:257.666667pt;}
.y190{bottom:258.946667pt;}
.y64{bottom:264.053333pt;}
.y141{bottom:264.413333pt;}
.y53{bottom:265.666667pt;}
.ya6{bottom:266.626667pt;}
.y21c{bottom:267.586667pt;}
.y78{bottom:270.146667pt;}
.y1a4{bottom:270.786667pt;}
.y1e5{bottom:272.706667pt;}
.ye2{bottom:273.026667pt;}
.y17b{bottom:273.346667pt;}
.y18f{bottom:274.306667pt;}
.y63{bottom:275.253333pt;}
.y62{bottom:276.213333pt;}
.y17a{bottom:278.466667pt;}
.y140{bottom:279.773333pt;}
.ya5{bottom:280.386667pt;}
.y21b{bottom:281.346667pt;}
.y11e{bottom:284.560000pt;}
.y77{bottom:285.506667pt;}
.y1e4{bottom:286.466667pt;}
.ye1{bottom:288.386667pt;}
.ya4{bottom:289.693333pt;}
.y179{bottom:292.893333pt;}
.y13f{bottom:295.133333pt;}
.y21a{bottom:295.453333pt;}
.y1a3{bottom:299.933333pt;}
.y1e3{bottom:300.573333pt;}
.y76{bottom:300.893333pt;}
.ye0{bottom:303.773333pt;}
.ya3{bottom:305.053333pt;}
.y178{bottom:305.373333pt;}
.y219{bottom:309.213333pt;}
.y13e{bottom:310.493333pt;}
.y3b{bottom:313.373333pt;}
.y1a2{bottom:313.693333pt;}
.y1e2{bottom:314.333333pt;}
.y75{bottom:316.253333pt;}
.ydf{bottom:318.493333pt;}
.y177{bottom:319.773333pt;}
.ya2{bottom:320.413333pt;}
.y218{bottom:322.973333pt;}
.y13d{bottom:325.533333pt;}
.y11a{bottom:326.813333pt;}
.y1a1{bottom:327.453333pt;}
.y1e1{bottom:328.093333pt;}
.y74{bottom:331.293333pt;}
.yde{bottom:333.213333pt;}
.y176{bottom:334.173333pt;}
.ya1{bottom:335.773333pt;}
.y217{bottom:336.733333pt;}
.y13c{bottom:340.893333pt;}
.y1a0{bottom:341.213333pt;}
.y1e0{bottom:341.853333pt;}
.y73{bottom:346.653333pt;}
.ydd{bottom:347.933333pt;}
.y175{bottom:348.573333pt;}
.y216{bottom:350.493333pt;}
.ya0{bottom:351.133333pt;}
.y19f{bottom:354.973333pt;}
.y1df{bottom:355.613333pt;}
.y13b{bottom:355.933333pt;}
.y72{bottom:362.013333pt;}
.ydc{bottom:362.653333pt;}
.y173{bottom:362.973333pt;}
.y215{bottom:364.253333pt;}
.y9f{bottom:366.493333pt;}
.y154{bottom:367.773333pt;}
.y19e{bottom:369.053333pt;}
.y1de{bottom:369.373333pt;}
.y13a{bottom:370.653333pt;}
.y153{bottom:372.893333pt;}
.y71{bottom:377.373333pt;}
.y172{bottom:377.693333pt;}
.y214{bottom:378.013333pt;}
.y9e{bottom:381.853333pt;}
.y114{bottom:382.493333pt;}
.y19d{bottom:382.813333pt;}
.y1dd{bottom:383.133333pt;}
.y139{bottom:385.400000pt;}
.y152{bottom:386.680000pt;}
.y213{bottom:391.773333pt;}
.ydb{bottom:392.093333pt;}
.y70{bottom:392.733333pt;}
.y32{bottom:394.653333pt;}
.y19c{bottom:396.573333pt;}
.y1dc{bottom:396.893333pt;}
.y9d{bottom:397.213333pt;}
.y212{bottom:405.893333pt;}
.yda{bottom:406.533333pt;}
.y6f{bottom:408.133333pt;}
.y31{bottom:408.773333pt;}
.y19b{bottom:410.373333pt;}
.y1db{bottom:411.013333pt;}
.y9c{bottom:412.613333pt;}
.y211{bottom:419.653333pt;}
.yd9{bottom:421.573333pt;}
.y170{bottom:421.893333pt;}
.y6e{bottom:423.493333pt;}
.y30{bottom:424.133333pt;}
.y1da{bottom:424.773333pt;}
.y16f{bottom:427.013333pt;}
.y9b{bottom:427.653333pt;}
.y210{bottom:433.413333pt;}
.yd8{bottom:435.333333pt;}
.y6d{bottom:437.893333pt;}
.y113{bottom:438.533333pt;}
.y2f{bottom:439.493333pt;}
.y9a{bottom:443.013333pt;}
.yd7{bottom:444.613333pt;}
.y20f{bottom:447.173333pt;}
.y61{bottom:447.493333pt;}
.y16e{bottom:448.773333pt;}
.y19a{bottom:451.653333pt;}
.y1d9{bottom:452.293333pt;}
.y112{bottom:453.893333pt;}
.y2e{bottom:454.853333pt;}
.y99{bottom:458.373333pt;}
.y20e{bottom:460.933333pt;}
.y16d{bottom:463.173333pt;}
.y199{bottom:465.413333pt;}
.y1d8{bottom:466.373333pt;}
.yd6{bottom:467.653333pt;}
.y2d{bottom:470.213333pt;}
.y138{bottom:471.493333pt;}
.y169{bottom:472.773333pt;}
.y111{bottom:473.413333pt;}
.y98{bottom:473.733333pt;}
.y20d{bottom:474.693333pt;}
.y198{bottom:479.493333pt;}
.y1d7{bottom:481.093333pt;}
.yd5{bottom:483.013333pt;}
.y2c{bottom:485.573333pt;}
.y110{bottom:488.453333pt;}
.y97{bottom:489.093333pt;}
.y197{bottom:493.253333pt;}
.y1d6{bottom:495.493333pt;}
.yd4{bottom:498.373333pt;}
.y2b{bottom:500.933333pt;}
.y20c{bottom:502.213333pt;}
.y10f{bottom:503.813333pt;}
.y96{bottom:504.453333pt;}
.y196{bottom:507.013333pt;}
.y1d5{bottom:510.213333pt;}
.yd3{bottom:513.760000pt;}
.y2a{bottom:516.000000pt;}
.y20b{bottom:516.320000pt;}
.y95{bottom:519.520000pt;}
.y18e{bottom:519.840000pt;}
.y195{bottom:520.800000pt;}
.y1d4{bottom:524.640000pt;}
.y168{bottom:526.880000pt;}
.yd2{bottom:529.120000pt;}
.y20a{bottom:530.080000pt;}
.y29{bottom:530.400000pt;}
.y10e{bottom:534.560000pt;}
.y94{bottom:534.880000pt;}
.y18d{bottom:535.200000pt;}
.y1d3{bottom:538.400000pt;}
.y28{bottom:543.520000pt;}
.y209{bottom:543.840000pt;}
.yd1{bottom:544.480000pt;}
.y10d{bottom:549.920000pt;}
.y93{bottom:550.240000pt;}
.y18c{bottom:550.560000pt;}
.y1d2{bottom:552.480000pt;}
.y208{bottom:557.600000pt;}
.y27{bottom:559.520000pt;}
.y10c{bottom:565.280000pt;}
.y92{bottom:565.920000pt;}
.y1d1{bottom:566.240000pt;}
.y166{bottom:567.520000pt;}
.y207{bottom:571.360000pt;}
.yd0{bottom:574.880000pt;}
.y26{bottom:577.120000pt;}
.y1d0{bottom:580.000000pt;}
.y10b{bottom:580.640000pt;}
.y91{bottom:581.280000pt;}
.y206{bottom:585.120000pt;}
.y25{bottom:590.240000pt;}
.y1cf{bottom:593.760000pt;}
.y52{bottom:595.680000pt;}
.y194{bottom:596.000000pt;}
.y90{bottom:596.320000pt;}
.y205{bottom:598.880000pt;}
.y24{bottom:603.040000pt;}
.ycf{bottom:604.000000pt;}
.y1ce{bottom:607.520000pt;}
.y193{bottom:611.360000pt;}
.y8f{bottom:611.680000pt;}
.y204{bottom:612.640000pt;}
.yce{bottom:613.280000pt;}
.y23{bottom:616.800000pt;}
.y1cd{bottom:621.280000pt;}
.y162{bottom:621.600000pt;}
.ycd{bottom:626.426667pt;}
.y8e{bottom:627.066667pt;}
.y22{bottom:630.586667pt;}
.ycc{bottom:634.746667pt;}
.y1cc{bottom:635.066667pt;}
.yf0{bottom:640.186667pt;}
.yf2{bottom:640.200000pt;}
.y203{bottom:640.506667pt;}
.y8d{bottom:642.426667pt;}
.y21{bottom:644.666667pt;}
.y1cb{bottom:648.826667pt;}
.ycb{bottom:650.106667pt;}
.y202{bottom:654.266667pt;}
.y8c{bottom:657.786667pt;}
.y20{bottom:658.426667pt;}
.y15f{bottom:662.266667pt;}
.y1ca{bottom:662.906667pt;}
.y109{bottom:664.826667pt;}
.yca{bottom:665.466667pt;}
.y201{bottom:668.026667pt;}
.y1f{bottom:672.186667pt;}
.y8b{bottom:673.146667pt;}
.y1c9{bottom:676.666667pt;}
.y108{bottom:679.226667pt;}
.yc9{bottom:680.826667pt;}
.y200{bottom:681.786667pt;}
.y1e{bottom:685.946667pt;}
.y8a{bottom:688.506667pt;}
.y1c8{bottom:690.426667pt;}
.y107{bottom:693.626667pt;}
.y1ff{bottom:695.546667pt;}
.yc8{bottom:696.186667pt;}
.y1d{bottom:699.706667pt;}
.y89{bottom:703.866667pt;}
.y1c7{bottom:704.186667pt;}
.y105{bottom:708.026667pt;}
.y1fe{bottom:709.306667pt;}
.yc7{bottom:711.546667pt;}
.y1c{bottom:712.826667pt;}
.y15b{bottom:716.346667pt;}
.y1c6{bottom:717.946667pt;}
.y88{bottom:719.226667pt;}
.y100{bottom:722.426667pt;}
.y1fd{bottom:723.066667pt;}
.y1b{bottom:725.626667pt;}
.yc6{bottom:726.906667pt;}
.y1a{bottom:730.746667pt;}
.y1c5{bottom:731.706667pt;}
.y87{bottom:734.626667pt;}
.y1fc{bottom:736.866667pt;}
.y102{bottom:737.186667pt;}
.yc5{bottom:742.306667pt;}
.y19{bottom:744.546667pt;}
.y1c4{bottom:745.506667pt;}
.y86{bottom:749.986667pt;}
.y1fb{bottom:750.946667pt;}
.yc4{bottom:757.666667pt;}
.y18{bottom:758.626667pt;}
.y1c3{bottom:759.266667pt;}
.y1fa{bottom:764.706667pt;}
.y85{bottom:765.026667pt;}
.yff{bottom:765.346667pt;}
.y17{bottom:770.146667pt;}
.y156{bottom:770.466667pt;}
.yc3{bottom:772.706667pt;}
.y1c2{bottom:773.346667pt;}
.y16{bottom:778.466667pt;}
.yfc{bottom:779.746667pt;}
.y84{bottom:780.386667pt;}
.y51{bottom:781.346667pt;}
.yc2{bottom:786.466667pt;}
.y1c1{bottom:787.106667pt;}
.y1f9{bottom:792.226667pt;}
.yfe{bottom:794.146667pt;}
.y50{bottom:795.746667pt;}
.y15{bottom:796.386667pt;}
.y1c0{bottom:800.866667pt;}
.y1f8{bottom:805.986667pt;}
.yfb{bottom:808.546667pt;}
.yc1{bottom:809.506667pt;}
.y14{bottom:811.106667pt;}
.y1bf{bottom:814.626667pt;}
.yc0{bottom:818.786667pt;}
.y1f7{bottom:819.746667pt;}
.yf7{bottom:823.266667pt;}
.y155{bottom:824.226667pt;}
.y13{bottom:825.506667pt;}
.y4f{bottom:826.466667pt;}
.y1be{bottom:828.706667pt;}
.y1f6{bottom:833.506667pt;}
.ybf{bottom:834.146667pt;}
.yfa{bottom:837.666667pt;}
.y12{bottom:841.506667pt;}
.y4e{bottom:841.826667pt;}
.y1bd{bottom:843.426667pt;}
.y1f5{bottom:847.293333pt;}
.ybe{bottom:849.533333pt;}
.yf9{bottom:852.093333pt;}
.y11{bottom:854.013333pt;}
.y4d{bottom:857.213333pt;}
.y1bc{bottom:857.853333pt;}
.y1f4{bottom:861.373333pt;}
.ybd{bottom:864.893333pt;}
.yf5{bottom:866.493333pt;}
.y10{bottom:868.413333pt;}
.y4c{bottom:872.573333pt;}
.y1f3{bottom:875.133333pt;}
.ybc{bottom:880.253333pt;}
.yf{bottom:884.413333pt;}
.y1bb{bottom:887.293333pt;}
.y4b{bottom:887.933333pt;}
.y1f2{bottom:888.893333pt;}
.ybb{bottom:895.613333pt;}
.ye{bottom:896.893333pt;}
.y1ba{bottom:902.013333pt;}
.y1f1{bottom:902.653333pt;}
.y4a{bottom:903.293333pt;}
.yba{bottom:910.973333pt;}
.yd{bottom:911.293333pt;}
.y1b9{bottom:916.413333pt;}
.y49{bottom:918.653333pt;}
.yb9{bottom:926.333333pt;}
.yc{bottom:928.573333pt;}
.y1b8{bottom:930.173333pt;}
.y48{bottom:934.013333pt;}
.yb8{bottom:941.373333pt;}
.y1b7{bottom:943.933333pt;}
.yb{bottom:946.493333pt;}
.y47{bottom:949.053333pt;}
.y60{bottom:951.293333pt;}
.yb7{bottom:956.773333pt;}
.y1b6{bottom:957.733333pt;}
.ya{bottom:961.893333pt;}
.y46{bottom:964.453333pt;}
.y1b5{bottom:971.813333pt;}
.yb6{bottom:972.133333pt;}
.y9{bottom:978.853333pt;}
.y192{bottom:979.493333pt;}
.y45{bottom:979.813333pt;}
.y1b4{bottom:985.573333pt;}
.yb5{bottom:987.493333pt;}
.y191{bottom:994.853333pt;}
.y44{bottom:995.173333pt;}
.y8{bottom:996.133333pt;}
.y1b3{bottom:999.333333pt;}
.yef{bottom:1001.253333pt;}
.yb4{bottom:1002.853333pt;}
.y43{bottom:1010.533333pt;}
.y1b2{bottom:1013.093333pt;}
.y7{bottom:1014.053333pt;}
.yb3{bottom:1016.613333pt;}
.y137{bottom:1025.573333pt;}
.y42{bottom:1025.893333pt;}
.y1b1{bottom:1026.853333pt;}
.y5{bottom:1028.453333pt;}
.y3{bottom:1038.053333pt;}
.y3e{bottom:1040.293333pt;}
.y1{bottom:1052.133333pt;}
.y3d{bottom:1055.013333pt;}
.h25{height:2.512500pt;}
.h19{height:5.025000pt;}
.hc{height:10.050000pt;}
.ha{height:10.320000pt;}
.h31{height:13.440000pt;}
.h2{height:13.746667pt;}
.h3d{height:13.756000pt;}
.h1e{height:13.760000pt;}
.h3c{height:13.778667pt;}
.h38{height:13.786667pt;}
.h17{height:13.792000pt;}
.h4{height:14.066667pt;}
.h20{height:14.080000pt;}
.h13{height:14.386667pt;}
.h15{height:14.752000pt;}
.h14{height:18.546667pt;}
.h1b{height:21.356250pt;}
.h1a{height:26.381250pt;}
.h39{height:27.506667pt;}
.h23{height:27.520000pt;}
.h3e{height:27.836000pt;}
.h21{height:28.160000pt;}
.h12{height:31.406250pt;}
.h37{height:36.431250pt;}
.h36{height:40.000000pt;}
.h35{height:40.032000pt;}
.h2b{height:41.266667pt;}
.h5{height:41.456250pt;}
.h2c{height:41.586667pt;}
.h2a{height:41.600000pt;}
.h22{height:42.272000pt;}
.hd{height:42.570000pt;}
.h1f{height:42.592000pt;}
.h2e{height:43.605000pt;}
.h3f{height:47.713750pt;}
.h3{height:47.737500pt;}
.h16{height:48.195000pt;}
.hb{height:49.020000pt;}
.h28{height:49.994255pt;}
.h41{height:52.736250pt;}
.h6{height:52.762500pt;}
.h32{height:53.120000pt;}
.h40{height:53.166250pt;}
.h34{height:53.440000pt;}
.h33{height:53.472000pt;}
.hf{height:54.180000pt;}
.h29{height:55.026667pt;}
.h2d{height:55.058667pt;}
.h2f{height:55.356000pt;}
.h27{height:55.386667pt;}
.h3a{height:57.266667pt;}
.h24{height:57.280000pt;}
.h26{height:57.787500pt;}
.h8{height:59.340000pt;}
.h7{height:62.812500pt;}
.h9{height:64.290000pt;}
.he{height:64.500000pt;}
.h3b{height:71.708000pt;}
.h1d{height:267.240000pt;}
.h1c{height:267.266667pt;}
.h10{height:291.906667pt;}
.h30{height:397.546667pt;}
.h18{height:501.253333pt;}
.h11{height:1122.556520pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:26.560000pt;}
.w9{width:28.160000pt;}
.w1e{width:31.360000pt;}
.w1d{width:32.032000pt;}
.w1a{width:38.720000pt;}
.w2c{width:53.426667pt;}
.w12{width:54.400000pt;}
.wf{width:54.432000pt;}
.w29{width:55.040000pt;}
.w11{width:58.272000pt;}
.w26{width:58.900000pt;}
.w28{width:60.826667pt;}
.w2b{width:68.480000pt;}
.w1c{width:68.800000pt;}
.w10{width:70.752000pt;}
.w19{width:72.992000pt;}
.w20{width:77.120000pt;}
.w21{width:77.146667pt;}
.w23{width:77.152000pt;}
.w25{width:77.440000pt;}
.w24{width:77.458667pt;}
.w1f{width:77.460000pt;}
.w22{width:77.466667pt;}
.w31{width:78.420000pt;}
.w2d{width:84.506667pt;}
.w13{width:86.100000pt;}
.w8{width:87.066667pt;}
.w16{width:91.546667pt;}
.w14{width:95.040000pt;}
.w2a{width:97.984000pt;}
.w1b{width:99.584000pt;}
.w33{width:137.306667pt;}
.w32{width:137.320000pt;}
.w34{width:137.346667pt;}
.w30{width:138.586667pt;}
.w7{width:167.400000pt;}
.w35{width:169.000000pt;}
.w27{width:176.680000pt;}
.w2{width:235.280000pt;}
.w2e{width:236.240000pt;}
.wc{width:245.520000pt;}
.we{width:249.680000pt;}
.w2f{width:285.226667pt;}
.w17{width:302.520000pt;}
.w5{width:316.600000pt;}
.w4{width:345.066667pt;}
.w18{width:359.160000pt;}
.w15{width:381.586667pt;}
.wd{width:411.986667pt;}
.wb{width:416.146667pt;}
.w3{width:426.386667pt;}
.w6{width:793.916667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:0.960000pt;}
.x1e{left:1.920000pt;}
.x2a{left:3.504000pt;}
.x41{left:4.800000pt;}
.x42{left:6.080000pt;}
.x2{left:7.348000pt;}
.x1a{left:9.586667pt;}
.x16{left:10.546667pt;}
.x37{left:11.520000pt;}
.x33{left:12.466667pt;}
.x3f{left:13.440000pt;}
.x2e{left:14.373333pt;}
.x55{left:15.348000pt;}
.x3c{left:16.320000pt;}
.x3a{left:17.600000pt;}
.x4b{left:18.868000pt;}
.x3e{left:20.160000pt;}
.x45{left:22.066667pt;}
.x3b{left:23.040000pt;}
.x49{left:24.306667pt;}
.x40{left:25.920000pt;}
.x12{left:27.184000pt;}
.x3d{left:28.800000pt;}
.x4a{left:30.708000pt;}
.x65{left:32.680000pt;}
.x11{left:34.224000pt;}
.x28{left:35.184000pt;}
.x2d{left:36.173333pt;}
.x5c{left:38.440000pt;}
.x27{left:45.456000pt;}
.x15{left:52.173333pt;}
.x31{left:60.178667pt;}
.x5e{left:62.093333pt;}
.x2f{left:65.613333pt;}
.x66{left:68.502667pt;}
.x17{left:72.333333pt;}
.x1{left:75.564000pt;}
.x69{left:76.844000pt;}
.x44{left:78.444000pt;}
.x67{left:91.862667pt;}
.xf{left:94.432000pt;}
.x4d{left:99.226667pt;}
.x68{left:112.666667pt;}
.xe{left:119.744000pt;}
.x23{left:121.984000pt;}
.x43{left:124.533333pt;}
.xb{left:129.984000pt;}
.x5d{left:135.440000pt;}
.x19{left:137.360000pt;}
.x47{left:142.786667pt;}
.xc{left:144.066667pt;}
.x8{left:147.586667pt;}
.x34{left:148.533333pt;}
.x6a{left:155.280000pt;}
.x9{left:164.546667pt;}
.x56{left:172.880000pt;}
.x54{left:185.346667pt;}
.x26{left:204.245333pt;}
.x4{left:205.213333pt;}
.x29{left:206.165333pt;}
.x22{left:211.613333pt;}
.x1b{left:217.693333pt;}
.x21{left:224.093333pt;}
.x1c{left:226.333333pt;}
.x2c{left:248.400000pt;}
.x57{left:250.973333pt;}
.x46{left:260.893333pt;}
.x18{left:267.613333pt;}
.x5{left:276.253333pt;}
.x6b{left:292.613333pt;}
.x3{left:310.853333pt;}
.x5f{left:312.773333pt;}
.x14{left:314.360000pt;}
.x58{left:328.773333pt;}
.xa{left:335.493333pt;}
.xd{left:343.493333pt;}
.x10{left:351.493333pt;}
.x60{left:374.560000pt;}
.x4c{left:378.080000pt;}
.x4e{left:384.480000pt;}
.x1d{left:397.600000pt;}
.x30{left:404.298667pt;}
.x7{left:406.240000pt;}
.x25{left:413.258667pt;}
.x13{left:420.653333pt;}
.x61{left:430.560000pt;}
.x4f{left:458.106667pt;}
.x59{left:484.680000pt;}
.x32{left:487.560000pt;}
.x2b{left:491.733333pt;}
.x35{left:495.226667pt;}
.x50{left:497.466667pt;}
.x62{left:529.520000pt;}
.x36{left:550.626667pt;}
.x5a{left:562.800000pt;}
.x6c{left:567.280000pt;}
.x6{left:592.893333pt;}
.x51{left:597.693333pt;}
.x63{left:598.653333pt;}
.x38{left:622.013333pt;}
.x5b{left:640.893333pt;}
.x48{left:643.133333pt;}
.x1f{left:649.533333pt;}
.x64{left:652.733333pt;}
.x52{left:667.133333pt;}
.x39{left:680.933333pt;}
.x53{left:699.813333pt;}
.x20{left:707.813333pt;}
}




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