
    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_b8a721339b70b7933ecf8193.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_43e8390f98bc54d7134ef285.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_30fe1419b7074f79a4d8b076.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_d8b26b33870da5c96d2e1002.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_227cbe64df18be9d534a323e.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_054bb69fcc6280ab7336176d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_bba9fae6d816ceadbda1e8bb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_f46e1b56c5f48269194c919e.woff2')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_498498a9c33e02b4c3978a35.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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e0b044f89384f084a8560367.woff2')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58bd5a12824e6c5a770f73fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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:-102.240000px;}
.v0{vertical-align:0.000000px;}
.ls22{letter-spacing:-0.936000px;}
.ls1c{letter-spacing:-0.828000px;}
.ls21{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.339600px;}
.ls8{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.272400px;}
.lsc{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.144000px;}
.ls1a{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.072000px;}
.ls1b{letter-spacing:-0.053280px;}
.ls19{letter-spacing:-0.017280px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.066720px;}
.lsb{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.109440px;}
.ls5{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.ls24{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.612000px;}
.ls20{letter-spacing:0.666000px;}
.ls11{letter-spacing:0.720000px;}
.ls18{letter-spacing:0.979920px;}
.ls12{letter-spacing:2.880000px;}
.lsf{letter-spacing:5.760000px;}
.ls1{letter-spacing:7.200000px;}
.ls10{letter-spacing:28.224000px;}
.ls23{letter-spacing:846.156000px;}
.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;}
}
.wsb{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws18{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.wsa{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.225280px;}
.ws17{word-spacing:-17.064000px;}
.wsf{word-spacing:-16.973280px;}
.ws12{word-spacing:-16.873080px;}
.wsc{word-spacing:-16.613280px;}
.ws0{word-spacing:-16.560000px;}
.wse{word-spacing:-16.506480px;}
.ws10{word-spacing:-15.785280px;}
.ws15{word-spacing:-15.606000px;}
.ws5{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.228000px;}
.ws4{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.211360px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-4.464000px;}
._12{margin-left:-3.456000px;}
._9{margin-left:-2.402880px;}
._0{margin-left:-1.258560px;}
._6{width:1.056000px;}
._5{width:2.450880px;}
._4{width:3.510720px;}
._3{width:4.844160px;}
._2{width:6.756480px;}
._1{width:7.948800px;}
._f{width:9.083520px;}
._10{width:10.858080px;}
._13{width:12.026400px;}
._e{width:13.545120px;}
._d{width:14.688000px;}
._8{width:16.560000px;}
._19{width:17.569440px;}
._c{width:19.104000px;}
._b{width:20.304000px;}
._15{width:21.960000px;}
._16{width:23.052000px;}
._a{width:29.376000px;}
._14{width:30.732000px;}
._1b{width:31.764000px;}
._11{width:37.944000px;}
._1c{width:39.240000px;}
._1f{width:42.480000px;}
._20{width:43.920000px;}
._1d{width:51.120000px;}
._1e{width:52.308000px;}
._22{width:67.464000px;}
._21{width:68.578560px;}
._7{width:760.504800px;}
._17{width:846.156000px;}
._1a{width:849.216000px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(68,84,106);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y190{bottom:11.880000px;}
.y192{bottom:12.060000px;}
.y19a{bottom:12.105000px;}
.y19e{bottom:12.240000px;}
.y193{bottom:12.420000px;}
.y19b{bottom:12.465000px;}
.ye8{bottom:14.220000px;}
.yec{bottom:14.400000px;}
.yf1{bottom:14.430000px;}
.ye9{bottom:14.580000px;}
.yed{bottom:14.760000px;}
.yf2{bottom:14.790000px;}
.y2{bottom:57.600000px;}
.y1{bottom:77.760000px;}
.y2e{bottom:109.800000px;}
.y18e{bottom:110.160000px;}
.y2d{bottom:115.020000px;}
.y18d{bottom:115.380000px;}
.y88{bottom:115.560000px;}
.y2c{bottom:127.116000px;}
.ybb{bottom:127.476000px;}
.y1df{bottom:128.196000px;}
.y18c{bottom:129.096000px;}
.y2b{bottom:132.336000px;}
.yba{bottom:132.696000px;}
.y6e{bottom:140.796000px;}
.y2a{bottom:144.396000px;}
.ye6{bottom:145.296000px;}
.yb9{bottom:145.476000px;}
.ye2{bottom:145.836000px;}
.y201{bottom:146.376000px;}
.y87{bottom:146.556000px;}
.y55{bottom:149.616000px;}
.y135{bottom:150.690000px;}
.ye1{bottom:151.050000px;}
.y29{bottom:161.670000px;}
.y137{bottom:162.570000px;}
.yb8{bottom:162.750000px;}
.y1de{bottom:163.110000px;}
.y134{bottom:163.650000px;}
.ye0{bottom:164.730000px;}
.y54{bottom:166.890000px;}
.y1dd{bottom:168.330000px;}
.y6d{bottom:171.930000px;}
.y86{bottom:177.690000px;}
.y53{bottom:178.950000px;}
.y28{bottom:179.310000px;}
.yb7{bottom:180.030000px;}
.y1dc{bottom:182.010000px;}
.y52{bottom:184.170000px;}
.y27{bottom:184.530000px;}
.y111{bottom:196.230000px;}
.y1f6{bottom:196.410000px;}
.y51{bottom:197.130000px;}
.y26{bottom:198.210000px;}
.y1f5{bottom:201.630000px;}
.y6c{bottom:202.890000px;}
.y85{bottom:208.650000px;}
.y110{bottom:213.330000px;}
.yb6{bottom:214.410000px;}
.y1f4{bottom:215.310000px;}
.y206{bottom:218.550000px;}
.y10f{bottom:230.610000px;}
.yb5{bottom:231.690000px;}
.y24{bottom:233.130000px;}
.y6b{bottom:234.030000px;}
.y9b{bottom:235.830000px;}
.yb4{bottom:236.910000px;}
.y25{bottom:238.350000px;}
.y84{bottom:239.790000px;}
.y10e{bottom:247.890000px;}
.y205{bottom:248.250000px;}
.yb3{bottom:248.970000px;}
.y23{bottom:250.230000px;}
.y10d{bottom:253.110000px;}
.y204{bottom:253.470000px;}
.y200{bottom:254.730000px;}
.y1db{bottom:256.890000px;}
.y6a{bottom:264.990000px;}
.y148{bottom:265.170000px;}
.y10c{bottom:266.070000px;}
.yb2{bottom:266.250000px;}
.y9a{bottom:266.970000px;}
.y203{bottom:267.150000px;}
.y22{bottom:267.510000px;}
.y1b5{bottom:270.390000px;}
.y83{bottom:270.750000px;}
.yb1{bottom:271.470000px;}
.yfe{bottom:271.830000px;}
.y1ff{bottom:277.050000px;}
.y147{bottom:282.450000px;}
.yb0{bottom:284.430000px;}
.y21{bottom:284.790000px;}
.y133{bottom:286.410000px;}
.y1b4{bottom:287.670000px;}
.y1da{bottom:288.030000px;}
.y50{bottom:288.210000px;}
.y1fe{bottom:289.110000px;}
.ydf{bottom:293.430000px;}
.y69{bottom:296.130000px;}
.y1ce{bottom:296.850000px;}
.y99{bottom:297.930000px;}
.y146{bottom:299.550000px;}
.y82{bottom:301.710000px;}
.y20{bottom:302.070000px;}
.yfd{bottom:303.150000px;}
.y145{bottom:304.770000px;}
.y1b3{bottom:304.950000px;}
.y1fd{bottom:306.390000px;}
.y144{bottom:316.830000px;}
.y132{bottom:317.370000px;}
.y4f{bottom:318.990000px;}
.y1b2{bottom:322.230000px;}
.y1fc{bottom:323.670000px;}
.yde{bottom:324.210000px;}
.y18b{bottom:326.910000px;}
.y68{bottom:327.090000px;}
.y1cd{bottom:327.630000px;}
.y98{bottom:329.070000px;}
.y1f{bottom:330.150000px;}
.y81{bottom:332.850000px;}
.yfc{bottom:334.110000px;}
.y10b{bottom:337.530000px;}
.y143{bottom:339.330000px;}
.y1b1{bottom:339.510000px;}
.y1fb{bottom:340.950000px;}
.y131{bottom:348.330000px;}
.y4e{bottom:350.130000px;}
.y16b{bottom:351.390000px;}
.y142{bottom:352.290000px;}
.y10a{bottom:354.630000px;}
.ydd{bottom:355.350000px;}
.y1af{bottom:356.790000px;}
.y18a{bottom:357.870000px;}
.y67{bottom:358.230000px;}
.y1cc{bottom:358.770000px;}
.y97{bottom:360.030000px;}
.y1e{bottom:361.290000px;}
.y1b0{bottom:362.010000px;}
.y80{bottom:363.810000px;}
.yfb{bottom:365.250000px;}
.y1fa{bottom:366.690000px;}
.y16a{bottom:368.670000px;}
.y136{bottom:370.650000px;}
.y109{bottom:371.910000px;}
.y1ae{bottom:373.890000px;}
.y130{bottom:379.515000px;}
.y4c{bottom:381.135000px;}
.y169{bottom:385.995000px;}
.ydc{bottom:386.355000px;}
.y4d{bottom:387.975000px;}
.y189{bottom:388.875000px;}
.y66{bottom:389.235000px;}
.y1cb{bottom:389.775000px;}
.y96{bottom:391.215000px;}
.y1d{bottom:392.295000px;}
.y7f{bottom:394.995000px;}
.yfa{bottom:396.255000px;}
.y141{bottom:396.975000px;}
.y108{bottom:397.875000px;}
.y1f3{bottom:400.395000px;}
.y168{bottom:404.175000px;}
.y165{bottom:404.715000px;}
.y1ad{bottom:408.495000px;}
.y12f{bottom:410.475000px;}
.y4b{bottom:412.275000px;}
.ydb{bottom:417.495000px;}
.y188{bottom:420.015000px;}
.y65{bottom:420.375000px;}
.y1ca{bottom:420.915000px;}
.y95{bottom:422.175000px;}
.y1c{bottom:423.435000px;}
.yf9{bottom:425.055000px;}
.y1ac{bottom:425.775000px;}
.y7e{bottom:425.955000px;}
.y13f{bottom:428.115000px;}
.y1f2{bottom:431.175000px;}
.y107{bottom:432.795000px;}
.y140{bottom:434.955000px;}
.y164{bottom:435.495000px;}
.y12e{bottom:441.615000px;}
.y4a{bottom:443.235000px;}
.yda{bottom:448.455000px;}
.yf8{bottom:450.975000px;}
.y64{bottom:451.335000px;}
.y1ab{bottom:451.695000px;}
.y1c9{bottom:451.875000px;}
.y94{bottom:453.315000px;}
.y1b{bottom:454.395000px;}
.y7d{bottom:457.095000px;}
.y13e{bottom:459.075000px;}
.y1f1{bottom:462.315000px;}
.yf7{bottom:465.195000px;}
.y163{bottom:466.635000px;}
.y12d{bottom:472.575000px;}
.y49{bottom:474.375000px;}
.yd9{bottom:479.415000px;}
.y1aa{bottom:479.775000px;}
.y187{bottom:482.115000px;}
.y63{bottom:482.475000px;}
.y1c8{bottom:483.015000px;}
.y93{bottom:484.275000px;}
.y1a{bottom:485.535000px;}
.y1f9{bottom:487.695000px;}
.y7c{bottom:488.055000px;}
.y13d{bottom:490.215000px;}
.y1f0{bottom:493.275000px;}
.yf6{bottom:497.055000px;}
.y162{bottom:497.595000px;}
.yaf{bottom:499.575000px;}
.y12c{bottom:503.715000px;}
.y48{bottom:505.335000px;}
.yd8{bottom:510.555000px;}
.y1a9{bottom:510.915000px;}
.y186{bottom:513.075000px;}
.y62{bottom:513.435000px;}
.y1c7{bottom:513.975000px;}
.y92{bottom:515.415000px;}
.y19{bottom:516.495000px;}
.yad{bottom:516.855000px;}
.y1f8{bottom:518.835000px;}
.y13c{bottom:519.015000px;}
.y7b{bottom:519.195000px;}
.yae{bottom:522.075000px;}
.y1ef{bottom:524.415000px;}
.y139{bottom:526.035000px;}
.yf5{bottom:528.735000px;}
.yac{bottom:534.135000px;}
.y12b{bottom:534.675000px;}
.y47{bottom:536.475000px;}
.yd7{bottom:541.515000px;}
.y1a8{bottom:541.875000px;}
.y13b{bottom:542.775000px;}
.y185{bottom:544.215000px;}
.y61{bottom:544.575000px;}
.y1c6{bottom:545.115000px;}
.y91{bottom:546.015000px;}
.y18{bottom:547.635000px;}
.y1f7{bottom:549.795000px;}
.y7a{bottom:550.155000px;}
.yab{bottom:551.415000px;}
.y1ee{bottom:555.375000px;}
.y106{bottom:556.995000px;}
.y161{bottom:559.695000px;}
.yf4{bottom:560.595000px;}
.y12a{bottom:565.815000px;}
.y46{bottom:567.435000px;}
.yaa{bottom:568.695000px;}
.yd6{bottom:572.655000px;}
.y1a7{bottom:573.015000px;}
.y184{bottom:575.175000px;}
.y60{bottom:575.535000px;}
.y1c5{bottom:576.075000px;}
.y90{bottom:577.155000px;}
.y17{bottom:578.595000px;}
.y79{bottom:581.295000px;}
.ya9{bottom:585.795000px;}
.y1ed{bottom:586.515000px;}
.y160{bottom:590.835000px;}
.yf3{bottom:592.455000px;}
.y129{bottom:596.775000px;}
.y45{bottom:598.575000px;}
.y1a6{bottom:601.635000px;}
.ya8{bottom:603.075000px;}
.yd5{bottom:603.615000px;}
.y183{bottom:606.315000px;}
.y5f{bottom:606.495000px;}
.y1c4{bottom:607.215000px;}
.y8f{bottom:608.115000px;}
.y16{bottom:609.735000px;}
.y78{bottom:612.255000px;}
.y1ec{bottom:617.475000px;}
.ya7{bottom:620.355000px;}
.y15f{bottom:621.795000px;}
.yf0{bottom:624.135000px;}
.y1a5{bottom:627.555000px;}
.y128{bottom:627.915000px;}
.y44{bottom:629.535000px;}
.yd4{bottom:632.445000px;}
.y182{bottom:637.305000px;}
.y5e{bottom:637.665000px;}
.y1c3{bottom:638.205000px;}
.y8e{bottom:639.285000px;}
.y14{bottom:640.725000px;}
.y15e{bottom:641.085000px;}
.y1a4{bottom:641.805000px;}
.y77{bottom:643.425000px;}
.y167{bottom:644.325000px;}
.ya6{bottom:646.305000px;}
.y15{bottom:647.565000px;}
.y1ea{bottom:648.645000px;}
.yd2{bottom:649.725000px;}
.yd3{bottom:654.945000px;}
.y1eb{bottom:655.485000px;}
.yef{bottom:656.025000px;}
.y15d{bottom:656.205000px;}
.y127{bottom:658.905000px;}
.y43{bottom:660.705000px;}
.yd1{bottom:667.005000px;}
.y181{bottom:668.445000px;}
.y5d{bottom:668.625000px;}
.y1c2{bottom:669.345000px;}
.y8d{bottom:670.245000px;}
.y13{bottom:671.865000px;}
.y15c{bottom:673.665000px;}
.y105{bottom:674.025000px;}
.y76{bottom:674.385000px;}
.y1e9{bottom:679.605000px;}
.ye5{bottom:681.225000px;}
.yd0{bottom:684.285000px;}
.yee{bottom:687.885000px;}
.y126{bottom:690.045000px;}
.y15b{bottom:690.945000px;}
.y42{bottom:691.665000px;}
.y1a3{bottom:695.085000px;}
.y180{bottom:699.405000px;}
.y5c{bottom:699.765000px;}
.y1c1{bottom:700.305000px;}
.ycf{bottom:701.385000px;}
.y12{bottom:702.465000px;}
.y8c{bottom:702.825000px;}
.y104{bottom:705.165000px;}
.y75{bottom:705.525000px;}
.y15a{bottom:708.225000px;}
.y1e8{bottom:710.745000px;}
.yce{bottom:718.665000px;}
.yeb{bottom:719.565000px;}
.y125{bottom:721.005000px;}
.y1a2{bottom:721.725000px;}
.y41{bottom:722.805000px;}
.y159{bottom:725.325000px;}
.y17f{bottom:728.205000px;}
.y5b{bottom:730.365000px;}
.y1c0{bottom:731.445000px;}
.y11{bottom:733.965000px;}
.y8b{bottom:735.765000px;}
.ycd{bottom:735.945000px;}
.y103{bottom:736.125000px;}
.y74{bottom:736.485000px;}
.y1e7{bottom:741.705000px;}
.y158{bottom:742.605000px;}
.ya5{bottom:743.325000px;}
.y17e{bottom:745.485000px;}
.y1a1{bottom:748.365000px;}
.yea{bottom:751.425000px;}
.y124{bottom:752.145000px;}
.ycc{bottom:753.225000px;}
.y40{bottom:753.765000px;}
.y157{bottom:759.885000px;}
.y5a{bottom:761.505000px;}
.y1bf{bottom:762.405000px;}
.y17d{bottom:762.585000px;}
.yf{bottom:763.845000px;}
.ye4{bottom:767.265000px;}
.y73{bottom:767.625000px;}
.y10{bottom:769.785000px;}
.ycb{bottom:770.505000px;}
.y1e6{bottom:772.845000px;}
.y1a0{bottom:775.005000px;}
.y156{bottom:777.705000px;}
.y17c{bottom:779.865000px;}
.y123{bottom:780.765000px;}
.y3f{bottom:782.565000px;}
.ye7{bottom:783.285000px;}
.y1d9{bottom:784.905000px;}
.ye{bottom:792.285000px;}
.y59{bottom:792.465000px;}
.y1be{bottom:793.365000px;}
.yca{bottom:796.245000px;}
.y17b{bottom:797.145000px;}
.y121{bottom:798.045000px;}
.ye3{bottom:798.225000px;}
.y155{bottom:798.405000px;}
.y72{bottom:798.585000px;}
.y3d{bottom:799.845000px;}
.y19f{bottom:801.645000px;}
.y122{bottom:803.265000px;}
.y1e5{bottom:803.805000px;}
.y3e{bottom:805.065000px;}
.y202{bottom:805.425000px;}
.yd{bottom:811.185000px;}
.y17a{bottom:814.425000px;}
.y120{bottom:815.325000px;}
.y1d8{bottom:815.865000px;}
.y3c{bottom:816.945000px;}
.yc9{bottom:824.505000px;}
.y58{bottom:825.045000px;}
.y19d{bottom:828.285000px;}
.y71{bottom:829.725000px;}
.yc{bottom:830.265000px;}
.y179{bottom:831.705000px;}
.y11f{bottom:832.605000px;}
.y3b{bottom:834.225000px;}
.y1e4{bottom:834.765000px;}
.y1d7{bottom:847.005000px;}
.y178{bottom:848.985000px;}
.y11e{bottom:849.885000px;}
.y3a{bottom:851.505000px;}
.y19c{bottom:854.745000px;}
.y1e2{bottom:854.925000px;}
.yc8{bottom:855.465000px;}
.y57{bottom:858.165000px;}
.y1e3{bottom:860.145000px;}
.y70{bottom:860.685000px;}
.yb{bottom:861.945000px;}
.y177{bottom:866.085000px;}
.y11d{bottom:866.985000px;}
.y39{bottom:868.785000px;}
.y1e1{bottom:872.205000px;}
.y1d6{bottom:877.965000px;}
.y199{bottom:881.385000px;}
.y176{bottom:883.365000px;}
.yc7{bottom:886.650000px;}
.y1e0{bottom:889.530000px;}
.y56{bottom:891.150000px;}
.y6f{bottom:891.870000px;}
.y11c{bottom:892.950000px;}
.y38{bottom:894.750000px;}
.ya{bottom:898.170000px;}
.y138{bottom:898.710000px;}
.y175{bottom:900.690000px;}
.y1d5{bottom:906.810000px;}
.y198{bottom:908.070000px;}
.y154{bottom:911.670000px;}
.yc6{bottom:915.450000px;}
.y1bd{bottom:917.610000px;}
.ya4{bottom:920.490000px;}
.y11b{bottom:921.210000px;}
.y37{bottom:922.830000px;}
.y1d3{bottom:924.090000px;}
.y174{bottom:926.610000px;}
.y1d4{bottom:929.310000px;}
.y8a{bottom:929.670000px;}
.yc4{bottom:932.730000px;}
.y9{bottom:934.350000px;}
.y197{bottom:934.710000px;}
.y153{bottom:937.410000px;}
.ya2{bottom:937.770000px;}
.yc5{bottom:937.950000px;}
.y1d2{bottom:941.190000px;}
.ya3{bottom:942.990000px;}
.y1bc{bottom:948.750000px;}
.yc3{bottom:949.830000px;}
.y11a{bottom:952.170000px;}
.y36{bottom:953.970000px;}
.y173{bottom:954.690000px;}
.ya1{bottom:955.050000px;}
.y1d1{bottom:958.470000px;}
.y196{bottom:961.350000px;}
.y152{bottom:963.330000px;}
.yc2{bottom:967.110000px;}
.ya0{bottom:972.330000px;}
.y1d0{bottom:975.750000px;}
.y1bb{bottom:979.710000px;}
.y119{bottom:983.310000px;}
.y35{bottom:984.930000px;}
.y172{bottom:985.830000px;}
.y195{bottom:987.990000px;}
.y151{bottom:989.250000px;}
.y9f{bottom:989.610000px;}
.yc1{bottom:993.030000px;}
.y8{bottom:996.270000px;}
.y9e{bottom:1006.890000px;}
.y1ba{bottom:1010.850000px;}
.y118{bottom:1014.270000px;}
.y194{bottom:1014.630000px;}
.y150{bottom:1014.990000px;}
.y34{bottom:1016.070000px;}
.y170{bottom:1016.790000px;}
.y1cf{bottom:1018.950000px;}
.yc0{bottom:1021.110000px;}
.y13a{bottom:1022.910000px;}
.y7{bottom:1023.270000px;}
.y171{bottom:1023.630000px;}
.y9d{bottom:1023.990000px;}
.y1b9{bottom:1039.650000px;}
.y14f{bottom:1040.910000px;}
.y191{bottom:1041.270000px;}
.y117{bottom:1045.410000px;}
.y102{bottom:1046.670000px;}
.y32{bottom:1047.030000px;}
.y16f{bottom:1047.930000px;}
.y9c{bottom:1049.910000px;}
.y6{bottom:1050.270000px;}
.ybf{bottom:1052.250000px;}
.y33{bottom:1053.870000px;}
.y1b7{bottom:1056.750000px;}
.y1b8{bottom:1061.970000px;}
.y14e{bottom:1066.830000px;}
.y18f{bottom:1067.910000px;}
.y116{bottom:1074.030000px;}
.y5{bottom:1077.270000px;}
.y101{bottom:1077.810000px;}
.y31{bottom:1078.170000px;}
.y16e{bottom:1078.530000px;}
.ybe{bottom:1083.210000px;}
.y14d{bottom:1084.290000px;}
.y114{bottom:1091.310000px;}
.y115{bottom:1096.530000px;}
.y14c{bottom:1101.570000px;}
.y4{bottom:1104.270000px;}
.y113{bottom:1108.590000px;}
.y100{bottom:1108.770000px;}
.y30{bottom:1109.130000px;}
.y16d{bottom:1109.670000px;}
.y1b6{bottom:1113.810000px;}
.ybd{bottom:1114.350000px;}
.y166{bottom:1115.970000px;}
.y14a{bottom:1119.390000px;}
.y14b{bottom:1124.610000px;}
.y112{bottom:1125.870000px;}
.y3{bottom:1131.450000px;}
.yff{bottom:1139.940000px;}
.y149{bottom:1140.120000px;}
.y2f{bottom:1140.300000px;}
.y16c{bottom:1141.200000px;}
.ybc{bottom:1143.180000px;}
.y89{bottom:1147.140000px;}
.h1f{height:25.725000px;}
.h24{height:25.740000px;}
.h21{height:25.905000px;}
.h23{height:25.920000px;}
.h22{height:25.942500px;}
.h17{height:30.945000px;}
.h14{height:30.960000px;}
.h18{height:31.125000px;}
.h15{height:31.140000px;}
.h16{height:31.170000px;}
.hc{height:38.158594px;}
.hd{height:38.671172px;}
.h1c{height:40.550625px;}
.h7{height:40.985156px;}
.h1a{height:47.321367px;}
.ha{height:47.344922px;}
.h1e{height:53.316562px;}
.h12{height:53.573906px;}
.h1b{height:58.621992px;}
.hb{height:58.651172px;}
.he{height:59.439023px;}
.h20{height:60.226875px;}
.h1d{height:62.327813px;}
.h11{height:63.949219px;}
.hf{height:64.546875px;}
.h5{height:64.978594px;}
.h3{height:65.010937px;}
.h2{height:65.884219px;}
.h19{height:70.628906px;}
.h8{height:70.664062px;}
.h10{height:71.613281px;}
.h9{height:72.562500px;}
.h13{height:75.093750px;}
.h4{height:84.898125px;}
.h6{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:107.640000px;}
.w5{width:115.776000px;}
.w8{width:126.885000px;}
.w6{width:129.261000px;}
.w7{width:145.476000px;}
.w3{width:200.361000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2c{left:7.731000px;}
.x4c{left:42.465000px;}
.x4f{left:43.545000px;}
.x4d{left:44.820000px;}
.x51{left:65.325000px;}
.x53{left:68.925000px;}
.x50{left:74.340000px;}
.x52{left:78.120000px;}
.x2b{left:119.925000px;}
.x2{left:127.656000px;}
.x12{left:132.516000px;}
.x23{left:137.376000px;}
.x4{left:154.290000px;}
.x1c{left:160.027500px;}
.x17{left:167.047500px;}
.x3{left:169.770000px;}
.x18{left:173.190000px;}
.x5b{left:176.587500px;}
.xd{left:177.667500px;}
.xe{left:183.810000px;}
.x5c{left:188.850000px;}
.x28{left:197.130000px;}
.x19{left:202.170000px;}
.x42{left:206.670000px;}
.x30{left:212.610000px;}
.x1d{left:223.027500px;}
.x29{left:224.130000px;}
.x1e{left:227.910000px;}
.x45{left:240.127500px;}
.x21{left:245.167500px;}
.x46{left:250.950000px;}
.x22{left:254.910000px;}
.x54{left:258.487500px;}
.x4a{left:264.607500px;}
.x55{left:268.275000px;}
.x57{left:273.675000px;}
.x4b{left:276.915000px;}
.x26{left:279.772500px;}
.x27{left:289.515000px;}
.x15{left:300.652500px;}
.x58{left:302.632500px;}
.x16{left:305.535000px;}
.x33{left:311.632500px;}
.x5{left:315.435000px;}
.x6{left:316.695000px;}
.x2d{left:321.015000px;}
.x34{left:323.895000px;}
.xa{left:330.375000px;}
.x11{left:343.695000px;}
.x56{left:346.372500px;}
.x3b{left:355.732500px;}
.x2f{left:357.375000px;}
.x3c{left:367.995000px;}
.x59{left:384.712500px;}
.x5a{left:394.455000px;}
.xf{left:416.392500px;}
.x10{left:421.275000px;}
.x2e{left:429.375000px;}
.x1{left:434.055000px;}
.x5d{left:439.612500px;}
.x5e{left:451.905000px;}
.x24{left:480.502500px;}
.x4e{left:489.180000px;}
.x25{left:490.245000px;}
.x47{left:504.982500px;}
.x35{left:506.422500px;}
.x36{left:516.165000px;}
.x13{left:517.582500px;}
.x14{left:523.725000px;}
.x37{left:525.682500px;}
.x38{left:535.425000px;}
.x8{left:564.765000px;}
.x5f{left:600.022500px;}
.x61{left:604.162500px;}
.x1f{left:607.402500px;}
.x60{left:612.285000px;}
.x62{left:616.425000px;}
.x20{left:619.665000px;}
.x48{left:628.147500px;}
.x2a{left:631.410000px;}
.x3e{left:633.007500px;}
.x49{left:640.410000px;}
.x3f{left:645.270000px;}
.x43{left:674.767500px;}
.x7{left:678.030000px;}
.x40{left:680.167500px;}
.x44{left:687.030000px;}
.x1a{left:692.047500px;}
.x1b{left:698.190000px;}
.x39{left:705.187500px;}
.x41{left:714.390000px;}
.x3a{left:717.450000px;}
.x31{left:723.007500px;}
.x32{left:735.270000px;}
.x3d{left:753.247500px;}
.xb{left:756.127500px;}
.xc{left:761.370000px;}
.x9{left:765.510000px;}
@media print{
.v1{vertical-align:-90.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls22{letter-spacing:-0.832000pt;}
.ls1c{letter-spacing:-0.736000pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.301867pt;}
.ls8{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.242133pt;}
.lsc{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls1b{letter-spacing:-0.047360pt;}
.ls19{letter-spacing:-0.015360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.059307pt;}
.lsb{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.097280pt;}
.ls5{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls24{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.544000pt;}
.ls20{letter-spacing:0.592000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls18{letter-spacing:0.871040pt;}
.ls12{letter-spacing:2.560000pt;}
.lsf{letter-spacing:5.120000pt;}
.ls1{letter-spacing:6.400000pt;}
.ls10{letter-spacing:25.088000pt;}
.ls23{letter-spacing:752.138667pt;}
.wsb{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws18{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.wsa{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.311360pt;}
.ws17{word-spacing:-15.168000pt;}
.wsf{word-spacing:-15.087360pt;}
.ws12{word-spacing:-14.998293pt;}
.wsc{word-spacing:-14.767360pt;}
.ws0{word-spacing:-14.720000pt;}
.wse{word-spacing:-14.672427pt;}
.ws10{word-spacing:-14.031360pt;}
.ws15{word-spacing:-13.872000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.536000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws14{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.096533pt;}
.ws16{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.632320pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-3.968000pt;}
._12{margin-left:-3.072000pt;}
._9{margin-left:-2.135893pt;}
._0{margin-left:-1.118720pt;}
._6{width:0.938667pt;}
._5{width:2.178560pt;}
._4{width:3.120640pt;}
._3{width:4.305920pt;}
._2{width:6.005760pt;}
._1{width:7.065600pt;}
._f{width:8.074240pt;}
._10{width:9.651627pt;}
._13{width:10.690133pt;}
._e{width:12.040107pt;}
._d{width:13.056000pt;}
._8{width:14.720000pt;}
._19{width:15.617280pt;}
._c{width:16.981333pt;}
._b{width:18.048000pt;}
._15{width:19.520000pt;}
._16{width:20.490667pt;}
._a{width:26.112000pt;}
._14{width:27.317333pt;}
._1b{width:28.234667pt;}
._11{width:33.728000pt;}
._1c{width:34.880000pt;}
._1f{width:37.760000pt;}
._20{width:39.040000pt;}
._1d{width:45.440000pt;}
._1e{width:46.496000pt;}
._22{width:59.968000pt;}
._21{width:60.958720pt;}
._7{width:676.004267pt;}
._17{width:752.138667pt;}
._1a{width:754.858667pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:10.560000pt;}
.y192{bottom:10.720000pt;}
.y19a{bottom:10.760000pt;}
.y19e{bottom:10.880000pt;}
.y193{bottom:11.040000pt;}
.y19b{bottom:11.080000pt;}
.ye8{bottom:12.640000pt;}
.yec{bottom:12.800000pt;}
.yf1{bottom:12.826667pt;}
.ye9{bottom:12.960000pt;}
.yed{bottom:13.120000pt;}
.yf2{bottom:13.146667pt;}
.y2{bottom:51.200000pt;}
.y1{bottom:69.120000pt;}
.y2e{bottom:97.600000pt;}
.y18e{bottom:97.920000pt;}
.y2d{bottom:102.240000pt;}
.y18d{bottom:102.560000pt;}
.y88{bottom:102.720000pt;}
.y2c{bottom:112.992000pt;}
.ybb{bottom:113.312000pt;}
.y1df{bottom:113.952000pt;}
.y18c{bottom:114.752000pt;}
.y2b{bottom:117.632000pt;}
.yba{bottom:117.952000pt;}
.y6e{bottom:125.152000pt;}
.y2a{bottom:128.352000pt;}
.ye6{bottom:129.152000pt;}
.yb9{bottom:129.312000pt;}
.ye2{bottom:129.632000pt;}
.y201{bottom:130.112000pt;}
.y87{bottom:130.272000pt;}
.y55{bottom:132.992000pt;}
.y135{bottom:133.946667pt;}
.ye1{bottom:134.266667pt;}
.y29{bottom:143.706667pt;}
.y137{bottom:144.506667pt;}
.yb8{bottom:144.666667pt;}
.y1de{bottom:144.986667pt;}
.y134{bottom:145.466667pt;}
.ye0{bottom:146.426667pt;}
.y54{bottom:148.346667pt;}
.y1dd{bottom:149.626667pt;}
.y6d{bottom:152.826667pt;}
.y86{bottom:157.946667pt;}
.y53{bottom:159.066667pt;}
.y28{bottom:159.386667pt;}
.yb7{bottom:160.026667pt;}
.y1dc{bottom:161.786667pt;}
.y52{bottom:163.706667pt;}
.y27{bottom:164.026667pt;}
.y111{bottom:174.426667pt;}
.y1f6{bottom:174.586667pt;}
.y51{bottom:175.226667pt;}
.y26{bottom:176.186667pt;}
.y1f5{bottom:179.226667pt;}
.y6c{bottom:180.346667pt;}
.y85{bottom:185.466667pt;}
.y110{bottom:189.626667pt;}
.yb6{bottom:190.586667pt;}
.y1f4{bottom:191.386667pt;}
.y206{bottom:194.266667pt;}
.y10f{bottom:204.986667pt;}
.yb5{bottom:205.946667pt;}
.y24{bottom:207.226667pt;}
.y6b{bottom:208.026667pt;}
.y9b{bottom:209.626667pt;}
.yb4{bottom:210.586667pt;}
.y25{bottom:211.866667pt;}
.y84{bottom:213.146667pt;}
.y10e{bottom:220.346667pt;}
.y205{bottom:220.666667pt;}
.yb3{bottom:221.306667pt;}
.y23{bottom:222.426667pt;}
.y10d{bottom:224.986667pt;}
.y204{bottom:225.306667pt;}
.y200{bottom:226.426667pt;}
.y1db{bottom:228.346667pt;}
.y6a{bottom:235.546667pt;}
.y148{bottom:235.706667pt;}
.y10c{bottom:236.506667pt;}
.yb2{bottom:236.666667pt;}
.y9a{bottom:237.306667pt;}
.y203{bottom:237.466667pt;}
.y22{bottom:237.786667pt;}
.y1b5{bottom:240.346667pt;}
.y83{bottom:240.666667pt;}
.yb1{bottom:241.306667pt;}
.yfe{bottom:241.626667pt;}
.y1ff{bottom:246.266667pt;}
.y147{bottom:251.066667pt;}
.yb0{bottom:252.826667pt;}
.y21{bottom:253.146667pt;}
.y133{bottom:254.586667pt;}
.y1b4{bottom:255.706667pt;}
.y1da{bottom:256.026667pt;}
.y50{bottom:256.186667pt;}
.y1fe{bottom:256.986667pt;}
.ydf{bottom:260.826667pt;}
.y69{bottom:263.226667pt;}
.y1ce{bottom:263.866667pt;}
.y99{bottom:264.826667pt;}
.y146{bottom:266.266667pt;}
.y82{bottom:268.186667pt;}
.y20{bottom:268.506667pt;}
.yfd{bottom:269.466667pt;}
.y145{bottom:270.906667pt;}
.y1b3{bottom:271.066667pt;}
.y1fd{bottom:272.346667pt;}
.y144{bottom:281.626667pt;}
.y132{bottom:282.106667pt;}
.y4f{bottom:283.546667pt;}
.y1b2{bottom:286.426667pt;}
.y1fc{bottom:287.706667pt;}
.yde{bottom:288.186667pt;}
.y18b{bottom:290.586667pt;}
.y68{bottom:290.746667pt;}
.y1cd{bottom:291.226667pt;}
.y98{bottom:292.506667pt;}
.y1f{bottom:293.466667pt;}
.y81{bottom:295.866667pt;}
.yfc{bottom:296.986667pt;}
.y10b{bottom:300.026667pt;}
.y143{bottom:301.626667pt;}
.y1b1{bottom:301.786667pt;}
.y1fb{bottom:303.066667pt;}
.y131{bottom:309.626667pt;}
.y4e{bottom:311.226667pt;}
.y16b{bottom:312.346667pt;}
.y142{bottom:313.146667pt;}
.y10a{bottom:315.226667pt;}
.ydd{bottom:315.866667pt;}
.y1af{bottom:317.146667pt;}
.y18a{bottom:318.106667pt;}
.y67{bottom:318.426667pt;}
.y1cc{bottom:318.906667pt;}
.y97{bottom:320.026667pt;}
.y1e{bottom:321.146667pt;}
.y1b0{bottom:321.786667pt;}
.y80{bottom:323.386667pt;}
.yfb{bottom:324.666667pt;}
.y1fa{bottom:325.946667pt;}
.y16a{bottom:327.706667pt;}
.y136{bottom:329.466667pt;}
.y109{bottom:330.586667pt;}
.y1ae{bottom:332.346667pt;}
.y130{bottom:337.346667pt;}
.y4c{bottom:338.786667pt;}
.y169{bottom:343.106667pt;}
.ydc{bottom:343.426667pt;}
.y4d{bottom:344.866667pt;}
.y189{bottom:345.666667pt;}
.y66{bottom:345.986667pt;}
.y1cb{bottom:346.466667pt;}
.y96{bottom:347.746667pt;}
.y1d{bottom:348.706667pt;}
.y7f{bottom:351.106667pt;}
.yfa{bottom:352.226667pt;}
.y141{bottom:352.866667pt;}
.y108{bottom:353.666667pt;}
.y1f3{bottom:355.906667pt;}
.y168{bottom:359.266667pt;}
.y165{bottom:359.746667pt;}
.y1ad{bottom:363.106667pt;}
.y12f{bottom:364.866667pt;}
.y4b{bottom:366.466667pt;}
.ydb{bottom:371.106667pt;}
.y188{bottom:373.346667pt;}
.y65{bottom:373.666667pt;}
.y1ca{bottom:374.146667pt;}
.y95{bottom:375.266667pt;}
.y1c{bottom:376.386667pt;}
.yf9{bottom:377.826667pt;}
.y1ac{bottom:378.466667pt;}
.y7e{bottom:378.626667pt;}
.y13f{bottom:380.546667pt;}
.y1f2{bottom:383.266667pt;}
.y107{bottom:384.706667pt;}
.y140{bottom:386.626667pt;}
.y164{bottom:387.106667pt;}
.y12e{bottom:392.546667pt;}
.y4a{bottom:393.986667pt;}
.yda{bottom:398.626667pt;}
.yf8{bottom:400.866667pt;}
.y64{bottom:401.186667pt;}
.y1ab{bottom:401.506667pt;}
.y1c9{bottom:401.666667pt;}
.y94{bottom:402.946667pt;}
.y1b{bottom:403.906667pt;}
.y7d{bottom:406.306667pt;}
.y13e{bottom:408.066667pt;}
.y1f1{bottom:410.946667pt;}
.yf7{bottom:413.506667pt;}
.y163{bottom:414.786667pt;}
.y12d{bottom:420.066667pt;}
.y49{bottom:421.666667pt;}
.yd9{bottom:426.146667pt;}
.y1aa{bottom:426.466667pt;}
.y187{bottom:428.546667pt;}
.y63{bottom:428.866667pt;}
.y1c8{bottom:429.346667pt;}
.y93{bottom:430.466667pt;}
.y1a{bottom:431.586667pt;}
.y1f9{bottom:433.506667pt;}
.y7c{bottom:433.826667pt;}
.y13d{bottom:435.746667pt;}
.y1f0{bottom:438.466667pt;}
.yf6{bottom:441.826667pt;}
.y162{bottom:442.306667pt;}
.yaf{bottom:444.066667pt;}
.y12c{bottom:447.746667pt;}
.y48{bottom:449.186667pt;}
.yd8{bottom:453.826667pt;}
.y1a9{bottom:454.146667pt;}
.y186{bottom:456.066667pt;}
.y62{bottom:456.386667pt;}
.y1c7{bottom:456.866667pt;}
.y92{bottom:458.146667pt;}
.y19{bottom:459.106667pt;}
.yad{bottom:459.426667pt;}
.y1f8{bottom:461.186667pt;}
.y13c{bottom:461.346667pt;}
.y7b{bottom:461.506667pt;}
.yae{bottom:464.066667pt;}
.y1ef{bottom:466.146667pt;}
.y139{bottom:467.586667pt;}
.yf5{bottom:469.986667pt;}
.yac{bottom:474.786667pt;}
.y12b{bottom:475.266667pt;}
.y47{bottom:476.866667pt;}
.yd7{bottom:481.346667pt;}
.y1a8{bottom:481.666667pt;}
.y13b{bottom:482.466667pt;}
.y185{bottom:483.746667pt;}
.y61{bottom:484.066667pt;}
.y1c6{bottom:484.546667pt;}
.y91{bottom:485.346667pt;}
.y18{bottom:486.786667pt;}
.y1f7{bottom:488.706667pt;}
.y7a{bottom:489.026667pt;}
.yab{bottom:490.146667pt;}
.y1ee{bottom:493.666667pt;}
.y106{bottom:495.106667pt;}
.y161{bottom:497.506667pt;}
.yf4{bottom:498.306667pt;}
.y12a{bottom:502.946667pt;}
.y46{bottom:504.386667pt;}
.yaa{bottom:505.506667pt;}
.yd6{bottom:509.026667pt;}
.y1a7{bottom:509.346667pt;}
.y184{bottom:511.266667pt;}
.y60{bottom:511.586667pt;}
.y1c5{bottom:512.066667pt;}
.y90{bottom:513.026667pt;}
.y17{bottom:514.306667pt;}
.y79{bottom:516.706667pt;}
.ya9{bottom:520.706667pt;}
.y1ed{bottom:521.346667pt;}
.y160{bottom:525.186667pt;}
.yf3{bottom:526.626667pt;}
.y129{bottom:530.466667pt;}
.y45{bottom:532.066667pt;}
.y1a6{bottom:534.786667pt;}
.ya8{bottom:536.066667pt;}
.yd5{bottom:536.546667pt;}
.y183{bottom:538.946667pt;}
.y5f{bottom:539.106667pt;}
.y1c4{bottom:539.746667pt;}
.y8f{bottom:540.546667pt;}
.y16{bottom:541.986667pt;}
.y78{bottom:544.226667pt;}
.y1ec{bottom:548.866667pt;}
.ya7{bottom:551.426667pt;}
.y15f{bottom:552.706667pt;}
.yf0{bottom:554.786667pt;}
.y1a5{bottom:557.826667pt;}
.y128{bottom:558.146667pt;}
.y44{bottom:559.586667pt;}
.yd4{bottom:562.173333pt;}
.y182{bottom:566.493333pt;}
.y5e{bottom:566.813333pt;}
.y1c3{bottom:567.293333pt;}
.y8e{bottom:568.253333pt;}
.y14{bottom:569.533333pt;}
.y15e{bottom:569.853333pt;}
.y1a4{bottom:570.493333pt;}
.y77{bottom:571.933333pt;}
.y167{bottom:572.733333pt;}
.ya6{bottom:574.493333pt;}
.y15{bottom:575.613333pt;}
.y1ea{bottom:576.573333pt;}
.yd2{bottom:577.533333pt;}
.yd3{bottom:582.173333pt;}
.y1eb{bottom:582.653333pt;}
.yef{bottom:583.133333pt;}
.y15d{bottom:583.293333pt;}
.y127{bottom:585.693333pt;}
.y43{bottom:587.293333pt;}
.yd1{bottom:592.893333pt;}
.y181{bottom:594.173333pt;}
.y5d{bottom:594.333333pt;}
.y1c2{bottom:594.973333pt;}
.y8d{bottom:595.773333pt;}
.y13{bottom:597.213333pt;}
.y15c{bottom:598.813333pt;}
.y105{bottom:599.133333pt;}
.y76{bottom:599.453333pt;}
.y1e9{bottom:604.093333pt;}
.ye5{bottom:605.533333pt;}
.yd0{bottom:608.253333pt;}
.yee{bottom:611.453333pt;}
.y126{bottom:613.373333pt;}
.y15b{bottom:614.173333pt;}
.y42{bottom:614.813333pt;}
.y1a3{bottom:617.853333pt;}
.y180{bottom:621.693333pt;}
.y5c{bottom:622.013333pt;}
.y1c1{bottom:622.493333pt;}
.ycf{bottom:623.453333pt;}
.y12{bottom:624.413333pt;}
.y8c{bottom:624.733333pt;}
.y104{bottom:626.813333pt;}
.y75{bottom:627.133333pt;}
.y15a{bottom:629.533333pt;}
.y1e8{bottom:631.773333pt;}
.yce{bottom:638.813333pt;}
.yeb{bottom:639.613333pt;}
.y125{bottom:640.893333pt;}
.y1a2{bottom:641.533333pt;}
.y41{bottom:642.493333pt;}
.y159{bottom:644.733333pt;}
.y17f{bottom:647.293333pt;}
.y5b{bottom:649.213333pt;}
.y1c0{bottom:650.173333pt;}
.y11{bottom:652.413333pt;}
.y8b{bottom:654.013333pt;}
.ycd{bottom:654.173333pt;}
.y103{bottom:654.333333pt;}
.y74{bottom:654.653333pt;}
.y1e7{bottom:659.293333pt;}
.y158{bottom:660.093333pt;}
.ya5{bottom:660.733333pt;}
.y17e{bottom:662.653333pt;}
.y1a1{bottom:665.213333pt;}
.yea{bottom:667.933333pt;}
.y124{bottom:668.573333pt;}
.ycc{bottom:669.533333pt;}
.y40{bottom:670.013333pt;}
.y157{bottom:675.453333pt;}
.y5a{bottom:676.893333pt;}
.y1bf{bottom:677.693333pt;}
.y17d{bottom:677.853333pt;}
.yf{bottom:678.973333pt;}
.ye4{bottom:682.013333pt;}
.y73{bottom:682.333333pt;}
.y10{bottom:684.253333pt;}
.ycb{bottom:684.893333pt;}
.y1e6{bottom:686.973333pt;}
.y1a0{bottom:688.893333pt;}
.y156{bottom:691.293333pt;}
.y17c{bottom:693.213333pt;}
.y123{bottom:694.013333pt;}
.y3f{bottom:695.613333pt;}
.ye7{bottom:696.253333pt;}
.y1d9{bottom:697.693333pt;}
.ye{bottom:704.253333pt;}
.y59{bottom:704.413333pt;}
.y1be{bottom:705.213333pt;}
.yca{bottom:707.773333pt;}
.y17b{bottom:708.573333pt;}
.y121{bottom:709.373333pt;}
.ye3{bottom:709.533333pt;}
.y155{bottom:709.693333pt;}
.y72{bottom:709.853333pt;}
.y3d{bottom:710.973333pt;}
.y19f{bottom:712.573333pt;}
.y122{bottom:714.013333pt;}
.y1e5{bottom:714.493333pt;}
.y3e{bottom:715.613333pt;}
.y202{bottom:715.933333pt;}
.yd{bottom:721.053333pt;}
.y17a{bottom:723.933333pt;}
.y120{bottom:724.733333pt;}
.y1d8{bottom:725.213333pt;}
.y3c{bottom:726.173333pt;}
.yc9{bottom:732.893333pt;}
.y58{bottom:733.373333pt;}
.y19d{bottom:736.253333pt;}
.y71{bottom:737.533333pt;}
.yc{bottom:738.013333pt;}
.y179{bottom:739.293333pt;}
.y11f{bottom:740.093333pt;}
.y3b{bottom:741.533333pt;}
.y1e4{bottom:742.013333pt;}
.y1d7{bottom:752.893333pt;}
.y178{bottom:754.653333pt;}
.y11e{bottom:755.453333pt;}
.y3a{bottom:756.893333pt;}
.y19c{bottom:759.773333pt;}
.y1e2{bottom:759.933333pt;}
.yc8{bottom:760.413333pt;}
.y57{bottom:762.813333pt;}
.y1e3{bottom:764.573333pt;}
.y70{bottom:765.053333pt;}
.yb{bottom:766.173333pt;}
.y177{bottom:769.853333pt;}
.y11d{bottom:770.653333pt;}
.y39{bottom:772.253333pt;}
.y1e1{bottom:775.293333pt;}
.y1d6{bottom:780.413333pt;}
.y199{bottom:783.453333pt;}
.y176{bottom:785.213333pt;}
.yc7{bottom:788.133333pt;}
.y1e0{bottom:790.693333pt;}
.y56{bottom:792.133333pt;}
.y6f{bottom:792.773333pt;}
.y11c{bottom:793.733333pt;}
.y38{bottom:795.333333pt;}
.ya{bottom:798.373333pt;}
.y138{bottom:798.853333pt;}
.y175{bottom:800.613333pt;}
.y1d5{bottom:806.053333pt;}
.y198{bottom:807.173333pt;}
.y154{bottom:810.373333pt;}
.yc6{bottom:813.733333pt;}
.y1bd{bottom:815.653333pt;}
.ya4{bottom:818.213333pt;}
.y11b{bottom:818.853333pt;}
.y37{bottom:820.293333pt;}
.y1d3{bottom:821.413333pt;}
.y174{bottom:823.653333pt;}
.y1d4{bottom:826.053333pt;}
.y8a{bottom:826.373333pt;}
.yc4{bottom:829.093333pt;}
.y9{bottom:830.533333pt;}
.y197{bottom:830.853333pt;}
.y153{bottom:833.253333pt;}
.ya2{bottom:833.573333pt;}
.yc5{bottom:833.733333pt;}
.y1d2{bottom:836.613333pt;}
.ya3{bottom:838.213333pt;}
.y1bc{bottom:843.333333pt;}
.yc3{bottom:844.293333pt;}
.y11a{bottom:846.373333pt;}
.y36{bottom:847.973333pt;}
.y173{bottom:848.613333pt;}
.ya1{bottom:848.933333pt;}
.y1d1{bottom:851.973333pt;}
.y196{bottom:854.533333pt;}
.y152{bottom:856.293333pt;}
.yc2{bottom:859.653333pt;}
.ya0{bottom:864.293333pt;}
.y1d0{bottom:867.333333pt;}
.y1bb{bottom:870.853333pt;}
.y119{bottom:874.053333pt;}
.y35{bottom:875.493333pt;}
.y172{bottom:876.293333pt;}
.y195{bottom:878.213333pt;}
.y151{bottom:879.333333pt;}
.y9f{bottom:879.653333pt;}
.yc1{bottom:882.693333pt;}
.y8{bottom:885.573333pt;}
.y9e{bottom:895.013333pt;}
.y1ba{bottom:898.533333pt;}
.y118{bottom:901.573333pt;}
.y194{bottom:901.893333pt;}
.y150{bottom:902.213333pt;}
.y34{bottom:903.173333pt;}
.y170{bottom:903.813333pt;}
.y1cf{bottom:905.733333pt;}
.yc0{bottom:907.653333pt;}
.y13a{bottom:909.253333pt;}
.y7{bottom:909.573333pt;}
.y171{bottom:909.893333pt;}
.y9d{bottom:910.213333pt;}
.y1b9{bottom:924.133333pt;}
.y14f{bottom:925.253333pt;}
.y191{bottom:925.573333pt;}
.y117{bottom:929.253333pt;}
.y102{bottom:930.373333pt;}
.y32{bottom:930.693333pt;}
.y16f{bottom:931.493333pt;}
.y9c{bottom:933.253333pt;}
.y6{bottom:933.573333pt;}
.ybf{bottom:935.333333pt;}
.y33{bottom:936.773333pt;}
.y1b7{bottom:939.333333pt;}
.y1b8{bottom:943.973333pt;}
.y14e{bottom:948.293333pt;}
.y18f{bottom:949.253333pt;}
.y116{bottom:954.693333pt;}
.y5{bottom:957.573333pt;}
.y101{bottom:958.053333pt;}
.y31{bottom:958.373333pt;}
.y16e{bottom:958.693333pt;}
.ybe{bottom:962.853333pt;}
.y14d{bottom:963.813333pt;}
.y114{bottom:970.053333pt;}
.y115{bottom:974.693333pt;}
.y14c{bottom:979.173333pt;}
.y4{bottom:981.573333pt;}
.y113{bottom:985.413333pt;}
.y100{bottom:985.573333pt;}
.y30{bottom:985.893333pt;}
.y16d{bottom:986.373333pt;}
.y1b6{bottom:990.053333pt;}
.ybd{bottom:990.533333pt;}
.y166{bottom:991.973333pt;}
.y14a{bottom:995.013333pt;}
.y14b{bottom:999.653333pt;}
.y112{bottom:1000.773333pt;}
.y3{bottom:1005.733333pt;}
.yff{bottom:1013.280000pt;}
.y149{bottom:1013.440000pt;}
.y2f{bottom:1013.600000pt;}
.y16c{bottom:1014.400000pt;}
.ybc{bottom:1016.160000pt;}
.y89{bottom:1019.680000pt;}
.h1f{height:22.866667pt;}
.h24{height:22.880000pt;}
.h21{height:23.026667pt;}
.h23{height:23.040000pt;}
.h22{height:23.060000pt;}
.h17{height:27.506667pt;}
.h14{height:27.520000pt;}
.h18{height:27.666667pt;}
.h15{height:27.680000pt;}
.h16{height:27.706667pt;}
.hc{height:33.918750pt;}
.hd{height:34.374375pt;}
.h1c{height:36.045000pt;}
.h7{height:36.431250pt;}
.h1a{height:42.063437pt;}
.ha{height:42.084375pt;}
.h1e{height:47.392500pt;}
.h12{height:47.621250pt;}
.h1b{height:52.108438pt;}
.hb{height:52.134375pt;}
.he{height:52.834688pt;}
.h20{height:53.535000pt;}
.h1d{height:55.402500pt;}
.h11{height:56.843750pt;}
.hf{height:57.375000pt;}
.h5{height:57.758750pt;}
.h3{height:57.787500pt;}
.h2{height:58.563750pt;}
.h19{height:62.781250pt;}
.h8{height:62.812500pt;}
.h10{height:63.656250pt;}
.h9{height:64.500000pt;}
.h13{height:66.750000pt;}
.h4{height:75.465000pt;}
.h6{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:95.680000pt;}
.w5{width:102.912000pt;}
.w8{width:112.786667pt;}
.w6{width:114.898667pt;}
.w7{width:129.312000pt;}
.w3{width:178.098667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2c{left:6.872000pt;}
.x4c{left:37.746667pt;}
.x4f{left:38.706667pt;}
.x4d{left:39.840000pt;}
.x51{left:58.066667pt;}
.x53{left:61.266667pt;}
.x50{left:66.080000pt;}
.x52{left:69.440000pt;}
.x2b{left:106.600000pt;}
.x2{left:113.472000pt;}
.x12{left:117.792000pt;}
.x23{left:122.112000pt;}
.x4{left:137.146667pt;}
.x1c{left:142.246667pt;}
.x17{left:148.486667pt;}
.x3{left:150.906667pt;}
.x18{left:153.946667pt;}
.x5b{left:156.966667pt;}
.xd{left:157.926667pt;}
.xe{left:163.386667pt;}
.x5c{left:167.866667pt;}
.x28{left:175.226667pt;}
.x19{left:179.706667pt;}
.x42{left:183.706667pt;}
.x30{left:188.986667pt;}
.x1d{left:198.246667pt;}
.x29{left:199.226667pt;}
.x1e{left:202.586667pt;}
.x45{left:213.446667pt;}
.x21{left:217.926667pt;}
.x46{left:223.066667pt;}
.x22{left:226.586667pt;}
.x54{left:229.766667pt;}
.x4a{left:235.206667pt;}
.x55{left:238.466667pt;}
.x57{left:243.266667pt;}
.x4b{left:246.146667pt;}
.x26{left:248.686667pt;}
.x27{left:257.346667pt;}
.x15{left:267.246667pt;}
.x58{left:269.006667pt;}
.x16{left:271.586667pt;}
.x33{left:277.006667pt;}
.x5{left:280.386667pt;}
.x6{left:281.506667pt;}
.x2d{left:285.346667pt;}
.x34{left:287.906667pt;}
.xa{left:293.666667pt;}
.x11{left:305.506667pt;}
.x56{left:307.886667pt;}
.x3b{left:316.206667pt;}
.x2f{left:317.666667pt;}
.x3c{left:327.106667pt;}
.x59{left:341.966667pt;}
.x5a{left:350.626667pt;}
.xf{left:370.126667pt;}
.x10{left:374.466667pt;}
.x2e{left:381.666667pt;}
.x1{left:385.826667pt;}
.x5d{left:390.766667pt;}
.x5e{left:401.693333pt;}
.x24{left:427.113333pt;}
.x4e{left:434.826667pt;}
.x25{left:435.773333pt;}
.x47{left:448.873333pt;}
.x35{left:450.153333pt;}
.x36{left:458.813333pt;}
.x13{left:460.073333pt;}
.x14{left:465.533333pt;}
.x37{left:467.273333pt;}
.x38{left:475.933333pt;}
.x8{left:502.013333pt;}
.x5f{left:533.353333pt;}
.x61{left:537.033333pt;}
.x1f{left:539.913333pt;}
.x60{left:544.253333pt;}
.x62{left:547.933333pt;}
.x20{left:550.813333pt;}
.x48{left:558.353333pt;}
.x2a{left:561.253333pt;}
.x3e{left:562.673333pt;}
.x49{left:569.253333pt;}
.x3f{left:573.573333pt;}
.x43{left:599.793333pt;}
.x7{left:602.693333pt;}
.x40{left:604.593333pt;}
.x44{left:610.693333pt;}
.x1a{left:615.153333pt;}
.x1b{left:620.613333pt;}
.x39{left:626.833333pt;}
.x41{left:635.013333pt;}
.x3a{left:637.733333pt;}
.x31{left:642.673333pt;}
.x32{left:653.573333pt;}
.x3d{left:669.553333pt;}
.xb{left:672.113333pt;}
.xc{left:676.773333pt;}
.x9{left:680.453333pt;}
}




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