
    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_a76bb2b8c797ddbc6c8342ca.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_685635f56c9879328e2f7be5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8cbcf8eede3bc010217db0b1.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_43503fb59106ef2054caf590.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_13624aa6208c3f4c3c7d43c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.759766;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_ce9e38964172cfe35984b422.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc98339a73b153e10f85e291.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.063477;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_c84ce1c7180f96da5f7bdaa6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.884277;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_bd6cefe3d59ffee168c161d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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);}
.va{vertical-align:-69.120000px;}
.v8{vertical-align:-20.880000px;}
.v5{vertical-align:-12.240000px;}
.v9{vertical-align:-6.120000px;}
.v1{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.520000px;}
.v6{vertical-align:12.240000px;}
.v3{vertical-align:20.880000px;}
.v2{vertical-align:27.000000px;}
.v7{vertical-align:39.240000px;}
.lsb{letter-spacing:-0.504000px;}
.ls1f{letter-spacing:-0.478200px;}
.ls10{letter-spacing:-0.400200px;}
.ls20{letter-spacing:-0.378600px;}
.lsc{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.220200px;}
.ls4{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1c{letter-spacing:-0.108000px;}
.lse{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.067800px;}
.lsd{letter-spacing:-0.053280px;}
.ls1e{letter-spacing:-0.018720px;}
.ls1a{letter-spacing:-0.008640px;}
.ls1{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.014040px;}
.ls15{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.090000px;}
.ls11{letter-spacing:0.120000px;}
.ls14{letter-spacing:0.126600px;}
.ls5{letter-spacing:0.139800px;}
.ls12{letter-spacing:0.140040px;}
.ls2{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.180000px;}
.ls17{letter-spacing:3.935880px;}
.ls16{letter-spacing:21.094920px;}
.ls19{letter-spacing:92.970000px;}
.ls18{letter-spacing:201.935880px;}
.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;}
}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws6{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.640000px;}
.wse{word-spacing:-15.210000px;}
.ws5{word-spacing:-15.169800px;}
.ws11{word-spacing:-15.156600px;}
.ws4{word-spacing:-15.030000px;}
.ws14{word-spacing:-14.962200px;}
.ws9{word-spacing:-14.850000px;}
.wsd{word-spacing:-14.823600px;}
.ws10{word-spacing:-14.809800px;}
.ws13{word-spacing:-13.226400px;}
.wsf{word-spacing:-11.790000px;}
.ws16{word-spacing:-11.690640px;}
.ws17{word-spacing:-11.330760px;}
.ws12{word-spacing:-9.720000px;}
.wsa{word-spacing:-0.072000px;}
.ws15{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.008000px;}
._0{width:1.120440px;}
._2{width:198.120000px;}
._4{width:1350.120000px;}
._3{width:1351.920000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs5{font-size:42.120000px;}
.fs2{font-size:47.880000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.120000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y186{bottom:0.810000px;}
.y17a{bottom:2.430000px;}
.y180{bottom:2.790000px;}
.y12f{bottom:2.880000px;}
.y12d{bottom:2.970000px;}
.ya3{bottom:3.240000px;}
.yea{bottom:3.270000px;}
.y158{bottom:3.600000px;}
.y5{bottom:3.870000px;}
.y183{bottom:4.950000px;}
.y189{bottom:5.400000px;}
.y18c{bottom:5.490000px;}
.y17d{bottom:6.930000px;}
.ye0{bottom:8.460000px;}
.yb1{bottom:8.550000px;}
.ya5{bottom:8.640000px;}
.y144{bottom:10.620000px;}
.y132{bottom:10.710000px;}
.ydb{bottom:11.790000px;}
.yd9{bottom:11.880000px;}
.yd5{bottom:12.240000px;}
.y185{bottom:12.870000px;}
.y179{bottom:14.490000px;}
.y17f{bottom:14.850000px;}
.y182{bottom:17.010000px;}
.y188{bottom:17.460000px;}
.y18b{bottom:17.550000px;}
.y140{bottom:18.360000px;}
.y131{bottom:18.450000px;}
.y17c{bottom:19.080000px;}
.y12b{bottom:19.170000px;}
.yd8{bottom:20.430000px;}
.ydd{bottom:20.520000px;}
.y138{bottom:26.280000px;}
.y13f{bottom:33.930000px;}
.y137{bottom:34.020000px;}
.yed{bottom:37.710000px;}
.y108{bottom:37.800000px;}
.y136{bottom:49.500000px;}
.y107{bottom:54.990000px;}
.y126{bottom:56.700000px;}
.y3{bottom:56.880000px;}
.y109{bottom:57.240000px;}
.y156{bottom:64.980000px;}
.y112{bottom:72.180000px;}
.y106{bottom:72.270000px;}
.y14f{bottom:73.440000px;}
.y151{bottom:73.530000px;}
.y4{bottom:73.620000px;}
.y125{bottom:77.400000px;}
.y2{bottom:77.580000px;}
.y155{bottom:80.550000px;}
.y111{bottom:89.460000px;}
.y105{bottom:89.550000px;}
.y154{bottom:96.030000px;}
.y104{bottom:103.590000px;}
.y110{bottom:106.680000px;}
.y102{bottom:108.180000px;}
.y5f{bottom:111.150000px;}
.y153{bottom:111.600000px;}
.y103{bottom:115.830000px;}
.y74{bottom:116.370000px;}
.y171{bottom:116.820000px;}
.y14e{bottom:120.450000px;}
.yfc{bottom:122.670000px;}
.y10f{bottom:123.960000px;}
.y33{bottom:128.250000px;}
.yd3{bottom:128.340000px;}
.y5e{bottom:128.430000px;}
.y8c{bottom:131.670000px;}
.y7a{bottom:133.650000px;}
.y170{bottom:134.040000px;}
.yfb{bottom:137.430000px;}
.y14d{bottom:137.730000px;}
.y10e{bottom:141.240000px;}
.y5d{bottom:145.620000px;}
.y85{bottom:146.250000px;}
.y32{bottom:148.950000px;}
.yd2{bottom:149.040000px;}
.y6b{bottom:150.840000px;}
.y16f{bottom:151.320000px;}
.y123{bottom:151.920000px;}
.y71{bottom:152.370000px;}
.yfa{bottom:154.710000px;}
.y14c{bottom:154.920000px;}
.y5c{bottom:162.930000px;}
.y6f{bottom:163.560000px;}
.y76{bottom:168.150000px;}
.y16e{bottom:168.600000px;}
.y122{bottom:169.230000px;}
.y31{bottom:169.680000px;}
.yd1{bottom:169.770000px;}
.yf9{bottom:172.020000px;}
.y8b{bottom:173.100000px;}
.y5b{bottom:180.210000px;}
.y75{bottom:180.840000px;}
.y14b{bottom:185.250000px;}
.y6a{bottom:185.430000px;}
.y16d{bottom:185.790000px;}
.yf8{bottom:189.210000px;}
.y30{bottom:190.380000px;}
.y70{bottom:193.800000px;}
.y5a{bottom:197.400000px;}
.y79{bottom:198.030000px;}
.y14a{bottom:201.540000px;}
.y59{bottom:202.620000px;}
.y16c{bottom:203.070000px;}
.y121{bottom:203.700000px;}
.y2f{bottom:210.990000px;}
.yd0{bottom:211.170000px;}
.ya1{bottom:214.500000px;}
.y58{bottom:214.680000px;}
.y73{bottom:215.310000px;}
.y149{bottom:217.020000px;}
.y16b{bottom:220.350000px;}
.y120{bottom:221.520000px;}
.yf7{bottom:223.770000px;}
.y84{bottom:229.710000px;}
.y2e{bottom:231.690000px;}
.y57{bottom:231.960000px;}
.y6e{bottom:235.200000px;}
.y69{bottom:237.180000px;}
.y16a{bottom:237.540000px;}
.y11f{bottom:242.220000px;}
.y148{bottom:248.070000px;}
.y56{bottom:249.150000px;}
.y68{bottom:249.780000px;}
.y2d{bottom:252.390000px;}
.ycf{bottom:252.570000px;}
.y89{bottom:254.370000px;}
.y169{bottom:254.820000px;}
.ya0{bottom:255.900000px;}
.y11e{bottom:262.920000px;}
.y55{bottom:266.430000px;}
.y88{bottom:267.060000px;}
.yce{bottom:270.120000px;}
.y83{bottom:271.110000px;}
.y54{bottom:271.650000px;}
.y168{bottom:272.100000px;}
.y2c{bottom:273.090000px;}
.yf6{bottom:275.520000px;}
.y6d{bottom:276.600000px;}
.y147{bottom:279.120000px;}
.y11d{bottom:283.620000px;}
.y53{bottom:283.710000px;}
.ycd{bottom:287.400000px;}
.y167{bottom:289.290000px;}
.y2b{bottom:293.790000px;}
.y146{bottom:294.690000px;}
.y9f{bottom:297.300000px;}
.y52{bottom:300.900000px;}
.y11c{bottom:304.320000px;}
.ycc{bottom:304.680000px;}
.y51{bottom:306.120000px;}
.y166{bottom:306.570000px;}
.yf5{bottom:309.990000px;}
.y82{bottom:312.510000px;}
.y2a{bottom:314.490000px;}
.y67{bottom:318.000000px;}
.y50{bottom:318.180000px;}
.ycb{bottom:321.870000px;}
.y165{bottom:323.850000px;}
.y11b{bottom:324.390000px;}
.y78{bottom:324.750000px;}
.y145{bottom:325.740000px;}
.yf4{bottom:327.990000px;}
.y29{bottom:335.190000px;}
.y4f{bottom:335.370000px;}
.y9e{bottom:338.700000px;}
.yca{bottom:339.150000px;}
.y164{bottom:341.040000px;}
.y11a{bottom:341.670000px;}
.yf3{bottom:345.180000px;}
.y4e{bottom:352.650000px;}
.y81{bottom:353.910000px;}
.y28{bottom:355.890000px;}
.yc9{bottom:356.430000px;}
.y143{bottom:356.790000px;}
.y163{bottom:358.320000px;}
.y119{bottom:358.950000px;}
.y66{bottom:359.400000px;}
.yf2{bottom:362.460000px;}
.y4d{bottom:369.930000px;}
.yc8{bottom:374.430000px;}
.y162{bottom:375.510000px;}
.y118{bottom:376.140000px;}
.y27{bottom:376.590000px;}
.yf1{bottom:379.740000px;}
.y9d{bottom:380.100000px;}
.y4c{bottom:387.120000px;}
.y142{bottom:387.840000px;}
.y117{bottom:390.900000px;}
.yc7{bottom:391.620000px;}
.y161{bottom:392.790000px;}
.y80{bottom:395.310000px;}
.y26{bottom:397.290000px;}
.y65{bottom:400.800000px;}
.y141{bottom:403.320000px;}
.y4b{bottom:404.400000px;}
.y177{bottom:404.670000px;}
.y87{bottom:407.550000px;}
.y116{bottom:408.180000px;}
.yc6{bottom:408.900000px;}
.y160{bottom:410.070000px;}
.yf0{bottom:414.210000px;}
.y25{bottom:417.990000px;}
.y9c{bottom:421.500000px;}
.y4a{bottom:421.680000px;}
.y176{bottom:425.370000px;}
.y115{bottom:425.460000px;}
.yc5{bottom:426.180000px;}
.y49{bottom:426.900000px;}
.y15f{bottom:427.260000px;}
.yef{bottom:431.490000px;}
.y7f{bottom:436.710000px;}
.y24{bottom:438.690000px;}
.y48{bottom:438.870000px;}
.y64{bottom:442.200000px;}
.y114{bottom:442.650000px;}
.yc4{bottom:443.370000px;}
.y15e{bottom:444.570000px;}
.y8a{bottom:448.950000px;}
.y13e{bottom:449.970000px;}
.y47{bottom:456.150000px;}
.y23{bottom:459.390000px;}
.y113{bottom:459.930000px;}
.yc3{bottom:460.650000px;}
.y46{bottom:461.370000px;}
.y15d{bottom:461.850000px;}
.y9b{bottom:462.900000px;}
.yee{bottom:465.960000px;}
.y175{bottom:466.770000px;}
.y45{bottom:474.060000px;}
.y10d{bottom:477.210000px;}
.y7e{bottom:478.110000px;}
.yc2{bottom:478.650000px;}
.y15c{bottom:479.040000px;}
.y22{bottom:480.090000px;}
.yec{bottom:483.240000px;}
.y63{bottom:483.600000px;}
.y15b{bottom:493.800000px;}
.yc1{bottom:495.930000px;}
.y13d{bottom:496.500000px;}
.y21{bottom:500.790000px;}
.y9a{bottom:504.300000px;}
.y174{bottom:508.170000px;}
.y15a{bottom:509.370000px;}
.y13c{bottom:511.980000px;}
.yc0{bottom:513.120000px;}
.y7d{bottom:519.510000px;}
.y20{bottom:521.490000px;}
.y62{bottom:525.000000px;}
.y159{bottom:525.660000px;}
.y13b{bottom:527.550000px;}
.ybf{bottom:530.400000px;}
.yeb{bottom:534.990000px;}
.y157{bottom:542.130000px;}
.y1f{bottom:542.190000px;}
.y13a{bottom:543.030000px;}
.y99{bottom:545.700000px;}
.ybe{bottom:547.590000px;}
.ye8{bottom:552.990000px;}
.y139{bottom:558.600000px;}
.y7c{bottom:560.910000px;}
.y1e{bottom:562.890000px;}
.ybd{bottom:564.870000px;}
.y43{bottom:566.310000px;}
.ye9{bottom:570.990000px;}
.y44{bottom:573.060000px;}
.y135{bottom:574.080000px;}
.y191{bottom:578.040000px;}
.y18a{bottom:581.550000px;}
.ybc{bottom:582.900000px;}
.y1d{bottom:583.620000px;}
.y98{bottom:587.040000px;}
.ye7{bottom:589.020000px;}
.y150{bottom:590.370000px;}
.ybb{bottom:600.180000px;}
.y1c{bottom:604.320000px;}
.y7b{bottom:606.390000px;}
.y152{bottom:606.660000px;}
.ye6{bottom:607.020000px;}
.y41{bottom:607.740000px;}
.y42{bottom:614.490000px;}
.yba{bottom:617.370000px;}
.ye5{bottom:624.210000px;}
.y1b{bottom:625.020000px;}
.y97{bottom:628.440000px;}
.y10c{bottom:632.400000px;}
.yb9{bottom:634.650000px;}
.y18d{bottom:635.280000px;}
.y134{bottom:636.180000px;}
.ye4{bottom:641.490000px;}
.y190{bottom:642.930000px;}
.y1a{bottom:645.720000px;}
.y3f{bottom:649.140000px;}
.y10b{bottom:649.680000px;}
.y133{bottom:651.750000px;}
.yb8{bottom:651.930000px;}
.y40{bottom:655.890000px;}
.ye3{bottom:658.770000px;}
.y19{bottom:666.420000px;}
.y10a{bottom:666.960000px;}
.y130{bottom:667.230000px;}
.yb7{bottom:669.120000px;}
.y181{bottom:669.210000px;}
.y96{bottom:669.840000px;}
.y17b{bottom:673.260000px;}
.ye2{bottom:675.960000px;}
.y101{bottom:684.150000px;}
.y18{bottom:687.120000px;}
.y3d{bottom:690.540000px;}
.y3e{bottom:697.290000px;}
.y12a{bottom:699.090000px;}
.yb6{bottom:704.400000px;}
.y17{bottom:707.820000px;}
.ye1{bottom:710.430000px;}
.y95{bottom:711.240000px;}
.y12e{bottom:715.290000px;}
.yb5{bottom:721.680000px;}
.ydf{bottom:728.430000px;}
.y16{bottom:728.520000px;}
.y12c{bottom:731.580000px;}
.y3c{bottom:731.940000px;}
.yb4{bottom:738.870000px;}
.y15{bottom:749.220000px;}
.y129{bottom:751.740000px;}
.y94{bottom:752.640000px;}
.yb3{bottom:756.150000px;}
.y14{bottom:769.920000px;}
.y128{bottom:772.470000px;}
.y3b{bottom:773.340000px;}
.yb2{bottom:773.430000px;}
.y173{bottom:775.680000px;}
.y6c{bottom:780.090000px;}
.y13{bottom:790.620000px;}
.yb0{bottom:791.430000px;}
.y172{bottom:792.510000px;}
.y127{bottom:793.170000px;}
.y93{bottom:794.040000px;}
.yde{bottom:807.900000px;}
.yaf{bottom:808.620000px;}
.y100{bottom:809.430000px;}
.y12{bottom:811.320000px;}
.y3a{bottom:814.740000px;}
.y72{bottom:821.490000px;}
.yae{bottom:825.900000px;}
.yff{bottom:826.620000px;}
.y11{bottom:832.020000px;}
.y92{bottom:835.440000px;}
.y18f{bottom:837.690000px;}
.y184{bottom:841.200000px;}
.ydc{bottom:842.370000px;}
.yad{bottom:843.180000px;}
.yfe{bottom:843.900000px;}
.y192{bottom:848.220000px;}
.y124{bottom:848.250000px;}
.y10{bottom:852.720000px;}
.y39{bottom:856.140000px;}
.yac{bottom:860.370000px;}
.y86{bottom:862.890000px;}
.yf{bottom:873.420000px;}
.y91{bottom:876.840000px;}
.yda{bottom:876.930000px;}
.yab{bottom:877.650000px;}
.yfd{bottom:878.370000px;}
.y187{bottom:887.280000px;}
.ye{bottom:894.120000px;}
.yaa{bottom:895.650000px;}
.y38{bottom:897.540000px;}
.y18e{bottom:902.490000px;}
.yd7{bottom:911.400000px;}
.ya9{bottom:912.840000px;}
.yd{bottom:914.820000px;}
.y90{bottom:918.240000px;}
.ya8{bottom:930.120000px;}
.y17e{bottom:930.390000px;}
.y178{bottom:931.830000px;}
.yc{bottom:935.520000px;}
.y37{bottom:938.940000px;}
.y77{bottom:945.690000px;}
.yd6{bottom:945.870000px;}
.ya7{bottom:947.400000px;}
.yb{bottom:956.220000px;}
.y8f{bottom:959.640000px;}
.yd4{bottom:963.870000px;}
.ya6{bottom:964.590000px;}
.ya{bottom:976.920000px;}
.y36{bottom:980.340000px;}
.ya4{bottom:981.870000px;}
.y9{bottom:997.650000px;}
.ya2{bottom:999.900000px;}
.y8e{bottom:1001.070000px;}
.y8{bottom:1018.350000px;}
.y35{bottom:1021.770000px;}
.y61{bottom:1028.520000px;}
.y7{bottom:1039.050000px;}
.y8d{bottom:1042.470000px;}
.y6{bottom:1060.380000px;}
.y34{bottom:1063.170000px;}
.y60{bottom:1069.920000px;}
.y1{bottom:1118.070000px;}
.h21{height:15.480000px;}
.h20{height:15.570000px;}
.h2a{height:16.470000px;}
.hf{height:17.190000px;}
.h16{height:17.220000px;}
.hc{height:17.280000px;}
.he{height:17.310000px;}
.h2{height:20.700000px;}
.h30{height:22.680000px;}
.h2b{height:24.300000px;}
.h2e{height:24.660000px;}
.h2f{height:26.820000px;}
.h31{height:27.270000px;}
.h32{height:27.360000px;}
.h13{height:27.720000px;}
.h2d{height:28.890000px;}
.h22{height:31.050000px;}
.h11{height:34.470000px;}
.h12{height:34.560000px;}
.h15{height:35.220000px;}
.h10{height:35.310000px;}
.h1a{height:35.497617px;}
.h6{height:38.158594px;}
.h2c{height:43.929844px;}
.h26{height:46.530000px;}
.h27{height:46.650000px;}
.h5{height:46.991602px;}
.h1e{height:48.060000px;}
.h17{height:51.750000px;}
.h23{height:52.971680px;}
.h24{height:52.998047px;}
.h8{height:53.896641px;}
.h1f{height:54.421875px;}
.h14{height:58.975137px;}
.h7{height:59.004492px;}
.h18{height:59.038594px;}
.hd{height:60.589687px;}
.h25{height:62.100000px;}
.h9{height:64.546875px;}
.ha{height:70.628906px;}
.h1{height:70.664062px;}
.h4{height:72.562500px;}
.hb{height:73.991602px;}
.h1b{height:77.398594px;}
.h3{height:84.535312px;}
.h29{height:124.200000px;}
.h19{height:125.280000px;}
.h1c{height:155.190000px;}
.h28{height:156.780000px;}
.h1d{height:918.000000px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w4{width:18.000000px;}
.w20{width:46.440000px;}
.w23{width:46.800000px;}
.w30{width:47.730000px;}
.w2e{width:52.380000px;}
.w2c{width:53.280000px;}
.w32{width:53.640000px;}
.w25{width:54.000000px;}
.w2f{width:57.060000px;}
.w31{width:58.770000px;}
.w33{width:60.390000px;}
.w34{width:60.420000px;}
.w39{width:63.270000px;}
.w2d{width:63.810000px;}
.w1f{width:66.690000px;}
.w21{width:66.720000px;}
.w2b{width:66.780000px;}
.w24{width:67.080000px;}
.w22{width:73.440000px;}
.w3b{width:89.640000px;}
.w3a{width:89.730000px;}
.w8{width:98.820000px;}
.w12{width:101.100000px;}
.w13{width:101.160000px;}
.w7{width:101.250000px;}
.w28{width:105.510000px;}
.w6{width:108.030000px;}
.w14{width:108.390000px;}
.wf{width:111.060000px;}
.w10{width:111.360000px;}
.w29{width:113.130000px;}
.w1a{width:113.940000px;}
.w1b{width:113.970000px;}
.w35{width:114.120000px;}
.w36{width:114.210000px;}
.we{width:114.390000px;}
.w2a{width:114.420000px;}
.w27{width:116.370000px;}
.w37{width:117.630000px;}
.w1c{width:120.690000px;}
.w1d{width:121.050000px;}
.w26{width:121.320000px;}
.w1e{width:121.530000px;}
.w38{width:149.670000px;}
.w17{width:175.170000px;}
.wd{width:222.420000px;}
.w11{width:296.580000px;}
.w5{width:330.780000px;}
.w18{width:458.220000px;}
.w19{width:479.280000px;}
.wc{width:492.450000px;}
.w9{width:540.060000px;}
.wa{width:638.880000px;}
.wb{width:715.590000px;}
.w3{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.w16{width:1187.999982px;}
.w15{width:1188.000000px;}
.x0{left:0.000000px;}
.x98{left:2.520000px;}
.x97{left:4.320000px;}
.x5c{left:6.750000px;}
.x45{left:8.100000px;}
.x85{left:9.120000px;}
.x7b{left:11.520000px;}
.x86{left:12.540000px;}
.x90{left:13.680000px;}
.x83{left:15.120000px;}
.x8f{left:16.560000px;}
.x6d{left:18.540000px;}
.x58{left:19.890000px;}
.x6b{left:21.600000px;}
.x84{left:23.130000px;}
.x91{left:24.570000px;}
.x49{left:26.010000px;}
.x57{left:27.630000px;}
.x4f{left:28.800000px;}
.x50{left:29.970000px;}
.x4b{left:31.680000px;}
.x63{left:32.850000px;}
.x4c{left:34.050000px;}
.x60{left:35.550000px;}
.x47{left:36.750000px;}
.x5f{left:38.520000px;}
.x5a{left:40.140000px;}
.x4e{left:42.780000px;}
.x62{left:44.010000px;}
.x4d{left:46.470000px;}
.x51{left:49.410000px;}
.x64{left:51.030000px;}
.x5e{left:52.380000px;}
.x59{left:54.000000px;}
.x5d{left:55.440000px;}
.x55{left:56.700000px;}
.x61{left:60.600000px;}
.x52{left:101.250000px;}
.x68{left:104.670000px;}
.x1{left:107.999986px;}
.x1c{left:112.859986px;}
.x27{left:117.719986px;}
.x99{left:121.499982px;}
.x42{left:134.999986px;}
.x44{left:139.590000px;}
.x72{left:145.620000px;}
.x4{left:148.139986px;}
.x17{left:154.559973px;}
.xa5{left:156.000000px;}
.x18{left:160.589986px;}
.x10{left:162.029986px;}
.xa1{left:163.290000px;}
.x2f{left:166.619986px;}
.x38{left:177.509973px;}
.x70{left:187.469982px;}
.x39{left:189.569986px;}
.x6e{left:196.140000px;}
.x1d{left:200.549973px;}
.x3f{left:203.969973px;}
.x1e{left:206.579986px;}
.x88{left:211.349982px;}
.x71{left:212.880000px;}
.x40{left:216.029986px;}
.x9c{left:222.150000px;}
.x53{left:231.600000px;}
.x9f{left:235.650000px;}
.x9b{left:241.050000px;}
.x43{left:268.319986px;}
.x7a{left:280.380000px;}
.x2a{left:281.459973px;}
.x89{left:283.890000px;}
.x7{left:289.559986px;}
.xd{left:291.809986px;}
.x2b{left:293.519986px;}
.x3a{left:300.089973px;}
.xc{left:304.319986px;}
.x23{left:310.439986px;}
.x8{left:312.239986px;}
.x24{left:322.049986px;}
.x1b{left:324.029986px;}
.x74{left:327.630000px;}
.x30{left:332.219986px;}
.x29{left:335.009986px;}
.x92{left:351.390000px;}
.x21{left:360.479973px;}
.x22{left:366.509986px;}
.x66{left:369.479986px;}
.x3b{left:371.909973px;}
.x36{left:375.419973px;}
.xa0{left:377.130000px;}
.xa2{left:378.390000px;}
.x3c{left:383.969986px;}
.xb{left:385.769986px;}
.xf{left:387.029986px;}
.x9{left:388.919986px;}
.xe{left:389.999986px;}
.x7c{left:395.130000px;}
.x41{left:398.009986px;}
.x69{left:401.700000px;}
.x37{left:403.229986px;}
.x6{left:404.309986px;}
.x8a{left:405.930000px;}
.x35{left:408.089986px;}
.x5{left:416.729986px;}
.x25{left:417.899973px;}
.x26{left:429.959986px;}
.x75{left:442.380000px;}
.x65{left:443.729986px;}
.xa{left:445.979986px;}
.x9a{left:447.059986px;}
.x28{left:450.030000px;}
.x3{left:454.530000px;}
.x87{left:457.499982px;}
.x2{left:459.029986px;}
.x46{left:470.370000px;}
.x67{left:472.529986px;}
.x3d{left:474.419973px;}
.x15{left:483.629973px;}
.x3e{left:486.509986px;}
.x16{left:489.659986px;}
.xa3{left:493.260000px;}
.x31{left:499.559973px;}
.x6a{left:502.800000px;}
.x7d{left:509.880000px;}
.x32{left:511.619986px;}
.x8b{left:523.110000px;}
.x19{left:529.529973px;}
.x1a{left:535.559986px;}
.x2c{left:541.949986px;}
.x76{left:557.130000px;}
.x48{left:578.400000px;}
.x93{left:580.890000px;}
.x6f{left:585.029982px;}
.x9e{left:590.460000px;}
.x54{left:594.420000px;}
.x6c{left:603.960000px;}
.x9d{left:610.440000px;}
.x1f{left:616.469973px;}
.x20{left:622.499986px;}
.x7e{left:624.660000px;}
.x8c{left:629.430000px;}
.x11{left:639.869973px;}
.x12{left:645.899986px;}
.xa4{left:664.890000px;}
.x73{left:671.910000px;}
.x4a{left:679.650000px;}
.x13{left:689.909973px;}
.x14{left:695.939986px;}
.x5b{left:705.480000px;}
.x56{left:708.810000px;}
.x7f{left:739.410000px;}
.x2d{left:743.369973px;}
.x33{left:753.359973px;}
.x2e{left:755.429986px;}
.x34{left:765.419986px;}
.x77{left:786.660000px;}
.x94{left:803.670000px;}
.x8d{left:857.670000px;}
.x80{left:860.910000px;}
.x78{left:908.160000px;}
.x95{left:918.420000px;}
.x8e{left:972.420000px;}
.x81{left:982.410000px;}
.x79{left:1029.660000px;}
.x96{left:1033.200000px;}
.x82{left:1097.190000px;}
@media print{
.va{vertical-align:-61.440000pt;}
.v8{vertical-align:-18.560000pt;}
.v5{vertical-align:-10.880000pt;}
.v9{vertical-align:-5.440000pt;}
.v1{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.240000pt;}
.v6{vertical-align:10.880000pt;}
.v3{vertical-align:18.560000pt;}
.v2{vertical-align:24.000000pt;}
.v7{vertical-align:34.880000pt;}
.lsb{letter-spacing:-0.448000pt;}
.ls1f{letter-spacing:-0.425067pt;}
.ls10{letter-spacing:-0.355733pt;}
.ls20{letter-spacing:-0.336533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.195733pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.060267pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls1e{letter-spacing:-0.016640pt;}
.ls1a{letter-spacing:-0.007680pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.012480pt;}
.ls15{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.080000pt;}
.ls11{letter-spacing:0.106667pt;}
.ls14{letter-spacing:0.112533pt;}
.ls5{letter-spacing:0.124267pt;}
.ls12{letter-spacing:0.124480pt;}
.ls2{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.160000pt;}
.ls17{letter-spacing:3.498560pt;}
.ls16{letter-spacing:18.751040pt;}
.ls19{letter-spacing:82.640000pt;}
.ls18{letter-spacing:179.498560pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.680000pt;}
.wse{word-spacing:-13.520000pt;}
.ws5{word-spacing:-13.484267pt;}
.ws11{word-spacing:-13.472533pt;}
.ws4{word-spacing:-13.360000pt;}
.ws14{word-spacing:-13.299733pt;}
.ws9{word-spacing:-13.200000pt;}
.wsd{word-spacing:-13.176533pt;}
.ws10{word-spacing:-13.164267pt;}
.ws13{word-spacing:-11.756800pt;}
.wsf{word-spacing:-10.480000pt;}
.ws16{word-spacing:-10.391680pt;}
.ws17{word-spacing:-10.071787pt;}
.ws12{word-spacing:-8.640000pt;}
.wsa{word-spacing:-0.064000pt;}
.ws15{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-0.896000pt;}
._0{width:0.995947pt;}
._2{width:176.106667pt;}
._4{width:1200.106667pt;}
._3{width:1201.706667pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:37.440000pt;}
.fs2{font-size:42.560000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.440000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y186{bottom:0.720000pt;}
.y17a{bottom:2.160000pt;}
.y180{bottom:2.480000pt;}
.y12f{bottom:2.560000pt;}
.y12d{bottom:2.640000pt;}
.ya3{bottom:2.880000pt;}
.yea{bottom:2.906667pt;}
.y158{bottom:3.200000pt;}
.y5{bottom:3.440000pt;}
.y183{bottom:4.400000pt;}
.y189{bottom:4.800000pt;}
.y18c{bottom:4.880000pt;}
.y17d{bottom:6.160000pt;}
.ye0{bottom:7.520000pt;}
.yb1{bottom:7.600000pt;}
.ya5{bottom:7.680000pt;}
.y144{bottom:9.440000pt;}
.y132{bottom:9.520000pt;}
.ydb{bottom:10.480000pt;}
.yd9{bottom:10.560000pt;}
.yd5{bottom:10.880000pt;}
.y185{bottom:11.440000pt;}
.y179{bottom:12.880000pt;}
.y17f{bottom:13.200000pt;}
.y182{bottom:15.120000pt;}
.y188{bottom:15.520000pt;}
.y18b{bottom:15.600000pt;}
.y140{bottom:16.320000pt;}
.y131{bottom:16.400000pt;}
.y17c{bottom:16.960000pt;}
.y12b{bottom:17.040000pt;}
.yd8{bottom:18.160000pt;}
.ydd{bottom:18.240000pt;}
.y138{bottom:23.360000pt;}
.y13f{bottom:30.160000pt;}
.y137{bottom:30.240000pt;}
.yed{bottom:33.520000pt;}
.y108{bottom:33.600000pt;}
.y136{bottom:44.000000pt;}
.y107{bottom:48.880000pt;}
.y126{bottom:50.400000pt;}
.y3{bottom:50.560000pt;}
.y109{bottom:50.880000pt;}
.y156{bottom:57.760000pt;}
.y112{bottom:64.160000pt;}
.y106{bottom:64.240000pt;}
.y14f{bottom:65.280000pt;}
.y151{bottom:65.360000pt;}
.y4{bottom:65.440000pt;}
.y125{bottom:68.800000pt;}
.y2{bottom:68.960000pt;}
.y155{bottom:71.600000pt;}
.y111{bottom:79.520000pt;}
.y105{bottom:79.600000pt;}
.y154{bottom:85.360000pt;}
.y104{bottom:92.080000pt;}
.y110{bottom:94.826667pt;}
.y102{bottom:96.160000pt;}
.y5f{bottom:98.800000pt;}
.y153{bottom:99.200000pt;}
.y103{bottom:102.960000pt;}
.y74{bottom:103.440000pt;}
.y171{bottom:103.840000pt;}
.y14e{bottom:107.066667pt;}
.yfc{bottom:109.040000pt;}
.y10f{bottom:110.186667pt;}
.y33{bottom:114.000000pt;}
.yd3{bottom:114.080000pt;}
.y5e{bottom:114.160000pt;}
.y8c{bottom:117.040000pt;}
.y7a{bottom:118.800000pt;}
.y170{bottom:119.146667pt;}
.yfb{bottom:122.160000pt;}
.y14d{bottom:122.426667pt;}
.y10e{bottom:125.546667pt;}
.y5d{bottom:129.440000pt;}
.y85{bottom:130.000000pt;}
.y32{bottom:132.400000pt;}
.yd2{bottom:132.480000pt;}
.y6b{bottom:134.080000pt;}
.y16f{bottom:134.506667pt;}
.y123{bottom:135.040000pt;}
.y71{bottom:135.440000pt;}
.yfa{bottom:137.520000pt;}
.y14c{bottom:137.706667pt;}
.y5c{bottom:144.826667pt;}
.y6f{bottom:145.386667pt;}
.y76{bottom:149.466667pt;}
.y16e{bottom:149.866667pt;}
.y122{bottom:150.426667pt;}
.y31{bottom:150.826667pt;}
.yd1{bottom:150.906667pt;}
.yf9{bottom:152.906667pt;}
.y8b{bottom:153.866667pt;}
.y5b{bottom:160.186667pt;}
.y75{bottom:160.746667pt;}
.y14b{bottom:164.666667pt;}
.y6a{bottom:164.826667pt;}
.y16d{bottom:165.146667pt;}
.yf8{bottom:168.186667pt;}
.y30{bottom:169.226667pt;}
.y70{bottom:172.266667pt;}
.y5a{bottom:175.466667pt;}
.y79{bottom:176.026667pt;}
.y14a{bottom:179.146667pt;}
.y59{bottom:180.106667pt;}
.y16c{bottom:180.506667pt;}
.y121{bottom:181.066667pt;}
.y2f{bottom:187.546667pt;}
.yd0{bottom:187.706667pt;}
.ya1{bottom:190.666667pt;}
.y58{bottom:190.826667pt;}
.y73{bottom:191.386667pt;}
.y149{bottom:192.906667pt;}
.y16b{bottom:195.866667pt;}
.y120{bottom:196.906667pt;}
.yf7{bottom:198.906667pt;}
.y84{bottom:204.186667pt;}
.y2e{bottom:205.946667pt;}
.y57{bottom:206.186667pt;}
.y6e{bottom:209.066667pt;}
.y69{bottom:210.826667pt;}
.y16a{bottom:211.146667pt;}
.y11f{bottom:215.306667pt;}
.y148{bottom:220.506667pt;}
.y56{bottom:221.466667pt;}
.y68{bottom:222.026667pt;}
.y2d{bottom:224.346667pt;}
.ycf{bottom:224.506667pt;}
.y89{bottom:226.106667pt;}
.y169{bottom:226.506667pt;}
.ya0{bottom:227.466667pt;}
.y11e{bottom:233.706667pt;}
.y55{bottom:236.826667pt;}
.y88{bottom:237.386667pt;}
.yce{bottom:240.106667pt;}
.y83{bottom:240.986667pt;}
.y54{bottom:241.466667pt;}
.y168{bottom:241.866667pt;}
.y2c{bottom:242.746667pt;}
.yf6{bottom:244.906667pt;}
.y6d{bottom:245.866667pt;}
.y147{bottom:248.106667pt;}
.y11d{bottom:252.106667pt;}
.y53{bottom:252.186667pt;}
.ycd{bottom:255.466667pt;}
.y167{bottom:257.146667pt;}
.y2b{bottom:261.146667pt;}
.y146{bottom:261.946667pt;}
.y9f{bottom:264.266667pt;}
.y52{bottom:267.466667pt;}
.y11c{bottom:270.506667pt;}
.ycc{bottom:270.826667pt;}
.y51{bottom:272.106667pt;}
.y166{bottom:272.506667pt;}
.yf5{bottom:275.546667pt;}
.y82{bottom:277.786667pt;}
.y2a{bottom:279.546667pt;}
.y67{bottom:282.666667pt;}
.y50{bottom:282.826667pt;}
.ycb{bottom:286.106667pt;}
.y165{bottom:287.866667pt;}
.y11b{bottom:288.346667pt;}
.y78{bottom:288.666667pt;}
.y145{bottom:289.546667pt;}
.yf4{bottom:291.546667pt;}
.y29{bottom:297.946667pt;}
.y4f{bottom:298.106667pt;}
.y9e{bottom:301.066667pt;}
.yca{bottom:301.466667pt;}
.y164{bottom:303.146667pt;}
.y11a{bottom:303.706667pt;}
.yf3{bottom:306.826667pt;}
.y4e{bottom:313.466667pt;}
.y81{bottom:314.586667pt;}
.y28{bottom:316.346667pt;}
.yc9{bottom:316.826667pt;}
.y143{bottom:317.146667pt;}
.y163{bottom:318.506667pt;}
.y119{bottom:319.066667pt;}
.y66{bottom:319.466667pt;}
.yf2{bottom:322.186667pt;}
.y4d{bottom:328.826667pt;}
.yc8{bottom:332.826667pt;}
.y162{bottom:333.786667pt;}
.y118{bottom:334.346667pt;}
.y27{bottom:334.746667pt;}
.yf1{bottom:337.546667pt;}
.y9d{bottom:337.866667pt;}
.y4c{bottom:344.106667pt;}
.y142{bottom:344.746667pt;}
.y117{bottom:347.466667pt;}
.yc7{bottom:348.106667pt;}
.y161{bottom:349.146667pt;}
.y80{bottom:351.386667pt;}
.y26{bottom:353.146667pt;}
.y65{bottom:356.266667pt;}
.y141{bottom:358.506667pt;}
.y4b{bottom:359.466667pt;}
.y177{bottom:359.706667pt;}
.y87{bottom:362.266667pt;}
.y116{bottom:362.826667pt;}
.yc6{bottom:363.466667pt;}
.y160{bottom:364.506667pt;}
.yf0{bottom:368.186667pt;}
.y25{bottom:371.546667pt;}
.y9c{bottom:374.666667pt;}
.y4a{bottom:374.826667pt;}
.y176{bottom:378.106667pt;}
.y115{bottom:378.186667pt;}
.yc5{bottom:378.826667pt;}
.y49{bottom:379.466667pt;}
.y15f{bottom:379.786667pt;}
.yef{bottom:383.546667pt;}
.y7f{bottom:388.186667pt;}
.y24{bottom:389.946667pt;}
.y48{bottom:390.106667pt;}
.y64{bottom:393.066667pt;}
.y114{bottom:393.466667pt;}
.yc4{bottom:394.106667pt;}
.y15e{bottom:395.173333pt;}
.y8a{bottom:399.066667pt;}
.y13e{bottom:399.973333pt;}
.y47{bottom:405.466667pt;}
.y23{bottom:408.346667pt;}
.y113{bottom:408.826667pt;}
.yc3{bottom:409.466667pt;}
.y46{bottom:410.106667pt;}
.y15d{bottom:410.533333pt;}
.y9b{bottom:411.466667pt;}
.yee{bottom:414.186667pt;}
.y175{bottom:414.906667pt;}
.y45{bottom:421.386667pt;}
.y10d{bottom:424.186667pt;}
.y7e{bottom:424.986667pt;}
.yc2{bottom:425.466667pt;}
.y15c{bottom:425.813333pt;}
.y22{bottom:426.746667pt;}
.yec{bottom:429.546667pt;}
.y63{bottom:429.866667pt;}
.y15b{bottom:438.933333pt;}
.yc1{bottom:440.826667pt;}
.y13d{bottom:441.333333pt;}
.y21{bottom:445.146667pt;}
.y9a{bottom:448.266667pt;}
.y174{bottom:451.706667pt;}
.y15a{bottom:452.773333pt;}
.y13c{bottom:455.093333pt;}
.yc0{bottom:456.106667pt;}
.y7d{bottom:461.786667pt;}
.y20{bottom:463.546667pt;}
.y62{bottom:466.666667pt;}
.y159{bottom:467.253333pt;}
.y13b{bottom:468.933333pt;}
.ybf{bottom:471.466667pt;}
.yeb{bottom:475.546667pt;}
.y157{bottom:481.893333pt;}
.y1f{bottom:481.946667pt;}
.y13a{bottom:482.693333pt;}
.y99{bottom:485.066667pt;}
.ybe{bottom:486.746667pt;}
.ye8{bottom:491.546667pt;}
.y139{bottom:496.533333pt;}
.y7c{bottom:498.586667pt;}
.y1e{bottom:500.346667pt;}
.ybd{bottom:502.106667pt;}
.y43{bottom:503.386667pt;}
.ye9{bottom:507.546667pt;}
.y44{bottom:509.386667pt;}
.y135{bottom:510.293333pt;}
.y191{bottom:513.813333pt;}
.y18a{bottom:516.933333pt;}
.ybc{bottom:518.133333pt;}
.y1d{bottom:518.773333pt;}
.y98{bottom:521.813333pt;}
.ye7{bottom:523.573333pt;}
.y150{bottom:524.773333pt;}
.ybb{bottom:533.493333pt;}
.y1c{bottom:537.173333pt;}
.y7b{bottom:539.013333pt;}
.y152{bottom:539.253333pt;}
.ye6{bottom:539.573333pt;}
.y41{bottom:540.213333pt;}
.y42{bottom:546.213333pt;}
.yba{bottom:548.773333pt;}
.ye5{bottom:554.853333pt;}
.y1b{bottom:555.573333pt;}
.y97{bottom:558.613333pt;}
.y10c{bottom:562.133333pt;}
.yb9{bottom:564.133333pt;}
.y18d{bottom:564.693333pt;}
.y134{bottom:565.493333pt;}
.ye4{bottom:570.213333pt;}
.y190{bottom:571.493333pt;}
.y1a{bottom:573.973333pt;}
.y3f{bottom:577.013333pt;}
.y10b{bottom:577.493333pt;}
.y133{bottom:579.333333pt;}
.yb8{bottom:579.493333pt;}
.y40{bottom:583.013333pt;}
.ye3{bottom:585.573333pt;}
.y19{bottom:592.373333pt;}
.y10a{bottom:592.853333pt;}
.y130{bottom:593.093333pt;}
.yb7{bottom:594.773333pt;}
.y181{bottom:594.853333pt;}
.y96{bottom:595.413333pt;}
.y17b{bottom:598.453333pt;}
.ye2{bottom:600.853333pt;}
.y101{bottom:608.133333pt;}
.y18{bottom:610.773333pt;}
.y3d{bottom:613.813333pt;}
.y3e{bottom:619.813333pt;}
.y12a{bottom:621.413333pt;}
.yb6{bottom:626.133333pt;}
.y17{bottom:629.173333pt;}
.ye1{bottom:631.493333pt;}
.y95{bottom:632.213333pt;}
.y12e{bottom:635.813333pt;}
.yb5{bottom:641.493333pt;}
.ydf{bottom:647.493333pt;}
.y16{bottom:647.573333pt;}
.y12c{bottom:650.293333pt;}
.y3c{bottom:650.613333pt;}
.yb4{bottom:656.773333pt;}
.y15{bottom:665.973333pt;}
.y129{bottom:668.213333pt;}
.y94{bottom:669.013333pt;}
.yb3{bottom:672.133333pt;}
.y14{bottom:684.373333pt;}
.y128{bottom:686.640000pt;}
.y3b{bottom:687.413333pt;}
.yb2{bottom:687.493333pt;}
.y173{bottom:689.493333pt;}
.y6c{bottom:693.413333pt;}
.y13{bottom:702.773333pt;}
.yb0{bottom:703.493333pt;}
.y172{bottom:704.453333pt;}
.y127{bottom:705.040000pt;}
.y93{bottom:705.813333pt;}
.yde{bottom:718.133333pt;}
.yaf{bottom:718.773333pt;}
.y100{bottom:719.493333pt;}
.y12{bottom:721.173333pt;}
.y3a{bottom:724.213333pt;}
.y72{bottom:730.213333pt;}
.yae{bottom:734.133333pt;}
.yff{bottom:734.773333pt;}
.y11{bottom:739.573333pt;}
.y92{bottom:742.613333pt;}
.y18f{bottom:744.613333pt;}
.y184{bottom:747.733333pt;}
.ydc{bottom:748.773333pt;}
.yad{bottom:749.493333pt;}
.yfe{bottom:750.133333pt;}
.y192{bottom:753.973333pt;}
.y124{bottom:754.000000pt;}
.y10{bottom:757.973333pt;}
.y39{bottom:761.013333pt;}
.yac{bottom:764.773333pt;}
.y86{bottom:767.013333pt;}
.yf{bottom:776.373333pt;}
.y91{bottom:779.413333pt;}
.yda{bottom:779.493333pt;}
.yab{bottom:780.133333pt;}
.yfd{bottom:780.773333pt;}
.y187{bottom:788.693333pt;}
.ye{bottom:794.773333pt;}
.yaa{bottom:796.133333pt;}
.y38{bottom:797.813333pt;}
.y18e{bottom:802.213333pt;}
.yd7{bottom:810.133333pt;}
.ya9{bottom:811.413333pt;}
.yd{bottom:813.173333pt;}
.y90{bottom:816.213333pt;}
.ya8{bottom:826.773333pt;}
.y17e{bottom:827.013333pt;}
.y178{bottom:828.293333pt;}
.yc{bottom:831.573333pt;}
.y37{bottom:834.613333pt;}
.y77{bottom:840.613333pt;}
.yd6{bottom:840.773333pt;}
.ya7{bottom:842.133333pt;}
.yb{bottom:849.973333pt;}
.y8f{bottom:853.013333pt;}
.yd4{bottom:856.773333pt;}
.ya6{bottom:857.413333pt;}
.ya{bottom:868.373333pt;}
.y36{bottom:871.413333pt;}
.ya4{bottom:872.773333pt;}
.y9{bottom:886.800000pt;}
.ya2{bottom:888.800000pt;}
.y8e{bottom:889.840000pt;}
.y8{bottom:905.200000pt;}
.y35{bottom:908.240000pt;}
.y61{bottom:914.240000pt;}
.y7{bottom:923.600000pt;}
.y8d{bottom:926.640000pt;}
.y6{bottom:942.560000pt;}
.y34{bottom:945.040000pt;}
.y60{bottom:951.040000pt;}
.y1{bottom:993.840000pt;}
.h21{height:13.760000pt;}
.h20{height:13.840000pt;}
.h2a{height:14.640000pt;}
.hf{height:15.280000pt;}
.h16{height:15.306667pt;}
.hc{height:15.360000pt;}
.he{height:15.386667pt;}
.h2{height:18.400000pt;}
.h30{height:20.160000pt;}
.h2b{height:21.600000pt;}
.h2e{height:21.920000pt;}
.h2f{height:23.840000pt;}
.h31{height:24.240000pt;}
.h32{height:24.320000pt;}
.h13{height:24.640000pt;}
.h2d{height:25.680000pt;}
.h22{height:27.600000pt;}
.h11{height:30.640000pt;}
.h12{height:30.720000pt;}
.h15{height:31.306667pt;}
.h10{height:31.386667pt;}
.h1a{height:31.553437pt;}
.h6{height:33.918750pt;}
.h2c{height:39.048750pt;}
.h26{height:41.360000pt;}
.h27{height:41.466667pt;}
.h5{height:41.770312pt;}
.h1e{height:42.720000pt;}
.h17{height:46.000000pt;}
.h23{height:47.085938pt;}
.h24{height:47.109375pt;}
.h8{height:47.908125pt;}
.h1f{height:48.375000pt;}
.h14{height:52.422344pt;}
.h7{height:52.448437pt;}
.h18{height:52.478750pt;}
.hd{height:53.857500pt;}
.h25{height:55.200000pt;}
.h9{height:57.375000pt;}
.ha{height:62.781250pt;}
.h1{height:62.812500pt;}
.h4{height:64.500000pt;}
.hb{height:65.770312pt;}
.h1b{height:68.798750pt;}
.h3{height:75.142500pt;}
.h29{height:110.400000pt;}
.h19{height:111.360000pt;}
.h1c{height:137.946667pt;}
.h28{height:139.360000pt;}
.h1d{height:816.000000pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w4{width:16.000000pt;}
.w20{width:41.280000pt;}
.w23{width:41.600000pt;}
.w30{width:42.426667pt;}
.w2e{width:46.560000pt;}
.w2c{width:47.360000pt;}
.w32{width:47.680000pt;}
.w25{width:48.000000pt;}
.w2f{width:50.720000pt;}
.w31{width:52.240000pt;}
.w33{width:53.680000pt;}
.w34{width:53.706667pt;}
.w39{width:56.240000pt;}
.w2d{width:56.720000pt;}
.w1f{width:59.280000pt;}
.w21{width:59.306667pt;}
.w2b{width:59.360000pt;}
.w24{width:59.626667pt;}
.w22{width:65.280000pt;}
.w3b{width:79.680000pt;}
.w3a{width:79.760000pt;}
.w8{width:87.840000pt;}
.w12{width:89.866667pt;}
.w13{width:89.920000pt;}
.w7{width:90.000000pt;}
.w28{width:93.786667pt;}
.w6{width:96.026667pt;}
.w14{width:96.346667pt;}
.wf{width:98.720000pt;}
.w10{width:98.986667pt;}
.w29{width:100.560000pt;}
.w1a{width:101.280000pt;}
.w1b{width:101.306667pt;}
.w35{width:101.440000pt;}
.w36{width:101.520000pt;}
.we{width:101.680000pt;}
.w2a{width:101.706667pt;}
.w27{width:103.440000pt;}
.w37{width:104.560000pt;}
.w1c{width:107.280000pt;}
.w1d{width:107.600000pt;}
.w26{width:107.840000pt;}
.w1e{width:108.026667pt;}
.w38{width:133.040000pt;}
.w17{width:155.706667pt;}
.wd{width:197.706667pt;}
.w11{width:263.626667pt;}
.w5{width:294.026667pt;}
.w18{width:407.306667pt;}
.w19{width:426.026667pt;}
.wc{width:437.733333pt;}
.w9{width:480.053333pt;}
.wa{width:567.893333pt;}
.wb{width:636.080000pt;}
.w3{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.w16{width:1055.999984pt;}
.w15{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x98{left:2.240000pt;}
.x97{left:3.840000pt;}
.x5c{left:6.000000pt;}
.x45{left:7.200000pt;}
.x85{left:8.106667pt;}
.x7b{left:10.240000pt;}
.x86{left:11.146667pt;}
.x90{left:12.160000pt;}
.x83{left:13.440000pt;}
.x8f{left:14.720000pt;}
.x6d{left:16.480000pt;}
.x58{left:17.680000pt;}
.x6b{left:19.200000pt;}
.x84{left:20.560000pt;}
.x91{left:21.840000pt;}
.x49{left:23.120000pt;}
.x57{left:24.560000pt;}
.x4f{left:25.600000pt;}
.x50{left:26.640000pt;}
.x4b{left:28.160000pt;}
.x63{left:29.200000pt;}
.x4c{left:30.266667pt;}
.x60{left:31.600000pt;}
.x47{left:32.666667pt;}
.x5f{left:34.240000pt;}
.x5a{left:35.680000pt;}
.x4e{left:38.026667pt;}
.x62{left:39.120000pt;}
.x4d{left:41.306667pt;}
.x51{left:43.920000pt;}
.x64{left:45.360000pt;}
.x5e{left:46.560000pt;}
.x59{left:48.000000pt;}
.x5d{left:49.280000pt;}
.x55{left:50.400000pt;}
.x61{left:53.866667pt;}
.x52{left:90.000000pt;}
.x68{left:93.040000pt;}
.x1{left:95.999988pt;}
.x1c{left:100.319988pt;}
.x27{left:104.639988pt;}
.x99{left:107.999984pt;}
.x42{left:119.999988pt;}
.x44{left:124.080000pt;}
.x72{left:129.440000pt;}
.x4{left:131.679988pt;}
.x17{left:137.386642pt;}
.xa5{left:138.666667pt;}
.x18{left:142.746655pt;}
.x10{left:144.026655pt;}
.xa1{left:145.146667pt;}
.x2f{left:148.106655pt;}
.x38{left:157.786642pt;}
.x70{left:166.639984pt;}
.x39{left:168.506655pt;}
.x6e{left:174.346667pt;}
.x1d{left:178.266642pt;}
.x3f{left:181.306642pt;}
.x1e{left:183.626655pt;}
.x88{left:187.866651pt;}
.x71{left:189.226667pt;}
.x40{left:192.026655pt;}
.x9c{left:197.466667pt;}
.x53{left:205.866667pt;}
.x9f{left:209.466667pt;}
.x9b{left:214.266667pt;}
.x43{left:238.506655pt;}
.x7a{left:249.226667pt;}
.x2a{left:250.186642pt;}
.x89{left:252.346667pt;}
.x7{left:257.386655pt;}
.xd{left:259.386655pt;}
.x2b{left:260.906655pt;}
.x3a{left:266.746642pt;}
.xc{left:270.506655pt;}
.x23{left:275.946655pt;}
.x8{left:277.546655pt;}
.x24{left:286.266655pt;}
.x1b{left:288.026655pt;}
.x74{left:291.226667pt;}
.x30{left:295.306655pt;}
.x29{left:297.786655pt;}
.x92{left:312.346667pt;}
.x21{left:320.426642pt;}
.x22{left:325.786655pt;}
.x66{left:328.426655pt;}
.x3b{left:330.586642pt;}
.x36{left:333.706642pt;}
.xa0{left:335.226667pt;}
.xa2{left:336.346667pt;}
.x3c{left:341.306655pt;}
.xb{left:342.906655pt;}
.xf{left:344.026655pt;}
.x9{left:345.706655pt;}
.xe{left:346.666655pt;}
.x7c{left:351.226667pt;}
.x41{left:353.786655pt;}
.x69{left:357.066667pt;}
.x37{left:358.426655pt;}
.x6{left:359.386655pt;}
.x8a{left:360.826667pt;}
.x35{left:362.746655pt;}
.x5{left:370.426655pt;}
.x25{left:371.466642pt;}
.x26{left:382.186655pt;}
.x75{left:393.226667pt;}
.x65{left:394.426655pt;}
.xa{left:396.426655pt;}
.x9a{left:397.386655pt;}
.x28{left:400.026667pt;}
.x3{left:404.026667pt;}
.x87{left:406.666651pt;}
.x2{left:408.026655pt;}
.x46{left:418.106667pt;}
.x67{left:420.026655pt;}
.x3d{left:421.706642pt;}
.x15{left:429.893309pt;}
.x3e{left:432.453321pt;}
.x16{left:435.253321pt;}
.xa3{left:438.453333pt;}
.x31{left:444.053309pt;}
.x6a{left:446.933333pt;}
.x7d{left:453.226667pt;}
.x32{left:454.773321pt;}
.x8b{left:464.986667pt;}
.x19{left:470.693309pt;}
.x1a{left:476.053321pt;}
.x2c{left:481.733321pt;}
.x76{left:495.226667pt;}
.x48{left:514.133333pt;}
.x93{left:516.346667pt;}
.x6f{left:520.026651pt;}
.x9e{left:524.853333pt;}
.x54{left:528.373333pt;}
.x6c{left:536.853333pt;}
.x9d{left:542.613333pt;}
.x1f{left:547.973309pt;}
.x20{left:553.333321pt;}
.x7e{left:555.253333pt;}
.x8c{left:559.493333pt;}
.x11{left:568.773309pt;}
.x12{left:574.133321pt;}
.xa4{left:591.013333pt;}
.x73{left:597.253333pt;}
.x4a{left:604.133333pt;}
.x13{left:613.253309pt;}
.x14{left:618.613321pt;}
.x5b{left:627.093333pt;}
.x56{left:630.053333pt;}
.x7f{left:657.253333pt;}
.x2d{left:660.773309pt;}
.x33{left:669.653309pt;}
.x2e{left:671.493321pt;}
.x34{left:680.373321pt;}
.x77{left:699.253333pt;}
.x94{left:714.373333pt;}
.x8d{left:762.373333pt;}
.x80{left:765.253333pt;}
.x78{left:807.253333pt;}
.x95{left:816.373333pt;}
.x8e{left:864.373333pt;}
.x81{left:873.253333pt;}
.x79{left:915.253333pt;}
.x96{left:918.400000pt;}
.x82{left:975.280000pt;}
}




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