
    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_75e91b84c4005fedbdbd0603.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_0653979733d484e79631f632.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c0f67593d14831fd885c98f1.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_321d7e1d1eacaf5aa5879947.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_4bcf85a80473d3cccc1e2ac5.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_65d606aa6e8a33fb31ba68a1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_31567ad0f7b4b42b2789790d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_37a93269842dfb7cd2e67ba8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.701660;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);}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-0.924000px;}
.ls5{letter-spacing:-0.531600px;}
.ls3{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.342600px;}
.ls10{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.220800px;}
.lsa{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.181200px;}
.ls12{letter-spacing:-0.106800px;}
.lsc{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.lse{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.070560px;}
.ls16{letter-spacing:0.135600px;}
.ls2{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.206400px;}
.ls13{letter-spacing:0.256800px;}
.lsf{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.259920px;}
.ls17{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:10.260000px;}
.ls9{letter-spacing:43.866720px;}
.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;}
}
.ws8{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.146400px;}
.wsa{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.479800px;}
.wse{word-spacing:-13.036800px;}
.ws6{word-spacing:-12.780000px;}
.ws5{word-spacing:-12.437400px;}
.ws4{word-spacing:-12.420000px;}
.ws3{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.878800px;}
.ws11{word-spacing:-11.700000px;}
.ws10{word-spacing:-11.340000px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-3.645360px;}
._7{margin-left:-2.239920px;}
._2{margin-left:-1.013040px;}
._0{width:1.135440px;}
._9{width:2.165520px;}
._3{width:3.167280px;}
._8{width:4.302720px;}
._11{width:5.318640px;}
._5{width:6.334560px;}
._4{width:8.007840px;}
._a{width:9.824400px;}
._b{width:10.955280px;}
._10{width:12.276720px;}
._f{width:13.505760px;}
._12{width:16.521120px;}
._6{width:17.629200px;}
._17{width:18.824400px;}
._16{width:20.198880px;}
._1a{width:21.214800px;}
._1c{width:22.589280px;}
._1d{width:24.441840px;}
._d{width:26.116560px;}
._c{width:27.313200px;}
._25{width:28.383120px;}
._14{width:29.640960px;}
._13{width:31.075200px;}
._15{width:32.509440px;}
._1f{width:34.481520px;}
._1e{width:35.497440px;}
._19{width:36.869040px;}
._18{width:38.186640px;}
._22{width:40.875840px;}
._20{width:42.549120px;}
._21{width:43.557120px;}
._26{width:47.748240px;}
._27{width:48.764160px;}
._24{width:50.019120px;}
._23{width:51.333840px;}
._1b{width:327.960000px;}
._1{width:482.162160px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.360000px;}
.fs8{font-size:48.240000px;}
.fs9{font-size:51.120000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:92.880000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1a7{bottom:2.520000px;}
.y191{bottom:2.880000px;}
.y194{bottom:3.060000px;}
.y5d{bottom:3.240000px;}
.y196{bottom:3.780000px;}
.y1a5{bottom:4.860000px;}
.y120{bottom:5.400000px;}
.y12d{bottom:5.445000px;}
.y14c{bottom:5.580000px;}
.y14a{bottom:5.610000px;}
.y15b{bottom:5.625000px;}
.y174{bottom:5.940000px;}
.y176{bottom:6.300000px;}
.y11c{bottom:7.740000px;}
.y1b0{bottom:8.460000px;}
.y1b2{bottom:9.000000px;}
.y1af{bottom:9.360000px;}
.y36{bottom:10.260000px;}
.y19a{bottom:10.440000px;}
.y37{bottom:10.800000px;}
.y197{bottom:10.980000px;}
.y19c{bottom:11.160000px;}
.y1c7{bottom:13.680000px;}
.y1d2{bottom:14.580000px;}
.y1c5{bottom:15.480000px;}
.y1a9{bottom:16.200000px;}
.y1cd{bottom:16.230000px;}
.y11a{bottom:16.380000px;}
.y33{bottom:17.460000px;}
.y193{bottom:17.640000px;}
.y199{bottom:17.820000px;}
.y31{bottom:18.360000px;}
.y12b{bottom:19.260000px;}
.y34{bottom:24.300000px;}
.y11b{bottom:25.020000px;}
.y1c6{bottom:27.540000px;}
.y12e{bottom:27.900000px;}
.y1c4{bottom:28.440000px;}
.y32{bottom:30.060000px;}
.y1cc{bottom:30.090000px;}
.y1cf{bottom:30.240000px;}
.y125{bottom:30.600000px;}
.y6{bottom:35.925007px;}
.y12a{bottom:36.540000px;}
.y11e{bottom:39.240000px;}
.y143{bottom:41.760000px;}
.y124{bottom:47.880000px;}
.y145{bottom:50.400000px;}
.y142{bottom:59.040000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y136{bottom:98.100000px;}
.y138{bottom:106.740000px;}
.y135{bottom:115.410000px;}
.y22{bottom:139.264499px;}
.y5b{bottom:187.410000px;}
.y19{bottom:196.933500px;}
.y5a{bottom:208.110000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y52{bottom:227.190000px;}
.y59{bottom:228.810000px;}
.y150{bottom:233.130000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y152{bottom:241.770000px;}
.y51{bottom:245.190000px;}
.y58{bottom:249.510000px;}
.y14f{bottom:250.410000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y50{bottom:263.190000px;}
.y57{bottom:270.210000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y4f{bottom:281.190000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y56{bottom:290.910000px;}
.y4e{bottom:299.190000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y85{bottom:311.115000px;}
.y55{bottom:311.655000px;}
.y4d{bottom:317.235000px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y5c{bottom:331.815000px;}
.y54{bottom:332.355000px;}
.yca{bottom:333.435000px;}
.y4c{bottom:335.235000px;}
.y141{bottom:336.675000px;}
.y1bb{bottom:339.555000px;}
.yff{bottom:340.455000px;}
.y189{bottom:342.435000px;}
.y10{bottom:348.133500px;}
.y1d8{bottom:351.435000px;}
.y1d7{bottom:354.675000px;}
.yc9{bottom:357.555000px;}
.y148{bottom:359.175000px;}
.y4b{bottom:359.355000px;}
.y1b8{bottom:360.075000px;}
.y84{bottom:363.495000px;}
.yfe{bottom:364.395000px;}
.y188{bottom:366.555000px;}
.y118{bottom:367.275000px;}
.y16e{bottom:369.075000px;}
.yc3{bottom:369.435000px;}
.ye0{bottom:370.155000px;}
.y1d6{bottom:375.195000px;}
.y1ba{bottom:375.555000px;}
.y1b7{bottom:378.075000px;}
.y83{bottom:381.495000px;}
.y147{bottom:381.675000px;}
.yfd{bottom:382.395000px;}
.y4a{bottom:383.295000px;}
.y187{bottom:384.555000px;}
.yf{bottom:386.785499px;}
.ya8{bottom:387.435000px;}
.ydf{bottom:388.155000px;}
.y117{bottom:391.215000px;}
.y16d{bottom:392.295000px;}
.y1b6{bottom:393.195000px;}
.y1b9{bottom:393.555000px;}
.y1d5{bottom:395.715000px;}
.y82{bottom:399.495000px;}
.yfc{bottom:400.395000px;}
.y49{bottom:401.295000px;}
.y186{bottom:402.555000px;}
.y146{bottom:404.175000px;}
.yc2{bottom:405.435000px;}
.yde{bottom:406.155000px;}
.ye{bottom:408.044999px;}
.ya7{bottom:411.555000px;}
.y1b5{bottom:413.715000px;}
.y116{bottom:415.335000px;}
.y16c{bottom:416.055000px;}
.y81{bottom:417.495000px;}
.yfb{bottom:418.395000px;}
.y48{bottom:419.295000px;}
.y185{bottom:420.555000px;}
.yb3{bottom:423.435000px;}
.y1d4{bottom:423.975000px;}
.ydd{bottom:424.155000px;}
.y144{bottom:426.675000px;}
.ya6{bottom:429.555000px;}
.y1b4{bottom:434.235000px;}
.y80{bottom:435.495000px;}
.y184{bottom:438.555000px;}
.y115{bottom:439.275000px;}
.y16b{bottom:439.995000px;}
.yb2{bottom:441.435000px;}
.ydc{bottom:442.155000px;}
.yfa{bottom:442.335000px;}
.y47{bottom:443.235000px;}
.y1d3{bottom:444.495000px;}
.ya5{bottom:447.555000px;}
.y134{bottom:449.175000px;}
.y7f{bottom:453.495000px;}
.y183{bottom:456.555000px;}
.y16a{bottom:457.995000px;}
.yb1{bottom:459.435000px;}
.ydb{bottom:460.155000px;}
.y46{bottom:461.235000px;}
.y1b3{bottom:462.495000px;}
.y114{bottom:463.215000px;}
.y1d1{bottom:465.015000px;}
.ya4{bottom:465.555000px;}
.yf9{bottom:466.455000px;}
.y7e{bottom:471.495000px;}
.y140{bottom:471.675000px;}
.y182{bottom:474.555000px;}
.y169{bottom:475.995000px;}
.yb0{bottom:477.435000px;}
.yda{bottom:478.155000px;}
.y45{bottom:479.235000px;}
.y1b1{bottom:483.015000px;}
.ya3{bottom:483.555000px;}
.yf8{bottom:484.455000px;}
.y113{bottom:487.335000px;}
.y7d{bottom:489.495000px;}
.y1d0{bottom:491.655000px;}
.y181{bottom:492.555000px;}
.y168{bottom:493.995000px;}
.y13f{bottom:494.175000px;}
.yaf{bottom:495.435000px;}
.yd9{bottom:496.155000px;}
.y44{bottom:497.235000px;}
.ya2{bottom:501.555000px;}
.yf7{bottom:502.455000px;}
.yd{bottom:502.864502px;}
.y7c{bottom:507.495000px;}
.y180{bottom:510.555000px;}
.y112{bottom:511.275000px;}
.y1ce{bottom:511.995000px;}
.yae{bottom:513.435000px;}
.yd8{bottom:514.155000px;}
.y43{bottom:515.235000px;}
.y13e{bottom:516.675000px;}
.y14e{bottom:518.115000px;}
.ya1{bottom:519.555000px;}
.yf6{bottom:520.455000px;}
.yc{bottom:520.864502px;}
.y7b{bottom:525.495000px;}
.y17f{bottom:528.555000px;}
.yad{bottom:531.435000px;}
.y1ae{bottom:531.795000px;}
.yd7{bottom:532.155000px;}
.y42{bottom:533.235000px;}
.y111{bottom:535.215000px;}
.ya0{bottom:537.555000px;}
.yf5{bottom:538.455000px;}
.yb{bottom:538.864499px;}
.y13d{bottom:539.175000px;}
.y167{bottom:540.615000px;}
.y7a{bottom:543.495000px;}
.y17e{bottom:546.555000px;}
.yac{bottom:549.435000px;}
.y41{bottom:551.235000px;}
.y1ad{bottom:552.315000px;}
.y1cb{bottom:554.295000px;}
.y9f{bottom:555.555000px;}
.yd6{bottom:556.275000px;}
.yf4{bottom:556.455000px;}
.ya{bottom:556.864499px;}
.y110{bottom:559.335000px;}
.y79{bottom:561.525000px;}
.y13c{bottom:561.705000px;}
.y166{bottom:563.145000px;}
.y17d{bottom:564.585000px;}
.yab{bottom:567.465000px;}
.y40{bottom:569.265000px;}
.y1ac{bottom:572.865000px;}
.yc1{bottom:573.585000px;}
.yd5{bottom:574.305000px;}
.yf3{bottom:574.485000px;}
.y8d{bottom:579.525000px;}
.y10f{bottom:583.305000px;}
.y13b{bottom:584.205000px;}
.y78{bottom:585.465000px;}
.y165{bottom:585.645000px;}
.y3f{bottom:587.265000px;}
.y17c{bottom:588.525000px;}
.yc0{bottom:591.585000px;}
.yd4{bottom:592.305000px;}
.y1ab{bottom:593.205000px;}
.y1ca{bottom:596.445000px;}
.y8c{bottom:597.525000px;}
.yf2{bottom:598.425000px;}
.y77{bottom:603.465000px;}
.y3e{bottom:605.265000px;}
.y17b{bottom:606.525000px;}
.y13a{bottom:606.705000px;}
.y10e{bottom:607.245000px;}
.y164{bottom:608.145000px;}
.ybf{bottom:609.585000px;}
.yd3{bottom:610.305000px;}
.y9e{bottom:615.525000px;}
.y76{bottom:621.465000px;}
.y1aa{bottom:621.645000px;}
.yf1{bottom:622.365000px;}
.y3d{bottom:623.265000px;}
.y17a{bottom:624.705000px;}
.ybe{bottom:627.585000px;}
.yd2{bottom:628.305000px;}
.y139{bottom:629.205000px;}
.y163{bottom:630.645000px;}
.y10d{bottom:631.365000px;}
.y9d{bottom:633.525000px;}
.y1c9{bottom:638.565000px;}
.y75{bottom:639.465000px;}
.yf0{bottom:640.365000px;}
.y3c{bottom:641.265000px;}
.y1a8{bottom:642.165000px;}
.y9{bottom:645.510000px;}
.ybd{bottom:645.585000px;}
.yd1{bottom:646.305000px;}
.y179{bottom:648.645000px;}
.y9c{bottom:651.525000px;}
.y137{bottom:651.705000px;}
.y162{bottom:653.145000px;}
.y10c{bottom:655.305000px;}
.y74{bottom:657.465000px;}
.yef{bottom:658.365000px;}
.y3b{bottom:659.265000px;}
.ybc{bottom:663.585000px;}
.yd0{bottom:664.305000px;}
.y8{bottom:666.771000px;}
.y9b{bottom:669.525000px;}
.y1a6{bottom:670.425000px;}
.y178{bottom:672.585000px;}
.y130{bottom:674.205000px;}
.y73{bottom:675.465000px;}
.y161{bottom:675.645000px;}
.yee{bottom:676.365000px;}
.y3a{bottom:677.265000px;}
.y10b{bottom:679.245000px;}
.y1c8{bottom:680.685000px;}
.ybb{bottom:681.585000px;}
.ycf{bottom:682.305000px;}
.y9a{bottom:687.525000px;}
.y72{bottom:693.465000px;}
.yed{bottom:694.365000px;}
.y133{bottom:696.705000px;}
.y160{bottom:698.145000px;}
.y1a4{bottom:698.865000px;}
.yba{bottom:699.585000px;}
.y39{bottom:701.385000px;}
.y10a{bottom:703.365000px;}
.y99{bottom:705.525000px;}
.yce{bottom:706.245000px;}
.y71{bottom:711.465000px;}
.yb9{bottom:717.585000px;}
.yec{bottom:718.485000px;}
.y38{bottom:719.025000px;}
.y132{bottom:719.205000px;}
.y15f{bottom:720.645000px;}
.y109{bottom:721.365000px;}
.y1c3{bottom:722.805000px;}
.y98{bottom:723.525000px;}
.y7{bottom:726.298500px;}
.y1a3{bottom:728.925000px;}
.y8b{bottom:729.465000px;}
.ycd{bottom:730.185000px;}
.y35{bottom:732.885000px;}
.y70{bottom:735.585000px;}
.y108{bottom:739.365000px;}
.y97{bottom:741.525000px;}
.y131{bottom:741.705000px;}
.yeb{bottom:742.605000px;}
.y15e{bottom:743.145000px;}
.y177{bottom:744.585000px;}
.y8a{bottom:747.465000px;}
.y3{bottom:752.599495px;}
.y1a2{bottom:752.865000px;}
.y6f{bottom:753.585000px;}
.ycc{bottom:754.305000px;}
.y30{bottom:755.025000px;}
.y107{bottom:757.365000px;}
.y96{bottom:759.525000px;}
.yea{bottom:760.605000px;}
.y1c2{bottom:762.405000px;}
.y129{bottom:764.205000px;}
.yc8{bottom:765.465000px;}
.y15d{bottom:765.645000px;}
.y175{bottom:768.705000px;}
.y1a1{bottom:770.865000px;}
.y6e{bottom:771.585000px;}
.ycb{bottom:774.645000px;}
.y106{bottom:775.365000px;}
.y95{bottom:777.525000px;}
.ye9{bottom:778.605000px;}
.y1c1{bottom:782.925000px;}
.yc7{bottom:783.465000px;}
.y12f{bottom:786.705000px;}
.y15c{bottom:788.145000px;}
.y1a0{bottom:788.865000px;}
.y6d{bottom:789.585000px;}
.y173{bottom:792.645000px;}
.y105{bottom:793.365000px;}
.y2f{bottom:793.905000px;}
.y89{bottom:795.525000px;}
.ye8{bottom:796.605000px;}
.y94{bottom:801.465000px;}
.y1c0{bottom:803.265000px;}
.y6c{bottom:807.585000px;}
.y12c{bottom:809.205000px;}
.y15a{bottom:810.645000px;}
.y2e{bottom:811.185000px;}
.y104{bottom:811.410000px;}
.y19f{bottom:812.850000px;}
.yb8{bottom:813.570000px;}
.ye7{bottom:814.650000px;}
.y88{bottom:819.510000px;}
.y1bf{bottom:823.830000px;}
.y6b{bottom:825.630000px;}
.y2d{bottom:828.330000px;}
.y103{bottom:829.410000px;}
.y1da{bottom:831.570000px;}
.y123{bottom:831.750000px;}
.ye6{bottom:832.650000px;}
.y159{bottom:833.190000px;}
.y87{bottom:837.510000px;}
.y19e{bottom:838.770000px;}
.y6a{bottom:843.630000px;}
.y2c{bottom:845.610000px;}
.y102{bottom:847.410000px;}
.y172{bottom:849.570000px;}
.ye5{bottom:850.650000px;}
.y1be{bottom:852.270000px;}
.y128{bottom:854.250000px;}
.y86{bottom:855.510000px;}
.y158{bottom:855.690000px;}
.y19d{bottom:856.410000px;}
.y69{bottom:861.630000px;}
.y2b{bottom:862.890000px;}
.y171{bottom:867.570000px;}
.ye4{bottom:868.650000px;}
.y101{bottom:871.350000px;}
.y1bd{bottom:872.610000px;}
.y93{bottom:873.510000px;}
.y127{bottom:876.750000px;}
.y157{bottom:878.190000px;}
.y2{bottom:879.369000px;}
.y68{bottom:879.630000px;}
.y2a{bottom:880.170000px;}
.y170{bottom:885.570000px;}
.ye3{bottom:886.650000px;}
.y19b{bottom:890.610000px;}
.y92{bottom:891.510000px;}
.y1bc{bottom:893.130000px;}
.y67{bottom:897.630000px;}
.y100{bottom:897.990000px;}
.y126{bottom:899.250000px;}
.y29{bottom:899.430000px;}
.y156{bottom:900.690000px;}
.yc6{bottom:903.570000px;}
.ye2{bottom:904.650000px;}
.y91{bottom:909.510000px;}
.y66{bottom:915.630000px;}
.yb7{bottom:921.570000px;}
.y11d{bottom:921.750000px;}
.y155{bottom:923.190000px;}
.y198{bottom:924.810000px;}
.y28{bottom:926.790000px;}
.y1db{bottom:927.510000px;}
.y65{bottom:933.630000px;}
.ye1{bottom:934.710000px;}
.yb6{bottom:939.570000px;}
.y122{bottom:944.250000px;}
.y16f{bottom:945.510000px;}
.y154{bottom:945.690000px;}
.y64{bottom:951.630000px;}
.y18f{bottom:951.810000px;}
.y27{bottom:953.610000px;}
.yc5{bottom:957.570000px;}
.y195{bottom:957.750000px;}
.yb5{bottom:963.510000px;}
.y1{bottom:966.726000px;}
.y121{bottom:966.750000px;}
.y153{bottom:968.190000px;}
.y63{bottom:969.630000px;}
.y18e{bottom:969.810000px;}
.yc4{bottom:975.570000px;}
.y26{bottom:980.250000px;}
.yb4{bottom:981.510000px;}
.y90{bottom:987.630000px;}
.y18d{bottom:987.810000px;}
.y11f{bottom:989.250000px;}
.y151{bottom:990.690000px;}
.y192{bottom:991.950000px;}
.y62{bottom:993.570000px;}
.y1d9{bottom:999.510000px;}
.y8f{bottom:1005.630000px;}
.y18c{bottom:1005.810000px;}
.y61{bottom:1011.570000px;}
.y119{bottom:1011.750000px;}
.y14d{bottom:1013.190000px;}
.yaa{bottom:1017.510000px;}
.y8e{bottom:1023.630000px;}
.y18b{bottom:1023.810000px;}
.y190{bottom:1024.710000px;}
.y60{bottom:1029.570000px;}
.y25{bottom:1031.550000px;}
.y14b{bottom:1035.690000px;}
.ya9{bottom:1041.630000px;}
.y18a{bottom:1041.810000px;}
.y5f{bottom:1047.570000px;}
.y24{bottom:1048.650000px;}
.y149{bottom:1058.190000px;}
.y5e{bottom:1065.600000px;}
.y23{bottom:1065.960000px;}
.y53{bottom:1119.960000px;}
.h18{height:17.100000px;}
.h13{height:17.280000px;}
.h19{height:17.316000px;}
.h2a{height:19.620000px;}
.h2e{height:19.656000px;}
.h2f{height:19.800000px;}
.h32{height:19.836000px;}
.h1c{height:21.780000px;}
.h1e{height:21.816000px;}
.h10{height:22.140000px;}
.h22{height:22.536000px;}
.h23{height:23.220000px;}
.h24{height:23.400000px;}
.h36{height:25.740000px;}
.h2c{height:27.540000px;}
.h2d{height:27.720000px;}
.h25{height:29.340000px;}
.h27{height:29.880000px;}
.h28{height:31.140000px;}
.h29{height:31.320000px;}
.h7{height:32.130000px;}
.hd{height:35.640000px;}
.h33{height:38.880000px;}
.h35{height:41.256000px;}
.h34{height:41.400000px;}
.h1a{height:43.380000px;}
.h30{height:45.714375px;}
.h6{height:45.900000px;}
.hf{height:47.344922px;}
.h3{height:48.195000px;}
.he{height:48.616875px;}
.h11{height:50.171484px;}
.h26{height:51.519375px;}
.h31{height:52.998047px;}
.h14{height:53.573906px;}
.h2b{height:54.421875px;}
.h2{height:55.080000px;}
.h17{height:57.324375px;}
.h15{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.h16{height:61.423863px;}
.h1d{height:66.816000px;}
.h12{height:70.664062px;}
.h5{height:78.030000px;}
.h1b{height:89.280000px;}
.hb{height:93.605625px;}
.hc{height:93.983203px;}
.h20{height:111.780000px;}
.h4{height:119.055004px;}
.h1f{height:224.310000px;}
.h21{height:494.355000px;}
.h8{height:1188.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w9{width:22.716000px;}
.w28{width:46.440000px;}
.w21{width:46.476000px;}
.w35{width:48.420000px;}
.w29{width:48.636000px;}
.w36{width:49.140000px;}
.w2a{width:49.320000px;}
.w34{width:49.356000px;}
.w1b{width:49.716000px;}
.w2b{width:49.860000px;}
.w19{width:53.640000px;}
.w1a{width:53.676000px;}
.w20{width:59.940000px;}
.w18{width:60.300000px;}
.wf{width:60.840000px;}
.w33{width:64.080000px;}
.w27{width:64.260000px;}
.w22{width:66.780000px;}
.w10{width:69.480000px;}
.w15{width:71.280000px;}
.w16{width:71.316000px;}
.w12{width:71.640000px;}
.w13{width:71.676000px;}
.w17{width:73.296000px;}
.wc{width:73.440000px;}
.wd{width:87.120000px;}
.w14{width:91.116000px;}
.w11{width:91.476000px;}
.w24{width:93.456000px;}
.w2f{width:97.200000px;}
.we{width:98.316000px;}
.w3a{width:98.496000px;}
.w2e{width:98.676000px;}
.w39{width:99.180000px;}
.w3b{width:99.396000px;}
.wa{width:100.620000px;}
.w23{width:106.776000px;}
.w30{width:107.136000px;}
.w38{width:111.240000px;}
.w2d{width:111.420000px;}
.w1c{width:115.920000px;}
.wb{width:120.456000px;}
.w1d{width:125.316000px;}
.w5{width:130.716000px;}
.w6{width:133.200000px;}
.w8{width:134.676000px;}
.w1e{width:141.120000px;}
.w7{width:141.516000px;}
.w1f{width:154.470000px;}
.w26{width:196.590000px;}
.w32{width:198.390000px;}
.w25{width:210.810000px;}
.w31{width:211.350000px;}
.w2c{width:502.305000px;}
.w37{width:518.505000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.w4{width:917.999986px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x45{left:3.780000px;}
.x10{left:8.100000px;}
.x3d{left:10.080000px;}
.x5d{left:11.160000px;}
.x40{left:12.240000px;}
.x36{left:14.040000px;}
.x46{left:15.660000px;}
.x5c{left:17.280000px;}
.x27{left:18.720000px;}
.x47{left:19.800000px;}
.x42{left:20.880000px;}
.x28{left:22.500000px;}
.x33{left:25.020000px;}
.x37{left:26.640000px;}
.x26{left:28.650000px;}
.x5b{left:29.880000px;}
.x3a{left:32.040000px;}
.x50{left:34.020000px;}
.x52{left:35.820000px;}
.x4f{left:40.500000px;}
.x51{left:42.120000px;}
.x4a{left:43.740000px;}
.x38{left:45.720000px;}
.x48{left:51.120000px;}
.x39{left:56.880000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.x5{left:216.029986px;}
.x7{left:218.369986px;}
.x54{left:226.830000px;}
.x8{left:234.029986px;}
.x3c{left:236.910000px;}
.x6{left:238.349986px;}
.x17{left:243.029986px;}
.x29{left:247.889986px;}
.xd{left:250.589986px;}
.x20{left:253.470000px;}
.x2b{left:259.050000px;}
.x18{left:270.029986px;}
.x1c{left:294.195000px;}
.xe{left:309.494986px;}
.x1b{left:328.934986px;}
.x2c{left:332.715000px;}
.x55{left:334.875000px;}
.x1f{left:343.334986px;}
.x14{left:345.314986px;}
.xf{left:346.755000px;}
.x21{left:352.155000px;}
.x53{left:362.234986px;}
.x16{left:364.034986px;}
.x3b{left:375.194986px;}
.x1a{left:385.454986px;}
.x3e{left:392.115000px;}
.x2d{left:393.375000px;}
.xc{left:395.894986px;}
.x57{left:399.675000px;}
.x2a{left:403.814986px;}
.xa{left:405.614986px;}
.x34{left:410.835000px;}
.x22{left:413.355000px;}
.xb{left:429.374986px;}
.x5e{left:435.674986px;}
.x13{left:440.174986px;}
.x4b{left:441.255000px;}
.x2e{left:447.375000px;}
.x3f{left:452.955000px;}
.x3{left:454.959000px;}
.x15{left:474.735000px;}
.x11{left:479.955000px;}
.x23{left:483.195000px;}
.x9{left:486.104986px;}
.x4c{left:490.605000px;}
.x58{left:496.905000px;}
.x41{left:500.145000px;}
.x2f{left:501.405000px;}
.x1d{left:516.705000px;}
.x35{left:536.865000px;}
.x49{left:540.645000px;}
.x56{left:546.945000px;}
.x30{left:555.405000px;}
.x43{left:567.645000px;}
.x24{left:575.025000px;}
.x1e{left:590.865000px;}
.x59{left:597.705000px;}
.x31{left:609.405000px;}
.x12{left:621.465000px;}
.x44{left:628.485000px;}
.x4d{left:638.565000px;}
.x25{left:647.025000px;}
.x32{left:663.405000px;}
.x4e{left:687.930000px;}
.x5a{left:696.210000px;}
.x19{left:760.649986px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.821333pt;}
.ls5{letter-spacing:-0.472533pt;}
.ls3{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.304533pt;}
.ls10{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.196267pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.161067pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.062720pt;}
.ls16{letter-spacing:0.120533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.183467pt;}
.ls13{letter-spacing:0.228267pt;}
.lsf{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.231040pt;}
.ls17{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:9.120000pt;}
.ls9{letter-spacing:38.992640pt;}
.ws8{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.870933pt;}
.wse{word-spacing:-11.588267pt;}
.ws6{word-spacing:-11.360000pt;}
.ws5{word-spacing:-11.055467pt;}
.ws4{word-spacing:-11.040000pt;}
.ws3{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.558933pt;}
.ws11{word-spacing:-10.400000pt;}
.ws10{word-spacing:-10.080000pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-3.240320pt;}
._7{margin-left:-1.991040pt;}
._2{margin-left:-0.900480pt;}
._0{width:1.009280pt;}
._9{width:1.924907pt;}
._3{width:2.815360pt;}
._8{width:3.824640pt;}
._11{width:4.727680pt;}
._5{width:5.630720pt;}
._4{width:7.118080pt;}
._a{width:8.732800pt;}
._b{width:9.738027pt;}
._10{width:10.912640pt;}
._f{width:12.005120pt;}
._12{width:14.685440pt;}
._6{width:15.670400pt;}
._17{width:16.732800pt;}
._16{width:17.954560pt;}
._1a{width:18.857600pt;}
._1c{width:20.079360pt;}
._1d{width:21.726080pt;}
._d{width:23.214720pt;}
._c{width:24.278400pt;}
._25{width:25.229440pt;}
._14{width:26.347520pt;}
._13{width:27.622400pt;}
._15{width:28.897280pt;}
._1f{width:30.650240pt;}
._1e{width:31.553280pt;}
._19{width:32.772480pt;}
._18{width:33.943680pt;}
._22{width:36.334080pt;}
._20{width:37.821440pt;}
._21{width:38.717440pt;}
._26{width:42.442880pt;}
._27{width:43.345920pt;}
._24{width:44.461440pt;}
._23{width:45.630080pt;}
._1b{width:291.520000pt;}
._1{width:428.588587pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.320000pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:45.440000pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:82.560000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1a7{bottom:2.240000pt;}
.y191{bottom:2.560000pt;}
.y194{bottom:2.720000pt;}
.y5d{bottom:2.880000pt;}
.y196{bottom:3.360000pt;}
.y1a5{bottom:4.320000pt;}
.y120{bottom:4.800000pt;}
.y12d{bottom:4.840000pt;}
.y14c{bottom:4.960000pt;}
.y14a{bottom:4.986667pt;}
.y15b{bottom:5.000000pt;}
.y174{bottom:5.280000pt;}
.y176{bottom:5.600000pt;}
.y11c{bottom:6.880000pt;}
.y1b0{bottom:7.520000pt;}
.y1b2{bottom:8.000000pt;}
.y1af{bottom:8.320000pt;}
.y36{bottom:9.120000pt;}
.y19a{bottom:9.280000pt;}
.y37{bottom:9.600000pt;}
.y197{bottom:9.760000pt;}
.y19c{bottom:9.920000pt;}
.y1c7{bottom:12.160000pt;}
.y1d2{bottom:12.960000pt;}
.y1c5{bottom:13.760000pt;}
.y1a9{bottom:14.400000pt;}
.y1cd{bottom:14.426667pt;}
.y11a{bottom:14.560000pt;}
.y33{bottom:15.520000pt;}
.y193{bottom:15.680000pt;}
.y199{bottom:15.840000pt;}
.y31{bottom:16.320000pt;}
.y12b{bottom:17.120000pt;}
.y34{bottom:21.600000pt;}
.y11b{bottom:22.240000pt;}
.y1c6{bottom:24.480000pt;}
.y12e{bottom:24.800000pt;}
.y1c4{bottom:25.280000pt;}
.y32{bottom:26.720000pt;}
.y1cc{bottom:26.746667pt;}
.y1cf{bottom:26.880000pt;}
.y125{bottom:27.200000pt;}
.y6{bottom:31.933340pt;}
.y12a{bottom:32.480000pt;}
.y11e{bottom:34.880000pt;}
.y143{bottom:37.120000pt;}
.y124{bottom:42.560000pt;}
.y145{bottom:44.800000pt;}
.y142{bottom:52.480000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y136{bottom:87.200000pt;}
.y138{bottom:94.880000pt;}
.y135{bottom:102.586667pt;}
.y22{bottom:123.790666pt;}
.y5b{bottom:166.586667pt;}
.y19{bottom:175.052000pt;}
.y5a{bottom:184.986667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y52{bottom:201.946667pt;}
.y59{bottom:203.386667pt;}
.y150{bottom:207.226667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y152{bottom:214.906667pt;}
.y51{bottom:217.946667pt;}
.y58{bottom:221.786667pt;}
.y14f{bottom:222.586667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y50{bottom:233.946667pt;}
.y57{bottom:240.186667pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y4f{bottom:249.946667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y56{bottom:258.586667pt;}
.y4e{bottom:265.946667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y85{bottom:276.546667pt;}
.y55{bottom:277.026667pt;}
.y4d{bottom:281.986667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y5c{bottom:294.946667pt;}
.y54{bottom:295.426667pt;}
.yca{bottom:296.386667pt;}
.y4c{bottom:297.986667pt;}
.y141{bottom:299.266667pt;}
.y1bb{bottom:301.826667pt;}
.yff{bottom:302.626667pt;}
.y189{bottom:304.386667pt;}
.y10{bottom:309.452000pt;}
.y1d8{bottom:312.386667pt;}
.y1d7{bottom:315.266667pt;}
.yc9{bottom:317.826667pt;}
.y148{bottom:319.266667pt;}
.y4b{bottom:319.426667pt;}
.y1b8{bottom:320.066667pt;}
.y84{bottom:323.106667pt;}
.yfe{bottom:323.906667pt;}
.y188{bottom:325.826667pt;}
.y118{bottom:326.466667pt;}
.y16e{bottom:328.066667pt;}
.yc3{bottom:328.386667pt;}
.ye0{bottom:329.026667pt;}
.y1d6{bottom:333.506667pt;}
.y1ba{bottom:333.826667pt;}
.y1b7{bottom:336.066667pt;}
.y83{bottom:339.106667pt;}
.y147{bottom:339.266667pt;}
.yfd{bottom:339.906667pt;}
.y4a{bottom:340.706667pt;}
.y187{bottom:341.826667pt;}
.yf{bottom:343.809333pt;}
.ya8{bottom:344.386667pt;}
.ydf{bottom:345.026667pt;}
.y117{bottom:347.746667pt;}
.y16d{bottom:348.706667pt;}
.y1b6{bottom:349.506667pt;}
.y1b9{bottom:349.826667pt;}
.y1d5{bottom:351.746667pt;}
.y82{bottom:355.106667pt;}
.yfc{bottom:355.906667pt;}
.y49{bottom:356.706667pt;}
.y186{bottom:357.826667pt;}
.y146{bottom:359.266667pt;}
.yc2{bottom:360.386667pt;}
.yde{bottom:361.026667pt;}
.ye{bottom:362.706666pt;}
.ya7{bottom:365.826667pt;}
.y1b5{bottom:367.746667pt;}
.y116{bottom:369.186667pt;}
.y16c{bottom:369.826667pt;}
.y81{bottom:371.106667pt;}
.yfb{bottom:371.906667pt;}
.y48{bottom:372.706667pt;}
.y185{bottom:373.826667pt;}
.yb3{bottom:376.386667pt;}
.y1d4{bottom:376.866667pt;}
.ydd{bottom:377.026667pt;}
.y144{bottom:379.266667pt;}
.ya6{bottom:381.826667pt;}
.y1b4{bottom:385.986667pt;}
.y80{bottom:387.106667pt;}
.y184{bottom:389.826667pt;}
.y115{bottom:390.466667pt;}
.y16b{bottom:391.106667pt;}
.yb2{bottom:392.386667pt;}
.ydc{bottom:393.026667pt;}
.yfa{bottom:393.186667pt;}
.y47{bottom:393.986667pt;}
.y1d3{bottom:395.106667pt;}
.ya5{bottom:397.826667pt;}
.y134{bottom:399.266667pt;}
.y7f{bottom:403.106667pt;}
.y183{bottom:405.826667pt;}
.y16a{bottom:407.106667pt;}
.yb1{bottom:408.386667pt;}
.ydb{bottom:409.026667pt;}
.y46{bottom:409.986667pt;}
.y1b3{bottom:411.106667pt;}
.y114{bottom:411.746667pt;}
.y1d1{bottom:413.346667pt;}
.ya4{bottom:413.826667pt;}
.yf9{bottom:414.626667pt;}
.y7e{bottom:419.106667pt;}
.y140{bottom:419.266667pt;}
.y182{bottom:421.826667pt;}
.y169{bottom:423.106667pt;}
.yb0{bottom:424.386667pt;}
.yda{bottom:425.026667pt;}
.y45{bottom:425.986667pt;}
.y1b1{bottom:429.346667pt;}
.ya3{bottom:429.826667pt;}
.yf8{bottom:430.626667pt;}
.y113{bottom:433.186667pt;}
.y7d{bottom:435.106667pt;}
.y1d0{bottom:437.026667pt;}
.y181{bottom:437.826667pt;}
.y168{bottom:439.106667pt;}
.y13f{bottom:439.266667pt;}
.yaf{bottom:440.386667pt;}
.yd9{bottom:441.026667pt;}
.y44{bottom:441.986667pt;}
.ya2{bottom:445.826667pt;}
.yf7{bottom:446.626667pt;}
.yd{bottom:446.990669pt;}
.y7c{bottom:451.106667pt;}
.y180{bottom:453.826667pt;}
.y112{bottom:454.466667pt;}
.y1ce{bottom:455.106667pt;}
.yae{bottom:456.386667pt;}
.yd8{bottom:457.026667pt;}
.y43{bottom:457.986667pt;}
.y13e{bottom:459.266667pt;}
.y14e{bottom:460.546667pt;}
.ya1{bottom:461.826667pt;}
.yf6{bottom:462.626667pt;}
.yc{bottom:462.990669pt;}
.y7b{bottom:467.106667pt;}
.y17f{bottom:469.826667pt;}
.yad{bottom:472.386667pt;}
.y1ae{bottom:472.706667pt;}
.yd7{bottom:473.026667pt;}
.y42{bottom:473.986667pt;}
.y111{bottom:475.746667pt;}
.ya0{bottom:477.826667pt;}
.yf5{bottom:478.626667pt;}
.yb{bottom:478.990666pt;}
.y13d{bottom:479.266667pt;}
.y167{bottom:480.546667pt;}
.y7a{bottom:483.106667pt;}
.y17e{bottom:485.826667pt;}
.yac{bottom:488.386667pt;}
.y41{bottom:489.986667pt;}
.y1ad{bottom:490.946667pt;}
.y1cb{bottom:492.706667pt;}
.y9f{bottom:493.826667pt;}
.yd6{bottom:494.466667pt;}
.yf4{bottom:494.626667pt;}
.ya{bottom:494.990666pt;}
.y110{bottom:497.186667pt;}
.y79{bottom:499.133333pt;}
.y13c{bottom:499.293333pt;}
.y166{bottom:500.573333pt;}
.y17d{bottom:501.853333pt;}
.yab{bottom:504.413333pt;}
.y40{bottom:506.013333pt;}
.y1ac{bottom:509.213333pt;}
.yc1{bottom:509.853333pt;}
.yd5{bottom:510.493333pt;}
.yf3{bottom:510.653333pt;}
.y8d{bottom:515.133333pt;}
.y10f{bottom:518.493333pt;}
.y13b{bottom:519.293333pt;}
.y78{bottom:520.413333pt;}
.y165{bottom:520.573333pt;}
.y3f{bottom:522.013333pt;}
.y17c{bottom:523.133333pt;}
.yc0{bottom:525.853333pt;}
.yd4{bottom:526.493333pt;}
.y1ab{bottom:527.293333pt;}
.y1ca{bottom:530.173333pt;}
.y8c{bottom:531.133333pt;}
.yf2{bottom:531.933333pt;}
.y77{bottom:536.413333pt;}
.y3e{bottom:538.013333pt;}
.y17b{bottom:539.133333pt;}
.y13a{bottom:539.293333pt;}
.y10e{bottom:539.773333pt;}
.y164{bottom:540.573333pt;}
.ybf{bottom:541.853333pt;}
.yd3{bottom:542.493333pt;}
.y9e{bottom:547.133333pt;}
.y76{bottom:552.413333pt;}
.y1aa{bottom:552.573333pt;}
.yf1{bottom:553.213333pt;}
.y3d{bottom:554.013333pt;}
.y17a{bottom:555.293333pt;}
.ybe{bottom:557.853333pt;}
.yd2{bottom:558.493333pt;}
.y139{bottom:559.293333pt;}
.y163{bottom:560.573333pt;}
.y10d{bottom:561.213333pt;}
.y9d{bottom:563.133333pt;}
.y1c9{bottom:567.613333pt;}
.y75{bottom:568.413333pt;}
.yf0{bottom:569.213333pt;}
.y3c{bottom:570.013333pt;}
.y1a8{bottom:570.813333pt;}
.y9{bottom:573.786667pt;}
.ybd{bottom:573.853333pt;}
.yd1{bottom:574.493333pt;}
.y179{bottom:576.573333pt;}
.y9c{bottom:579.133333pt;}
.y137{bottom:579.293333pt;}
.y162{bottom:580.573333pt;}
.y10c{bottom:582.493333pt;}
.y74{bottom:584.413333pt;}
.yef{bottom:585.213333pt;}
.y3b{bottom:586.013333pt;}
.ybc{bottom:589.853333pt;}
.yd0{bottom:590.493333pt;}
.y8{bottom:592.685334pt;}
.y9b{bottom:595.133333pt;}
.y1a6{bottom:595.933333pt;}
.y178{bottom:597.853333pt;}
.y130{bottom:599.293333pt;}
.y73{bottom:600.413333pt;}
.y161{bottom:600.573333pt;}
.yee{bottom:601.213333pt;}
.y3a{bottom:602.013333pt;}
.y10b{bottom:603.773333pt;}
.y1c8{bottom:605.053333pt;}
.ybb{bottom:605.853333pt;}
.ycf{bottom:606.493333pt;}
.y9a{bottom:611.133333pt;}
.y72{bottom:616.413333pt;}
.yed{bottom:617.213333pt;}
.y133{bottom:619.293333pt;}
.y160{bottom:620.573333pt;}
.y1a4{bottom:621.213333pt;}
.yba{bottom:621.853333pt;}
.y39{bottom:623.453333pt;}
.y10a{bottom:625.213333pt;}
.y99{bottom:627.133333pt;}
.yce{bottom:627.773333pt;}
.y71{bottom:632.413333pt;}
.yb9{bottom:637.853333pt;}
.yec{bottom:638.653333pt;}
.y38{bottom:639.133333pt;}
.y132{bottom:639.293333pt;}
.y15f{bottom:640.573333pt;}
.y109{bottom:641.213333pt;}
.y1c3{bottom:642.493333pt;}
.y98{bottom:643.133333pt;}
.y7{bottom:645.598667pt;}
.y1a3{bottom:647.933333pt;}
.y8b{bottom:648.413333pt;}
.ycd{bottom:649.053333pt;}
.y35{bottom:651.453333pt;}
.y70{bottom:653.853333pt;}
.y108{bottom:657.213333pt;}
.y97{bottom:659.133333pt;}
.y131{bottom:659.293333pt;}
.yeb{bottom:660.093333pt;}
.y15e{bottom:660.573333pt;}
.y177{bottom:661.853333pt;}
.y8a{bottom:664.413333pt;}
.y3{bottom:668.977329pt;}
.y1a2{bottom:669.213333pt;}
.y6f{bottom:669.853333pt;}
.ycc{bottom:670.493333pt;}
.y30{bottom:671.133333pt;}
.y107{bottom:673.213333pt;}
.y96{bottom:675.133333pt;}
.yea{bottom:676.093333pt;}
.y1c2{bottom:677.693333pt;}
.y129{bottom:679.293333pt;}
.yc8{bottom:680.413333pt;}
.y15d{bottom:680.573333pt;}
.y175{bottom:683.293333pt;}
.y1a1{bottom:685.213333pt;}
.y6e{bottom:685.853333pt;}
.ycb{bottom:688.573333pt;}
.y106{bottom:689.213333pt;}
.y95{bottom:691.133333pt;}
.ye9{bottom:692.093333pt;}
.y1c1{bottom:695.933333pt;}
.yc7{bottom:696.413333pt;}
.y12f{bottom:699.293333pt;}
.y15c{bottom:700.573333pt;}
.y1a0{bottom:701.213333pt;}
.y6d{bottom:701.853333pt;}
.y173{bottom:704.573333pt;}
.y105{bottom:705.213333pt;}
.y2f{bottom:705.693333pt;}
.y89{bottom:707.133333pt;}
.ye8{bottom:708.093333pt;}
.y94{bottom:712.413333pt;}
.y1c0{bottom:714.013333pt;}
.y6c{bottom:717.853333pt;}
.y12c{bottom:719.293333pt;}
.y15a{bottom:720.573333pt;}
.y2e{bottom:721.053333pt;}
.y104{bottom:721.253333pt;}
.y19f{bottom:722.533333pt;}
.yb8{bottom:723.173333pt;}
.ye7{bottom:724.133333pt;}
.y88{bottom:728.453333pt;}
.y1bf{bottom:732.293333pt;}
.y6b{bottom:733.893333pt;}
.y2d{bottom:736.293333pt;}
.y103{bottom:737.253333pt;}
.y1da{bottom:739.173333pt;}
.y123{bottom:739.333333pt;}
.ye6{bottom:740.133333pt;}
.y159{bottom:740.613333pt;}
.y87{bottom:744.453333pt;}
.y19e{bottom:745.573333pt;}
.y6a{bottom:749.893333pt;}
.y2c{bottom:751.653333pt;}
.y102{bottom:753.253333pt;}
.y172{bottom:755.173333pt;}
.ye5{bottom:756.133333pt;}
.y1be{bottom:757.573333pt;}
.y128{bottom:759.333333pt;}
.y86{bottom:760.453333pt;}
.y158{bottom:760.613333pt;}
.y19d{bottom:761.253333pt;}
.y69{bottom:765.893333pt;}
.y2b{bottom:767.013333pt;}
.y171{bottom:771.173333pt;}
.ye4{bottom:772.133333pt;}
.y101{bottom:774.533333pt;}
.y1bd{bottom:775.653333pt;}
.y93{bottom:776.453333pt;}
.y127{bottom:779.333333pt;}
.y157{bottom:780.613333pt;}
.y2{bottom:781.661334pt;}
.y68{bottom:781.893333pt;}
.y2a{bottom:782.373333pt;}
.y170{bottom:787.173333pt;}
.ye3{bottom:788.133333pt;}
.y19b{bottom:791.653333pt;}
.y92{bottom:792.453333pt;}
.y1bc{bottom:793.893333pt;}
.y67{bottom:797.893333pt;}
.y100{bottom:798.213333pt;}
.y126{bottom:799.333333pt;}
.y29{bottom:799.493333pt;}
.y156{bottom:800.613333pt;}
.yc6{bottom:803.173333pt;}
.ye2{bottom:804.133333pt;}
.y91{bottom:808.453333pt;}
.y66{bottom:813.893333pt;}
.yb7{bottom:819.173333pt;}
.y11d{bottom:819.333333pt;}
.y155{bottom:820.613333pt;}
.y198{bottom:822.053333pt;}
.y28{bottom:823.813333pt;}
.y1db{bottom:824.453333pt;}
.y65{bottom:829.893333pt;}
.ye1{bottom:830.853333pt;}
.yb6{bottom:835.173333pt;}
.y122{bottom:839.333333pt;}
.y16f{bottom:840.453333pt;}
.y154{bottom:840.613333pt;}
.y64{bottom:845.893333pt;}
.y18f{bottom:846.053333pt;}
.y27{bottom:847.653333pt;}
.yc5{bottom:851.173333pt;}
.y195{bottom:851.333333pt;}
.yb5{bottom:856.453333pt;}
.y1{bottom:859.312000pt;}
.y121{bottom:859.333333pt;}
.y153{bottom:860.613333pt;}
.y63{bottom:861.893333pt;}
.y18e{bottom:862.053333pt;}
.yc4{bottom:867.173333pt;}
.y26{bottom:871.333333pt;}
.yb4{bottom:872.453333pt;}
.y90{bottom:877.893333pt;}
.y18d{bottom:878.053333pt;}
.y11f{bottom:879.333333pt;}
.y151{bottom:880.613333pt;}
.y192{bottom:881.733333pt;}
.y62{bottom:883.173333pt;}
.y1d9{bottom:888.453333pt;}
.y8f{bottom:893.893333pt;}
.y18c{bottom:894.053333pt;}
.y61{bottom:899.173333pt;}
.y119{bottom:899.333333pt;}
.y14d{bottom:900.613333pt;}
.yaa{bottom:904.453333pt;}
.y8e{bottom:909.893333pt;}
.y18b{bottom:910.053333pt;}
.y190{bottom:910.853333pt;}
.y60{bottom:915.173333pt;}
.y25{bottom:916.933333pt;}
.y14b{bottom:920.613333pt;}
.ya9{bottom:925.893333pt;}
.y18a{bottom:926.053333pt;}
.y5f{bottom:931.173333pt;}
.y24{bottom:932.133333pt;}
.y149{bottom:940.613333pt;}
.y5e{bottom:947.200000pt;}
.y23{bottom:947.520000pt;}
.y53{bottom:995.520000pt;}
.h18{height:15.200000pt;}
.h13{height:15.360000pt;}
.h19{height:15.392000pt;}
.h2a{height:17.440000pt;}
.h2e{height:17.472000pt;}
.h2f{height:17.600000pt;}
.h32{height:17.632000pt;}
.h1c{height:19.360000pt;}
.h1e{height:19.392000pt;}
.h10{height:19.680000pt;}
.h22{height:20.032000pt;}
.h23{height:20.640000pt;}
.h24{height:20.800000pt;}
.h36{height:22.880000pt;}
.h2c{height:24.480000pt;}
.h2d{height:24.640000pt;}
.h25{height:26.080000pt;}
.h27{height:26.560000pt;}
.h28{height:27.680000pt;}
.h29{height:27.840000pt;}
.h7{height:28.560000pt;}
.hd{height:31.680000pt;}
.h33{height:34.560000pt;}
.h35{height:36.672000pt;}
.h34{height:36.800000pt;}
.h1a{height:38.560000pt;}
.h30{height:40.635000pt;}
.h6{height:40.800000pt;}
.hf{height:42.084375pt;}
.h3{height:42.840000pt;}
.he{height:43.215000pt;}
.h11{height:44.596875pt;}
.h26{height:45.795000pt;}
.h31{height:47.109375pt;}
.h14{height:47.621250pt;}
.h2b{height:48.375000pt;}
.h2{height:48.960000pt;}
.h17{height:50.955000pt;}
.h15{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.h16{height:54.598989pt;}
.h1d{height:59.392000pt;}
.h12{height:62.812500pt;}
.h5{height:69.360000pt;}
.h1b{height:79.360000pt;}
.hb{height:83.205000pt;}
.hc{height:83.540625pt;}
.h20{height:99.360000pt;}
.h4{height:105.826671pt;}
.h1f{height:199.386667pt;}
.h21{height:439.426667pt;}
.h8{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w9{width:20.192000pt;}
.w28{width:41.280000pt;}
.w21{width:41.312000pt;}
.w35{width:43.040000pt;}
.w29{width:43.232000pt;}
.w36{width:43.680000pt;}
.w2a{width:43.840000pt;}
.w34{width:43.872000pt;}
.w1b{width:44.192000pt;}
.w2b{width:44.320000pt;}
.w19{width:47.680000pt;}
.w1a{width:47.712000pt;}
.w20{width:53.280000pt;}
.w18{width:53.600000pt;}
.wf{width:54.080000pt;}
.w33{width:56.960000pt;}
.w27{width:57.120000pt;}
.w22{width:59.360000pt;}
.w10{width:61.760000pt;}
.w15{width:63.360000pt;}
.w16{width:63.392000pt;}
.w12{width:63.680000pt;}
.w13{width:63.712000pt;}
.w17{width:65.152000pt;}
.wc{width:65.280000pt;}
.wd{width:77.440000pt;}
.w14{width:80.992000pt;}
.w11{width:81.312000pt;}
.w24{width:83.072000pt;}
.w2f{width:86.400000pt;}
.we{width:87.392000pt;}
.w3a{width:87.552000pt;}
.w2e{width:87.712000pt;}
.w39{width:88.160000pt;}
.w3b{width:88.352000pt;}
.wa{width:89.440000pt;}
.w23{width:94.912000pt;}
.w30{width:95.232000pt;}
.w38{width:98.880000pt;}
.w2d{width:99.040000pt;}
.w1c{width:103.040000pt;}
.wb{width:107.072000pt;}
.w1d{width:111.392000pt;}
.w5{width:116.192000pt;}
.w6{width:118.400000pt;}
.w8{width:119.712000pt;}
.w1e{width:125.440000pt;}
.w7{width:125.792000pt;}
.w1f{width:137.306667pt;}
.w26{width:174.746667pt;}
.w32{width:176.346667pt;}
.w25{width:187.386667pt;}
.w31{width:187.866667pt;}
.w2c{width:446.493333pt;}
.w37{width:460.893333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.w4{width:815.999988pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x45{left:3.360000pt;}
.x10{left:7.200000pt;}
.x3d{left:8.960000pt;}
.x5d{left:9.920000pt;}
.x40{left:10.880000pt;}
.x36{left:12.480000pt;}
.x46{left:13.920000pt;}
.x5c{left:15.360000pt;}
.x27{left:16.640000pt;}
.x47{left:17.600000pt;}
.x42{left:18.560000pt;}
.x28{left:20.000000pt;}
.x33{left:22.240000pt;}
.x37{left:23.680000pt;}
.x26{left:25.466667pt;}
.x5b{left:26.560000pt;}
.x3a{left:28.480000pt;}
.x50{left:30.240000pt;}
.x52{left:31.840000pt;}
.x4f{left:36.000000pt;}
.x51{left:37.440000pt;}
.x4a{left:38.880000pt;}
.x38{left:40.640000pt;}
.x48{left:45.440000pt;}
.x39{left:50.560000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.x5{left:192.026655pt;}
.x7{left:194.106655pt;}
.x54{left:201.626667pt;}
.x8{left:208.026655pt;}
.x3c{left:210.586667pt;}
.x6{left:211.866655pt;}
.x17{left:216.026655pt;}
.x29{left:220.346655pt;}
.xd{left:222.746655pt;}
.x20{left:225.306667pt;}
.x2b{left:230.266667pt;}
.x18{left:240.026655pt;}
.x1c{left:261.506667pt;}
.xe{left:275.106655pt;}
.x1b{left:292.386655pt;}
.x2c{left:295.746667pt;}
.x55{left:297.666667pt;}
.x1f{left:305.186655pt;}
.x14{left:306.946655pt;}
.xf{left:308.226667pt;}
.x21{left:313.026667pt;}
.x53{left:321.986655pt;}
.x16{left:323.586655pt;}
.x3b{left:333.506655pt;}
.x1a{left:342.626655pt;}
.x3e{left:348.546667pt;}
.x2d{left:349.666667pt;}
.xc{left:351.906655pt;}
.x57{left:355.266667pt;}
.x2a{left:358.946655pt;}
.xa{left:360.546655pt;}
.x34{left:365.186667pt;}
.x22{left:367.426667pt;}
.xb{left:381.666655pt;}
.x5e{left:387.266655pt;}
.x13{left:391.266655pt;}
.x4b{left:392.226667pt;}
.x2e{left:397.666667pt;}
.x3f{left:402.626667pt;}
.x3{left:404.408000pt;}
.x15{left:421.986667pt;}
.x11{left:426.626667pt;}
.x23{left:429.506667pt;}
.x9{left:432.093321pt;}
.x4c{left:436.093333pt;}
.x58{left:441.693333pt;}
.x41{left:444.573333pt;}
.x2f{left:445.693333pt;}
.x1d{left:459.293333pt;}
.x35{left:477.213333pt;}
.x49{left:480.573333pt;}
.x56{left:486.173333pt;}
.x30{left:493.693333pt;}
.x43{left:504.573333pt;}
.x24{left:511.133333pt;}
.x1e{left:525.213333pt;}
.x59{left:531.293333pt;}
.x31{left:541.693333pt;}
.x12{left:552.413333pt;}
.x44{left:558.653333pt;}
.x4d{left:567.613333pt;}
.x25{left:575.133333pt;}
.x32{left:589.693333pt;}
.x4e{left:611.493333pt;}
.x5a{left:618.853333pt;}
.x19{left:676.133321pt;}
}




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