
    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_a5aed815bebc845e11ceeece.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_dc970be2749c7719d7708e90.woff')format("woff");}.ff2{font-family:ff2;line-height:0.942000;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_5c56511626f5a99d9147e6fc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.760742;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_a77f4dfa586c58cbb1e334b2.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_f32d69c768a983d4356566ff.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_a12df6815882fc723dcbf7a2.woff')format("woff");}.ff6{font-family:ff6;line-height:0.901855;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_075ec0e04cd96afbb280ea24.woff')format("woff");}.ff7{font-family:ff7;line-height:0.926758;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;}
.m5{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);}
.m4{transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245720,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.246829,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246829,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246829,0.000000,0.000000,0.250000,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(0.253377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253377,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254005,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-55.945200px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:55.945200px;}
.v1{vertical-align:71.926800px;}
.ls7{letter-spacing:-4.681048px;}
.ls6{letter-spacing:-3.907200px;}
.ls8{letter-spacing:-3.871573px;}
.ls4{letter-spacing:-0.336000px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.182027px;}
.ls0{letter-spacing:0.864000px;}
.ls2{letter-spacing:1.728000px;}
.ls1{letter-spacing:61.776000px;}
.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;}
}
.ws3{word-spacing:-72.000000px;}
.ws9{word-spacing:-32.615238px;}
.ws8{word-spacing:-32.615071px;}
.wse{word-spacing:-29.177657px;}
.ws0{word-spacing:-26.696736px;}
.wsd{word-spacing:-26.551724px;}
.ws1{word-spacing:-20.764128px;}
.ws4{word-spacing:-16.012800px;}
.ws5{word-spacing:-14.678400px;}
.ws7{word-spacing:-12.904510px;}
.ws6{word-spacing:-10.771200px;}
.ws13{word-spacing:-7.260000px;}
.ws11{word-spacing:-0.182027px;}
.wsf{word-spacing:0.000000px;}
.ws10{word-spacing:0.336000px;}
.ws12{word-spacing:3.871573px;}
.wsa{word-spacing:17.568000px;}
.wsb{word-spacing:25.080000px;}
.wsc{word-spacing:110.313819px;}
.ws2{word-spacing:3055.896624px;}
._e{margin-left:-6960.278200px;}
._7{margin-left:-17.316000px;}
._9{margin-left:-13.302000px;}
._3{margin-left:-10.890000px;}
._6{margin-left:-9.015600px;}
._b{margin-left:-7.345800px;}
._4{margin-left:-5.598000px;}
._a{margin-left:-4.268160px;}
._5{margin-left:-2.736000px;}
._1{margin-left:-1.728000px;}
._2{width:1.558728px;}
._0{width:4.851672px;}
._10{width:25.106400px;}
._8{width:45.000000px;}
._f{width:61.776000px;}
._c{width:627.077538px;}
._d{width:669.398396px;}
.fc6{color:transparent;}
.fc5{color:rgb(71,70,71);}
.fc1{color:rgb(41,43,120);}
.fc4{color:rgb(78,78,78);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(1,1,1);}
.fc0{color:rgb(35,31,32);}
.fse{font-size:52.800000px;}
.fs12{font-size:55.350000px;}
.fsd{font-size:57.600000px;}
.fs10{font-size:63.257400px;}
.fsb{font-size:66.240000px;}
.fsc{font-size:72.000000px;}
.fs11{font-size:79.071600px;}
.fs6{font-size:91.013400px;}
.fs1a{font-size:95.509800px;}
.fs3{font-size:97.944000px;}
.fs1c{font-size:104.955600px;}
.fs14{font-size:117.320400px;}
.fs16{font-size:117.321000px;}
.fs19{font-size:120.000000px;}
.fs1b{font-size:121.748400px;}
.fs2{font-size:125.928000px;}
.fs18{font-size:132.000000px;}
.fs17{font-size:144.000000px;}
.fs8{font-size:148.362600px;}
.fs9{font-size:156.000000px;}
.fs4{font-size:168.000000px;}
.fs5{font-size:180.000000px;}
.fsf{font-size:198.000000px;}
.fs1{font-size:216.000000px;}
.fs15{font-size:237.119400px;}
.fsa{font-size:288.000000px;}
.fs7{font-size:307.992000px;}
.fs0{font-size:432.000000px;}
.fs13{font-size:1200.000000px;}
.y12f{bottom:-0.005400px;}
.y133{bottom:-0.004200px;}
.y135{bottom:-0.004050px;}
.y137{bottom:-0.003900px;}
.y139{bottom:-0.002400px;}
.y122{bottom:-0.001800px;}
.y124{bottom:-0.001650px;}
.y0{bottom:0.000000px;}
.y12d{bottom:0.000600px;}
.y131{bottom:0.003000px;}
.y129{bottom:0.003900px;}
.y12b{bottom:0.005550px;}
.y127{bottom:0.005700px;}
.y9b{bottom:4.286250px;}
.y99{bottom:4.286850px;}
.yac{bottom:4.289550px;}
.yb6{bottom:4.289700px;}
.y92{bottom:4.289850px;}
.y94{bottom:4.290000px;}
.ya9{bottom:4.290150px;}
.y97{bottom:4.290300px;}
.ya7{bottom:4.290450px;}
.yc3{bottom:4.290600px;}
.yb3{bottom:4.290750px;}
.ybd{bottom:4.290900px;}
.y90{bottom:4.679700px;}
.y7a{bottom:4.680000px;}
.y86{bottom:4.680600px;}
.y106{bottom:5.128650px;}
.y100{bottom:5.128950px;}
.y102{bottom:5.129250px;}
.y104{bottom:5.129700px;}
.yfe{bottom:5.130000px;}
.y11a{bottom:5.132700px;}
.y118{bottom:5.133750px;}
.y112{bottom:5.134050px;}
.y114{bottom:5.134500px;}
.y10e{bottom:5.134650px;}
.y116{bottom:5.134800px;}
.y110{bottom:5.135100px;}
.y10a{bottom:5.136750px;}
.y10c{bottom:5.137200px;}
.y13f{bottom:5.138100px;}
.y120{bottom:5.138550px;}
.y141{bottom:5.140200px;}
.y11e{bottom:5.141700px;}
.y11c{bottom:5.142000px;}
.y108{bottom:5.142600px;}
.y88{bottom:5.384100px;}
.y7c{bottom:5.384250px;}
.y6d{bottom:5.384700px;}
.y74{bottom:5.849400px;}
.y7f{bottom:5.849700px;}
.y78{bottom:5.849850px;}
.y6f{bottom:5.850000px;}
.y84{bottom:5.850150px;}
.y76{bottom:5.850300px;}
.y71{bottom:5.850600px;}
.y13b{bottom:6.417750px;}
.y13d{bottom:6.418800px;}
.y19{bottom:10.936350px;}
.y35{bottom:10.937250px;}
.y1b{bottom:10.937400px;}
.y10{bottom:10.938150px;}
.y30{bottom:10.938600px;}
.y23{bottom:10.939200px;}
.y12{bottom:10.939500px;}
.y17{bottom:10.939950px;}
.y27{bottom:10.940250px;}
.y2b{bottom:10.940850px;}
.yc{bottom:10.941450px;}
.y1f{bottom:10.941900px;}
.y1d{bottom:10.942050px;}
.y1a{bottom:10.942500px;}
.ye{bottom:10.943400px;}
.y14{bottom:10.943850px;}
.y16{bottom:10.944750px;}
.y25{bottom:10.946100px;}
.y2e{bottom:10.947300px;}
.y21{bottom:10.947900px;}
.y29{bottom:10.950300px;}
.y143{bottom:112.935000px;}
.y6b{bottom:189.000000px;}
.y6a{bottom:243.000000px;}
.y69{bottom:297.000000px;}
.y68{bottom:351.000000px;}
.y67{bottom:405.000000px;}
.y66{bottom:459.000000px;}
.y65{bottom:526.464750px;}
.ya4{bottom:553.500000px;}
.ya3{bottom:723.258150px;}
.ya2{bottom:782.658150px;}
.ya1{bottom:842.058150px;}
.ya0{bottom:901.458150px;}
.y9f{bottom:960.858150px;}
.y9e{bottom:1020.258150px;}
.y9d{bottom:1079.658150px;}
.y63{bottom:1120.464750px;}
.y9c{bottom:1139.058150px;}
.y14f{bottom:1282.984800px;}
.y159{bottom:1288.352550px;}
.y15e{bottom:1288.946550px;}
.y16b{bottom:1292.481450px;}
.y167{bottom:1293.026550px;}
.y148{bottom:1319.676758px;}
.y16c{bottom:1322.396550px;}
.y9a{bottom:1324.429500px;}
.y14e{bottom:1326.184800px;}
.y158{bottom:1327.952550px;}
.y15d{bottom:1328.546550px;}
.y166{bottom:1329.026550px;}
.y98{bottom:1344.873000px;}
.y165{bottom:1365.026550px;}
.y157{bottom:1367.552550px;}
.y15c{bottom:1368.146550px;}
.y14d{bottom:1369.384800px;}
.y16d{bottom:1401.120503px;}
.y156{bottom:1419.725550px;}
.y164{bottom:1423.376550px;}
.y14c{bottom:1438.612800px;}
.y15b{bottom:1439.525550px;}
.y147{bottom:1453.412100px;}
.y172{bottom:1454.635200px;}
.y155{bottom:1459.325550px;}
.y163{bottom:1459.376550px;}
.y15a{bottom:1479.125550px;}
.y16e{bottom:1479.844455px;}
.y14b{bottom:1481.812800px;}
.y162{bottom:1495.376550px;}
.y154{bottom:1498.925550px;}
.y96{bottom:1534.950000px;}
.y152{bottom:1550.504550px;}
.y95{bottom:1555.395000px;}
.y16f{bottom:1558.544530px;}
.y161{bottom:1560.266550px;}
.y14a{bottom:1572.784800px;}
.y146{bottom:1582.552800px;}
.y151{bottom:1590.104550px;}
.y160{bottom:1596.266550px;}
.y149{bottom:1615.984800px;}
.y150{bottom:1629.704550px;}
.y15f{bottom:1632.266550px;}
.y170{bottom:1637.268483px;}
.y145{bottom:1677.648900px;}
.y173{bottom:1692.603450px;}
.y153{bottom:1698.344550px;}
.y93{bottom:1745.460000px;}
.y16a{bottom:1758.625278px;}
.y171{bottom:1758.648900px;}
.y91{bottom:1765.905000px;}
.y140{bottom:1779.435000px;}
.y13c{bottom:1786.320000px;}
.y13e{bottom:1798.590000px;}
.y13a{bottom:1827.990000px;}
.y11f{bottom:1849.005000px;}
.yfd{bottom:1870.560000px;}
.yff{bottom:1917.855000px;}
.y101{bottom:1965.150000px;}
.y103{bottom:2012.445000px;}
.y8f{bottom:2023.080000px;}
.y144{bottom:2033.565000px;}
.y8e{bottom:2044.965000px;}
.y142{bottom:2047.065000px;}
.y105{bottom:2059.740000px;}
.y89{bottom:2080.800000px;}
.y107{bottom:2107.020000px;}
.y8a{bottom:2110.200000px;}
.y8b{bottom:2139.600000px;}
.y109{bottom:2154.330000px;}
.y8c{bottom:2169.015000px;}
.y121{bottom:2191.575000px;}
.y8d{bottom:2198.415000px;}
.y87{bottom:2199.435000px;}
.y10b{bottom:2201.625000px;}
.y123{bottom:2202.570000px;}
.y125{bottom:2213.565000px;}
.y126{bottom:2226.195000px;}
.y85{bottom:2233.605000px;}
.y128{bottom:2238.270000px;}
.y10d{bottom:2248.920000px;}
.y12a{bottom:2249.265000px;}
.y12c{bottom:2253.660000px;}
.y83{bottom:2255.490000px;}
.y12e{bottom:2269.605000px;}
.y130{bottom:2283.870000px;}
.y7d{bottom:2291.325000px;}
.y132{bottom:2294.865000px;}
.y10f{bottom:2296.215000px;}
.y134{bottom:2305.860000px;}
.y136{bottom:2316.855000px;}
.y7e{bottom:2320.725000px;}
.y138{bottom:2327.850000px;}
.y111{bottom:2343.510000px;}
.y80{bottom:2350.125000px;}
.y81{bottom:2379.525000px;}
.y113{bottom:2390.805000px;}
.y82{bottom:2408.940000px;}
.y7b{bottom:2409.960000px;}
.y115{bottom:2438.100000px;}
.y79{bottom:2444.130000px;}
.y77{bottom:2466.000000px;}
.y117{bottom:2485.395000px;}
.y6e{bottom:2501.835000px;}
.y70{bottom:2531.250000px;}
.y119{bottom:2532.690000px;}
.y72{bottom:2560.650000px;}
.y11b{bottom:2579.985000px;}
.y73{bottom:2590.050000px;}
.y75{bottom:2619.450000px;}
.y6c{bottom:2620.470000px;}
.y11d{bottom:2627.280000px;}
.yfc{bottom:2685.600000px;}
.y168{bottom:2685.604200px;}
.ya5{bottom:2711.055000px;}
.y64{bottom:2713.464750px;}
.y32{bottom:2724.465000px;}
.y26{bottom:2726.280000px;}
.ya6{bottom:2733.255000px;}
.y3a{bottom:2743.392462px;}
.ya8{bottom:2755.455000px;}
.yaa{bottom:2777.655000px;}
.y39{bottom:2787.901242px;}
.yab{bottom:2799.855000px;}
.yad{bottom:2822.055000px;}
.yae{bottom:2844.255000px;}
.yaf{bottom:2866.455000px;}
.y31{bottom:2875.260000px;}
.y24{bottom:2877.060000px;}
.y61{bottom:2883.576450px;}
.yb0{bottom:2888.655000px;}
.yb1{bottom:2910.855000px;}
.y60{bottom:2922.576450px;}
.yb2{bottom:2933.055000px;}
.yb4{bottom:2955.270000px;}
.y5f{bottom:2961.576450px;}
.yb5{bottom:2977.470000px;}
.yb7{bottom:2999.670000px;}
.y5e{bottom:3000.576450px;}
.yb8{bottom:3021.870000px;}
.y5d{bottom:3039.576450px;}
.yb9{bottom:3044.070000px;}
.yba{bottom:3066.270000px;}
.y5c{bottom:3078.576450px;}
.ybb{bottom:3088.470000px;}
.ybc{bottom:3110.670000px;}
.y5b{bottom:3117.576450px;}
.ybe{bottom:3132.870000px;}
.y2f{bottom:3146.100000px;}
.y22{bottom:3147.915000px;}
.ybf{bottom:3155.070000px;}
.y5a{bottom:3156.576450px;}
.yc0{bottom:3177.270000px;}
.y59{bottom:3195.576450px;}
.yc1{bottom:3199.470000px;}
.y33{bottom:3221.160000px;}
.yc2{bottom:3221.685000px;}
.y28{bottom:3222.975000px;}
.y58{bottom:3234.576450px;}
.yc4{bottom:3243.885000px;}
.yc5{bottom:3266.085000px;}
.y57{bottom:3273.576450px;}
.yc6{bottom:3288.285000px;}
.yc7{bottom:3310.485000px;}
.y56{bottom:3312.576450px;}
.yc8{bottom:3332.685000px;}
.y55{bottom:3351.576450px;}
.yc9{bottom:3354.885000px;}
.yca{bottom:3377.085000px;}
.y54{bottom:3390.576450px;}
.y2d{bottom:3398.760000px;}
.ycb{bottom:3399.285000px;}
.y20{bottom:3400.575000px;}
.ycc{bottom:3421.485000px;}
.y53{bottom:3429.576450px;}
.ycd{bottom:3443.685000px;}
.y36{bottom:3448.627500px;}
.yce{bottom:3465.885000px;}
.y52{bottom:3468.576450px;}
.ycf{bottom:3488.085000px;}
.y51{bottom:3507.576450px;}
.yd0{bottom:3510.300000px;}
.y34{bottom:3519.060000px;}
.y2a{bottom:3520.875000px;}
.yd1{bottom:3532.500000px;}
.y50{bottom:3546.576450px;}
.yd2{bottom:3554.700000px;}
.yd3{bottom:3576.900000px;}
.y4f{bottom:3585.576450px;}
.yd4{bottom:3599.100000px;}
.y38{bottom:3608.346420px;}
.y11{bottom:3610.995000px;}
.yd5{bottom:3621.300000px;}
.y4e{bottom:3624.576450px;}
.yd6{bottom:3643.500000px;}
.y37{bottom:3652.855200px;}
.y4d{bottom:3663.576450px;}
.yd7{bottom:3665.700000px;}
.yd8{bottom:3687.900000px;}
.y4c{bottom:3702.576450px;}
.yd9{bottom:3710.100000px;}
.yda{bottom:3732.300000px;}
.y4b{bottom:3741.576450px;}
.ydb{bottom:3754.500000px;}
.yf{bottom:3761.775000px;}
.ydc{bottom:3776.715000px;}
.y4a{bottom:3780.576450px;}
.ydd{bottom:3798.915000px;}
.y49{bottom:3819.576450px;}
.yde{bottom:3821.115000px;}
.ydf{bottom:3843.315000px;}
.y48{bottom:3858.576450px;}
.ye0{bottom:3865.515000px;}
.ye1{bottom:3887.715000px;}
.y47{bottom:3897.576450px;}
.ye2{bottom:3909.915000px;}
.ye3{bottom:3932.115000px;}
.y46{bottom:3936.576450px;}
.ye4{bottom:3954.315000px;}
.y45{bottom:3975.576450px;}
.ye5{bottom:3976.515000px;}
.ye6{bottom:3998.715000px;}
.y44{bottom:4014.576450px;}
.ye7{bottom:4020.915000px;}
.yd{bottom:4032.615000px;}
.y18{bottom:4032.630000px;}
.ye8{bottom:4043.115000px;}
.y43{bottom:4053.576450px;}
.ye9{bottom:4065.330000px;}
.yea{bottom:4087.530000px;}
.y42{bottom:4092.576450px;}
.yeb{bottom:4109.730000px;}
.y41{bottom:4131.576450px;}
.yec{bottom:4131.930000px;}
.yed{bottom:4154.130000px;}
.y40{bottom:4170.576450px;}
.yee{bottom:4176.330000px;}
.yef{bottom:4198.530000px;}
.y3f{bottom:4209.576450px;}
.yf0{bottom:4220.730000px;}
.y1c{bottom:4233.045000px;}
.y13{bottom:4241.280000px;}
.yf1{bottom:4242.930000px;}
.y3e{bottom:4248.576450px;}
.yf2{bottom:4265.130000px;}
.yb{bottom:4285.290000px;}
.yf3{bottom:4287.330000px;}
.y3d{bottom:4287.576450px;}
.yf4{bottom:4309.530000px;}
.y3c{bottom:4326.576450px;}
.yf5{bottom:4331.745000px;}
.y2c{bottom:4337.619900px;}
.yf6{bottom:4353.945000px;}
.y3b{bottom:4365.576450px;}
.yf7{bottom:4376.145000px;}
.y1e{bottom:4389.330000px;}
.y15{bottom:4396.305000px;}
.yf8{bottom:4398.345000px;}
.y169{bottom:4418.059200px;}
.yf9{bottom:4420.545000px;}
.y62{bottom:4428.000750px;}
.yfa{bottom:4442.745000px;}
.yfb{bottom:4464.945000px;}
.y6{bottom:4580.100000px;}
.ya{bottom:4597.348350px;}
.y5{bottom:4644.486300px;}
.y9{bottom:4651.348350px;}
.y4{bottom:4698.000000px;}
.y8{bottom:4705.348350px;}
.y7{bottom:4759.348350px;}
.y3{bottom:4765.500000px;}
.y2{bottom:4838.400750px;}
.y1{bottom:4968.000750px;}
.h20{height:4.395000px;}
.h1d{height:7.695000px;}
.h1b{height:10.995000px;}
.h1f{height:12.075000px;}
.h21{height:14.265000px;}
.h16{height:15.612000px;}
.h14{height:15.615000px;}
.h12{height:17.040000px;}
.he{height:17.895000px;}
.h18{height:18.705000px;}
.h1a{height:18.720000px;}
.h10{height:21.300000px;}
.h22{height:23.385000px;}
.h8{height:30.495000px;}
.h6{height:30.510000px;}
.h15{height:38.465625px;}
.h1e{height:40.323340px;}
.h13{height:41.962500px;}
.h19{height:46.084004px;}
.hf{height:48.256875px;}
.h11{height:52.453125px;}
.h1c{height:57.604896px;}
.h7{height:67.415687px;}
.h2b{height:69.533746px;}
.h3{height:70.617624px;}
.h2d{height:76.410547px;}
.h2e{height:76.461795px;}
.h25{height:85.412459px;}
.h27{height:85.412896px;}
.h2a{height:87.421875px;}
.h2c{height:88.636164px;}
.h29{height:96.164062px;}
.h28{height:104.906250px;}
.ha{height:108.012030px;}
.hb{height:113.648438px;}
.h4{height:121.128000px;}
.h5{height:131.044922px;}
.hd{height:131.132812px;}
.h17{height:144.246094px;}
.h2{height:162.720888px;}
.h26{height:172.629407px;}
.hc{height:199.968750px;}
.h9{height:224.226598px;}
.h1{height:314.507812px;}
.h23{height:370.305000px;}
.h24{height:873.632812px;}
.h0{height:5184.000000px;}
.w1f{width:6.450000px;}
.w1a{width:10.011000px;}
.w5c{width:16.369500px;}
.w19{width:17.490000px;}
.w1b{width:20.022000px;}
.w48{width:21.285000px;}
.w54{width:21.984000px;}
.w60{width:21.990000px;}
.w38{width:22.005000px;}
.w52{width:22.500000px;}
.w30{width:22.740000px;}
.w5b{width:23.383500px;}
.w47{width:23.475000px;}
.w51{width:23.490000px;}
.w4c{width:24.210000px;}
.w36{width:24.930000px;}
.w21{width:24.936000px;}
.w24{width:24.937500px;}
.w34{width:24.960000px;}
.w2b{width:25.440000px;}
.w2e{width:25.680000px;}
.w4e{width:25.695000px;}
.w3f{width:26.160000px;}
.w22{width:26.415000px;}
.w3b{width:26.430000px;}
.w4f{width:26.445000px;}
.w31{width:26.910000px;}
.w56{width:26.965500px;}
.w5d{width:26.970000px;}
.w39{width:27.135000px;}
.w2d{width:27.165000px;}
.w53{width:27.250500px;}
.w32{width:27.870000px;}
.w29{width:27.885000px;}
.w5a{width:28.125000px;}
.w57{width:28.137000px;}
.w55{width:28.138500px;}
.w59{width:28.140000px;}
.w58{width:28.143000px;}
.w4b{width:28.620000px;}
.w49{width:29.340000px;}
.w44{width:30.075000px;}
.w43{width:30.795000px;}
.w33{width:30.825000px;}
.w50{width:33.030000px;}
.w1c{width:34.005000px;}
.w4d{width:34.245000px;}
.w45{width:34.260000px;}
.w37{width:34.500000px;}
.w4a{width:35.220000px;}
.w3d{width:35.955000px;}
.w27{width:35.970000px;}
.w1d{width:36.000000px;}
.w2c{width:36.675000px;}
.w3c{width:36.705000px;}
.w26{width:37.176000px;}
.w28{width:37.425000px;}
.w25{width:38.155500px;}
.w23{width:38.157000px;}
.w42{width:38.160000px;}
.w35{width:38.625000px;}
.w41{width:39.375000px;}
.w20{width:40.557000px;}
.w1e{width:41.625000px;}
.w3e{width:42.570000px;}
.w18{width:43.170000px;}
.w46{width:43.320000px;}
.w12{width:43.365000px;}
.w13{width:43.575000px;}
.wd{width:43.770000px;}
.wc{width:44.520000px;}
.w6{width:44.623500px;}
.w14{width:44.835000px;}
.w7{width:44.955000px;}
.we{width:45.030000px;}
.w1{width:45.060000px;}
.w2f{width:45.495000px;}
.w8{width:46.230000px;}
.w2a{width:46.245000px;}
.w2{width:46.335000px;}
.w3a{width:46.965000px;}
.w15{width:49.785000px;}
.wf{width:50.010000px;}
.w9{width:51.345000px;}
.w3{width:51.465000px;}
.w40{width:63.870000px;}
.w16{width:67.215000px;}
.w10{width:67.515000px;}
.w17{width:68.460000px;}
.w11{width:68.775000px;}
.wa{width:69.315000px;}
.w4{width:69.480000px;}
.wb{width:70.590000px;}
.w5{width:70.767000px;}
.w5f{width:94.140000px;}
.w5e{width:106.845000px;}
.w63{width:533.790000px;}
.w61{width:600.150000px;}
.w62{width:633.390000px;}
.w0{width:3888.000000px;}
.x0{left:0.000000px;}
.x97{left:11.875500px;}
.x95{left:16.964250px;}
.x29{left:148.500000px;}
.x28{left:150.000000px;}
.x30{left:176.643000px;}
.x2f{left:186.654000px;}
.x51{left:197.562000px;}
.x31{left:211.252500px;}
.x2a{left:215.964000px;}
.x52{left:217.276500px;}
.x33{left:227.047500px;}
.x2e{left:239.115000px;}
.x32{left:249.450000px;}
.x5e{left:262.019550px;}
.x36{left:308.898000px;}
.x35{left:318.909000px;}
.x53{left:329.817000px;}
.x37{left:343.507500px;}
.x54{left:349.531500px;}
.x39{left:359.302500px;}
.x34{left:371.370000px;}
.x38{left:381.720000px;}
.x5{left:413.781000px;}
.x1{left:440.363550px;}
.x3b{left:451.179000px;}
.x55{left:462.072000px;}
.x3c{left:475.777500px;}
.x56{left:481.786500px;}
.x3e{left:491.572500px;}
.x3a{left:503.640000px;}
.x50{left:509.163000px;}
.x3d{left:513.975000px;}
.x3{left:540.000000px;}
.x41{left:573.423000px;}
.x40{left:583.434000px;}
.x57{left:594.342000px;}
.x42{left:608.032500px;}
.x58{left:614.056500px;}
.x44{left:623.827500px;}
.x3f{left:635.895000px;}
.x43{left:646.245000px;}
.x2c{left:702.000000px;}
.x46{left:705.678000px;}
.x2b{left:715.500000px;}
.x59{left:726.595500px;}
.x2d{left:729.000000px;}
.x47{left:740.302500px;}
.x5a{left:746.313000px;}
.x49{left:756.082500px;}
.x45{left:768.150000px;}
.x48{left:778.500000px;}
.x4c{left:837.948000px;}
.x4b{left:847.959000px;}
.x5b{left:858.867000px;}
.x4d{left:872.557500px;}
.x5c{left:878.566500px;}
.x4f{left:888.352500px;}
.x4a{left:900.420000px;}
.x4e{left:910.755000px;}
.x4{left:918.018300px;}
.x2{left:994.835550px;}
.x94{left:1063.788000px;}
.x20{left:1066.823700px;}
.x96{left:1072.468500px;}
.x6{left:1078.662600px;}
.xd2{left:1088.157750px;}
.x1d{left:1091.985000px;}
.x81{left:1096.582500px;}
.x21{left:1131.769428px;}
.x82{left:1135.401000px;}
.xc4{left:1144.177800px;}
.xc6{left:1170.360758px;}
.x1f{left:1174.448700px;}
.x25{left:1178.800372px;}
.x83{left:1180.125000px;}
.x18{left:1186.461900px;}
.xc{left:1209.096000px;}
.x24{left:1211.773960px;}
.x84{left:1225.437000px;}
.x85{left:1269.583500px;}
.xc3{left:1272.105000px;}
.x86{left:1314.309000px;}
.x87{left:1359.033000px;}
.x88{left:1403.766000px;}
.xcb{left:1430.059050px;}
.xc8{left:1431.643050px;}
.xd{left:1443.163500px;}
.x89{left:1448.491500px;}
.x8a{left:1493.217000px;}
.x8b{left:1537.935000px;}
.xb{left:1540.800000px;}
.x1c{left:1545.810000px;}
.x8c{left:1582.680000px;}
.xca{left:1583.887050px;}
.xc9{left:1584.895050px;}
.xcc{left:1586.407050px;}
.x8d{left:1627.395000px;}
.x1e{left:1662.735000px;}
.x8e{left:1672.125000px;}
.x8f{left:1716.855000px;}
.xce{left:1746.336450px;}
.x5d{left:1755.000000px;}
.x1a{left:1759.170000px;}
.x9{left:1761.360000px;}
.x1b{left:1774.995000px;}
.xa{left:1777.725000px;}
.x19{left:1790.100000px;}
.x8{left:1793.325000px;}
.x90{left:1806.315000px;}
.xcd{left:1828.671450px;}
.x91{left:1851.030000px;}
.xc5{left:1884.164100px;}
.x92{left:1895.760000px;}
.x26{left:1917.757392px;}
.x16{left:1921.305000px;}
.x23{left:1924.656253px;}
.x27{left:1925.991517px;}
.x93{left:1940.490000px;}
.x22{left:1966.902504px;}
.x98{left:2003.190000px;}
.x99{left:2048.505000px;}
.x12{left:2070.090000px;}
.x9a{left:2092.650000px;}
.xc2{left:2116.425000px;}
.x9b{left:2137.365000px;}
.x9c{left:2182.095000px;}
.xc7{left:2206.130850px;}
.x9d{left:2226.825000px;}
.x9e{left:2271.555000px;}
.x13{left:2301.135000px;}
.xbe{left:2304.885000px;}
.x9f{left:2316.270000px;}
.xa0{left:2361.015000px;}
.xbd{left:2366.520000px;}
.x15{left:2377.170000px;}
.x11{left:2387.160000px;}
.xa1{left:2405.730000px;}
.xbf{left:2422.290000px;}
.xa2{left:2450.460000px;}
.xc0{left:2467.515000px;}
.xcf{left:2477.253450px;}
.x17{left:2494.620000px;}
.xd0{left:2504.247450px;}
.xc1{left:2512.740000px;}
.xa3{left:2539.920000px;}
.xa4{left:2584.635000px;}
.x14{left:2591.505000px;}
.xf{left:2607.180000px;}
.x10{left:2623.500000px;}
.xa5{left:2629.365000px;}
.xe{left:2639.070000px;}
.xd3{left:2651.833134px;}
.xa6{left:2674.095000px;}
.x69{left:2714.160000px;}
.xa7{left:2718.825000px;}
.x62{left:2731.785000px;}
.x68{left:2735.430000px;}
.x66{left:2739.360000px;}
.x60{left:2740.560000px;}
.x5f{left:2742.045000px;}
.x67{left:2743.500000px;}
.x6d{left:2744.970000px;}
.x65{left:2747.175000px;}
.x6b{left:2748.645000px;}
.x61{left:2750.115000px;}
.x63{left:2752.545000px;}
.x6c{left:2753.775000px;}
.x64{left:2755.245000px;}
.x6a{left:2756.715000px;}
.xa8{left:2763.555000px;}
.x6e{left:2804.040000px;}
.xa9{left:2808.270000px;}
.x6f{left:2854.710000px;}
.xaa{left:2870.985000px;}
.x70{left:2905.380000px;}
.xab{left:2915.700000px;}
.xd1{left:2954.099850px;}
.x71{left:2956.065000px;}
.xac{left:2960.430000px;}
.xad{left:3005.160000px;}
.x72{left:3006.735000px;}
.xae{left:3050.475000px;}
.x73{left:3057.405000px;}
.xaf{left:3094.605000px;}
.x74{left:3108.075000px;}
.xb0{left:3139.335000px;}
.x75{left:3158.745000px;}
.xb1{left:3184.065000px;}
.x76{left:3209.415000px;}
.xb2{left:3228.795000px;}
.x77{left:3260.085000px;}
.xb3{left:3273.525000px;}
.x7{left:3308.458050px;}
.x78{left:3311.250000px;}
.xb4{left:3318.255000px;}
.x79{left:3361.425000px;}
.xb5{left:3362.985000px;}
.xd8{left:3381.287850px;}
.xd6{left:3397.815131px;}
.xb6{left:3407.700000px;}
.x7a{left:3412.110000px;}
.xd5{left:3424.319100px;}
.xd7{left:3449.723850px;}
.xb7{left:3452.430000px;}
.x7b{left:3462.780000px;}
.xd4{left:3482.044200px;}
.xb8{left:3497.160000px;}
.xd9{left:3506.184750px;}
.x7c{left:3513.450000px;}
.xb9{left:3541.890000px;}
.x7d{left:3564.120000px;}
.xba{left:3586.605000px;}
.x7e{left:3614.790000px;}
.xbb{left:3631.350000px;}
.x7f{left:3665.460000px;}
.xbc{left:3676.065000px;}
.x80{left:3716.130000px;}
@media print{
.v2{vertical-align:-49.729067pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:49.729067pt;}
.v1{vertical-align:63.934933pt;}
.ls7{letter-spacing:-4.160931pt;}
.ls6{letter-spacing:-3.473067pt;}
.ls8{letter-spacing:-3.441398pt;}
.ls4{letter-spacing:-0.298667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.161802pt;}
.ls0{letter-spacing:0.768000pt;}
.ls2{letter-spacing:1.536000pt;}
.ls1{letter-spacing:54.912000pt;}
.ws3{word-spacing:-64.000000pt;}
.ws9{word-spacing:-28.991323pt;}
.ws8{word-spacing:-28.991174pt;}
.wse{word-spacing:-25.935695pt;}
.ws0{word-spacing:-23.730432pt;}
.wsd{word-spacing:-23.601533pt;}
.ws1{word-spacing:-18.457003pt;}
.ws4{word-spacing:-14.233600pt;}
.ws5{word-spacing:-13.047467pt;}
.ws7{word-spacing:-11.470675pt;}
.ws6{word-spacing:-9.574400pt;}
.ws13{word-spacing:-6.453333pt;}
.ws11{word-spacing:-0.161802pt;}
.wsf{word-spacing:0.000000pt;}
.ws10{word-spacing:0.298667pt;}
.ws12{word-spacing:3.441398pt;}
.wsa{word-spacing:15.616000pt;}
.wsb{word-spacing:22.293333pt;}
.wsc{word-spacing:98.056728pt;}
.ws2{word-spacing:2716.352555pt;}
._e{margin-left:-6186.913955pt;}
._7{margin-left:-15.392000pt;}
._9{margin-left:-11.824000pt;}
._3{margin-left:-9.680000pt;}
._6{margin-left:-8.013867pt;}
._b{margin-left:-6.529600pt;}
._4{margin-left:-4.976000pt;}
._a{margin-left:-3.793920pt;}
._5{margin-left:-2.432000pt;}
._1{margin-left:-1.536000pt;}
._2{width:1.385536pt;}
._0{width:4.312597pt;}
._10{width:22.316800pt;}
._8{width:40.000000pt;}
._f{width:54.912000pt;}
._c{width:557.402256pt;}
._d{width:595.020797pt;}
.fse{font-size:46.933333pt;}
.fs12{font-size:49.200000pt;}
.fsd{font-size:51.200000pt;}
.fs10{font-size:56.228800pt;}
.fsb{font-size:58.880000pt;}
.fsc{font-size:64.000000pt;}
.fs11{font-size:70.285867pt;}
.fs6{font-size:80.900800pt;}
.fs1a{font-size:84.897600pt;}
.fs3{font-size:87.061333pt;}
.fs1c{font-size:93.293867pt;}
.fs14{font-size:104.284800pt;}
.fs16{font-size:104.285333pt;}
.fs19{font-size:106.666667pt;}
.fs1b{font-size:108.220800pt;}
.fs2{font-size:111.936000pt;}
.fs18{font-size:117.333333pt;}
.fs17{font-size:128.000000pt;}
.fs8{font-size:131.877867pt;}
.fs9{font-size:138.666667pt;}
.fs4{font-size:149.333333pt;}
.fs5{font-size:160.000000pt;}
.fsf{font-size:176.000000pt;}
.fs1{font-size:192.000000pt;}
.fs15{font-size:210.772800pt;}
.fsa{font-size:256.000000pt;}
.fs7{font-size:273.770667pt;}
.fs0{font-size:384.000000pt;}
.fs13{font-size:1066.666667pt;}
.y12f{bottom:-0.004800pt;}
.y133{bottom:-0.003733pt;}
.y135{bottom:-0.003600pt;}
.y137{bottom:-0.003467pt;}
.y139{bottom:-0.002133pt;}
.y122{bottom:-0.001600pt;}
.y124{bottom:-0.001467pt;}
.y0{bottom:0.000000pt;}
.y12d{bottom:0.000533pt;}
.y131{bottom:0.002667pt;}
.y129{bottom:0.003467pt;}
.y12b{bottom:0.004933pt;}
.y127{bottom:0.005067pt;}
.y9b{bottom:3.810000pt;}
.y99{bottom:3.810533pt;}
.yac{bottom:3.812933pt;}
.yb6{bottom:3.813067pt;}
.y92{bottom:3.813200pt;}
.y94{bottom:3.813333pt;}
.ya9{bottom:3.813467pt;}
.y97{bottom:3.813600pt;}
.ya7{bottom:3.813733pt;}
.yc3{bottom:3.813867pt;}
.yb3{bottom:3.814000pt;}
.ybd{bottom:3.814133pt;}
.y90{bottom:4.159733pt;}
.y7a{bottom:4.160000pt;}
.y86{bottom:4.160533pt;}
.y106{bottom:4.558800pt;}
.y100{bottom:4.559067pt;}
.y102{bottom:4.559333pt;}
.y104{bottom:4.559733pt;}
.yfe{bottom:4.560000pt;}
.y11a{bottom:4.562400pt;}
.y118{bottom:4.563333pt;}
.y112{bottom:4.563600pt;}
.y114{bottom:4.564000pt;}
.y10e{bottom:4.564133pt;}
.y116{bottom:4.564267pt;}
.y110{bottom:4.564533pt;}
.y10a{bottom:4.566000pt;}
.y10c{bottom:4.566400pt;}
.y13f{bottom:4.567200pt;}
.y120{bottom:4.567600pt;}
.y141{bottom:4.569067pt;}
.y11e{bottom:4.570400pt;}
.y11c{bottom:4.570667pt;}
.y108{bottom:4.571200pt;}
.y88{bottom:4.785867pt;}
.y7c{bottom:4.786000pt;}
.y6d{bottom:4.786400pt;}
.y74{bottom:5.199467pt;}
.y7f{bottom:5.199733pt;}
.y78{bottom:5.199867pt;}
.y6f{bottom:5.200000pt;}
.y84{bottom:5.200133pt;}
.y76{bottom:5.200267pt;}
.y71{bottom:5.200533pt;}
.y13b{bottom:5.704667pt;}
.y13d{bottom:5.705600pt;}
.y19{bottom:9.721200pt;}
.y35{bottom:9.722000pt;}
.y1b{bottom:9.722133pt;}
.y10{bottom:9.722800pt;}
.y30{bottom:9.723200pt;}
.y23{bottom:9.723733pt;}
.y12{bottom:9.724000pt;}
.y17{bottom:9.724400pt;}
.y27{bottom:9.724667pt;}
.y2b{bottom:9.725200pt;}
.yc{bottom:9.725733pt;}
.y1f{bottom:9.726133pt;}
.y1d{bottom:9.726267pt;}
.y1a{bottom:9.726667pt;}
.ye{bottom:9.727467pt;}
.y14{bottom:9.727867pt;}
.y16{bottom:9.728667pt;}
.y25{bottom:9.729867pt;}
.y2e{bottom:9.730933pt;}
.y21{bottom:9.731467pt;}
.y29{bottom:9.733600pt;}
.y143{bottom:100.386667pt;}
.y6b{bottom:168.000000pt;}
.y6a{bottom:216.000000pt;}
.y69{bottom:264.000000pt;}
.y68{bottom:312.000000pt;}
.y67{bottom:360.000000pt;}
.y66{bottom:408.000000pt;}
.y65{bottom:467.968667pt;}
.ya4{bottom:492.000000pt;}
.ya3{bottom:642.896133pt;}
.ya2{bottom:695.696133pt;}
.ya1{bottom:748.496133pt;}
.ya0{bottom:801.296133pt;}
.y9f{bottom:854.096133pt;}
.y9e{bottom:906.896133pt;}
.y9d{bottom:959.696133pt;}
.y63{bottom:995.968667pt;}
.y9c{bottom:1012.496133pt;}
.y14f{bottom:1140.430933pt;}
.y159{bottom:1145.202267pt;}
.y15e{bottom:1145.730267pt;}
.y16b{bottom:1148.872400pt;}
.y167{bottom:1149.356933pt;}
.y148{bottom:1173.046007pt;}
.y16c{bottom:1175.463600pt;}
.y9a{bottom:1177.270667pt;}
.y14e{bottom:1178.830933pt;}
.y158{bottom:1180.402267pt;}
.y15d{bottom:1180.930267pt;}
.y166{bottom:1181.356933pt;}
.y98{bottom:1195.442667pt;}
.y165{bottom:1213.356933pt;}
.y157{bottom:1215.602267pt;}
.y15c{bottom:1216.130267pt;}
.y14d{bottom:1217.230933pt;}
.y16d{bottom:1245.440447pt;}
.y156{bottom:1261.978267pt;}
.y164{bottom:1265.223600pt;}
.y14c{bottom:1278.766933pt;}
.y15b{bottom:1279.578267pt;}
.y147{bottom:1291.921867pt;}
.y172{bottom:1293.009067pt;}
.y155{bottom:1297.178267pt;}
.y163{bottom:1297.223600pt;}
.y15a{bottom:1314.778267pt;}
.y16e{bottom:1315.417294pt;}
.y14b{bottom:1317.166933pt;}
.y162{bottom:1329.223600pt;}
.y154{bottom:1332.378267pt;}
.y96{bottom:1364.400000pt;}
.y152{bottom:1378.226267pt;}
.y95{bottom:1382.573333pt;}
.y16f{bottom:1385.372916pt;}
.y161{bottom:1386.903600pt;}
.y14a{bottom:1398.030933pt;}
.y146{bottom:1406.713600pt;}
.y151{bottom:1413.426267pt;}
.y160{bottom:1418.903600pt;}
.y149{bottom:1436.430933pt;}
.y150{bottom:1448.626267pt;}
.y15f{bottom:1450.903600pt;}
.y170{bottom:1455.349763pt;}
.y145{bottom:1491.243467pt;}
.y173{bottom:1504.536400pt;}
.y153{bottom:1509.639600pt;}
.y93{bottom:1551.520000pt;}
.y16a{bottom:1563.222469pt;}
.y171{bottom:1563.243467pt;}
.y91{bottom:1569.693333pt;}
.y140{bottom:1581.720000pt;}
.y13c{bottom:1587.840000pt;}
.y13e{bottom:1598.746667pt;}
.y13a{bottom:1624.880000pt;}
.y11f{bottom:1643.560000pt;}
.yfd{bottom:1662.720000pt;}
.yff{bottom:1704.760000pt;}
.y101{bottom:1746.800000pt;}
.y103{bottom:1788.840000pt;}
.y8f{bottom:1798.293333pt;}
.y144{bottom:1807.613333pt;}
.y8e{bottom:1817.746667pt;}
.y142{bottom:1819.613333pt;}
.y105{bottom:1830.880000pt;}
.y89{bottom:1849.600000pt;}
.y107{bottom:1872.906667pt;}
.y8a{bottom:1875.733333pt;}
.y8b{bottom:1901.866667pt;}
.y109{bottom:1914.960000pt;}
.y8c{bottom:1928.013333pt;}
.y121{bottom:1948.066667pt;}
.y8d{bottom:1954.146667pt;}
.y87{bottom:1955.053333pt;}
.y10b{bottom:1957.000000pt;}
.y123{bottom:1957.840000pt;}
.y125{bottom:1967.613333pt;}
.y126{bottom:1978.840000pt;}
.y85{bottom:1985.426667pt;}
.y128{bottom:1989.573333pt;}
.y10d{bottom:1999.040000pt;}
.y12a{bottom:1999.346667pt;}
.y12c{bottom:2003.253333pt;}
.y83{bottom:2004.880000pt;}
.y12e{bottom:2017.426667pt;}
.y130{bottom:2030.106667pt;}
.y7d{bottom:2036.733333pt;}
.y132{bottom:2039.880000pt;}
.y10f{bottom:2041.080000pt;}
.y134{bottom:2049.653333pt;}
.y136{bottom:2059.426667pt;}
.y7e{bottom:2062.866667pt;}
.y138{bottom:2069.200000pt;}
.y111{bottom:2083.120000pt;}
.y80{bottom:2089.000000pt;}
.y81{bottom:2115.133333pt;}
.y113{bottom:2125.160000pt;}
.y82{bottom:2141.280000pt;}
.y7b{bottom:2142.186667pt;}
.y115{bottom:2167.200000pt;}
.y79{bottom:2172.560000pt;}
.y77{bottom:2192.000000pt;}
.y117{bottom:2209.240000pt;}
.y6e{bottom:2223.853333pt;}
.y70{bottom:2250.000000pt;}
.y119{bottom:2251.280000pt;}
.y72{bottom:2276.133333pt;}
.y11b{bottom:2293.320000pt;}
.y73{bottom:2302.266667pt;}
.y75{bottom:2328.400000pt;}
.y6c{bottom:2329.306667pt;}
.y11d{bottom:2335.360000pt;}
.yfc{bottom:2387.200000pt;}
.y168{bottom:2387.203733pt;}
.ya5{bottom:2409.826667pt;}
.y64{bottom:2411.968667pt;}
.y32{bottom:2421.746667pt;}
.y26{bottom:2423.360000pt;}
.ya6{bottom:2429.560000pt;}
.y3a{bottom:2438.571077pt;}
.ya8{bottom:2449.293333pt;}
.yaa{bottom:2469.026667pt;}
.y39{bottom:2478.134437pt;}
.yab{bottom:2488.760000pt;}
.yad{bottom:2508.493333pt;}
.yae{bottom:2528.226667pt;}
.yaf{bottom:2547.960000pt;}
.y31{bottom:2555.786667pt;}
.y24{bottom:2557.386667pt;}
.y61{bottom:2563.179067pt;}
.yb0{bottom:2567.693333pt;}
.yb1{bottom:2587.426667pt;}
.y60{bottom:2597.845733pt;}
.yb2{bottom:2607.160000pt;}
.yb4{bottom:2626.906667pt;}
.y5f{bottom:2632.512400pt;}
.yb5{bottom:2646.640000pt;}
.yb7{bottom:2666.373333pt;}
.y5e{bottom:2667.179067pt;}
.yb8{bottom:2686.106667pt;}
.y5d{bottom:2701.845733pt;}
.yb9{bottom:2705.840000pt;}
.yba{bottom:2725.573333pt;}
.y5c{bottom:2736.512400pt;}
.ybb{bottom:2745.306667pt;}
.ybc{bottom:2765.040000pt;}
.y5b{bottom:2771.179067pt;}
.ybe{bottom:2784.773333pt;}
.y2f{bottom:2796.533333pt;}
.y22{bottom:2798.146667pt;}
.ybf{bottom:2804.506667pt;}
.y5a{bottom:2805.845733pt;}
.yc0{bottom:2824.240000pt;}
.y59{bottom:2840.512400pt;}
.yc1{bottom:2843.973333pt;}
.y33{bottom:2863.253333pt;}
.yc2{bottom:2863.720000pt;}
.y28{bottom:2864.866667pt;}
.y58{bottom:2875.179067pt;}
.yc4{bottom:2883.453333pt;}
.yc5{bottom:2903.186667pt;}
.y57{bottom:2909.845733pt;}
.yc6{bottom:2922.920000pt;}
.yc7{bottom:2942.653333pt;}
.y56{bottom:2944.512400pt;}
.yc8{bottom:2962.386667pt;}
.y55{bottom:2979.179067pt;}
.yc9{bottom:2982.120000pt;}
.yca{bottom:3001.853333pt;}
.y54{bottom:3013.845733pt;}
.y2d{bottom:3021.120000pt;}
.ycb{bottom:3021.586667pt;}
.y20{bottom:3022.733333pt;}
.ycc{bottom:3041.320000pt;}
.y53{bottom:3048.512400pt;}
.ycd{bottom:3061.053333pt;}
.y36{bottom:3065.446667pt;}
.yce{bottom:3080.786667pt;}
.y52{bottom:3083.179067pt;}
.ycf{bottom:3100.520000pt;}
.y51{bottom:3117.845733pt;}
.yd0{bottom:3120.266667pt;}
.y34{bottom:3128.053333pt;}
.y2a{bottom:3129.666667pt;}
.yd1{bottom:3140.000000pt;}
.y50{bottom:3152.512400pt;}
.yd2{bottom:3159.733333pt;}
.yd3{bottom:3179.466667pt;}
.y4f{bottom:3187.179067pt;}
.yd4{bottom:3199.200000pt;}
.y38{bottom:3207.419040pt;}
.y11{bottom:3209.773333pt;}
.yd5{bottom:3218.933333pt;}
.y4e{bottom:3221.845733pt;}
.yd6{bottom:3238.666667pt;}
.y37{bottom:3246.982400pt;}
.y4d{bottom:3256.512400pt;}
.yd7{bottom:3258.400000pt;}
.yd8{bottom:3278.133333pt;}
.y4c{bottom:3291.179067pt;}
.yd9{bottom:3297.866667pt;}
.yda{bottom:3317.600000pt;}
.y4b{bottom:3325.845733pt;}
.ydb{bottom:3337.333333pt;}
.yf{bottom:3343.800000pt;}
.ydc{bottom:3357.080000pt;}
.y4a{bottom:3360.512400pt;}
.ydd{bottom:3376.813333pt;}
.y49{bottom:3395.179067pt;}
.yde{bottom:3396.546667pt;}
.ydf{bottom:3416.280000pt;}
.y48{bottom:3429.845733pt;}
.ye0{bottom:3436.013333pt;}
.ye1{bottom:3455.746667pt;}
.y47{bottom:3464.512400pt;}
.ye2{bottom:3475.480000pt;}
.ye3{bottom:3495.213333pt;}
.y46{bottom:3499.179067pt;}
.ye4{bottom:3514.946667pt;}
.y45{bottom:3533.845733pt;}
.ye5{bottom:3534.680000pt;}
.ye6{bottom:3554.413333pt;}
.y44{bottom:3568.512400pt;}
.ye7{bottom:3574.146667pt;}
.yd{bottom:3584.546667pt;}
.y18{bottom:3584.560000pt;}
.ye8{bottom:3593.880000pt;}
.y43{bottom:3603.179067pt;}
.ye9{bottom:3613.626667pt;}
.yea{bottom:3633.360000pt;}
.y42{bottom:3637.845733pt;}
.yeb{bottom:3653.093333pt;}
.y41{bottom:3672.512400pt;}
.yec{bottom:3672.826667pt;}
.yed{bottom:3692.560000pt;}
.y40{bottom:3707.179067pt;}
.yee{bottom:3712.293333pt;}
.yef{bottom:3732.026667pt;}
.y3f{bottom:3741.845733pt;}
.yf0{bottom:3751.760000pt;}
.y1c{bottom:3762.706667pt;}
.y13{bottom:3770.026667pt;}
.yf1{bottom:3771.493333pt;}
.y3e{bottom:3776.512400pt;}
.yf2{bottom:3791.226667pt;}
.yb{bottom:3809.146667pt;}
.yf3{bottom:3810.960000pt;}
.y3d{bottom:3811.179067pt;}
.yf4{bottom:3830.693333pt;}
.y3c{bottom:3845.845733pt;}
.yf5{bottom:3850.440000pt;}
.y2c{bottom:3855.662133pt;}
.yf6{bottom:3870.173333pt;}
.y3b{bottom:3880.512400pt;}
.yf7{bottom:3889.906667pt;}
.y1e{bottom:3901.626667pt;}
.y15{bottom:3907.826667pt;}
.yf8{bottom:3909.640000pt;}
.y169{bottom:3927.163733pt;}
.yf9{bottom:3929.373333pt;}
.y62{bottom:3936.000667pt;}
.yfa{bottom:3949.106667pt;}
.yfb{bottom:3968.840000pt;}
.y6{bottom:4071.200000pt;}
.ya{bottom:4086.531867pt;}
.y5{bottom:4128.432267pt;}
.y9{bottom:4134.531867pt;}
.y4{bottom:4176.000000pt;}
.y8{bottom:4182.531867pt;}
.y7{bottom:4230.531867pt;}
.y3{bottom:4236.000000pt;}
.y2{bottom:4300.800667pt;}
.y1{bottom:4416.000667pt;}
.h20{height:3.906667pt;}
.h1d{height:6.840000pt;}
.h1b{height:9.773333pt;}
.h1f{height:10.733333pt;}
.h21{height:12.680000pt;}
.h16{height:13.877333pt;}
.h14{height:13.880000pt;}
.h12{height:15.146667pt;}
.he{height:15.906667pt;}
.h18{height:16.626667pt;}
.h1a{height:16.640000pt;}
.h10{height:18.933333pt;}
.h22{height:20.786667pt;}
.h8{height:27.106667pt;}
.h6{height:27.120000pt;}
.h15{height:34.191667pt;}
.h1e{height:35.842969pt;}
.h13{height:37.300000pt;}
.h19{height:40.963559pt;}
.hf{height:42.895000pt;}
.h11{height:46.625000pt;}
.h1c{height:51.204352pt;}
.h7{height:59.925055pt;}
.h2b{height:61.807774pt;}
.h3{height:62.771221pt;}
.h2d{height:67.920486pt;}
.h2e{height:67.966040pt;}
.h25{height:75.922186pt;}
.h27{height:75.922574pt;}
.h2a{height:77.708333pt;}
.h2c{height:78.787702pt;}
.h29{height:85.479167pt;}
.h28{height:93.250000pt;}
.ha{height:96.010693pt;}
.hb{height:101.020833pt;}
.h4{height:107.669333pt;}
.h5{height:116.484375pt;}
.hd{height:116.562500pt;}
.h17{height:128.218750pt;}
.h2{height:144.640789pt;}
.h26{height:153.448362pt;}
.hc{height:177.750000pt;}
.h9{height:199.312531pt;}
.h1{height:279.562500pt;}
.h23{height:329.160000pt;}
.h24{height:776.562500pt;}
.h0{height:4608.000000pt;}
.w1f{width:5.733333pt;}
.w1a{width:8.898667pt;}
.w5c{width:14.550667pt;}
.w19{width:15.546667pt;}
.w1b{width:17.797333pt;}
.w48{width:18.920000pt;}
.w54{width:19.541333pt;}
.w60{width:19.546667pt;}
.w38{width:19.560000pt;}
.w52{width:20.000000pt;}
.w30{width:20.213333pt;}
.w5b{width:20.785333pt;}
.w47{width:20.866667pt;}
.w51{width:20.880000pt;}
.w4c{width:21.520000pt;}
.w36{width:22.160000pt;}
.w21{width:22.165333pt;}
.w24{width:22.166667pt;}
.w34{width:22.186667pt;}
.w2b{width:22.613333pt;}
.w2e{width:22.826667pt;}
.w4e{width:22.840000pt;}
.w3f{width:23.253333pt;}
.w22{width:23.480000pt;}
.w3b{width:23.493333pt;}
.w4f{width:23.506667pt;}
.w31{width:23.920000pt;}
.w56{width:23.969333pt;}
.w5d{width:23.973333pt;}
.w39{width:24.120000pt;}
.w2d{width:24.146667pt;}
.w53{width:24.222667pt;}
.w32{width:24.773333pt;}
.w29{width:24.786667pt;}
.w5a{width:25.000000pt;}
.w57{width:25.010667pt;}
.w55{width:25.012000pt;}
.w59{width:25.013333pt;}
.w58{width:25.016000pt;}
.w4b{width:25.440000pt;}
.w49{width:26.080000pt;}
.w44{width:26.733333pt;}
.w43{width:27.373333pt;}
.w33{width:27.400000pt;}
.w50{width:29.360000pt;}
.w1c{width:30.226667pt;}
.w4d{width:30.440000pt;}
.w45{width:30.453333pt;}
.w37{width:30.666667pt;}
.w4a{width:31.306667pt;}
.w3d{width:31.960000pt;}
.w27{width:31.973333pt;}
.w1d{width:32.000000pt;}
.w2c{width:32.600000pt;}
.w3c{width:32.626667pt;}
.w26{width:33.045333pt;}
.w28{width:33.266667pt;}
.w25{width:33.916000pt;}
.w23{width:33.917333pt;}
.w42{width:33.920000pt;}
.w35{width:34.333333pt;}
.w41{width:35.000000pt;}
.w20{width:36.050667pt;}
.w1e{width:37.000000pt;}
.w3e{width:37.840000pt;}
.w18{width:38.373333pt;}
.w46{width:38.506667pt;}
.w12{width:38.546667pt;}
.w13{width:38.733333pt;}
.wd{width:38.906667pt;}
.wc{width:39.573333pt;}
.w6{width:39.665333pt;}
.w14{width:39.853333pt;}
.w7{width:39.960000pt;}
.we{width:40.026667pt;}
.w1{width:40.053333pt;}
.w2f{width:40.440000pt;}
.w8{width:41.093333pt;}
.w2a{width:41.106667pt;}
.w2{width:41.186667pt;}
.w3a{width:41.746667pt;}
.w15{width:44.253333pt;}
.wf{width:44.453333pt;}
.w9{width:45.640000pt;}
.w3{width:45.746667pt;}
.w40{width:56.773333pt;}
.w16{width:59.746667pt;}
.w10{width:60.013333pt;}
.w17{width:60.853333pt;}
.w11{width:61.133333pt;}
.wa{width:61.613333pt;}
.w4{width:61.760000pt;}
.wb{width:62.746667pt;}
.w5{width:62.904000pt;}
.w5f{width:83.680000pt;}
.w5e{width:94.973333pt;}
.w63{width:474.480000pt;}
.w61{width:533.466667pt;}
.w62{width:563.013333pt;}
.w0{width:3456.000000pt;}
.x0{left:0.000000pt;}
.x97{left:10.556000pt;}
.x95{left:15.079333pt;}
.x29{left:132.000000pt;}
.x28{left:133.333333pt;}
.x30{left:157.016000pt;}
.x2f{left:165.914667pt;}
.x51{left:175.610667pt;}
.x31{left:187.780000pt;}
.x2a{left:191.968000pt;}
.x52{left:193.134667pt;}
.x33{left:201.820000pt;}
.x2e{left:212.546667pt;}
.x32{left:221.733333pt;}
.x5e{left:232.906267pt;}
.x36{left:274.576000pt;}
.x35{left:283.474667pt;}
.x53{left:293.170667pt;}
.x37{left:305.340000pt;}
.x54{left:310.694667pt;}
.x39{left:319.380000pt;}
.x34{left:330.106667pt;}
.x38{left:339.306667pt;}
.x5{left:367.805333pt;}
.x1{left:391.434267pt;}
.x3b{left:401.048000pt;}
.x55{left:410.730667pt;}
.x3c{left:422.913333pt;}
.x56{left:428.254667pt;}
.x3e{left:436.953333pt;}
.x3a{left:447.680000pt;}
.x50{left:452.589333pt;}
.x3d{left:456.866667pt;}
.x3{left:480.000000pt;}
.x41{left:509.709333pt;}
.x40{left:518.608000pt;}
.x57{left:528.304000pt;}
.x42{left:540.473333pt;}
.x58{left:545.828000pt;}
.x44{left:554.513333pt;}
.x3f{left:565.240000pt;}
.x43{left:574.440000pt;}
.x2c{left:624.000000pt;}
.x46{left:627.269333pt;}
.x2b{left:636.000000pt;}
.x59{left:645.862667pt;}
.x2d{left:648.000000pt;}
.x47{left:658.046667pt;}
.x5a{left:663.389333pt;}
.x49{left:672.073333pt;}
.x45{left:682.800000pt;}
.x48{left:692.000000pt;}
.x4c{left:744.842667pt;}
.x4b{left:753.741333pt;}
.x5b{left:763.437333pt;}
.x4d{left:775.606667pt;}
.x5c{left:780.948000pt;}
.x4f{left:789.646667pt;}
.x4a{left:800.373333pt;}
.x4e{left:809.560000pt;}
.x4{left:816.016267pt;}
.x2{left:884.298267pt;}
.x94{left:945.589333pt;}
.x20{left:948.287733pt;}
.x96{left:953.305333pt;}
.x6{left:958.811200pt;}
.xd2{left:967.251333pt;}
.x1d{left:970.653333pt;}
.x81{left:974.740000pt;}
.x21{left:1006.017269pt;}
.x82{left:1009.245333pt;}
.xc4{left:1017.046933pt;}
.xc6{left:1040.320674pt;}
.x1f{left:1043.954400pt;}
.x25{left:1047.822553pt;}
.x83{left:1049.000000pt;}
.x18{left:1054.632800pt;}
.xc{left:1074.752000pt;}
.x24{left:1077.132409pt;}
.x84{left:1089.277333pt;}
.x85{left:1128.518667pt;}
.xc3{left:1130.760000pt;}
.x86{left:1168.274667pt;}
.x87{left:1208.029333pt;}
.x88{left:1247.792000pt;}
.xcb{left:1271.163600pt;}
.xc8{left:1272.571600pt;}
.xd{left:1282.812000pt;}
.x89{left:1287.548000pt;}
.x8a{left:1327.304000pt;}
.x8b{left:1367.053333pt;}
.xb{left:1369.600000pt;}
.x1c{left:1374.053333pt;}
.x8c{left:1406.826667pt;}
.xca{left:1407.899600pt;}
.xc9{left:1408.795600pt;}
.xcc{left:1410.139600pt;}
.x8d{left:1446.573333pt;}
.x1e{left:1477.986667pt;}
.x8e{left:1486.333333pt;}
.x8f{left:1526.093333pt;}
.xce{left:1552.299067pt;}
.x5d{left:1560.000000pt;}
.x1a{left:1563.706667pt;}
.x9{left:1565.653333pt;}
.x1b{left:1577.773333pt;}
.xa{left:1580.200000pt;}
.x19{left:1591.200000pt;}
.x8{left:1594.066667pt;}
.x90{left:1605.613333pt;}
.xcd{left:1625.485733pt;}
.x91{left:1645.360000pt;}
.xc5{left:1674.812533pt;}
.x92{left:1685.120000pt;}
.x26{left:1704.673238pt;}
.x16{left:1707.826667pt;}
.x23{left:1710.805558pt;}
.x27{left:1711.992459pt;}
.x93{left:1724.880000pt;}
.x22{left:1748.357781pt;}
.x98{left:1780.613333pt;}
.x99{left:1820.893333pt;}
.x12{left:1840.080000pt;}
.x9a{left:1860.133333pt;}
.xc2{left:1881.266667pt;}
.x9b{left:1899.880000pt;}
.x9c{left:1939.640000pt;}
.xc7{left:1961.005200pt;}
.x9d{left:1979.400000pt;}
.x9e{left:2019.160000pt;}
.x13{left:2045.453333pt;}
.xbe{left:2048.786667pt;}
.x9f{left:2058.906667pt;}
.xa0{left:2098.680000pt;}
.xbd{left:2103.573333pt;}
.x15{left:2113.040000pt;}
.x11{left:2121.920000pt;}
.xa1{left:2138.426667pt;}
.xbf{left:2153.146667pt;}
.xa2{left:2178.186667pt;}
.xc0{left:2193.346667pt;}
.xcf{left:2202.003067pt;}
.x17{left:2217.440000pt;}
.xd0{left:2225.997733pt;}
.xc1{left:2233.546667pt;}
.xa3{left:2257.706667pt;}
.xa4{left:2297.453333pt;}
.x14{left:2303.560000pt;}
.xf{left:2317.493333pt;}
.x10{left:2332.000000pt;}
.xa5{left:2337.213333pt;}
.xe{left:2345.840000pt;}
.xd3{left:2357.185008pt;}
.xa6{left:2376.973333pt;}
.x69{left:2412.586667pt;}
.xa7{left:2416.733333pt;}
.x62{left:2428.253333pt;}
.x68{left:2431.493333pt;}
.x66{left:2434.986667pt;}
.x60{left:2436.053333pt;}
.x5f{left:2437.373333pt;}
.x67{left:2438.666667pt;}
.x6d{left:2439.973333pt;}
.x65{left:2441.933333pt;}
.x6b{left:2443.240000pt;}
.x61{left:2444.546667pt;}
.x63{left:2446.706667pt;}
.x6c{left:2447.800000pt;}
.x64{left:2449.106667pt;}
.x6a{left:2450.413333pt;}
.xa8{left:2456.493333pt;}
.x6e{left:2492.480000pt;}
.xa9{left:2496.240000pt;}
.x6f{left:2537.520000pt;}
.xaa{left:2551.986667pt;}
.x70{left:2582.560000pt;}
.xab{left:2591.733333pt;}
.xd1{left:2625.866533pt;}
.x71{left:2627.613333pt;}
.xac{left:2631.493333pt;}
.xad{left:2671.253333pt;}
.x72{left:2672.653333pt;}
.xae{left:2711.533333pt;}
.x73{left:2717.693333pt;}
.xaf{left:2750.760000pt;}
.x74{left:2762.733333pt;}
.xb0{left:2790.520000pt;}
.x75{left:2807.773333pt;}
.xb1{left:2830.280000pt;}
.x76{left:2852.813333pt;}
.xb2{left:2870.040000pt;}
.x77{left:2897.853333pt;}
.xb3{left:2909.800000pt;}
.x7{left:2940.851600pt;}
.x78{left:2943.333333pt;}
.xb4{left:2949.560000pt;}
.x79{left:2987.933333pt;}
.xb5{left:2989.320000pt;}
.xd8{left:3005.589200pt;}
.xd6{left:3020.280116pt;}
.xb6{left:3029.066667pt;}
.x7a{left:3032.986667pt;}
.xd5{left:3043.839200pt;}
.xd7{left:3066.421200pt;}
.xb7{left:3068.826667pt;}
.x7b{left:3078.026667pt;}
.xd4{left:3095.150400pt;}
.xb8{left:3108.586667pt;}
.xd9{left:3116.608667pt;}
.x7c{left:3123.066667pt;}
.xb9{left:3148.346667pt;}
.x7d{left:3168.106667pt;}
.xba{left:3188.093333pt;}
.x7e{left:3213.146667pt;}
.xbb{left:3227.866667pt;}
.x7f{left:3258.186667pt;}
.xbc{left:3267.613333pt;}
.x80{left:3303.226667pt;}
}




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