
    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_d81177cf38e586f08a7e1910.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d71dac8435323c6056ed56f7.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_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.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_d7e0df784461e70352a2f504.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aa5ee1953d1535a3249bf3cc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0a3c36386818aa801d9fda5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_8900a8d00ce80e67af4f098b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.082520;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);}
.v4{vertical-align:-65.520000px;}
.v5{vertical-align:-63.360000px;}
.v6{vertical-align:-61.920000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.000000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-1.260000px;}
.ls25{letter-spacing:-1.080000px;}
.ls1e{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.942000px;}
.ls23{letter-spacing:-0.768000px;}
.ls26{letter-spacing:-0.672000px;}
.ls28{letter-spacing:-0.612000px;}
.ls7{letter-spacing:-0.540000px;}
.ls22{letter-spacing:-0.538800px;}
.ls1d{letter-spacing:-0.450600px;}
.ls5{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.223800px;}
.ls12{letter-spacing:-0.206400px;}
.ls1a{letter-spacing:-0.106800px;}
.ls11{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.033840px;}
.ls27{letter-spacing:0.045360px;}
.ls13{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.144720px;}
.lsc{letter-spacing:0.156240px;}
.ls1{letter-spacing:0.180000px;}
.ls24{letter-spacing:0.181200px;}
.ls1b{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.206640px;}
.lsf{letter-spacing:0.223800px;}
.ls6{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.306720px;}
.ls1f{letter-spacing:0.314400px;}
.ls0{letter-spacing:0.360000px;}
.ls21{letter-spacing:3.060000px;}
.ls14{letter-spacing:6.660000px;}
.ls16{letter-spacing:10.260000px;}
.ls18{letter-spacing:59.916000px;}
.ls3{letter-spacing:66.162720px;}
.lsa{letter-spacing:112.476000px;}
.lse{letter-spacing:519.996000px;}
.ls9{letter-spacing:669.936000px;}
.lsb{letter-spacing:1304.976000px;}
.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;}
}
.ws14{word-spacing:-59.760000px;}
.ws9{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.146400px;}
.ws7{word-spacing:-15.046800px;}
.ws12{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wsf{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.833200px;}
.ws10{word-spacing:-14.733600px;}
.ws0{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-13.500000px;}
.ws1d{word-spacing:-12.888000px;}
.wsc{word-spacing:-12.420000px;}
.ws18{word-spacing:-12.374400px;}
.wse{word-spacing:-12.283800px;}
.ws1c{word-spacing:-12.105360px;}
.wsb{word-spacing:-12.060000px;}
.ws15{word-spacing:-11.836200px;}
.wsa{word-spacing:-11.790600px;}
.wsd{word-spacing:-11.700000px;}
.ws16{word-spacing:-11.609400px;}
.ws19{word-spacing:-11.521200px;}
.ws1b{word-spacing:-11.388000px;}
.ws17{word-spacing:-11.070000px;}
.ws1a{word-spacing:-10.980000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:-7.560000px;}
.ws8{word-spacing:0.000000px;}
._29{margin-left:-3.670080px;}
._20{margin-left:-2.581200px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._1a{width:3.944160px;}
._f{width:5.495040px;}
._4{width:6.840000px;}
._a{width:7.912560px;}
._b{width:9.504000px;}
._1b{width:11.369280px;}
._1f{width:12.621600px;}
._1c{width:13.625760px;}
._9{width:14.904000px;}
._8{width:16.038000px;}
._12{width:17.226000px;}
._18{width:18.252000px;}
._26{width:19.397280px;}
._15{width:20.466000px;}
._19{width:21.672000px;}
._17{width:23.220000px;}
._25{width:24.486240px;}
._c{width:25.812000px;}
._d{width:26.868000px;}
._6{width:29.214000px;}
._7{width:30.221280px;}
._e{width:31.754160px;}
._27{width:33.764400px;}
._28{width:34.854960px;}
._2b{width:36.793440px;}
._2d{width:39.365040px;}
._11{width:41.733360px;}
._10{width:43.200000px;}
._14{width:44.221680px;}
._13{width:45.360000px;}
._2a{width:50.119920px;}
._16{width:57.024000px;}
._2e{width:58.407840px;}
._2c{width:59.828160px;}
._2f{width:61.203840px;}
._30{width:70.182000px;}
._31{width:71.460000px;}
._24{width:102.285360px;}
._5{width:155.700000px;}
._23{width:348.690720px;}
._1d{width:509.086560px;}
._21{width:735.660000px;}
._1e{width:865.686720px;}
._22{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs7{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:2.520000px;}
.y2f{bottom:2.880000px;}
.y10{bottom:3.240000px;}
.y14d{bottom:3.600000px;}
.y14b{bottom:3.780000px;}
.y37{bottom:9.000000px;}
.y3d{bottom:12.240000px;}
.yf5{bottom:16.200000px;}
.y72{bottom:16.380000px;}
.yeb{bottom:16.425000px;}
.y2e{bottom:18.540000px;}
.y15{bottom:20.520000px;}
.y3c{bottom:29.520000px;}
.yb2{bottom:30.060000px;}
.ybb{bottom:30.240000px;}
.y2d{bottom:34.020000px;}
.y14{bottom:37.800000px;}
.yba{bottom:43.920000px;}
.y3b{bottom:46.845000px;}
.y2c{bottom:49.500000px;}
.y152{bottom:54.900000px;}
.y13{bottom:55.080000px;}
.yb9{bottom:57.780000px;}
.y3a{bottom:64.125000px;}
.y20b{bottom:64.305000px;}
.y2b{bottom:64.980000px;}
.y36{bottom:65.880000px;}
.yb8{bottom:71.640000px;}
.y151{bottom:72.180000px;}
.y213{bottom:79.740000px;}
.y20a{bottom:79.785000px;}
.y2a{bottom:80.460000px;}
.y12{bottom:81.360000px;}
.ye8{bottom:85.365000px;}
.y5{bottom:88.200000px;}
.y39{bottom:90.225000px;}
.y209{bottom:95.265000px;}
.y212{bottom:95.400000px;}
.y202{bottom:95.430000px;}
.y29{bottom:96.150000px;}
.y211{bottom:110.880000px;}
.y201{bottom:110.910000px;}
.y208{bottom:110.925000px;}
.y28{bottom:111.630000px;}
.y85{bottom:114.660000px;}
.yde{bottom:116.280000px;}
.y1b7{bottom:124.740000px;}
.y117{bottom:125.820000px;}
.y210{bottom:126.360000px;}
.y207{bottom:126.405000px;}
.y200{bottom:126.570000px;}
.y27{bottom:127.110000px;}
.y13d{bottom:128.880000px;}
.y84{bottom:131.760000px;}
.ydd{bottom:133.560000px;}
.y1b6{bottom:138.636000px;}
.y20f{bottom:141.840000px;}
.y206{bottom:141.885000px;}
.y1ff{bottom:142.050000px;}
.y26{bottom:142.590000px;}
.y116{bottom:143.136000px;}
.y13c{bottom:146.196000px;}
.y83{bottom:149.076000px;}
.y173{bottom:149.436000px;}
.ydc{bottom:150.870000px;}
.y1f9{bottom:151.590000px;}
.y1b5{bottom:152.310000px;}
.yac{bottom:153.030000px;}
.y48{bottom:153.570000px;}
.y20e{bottom:157.320000px;}
.y205{bottom:157.365000px;}
.y1fe{bottom:157.530000px;}
.y25{bottom:158.250000px;}
.y115{bottom:160.410000px;}
.y214{bottom:160.950000px;}
.y172{bottom:163.110000px;}
.y13b{bottom:163.470000px;}
.y1f8{bottom:165.450000px;}
.y1b4{bottom:166.170000px;}
.y82{bottom:166.350000px;}
.ydb{bottom:168.150000px;}
.yab{bottom:170.310000px;}
.y47{bottom:170.850000px;}
.y24{bottom:173.730000px;}
.y20d{bottom:174.990000px;}
.y171{bottom:176.970000px;}
.y114{bottom:177.690000px;}
.y1f7{bottom:179.130000px;}
.y1b3{bottom:180.030000px;}
.y13a{bottom:180.750000px;}
.y81{bottom:183.630000px;}
.yda{bottom:185.250000px;}
.yaa{bottom:187.410000px;}
.y46{bottom:187.950000px;}
.y23{bottom:189.210000px;}
.y170{bottom:190.830000px;}
.y1f6{bottom:192.990000px;}
.y1b2{bottom:193.710000px;}
.y113{bottom:194.970000px;}
.y139{bottom:197.850000px;}
.y80{bottom:200.910000px;}
.yd9{bottom:202.530000px;}
.y16f{bottom:204.510000px;}
.y22{bottom:204.690000px;}
.y45{bottom:205.230000px;}
.y1f5{bottom:206.850000px;}
.y1b1{bottom:207.570000px;}
.y112{bottom:212.250000px;}
.y138{bottom:215.130000px;}
.y7f{bottom:218.190000px;}
.y16e{bottom:218.370000px;}
.yd8{bottom:219.810000px;}
.y21{bottom:220.350000px;}
.y1f4{bottom:220.530000px;}
.y1b0{bottom:221.430000px;}
.ya9{bottom:221.970000px;}
.y44{bottom:222.510000px;}
.y111{bottom:229.350000px;}
.y35{bottom:230.970000px;}
.y16d{bottom:232.230000px;}
.y137{bottom:232.410000px;}
.y1f3{bottom:234.390000px;}
.y1af{bottom:235.110000px;}
.y7e{bottom:235.290000px;}
.y20{bottom:235.830000px;}
.yd7{bottom:237.090000px;}
.ya8{bottom:239.250000px;}
.y43{bottom:239.790000px;}
.y16c{bottom:245.910000px;}
.y110{bottom:246.630000px;}
.y34{bottom:248.250000px;}
.y1ae{bottom:248.970000px;}
.y136{bottom:249.690000px;}
.y1f{bottom:251.310000px;}
.y7d{bottom:252.570000px;}
.yd6{bottom:254.370000px;}
.ya7{bottom:256.530000px;}
.y42{bottom:257.070000px;}
.y16b{bottom:259.770000px;}
.y1f2{bottom:261.930000px;}
.y1ad{bottom:262.830000px;}
.y10f{bottom:263.910000px;}
.y33{bottom:265.530000px;}
.y1e{bottom:266.790000px;}
.y135{bottom:266.970000px;}
.y7c{bottom:269.850000px;}
.yd5{bottom:271.650000px;}
.y16a{bottom:273.630000px;}
.ya6{bottom:273.810000px;}
.y41{bottom:274.350000px;}
.y1f1{bottom:275.790000px;}
.y1ac{bottom:276.510000px;}
.y10e{bottom:281.190000px;}
.y1d{bottom:282.450000px;}
.y32{bottom:282.810000px;}
.y134{bottom:284.250000px;}
.y7b{bottom:287.130000px;}
.y169{bottom:287.310000px;}
.yd4{bottom:288.750000px;}
.y1f0{bottom:289.650000px;}
.y1ab{bottom:290.370000px;}
.ya5{bottom:290.910000px;}
.y40{bottom:291.450000px;}
.y1c{bottom:297.930000px;}
.y10d{bottom:298.470000px;}
.y31{bottom:300.090000px;}
.y168{bottom:301.170000px;}
.y133{bottom:301.350000px;}
.y1ef{bottom:303.330000px;}
.y1aa{bottom:304.230000px;}
.y7a{bottom:304.410000px;}
.yd3{bottom:306.030000px;}
.ya4{bottom:308.190000px;}
.y3f{bottom:308.730000px;}
.y1b{bottom:313.410000px;}
.y167{bottom:315.030000px;}
.y10c{bottom:315.750000px;}
.y1ee{bottom:317.190000px;}
.y1a9{bottom:317.910000px;}
.y132{bottom:318.630000px;}
.y79{bottom:320.790000px;}
.yd2{bottom:323.310000px;}
.ya3{bottom:325.110000px;}
.y3e{bottom:326.010000px;}
.y30{bottom:326.190000px;}
.y166{bottom:328.710000px;}
.y1a{bottom:328.890000px;}
.y1ed{bottom:331.050000px;}
.y1a8{bottom:331.770000px;}
.y10b{bottom:332.850000px;}
.y78{bottom:334.650000px;}
.y131{bottom:335.910000px;}
.ya2{bottom:340.590000px;}
.y38{bottom:342.210000px;}
.y165{bottom:342.570000px;}
.y19{bottom:344.550000px;}
.y1ec{bottom:344.730000px;}
.y1a7{bottom:345.630000px;}
.y20c{bottom:345.990000px;}
.y77{bottom:346.710000px;}
.y10a{bottom:350.130000px;}
.y130{bottom:353.190000px;}
.ya1{bottom:356.430000px;}
.yd1{bottom:357.870000px;}
.y1eb{bottom:358.590000px;}
.y1a6{bottom:359.310000px;}
.y204{bottom:359.850000px;}
.y76{bottom:360.570000px;}
.y109{bottom:367.410000px;}
.y164{bottom:370.110000px;}
.y12f{bottom:370.470000px;}
.y1ea{bottom:372.450000px;}
.ya0{bottom:372.990000px;}
.y1a5{bottom:373.170000px;}
.y75{bottom:374.250000px;}
.yd0{bottom:375.150000px;}
.y163{bottom:383.970000px;}
.y9f{bottom:384.330000px;}
.y108{bottom:384.690000px;}
.y1e9{bottom:386.130000px;}
.y1a4{bottom:387.030000px;}
.y12e{bottom:387.795000px;}
.y74{bottom:388.155000px;}
.ycf{bottom:392.295000px;}
.y162{bottom:397.875000px;}
.y1e8{bottom:400.035000px;}
.y1a3{bottom:400.755000px;}
.y107{bottom:402.015000px;}
.y12d{bottom:404.895000px;}
.yce{bottom:409.575000px;}
.y161{bottom:411.555000px;}
.y1e7{bottom:413.895000px;}
.y1a2{bottom:414.615000px;}
.y73{bottom:415.695000px;}
.y106{bottom:419.295000px;}
.y12c{bottom:422.175000px;}
.y160{bottom:425.415000px;}
.ycd{bottom:426.855000px;}
.y1e6{bottom:427.575000px;}
.y1a1{bottom:428.475000px;}
.y71{bottom:429.555000px;}
.y17{bottom:431.310000px;}
.y105{bottom:436.395000px;}
.y15f{bottom:439.275000px;}
.y12b{bottom:439.455000px;}
.y1e5{bottom:441.435000px;}
.y1a0{bottom:442.155000px;}
.ycc{bottom:444.135000px;}
.y15e{bottom:452.955000px;}
.y104{bottom:453.675000px;}
.y1e4{bottom:455.295000px;}
.y19f{bottom:456.015000px;}
.y16{bottom:456.375000px;}
.y12a{bottom:456.735000px;}
.y70{bottom:457.095000px;}
.ycb{bottom:461.415000px;}
.y15d{bottom:466.815000px;}
.y1e3{bottom:468.975000px;}
.y19e{bottom:469.875000px;}
.y6f{bottom:470.955000px;}
.y129{bottom:474.015000px;}
.yca{bottom:478.515000px;}
.y15c{bottom:480.495000px;}
.y1e2{bottom:482.835000px;}
.y19d{bottom:483.555000px;}
.y6d{bottom:485.535000px;}
.y103{bottom:488.235000px;}
.y128{bottom:491.115000px;}
.y15b{bottom:495.075000px;}
.yc9{bottom:495.795000px;}
.y1e1{bottom:496.695000px;}
.y19c{bottom:497.415000px;}
.y102{bottom:505.515000px;}
.y127{bottom:508.395000px;}
.y1e0{bottom:510.375000px;}
.y19b{bottom:511.095000px;}
.y15a{bottom:511.635000px;}
.yc8{bottom:513.075000px;}
.y6c{bottom:519.735000px;}
.y101{bottom:522.615000px;}
.y1df{bottom:524.235000px;}
.y19a{bottom:524.955000px;}
.y159{bottom:525.495000px;}
.y126{bottom:525.675000px;}
.yc7{bottom:530.355000px;}
.y203{bottom:530.895000px;}
.y6b{bottom:533.595000px;}
.y1de{bottom:538.095000px;}
.y199{bottom:538.815000px;}
.y100{bottom:539.895000px;}
.y125{bottom:542.955000px;}
.y18{bottom:544.575000px;}
.yc6{bottom:547.635000px;}
.y6a{bottom:548.175000px;}
.y1dd{bottom:551.775000px;}
.y198{bottom:552.495000px;}
.yff{bottom:557.175000px;}
.y124{bottom:560.235000px;}
.yc5{bottom:564.915000px;}
.y69{bottom:565.455000px;}
.y1dc{bottom:565.635000px;}
.y197{bottom:566.355000px;}
.yfe{bottom:574.455000px;}
.y123{bottom:577.515000px;}
.y1db{bottom:579.495000px;}
.y196{bottom:580.215000px;}
.yc4{bottom:582.015000px;}
.y68{bottom:582.555000px;}
.yfd{bottom:591.735000px;}
.y1da{bottom:593.175000px;}
.y195{bottom:593.895000px;}
.y122{bottom:594.615000px;}
.yc3{bottom:599.295000px;}
.y67{bottom:599.835000px;}
.y1d9{bottom:607.035000px;}
.y194{bottom:607.755000px;}
.y158{bottom:608.295000px;}
.yfc{bottom:609.015000px;}
.y121{bottom:611.895000px;}
.yc2{bottom:616.575000px;}
.y66{bottom:617.115000px;}
.y1d8{bottom:620.895000px;}
.y193{bottom:621.615000px;}
.y157{bottom:621.975000px;}
.yfb{bottom:626.115000px;}
.y120{bottom:629.175000px;}
.yc1{bottom:633.855000px;}
.y65{bottom:634.395000px;}
.y1d7{bottom:634.575000px;}
.y192{bottom:635.295000px;}
.y156{bottom:636.555000px;}
.yfa{bottom:642.705000px;}
.y11f{bottom:646.485000px;}
.y1d6{bottom:648.465000px;}
.y191{bottom:649.185000px;}
.yc0{bottom:651.165000px;}
.y64{bottom:651.705000px;}
.y155{bottom:653.865000px;}
.yf9{bottom:656.565000px;}
.y1d5{bottom:662.325000px;}
.y190{bottom:663.045000px;}
.y11e{bottom:663.765000px;}
.ybf{bottom:667.725000px;}
.yf8{bottom:668.625000px;}
.y63{bottom:668.805000px;}
.y154{bottom:670.425000px;}
.y1d4{bottom:676.005000px;}
.y18f{bottom:676.725000px;}
.y11d{bottom:681.045000px;}
.ybe{bottom:681.405000px;}
.yf7{bottom:682.305000px;}
.y153{bottom:684.105000px;}
.y62{bottom:686.625000px;}
.y1d3{bottom:689.865000px;}
.y18e{bottom:690.585000px;}
.ybd{bottom:693.465000px;}
.y150{bottom:695.445000px;}
.yf6{bottom:696.165000px;}
.y11c{bottom:698.145000px;}
.y1d2{bottom:703.725000px;}
.y18d{bottom:704.445000px;}
.y61{bottom:705.165000px;}
.ybc{bottom:707.325000px;}
.y9e{bottom:707.505000px;}
.yf4{bottom:710.025000px;}
.y11b{bottom:715.425000px;}
.y1d1{bottom:717.405000px;}
.y18c{bottom:718.125000px;}
.y1fd{bottom:718.845000px;}
.yb7{bottom:721.005000px;}
.y60{bottom:722.445000px;}
.y1d0{bottom:731.265000px;}
.y18b{bottom:731.985000px;}
.y11a{bottom:732.705000px;}
.y1fc{bottom:736.125000px;}
.yf3{bottom:737.565000px;}
.y9d{bottom:738.825000px;}
.y5f{bottom:739.545000px;}
.y1cf{bottom:745.125000px;}
.y18a{bottom:745.845000px;}
.y119{bottom:749.985000px;}
.yf2{bottom:751.425000px;}
.y1fb{bottom:753.405000px;}
.y5e{bottom:756.105000px;}
.y1ce{bottom:758.805000px;}
.y189{bottom:759.525000px;}
.yef{bottom:765.105000px;}
.y118{bottom:767.265000px;}
.y5d{bottom:769.965000px;}
.y1fa{bottom:770.685000px;}
.y1cd{bottom:772.665000px;}
.y9c{bottom:773.385000px;}
.yf1{bottom:778.965000px;}
.y14f{bottom:784.185000px;}
.y5c{bottom:784.545000px;}
.y1cc{bottom:786.525000px;}
.y188{bottom:787.245000px;}
.y9b{bottom:790.665000px;}
.yf0{bottom:792.825000px;}
.y14e{bottom:796.245000px;}
.y1cb{bottom:800.205000px;}
.y187{bottom:800.925000px;}
.y5b{bottom:801.645000px;}
.yb6{bottom:803.805000px;}
.y11{bottom:806.325000px;}
.yee{bottom:806.505000px;}
.y9a{bottom:807.945000px;}
.y14c{bottom:813.525000px;}
.y1ca{bottom:814.065000px;}
.y186{bottom:814.785000px;}
.yb5{bottom:817.665000px;}
.y5a{bottom:818.925000px;}
.yed{bottom:820.365000px;}
.y99{bottom:825.045000px;}
.y1c9{bottom:827.745000px;}
.y185{bottom:828.645000px;}
.y14a{bottom:830.625000px;}
.yb4{bottom:831.525000px;}
.y59{bottom:836.205000px;}
.y98{bottom:841.605000px;}
.y184{bottom:842.325000px;}
.yb3{bottom:845.205000px;}
.ye7{bottom:847.905000px;}
.y149{bottom:848.625000px;}
.y58{bottom:853.485000px;}
.y97{bottom:855.465000px;}
.y183{bottom:856.185000px;}
.yb1{bottom:859.065000px;}
.y148{bottom:869.145000px;}
.y96{bottom:869.865000px;}
.y182{bottom:870.045000px;}
.y57{bottom:870.765000px;}
.yec{bottom:875.625000px;}
.y1c8{bottom:883.005000px;}
.y147{bottom:883.725000px;}
.y95{bottom:887.145000px;}
.y56{bottom:887.865000px;}
.yea{bottom:889.305000px;}
.y1c7{bottom:896.910000px;}
.y181{bottom:897.630000px;}
.yb0{bottom:900.510000px;}
.y146{bottom:901.050000px;}
.y94{bottom:904.470000px;}
.y55{bottom:905.190000px;}
.y1c6{bottom:910.590000px;}
.yf{bottom:911.490000px;}
.yaf{bottom:914.370000px;}
.ye9{bottom:917.070000px;}
.y145{bottom:918.330000px;}
.y93{bottom:921.750000px;}
.y54{bottom:922.470000px;}
.y1c5{bottom:924.450000px;}
.y180{bottom:925.170000px;}
.yae{bottom:928.770000px;}
.ye6{bottom:930.750000px;}
.y144{bottom:934.890000px;}
.y1c4{bottom:938.310000px;}
.y92{bottom:939.030000px;}
.y53{bottom:939.750000px;}
.ye{bottom:943.170000px;}
.ye5{bottom:944.610000px;}
.y143{bottom:948.570000px;}
.y1c3{bottom:951.990000px;}
.y17f{bottom:952.890000px;}
.y91{bottom:956.310000px;}
.y52{bottom:957.030000px;}
.ye4{bottom:958.470000px;}
.yd{bottom:960.450000px;}
.y142{bottom:963.150000px;}
.y1c2{bottom:965.850000px;}
.y17e{bottom:966.570000px;}
.ye3{bottom:972.150000px;}
.y90{bottom:973.410000px;}
.y51{bottom:974.310000px;}
.y1c1{bottom:979.710000px;}
.y141{bottom:980.430000px;}
.yc{bottom:981.510000px;}
.y8f{bottom:990.690000px;}
.y50{bottom:991.410000px;}
.yad{bottom:992.850000px;}
.y1c0{bottom:993.390000px;}
.y17d{bottom:994.290000px;}
.yb{bottom:995.190000px;}
.y140{bottom:997.710000px;}
.ye2{bottom:999.870000px;}
.ya{bottom:1005.270000px;}
.y1bf{bottom:1007.250000px;}
.y8e{bottom:1007.970000px;}
.y4f{bottom:1008.690000px;}
.y13f{bottom:1014.090000px;}
.ye1{bottom:1014.270000px;}
.y1be{bottom:1021.110000px;}
.y17c{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y8d{bottom:1025.250000px;}
.y4e{bottom:1025.970000px;}
.y13e{bottom:1027.950000px;}
.y1bd{bottom:1034.790000px;}
.y17b{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y8c{bottom:1042.530000px;}
.y4d{bottom:1043.250000px;}
.ye0{bottom:1048.650000px;}
.y17a{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y8b{bottom:1059.810000px;}
.y4c{bottom:1060.530000px;}
.ydf{bottom:1062.510000px;}
.y179{bottom:1063.230000px;}
.y1bc{bottom:1076.190000px;}
.y8a{bottom:1076.910000px;}
.y178{bottom:1077.090000px;}
.y4b{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.y1bb{bottom:1090.050000px;}
.y177{bottom:1090.770000px;}
.y89{bottom:1094.190000px;}
.y4a{bottom:1094.910000px;}
.y1ba{bottom:1103.910000px;}
.y176{bottom:1104.630000px;}
.y88{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.y1b9{bottom:1117.590000px;}
.y175{bottom:1118.490000px;}
.y87{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.y1b8{bottom:1131.450000px;}
.y174{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y49{bottom:1160.640000px;}
.y86{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h18{height:13.860000px;}
.h1a{height:13.896000px;}
.h1b{height:17.100000px;}
.h13{height:17.280000px;}
.h7{height:26.280000px;}
.h19{height:27.540000px;}
.h1c{height:27.720000px;}
.h21{height:27.756000px;}
.h6{height:29.678906px;}
.h1f{height:41.400000px;}
.h1d{height:41.436000px;}
.h25{height:47.321367px;}
.h14{height:47.344922px;}
.hd{height:48.410156px;}
.h23{height:48.616875px;}
.h10{height:52.971680px;}
.hc{height:52.998047px;}
.h16{height:53.573906px;}
.h27{height:54.421875px;}
.h22{height:55.260000px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h15{height:59.383125px;}
.h2{height:60.226875px;}
.h12{height:62.211094px;}
.h8{height:70.664062px;}
.h1e{height:82.800000px;}
.h24{height:86.220000px;}
.hf{height:87.480000px;}
.h5{height:96.508125px;}
.h20{height:96.696000px;}
.h9{height:104.436000px;}
.h11{height:113.256000px;}
.h28{height:171.000000px;}
.h26{height:171.030000px;}
.he{height:349.230000px;}
.hb{height:366.195000px;}
.ha{height:454.395000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.240000px;}
.wc{width:23.220000px;}
.w22{width:26.100000px;}
.w16{width:27.540000px;}
.w7{width:29.880000px;}
.wb{width:30.060000px;}
.w23{width:31.860000px;}
.w11{width:31.896000px;}
.w24{width:32.040000px;}
.w1c{width:35.820000px;}
.w21{width:36.000000px;}
.w1d{width:36.180000px;}
.w1e{width:36.360000px;}
.w20{width:36.576000px;}
.w1f{width:36.900000px;}
.w25{width:42.480000px;}
.w10{width:42.660000px;}
.w15{width:53.280000px;}
.we{width:53.316000px;}
.w17{width:56.700000px;}
.w12{width:63.720000px;}
.w13{width:63.900000px;}
.wd{width:66.060000px;}
.w14{width:95.616000px;}
.w8{width:106.380000px;}
.wf{width:116.820000px;}
.w1a{width:127.620000px;}
.w29{width:144.360000px;}
.w18{width:150.690000px;}
.w1b{width:160.050000px;}
.w28{width:198.570000px;}
.w3{width:209.010000px;}
.w26{width:214.770000px;}
.w27{width:244.290000px;}
.wa{width:270.030000px;}
.w9{width:286.995000px;}
.w19{width:309.495000px;}
.w5{width:433.155000px;}
.w2a{width:530.925000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:2.160000px;}
.x30{left:3.420000px;}
.x21{left:4.680000px;}
.x26{left:6.300000px;}
.x9{left:8.100000px;}
.x29{left:9.360000px;}
.xb{left:10.620000px;}
.x28{left:11.700000px;}
.x1f{left:12.780000px;}
.x2c{left:14.580000px;}
.x45{left:16.560000px;}
.x36{left:18.354000px;}
.x2f{left:19.800000px;}
.x2e{left:20.880000px;}
.x23{left:25.020000px;}
.x37{left:27.894000px;}
.x14{left:32.574000px;}
.x34{left:34.920000px;}
.x4c{left:72.174000px;}
.xd{left:106.560000px;}
.x18{left:108.720000px;}
.x16{left:119.025000px;}
.x31{left:121.176000px;}
.x8{left:125.496000px;}
.x1{left:127.655987px;}
.x4a{left:136.254000px;}
.x2{left:146.195987px;}
.x32{left:148.716000px;}
.x1c{left:151.950000px;}
.x10{left:154.649987px;}
.x49{left:159.689987px;}
.x11{left:173.009987px;}
.x1e{left:175.170000px;}
.x13{left:181.649987px;}
.xf{left:191.549987px;}
.x33{left:205.410000px;}
.x15{left:234.030000px;}
.x20{left:241.230000px;}
.x7{left:243.929987px;}
.x6{left:252.209987px;}
.x1a{left:261.749987px;}
.x4b{left:263.910000px;}
.x5{left:277.049987px;}
.x38{left:287.715000px;}
.x22{left:294.555000px;}
.x39{left:323.535000px;}
.xa{left:334.515000px;}
.x47{left:343.155000px;}
.x1b{left:350.534987px;}
.xc{left:355.755000px;}
.x3{left:357.914987px;}
.x3a{left:359.715000px;}
.x3b{left:396.075000px;}
.x24{left:411.375000px;}
.xe{left:425.055000px;}
.x3c{left:432.975000px;}
.x25{left:454.035000px;}
.x4{left:457.274987px;}
.x3d{left:469.545000px;}
.x27{left:485.925000px;}
.x3e{left:505.545000px;}
.x17{left:521.025000px;}
.x3f{left:531.645000px;}
.x2a{left:549.645000px;}
.x40{left:563.505000px;}
.x48{left:587.445000px;}
.x41{left:595.545000px;}
.x2b{left:613.545000px;}
.x42{left:627.405000px;}
.x43{left:659.310000px;}
.x35{left:665.610000px;}
.x19{left:698.549987px;}
.x44{left:701.790000px;}
.x2d{left:709.170000px;}
.x46{left:744.450000px;}
.x12{left:756.870000px;}
@media print{
.v4{vertical-align:-58.240000pt;}
.v5{vertical-align:-56.320000pt;}
.v6{vertical-align:-55.040000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-1.120000pt;}
.ls25{letter-spacing:-0.960000pt;}
.ls1e{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.837333pt;}
.ls23{letter-spacing:-0.682667pt;}
.ls26{letter-spacing:-0.597333pt;}
.ls28{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls22{letter-spacing:-0.478933pt;}
.ls1d{letter-spacing:-0.400533pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.198933pt;}
.ls12{letter-spacing:-0.183467pt;}
.ls1a{letter-spacing:-0.094933pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.030080pt;}
.ls27{letter-spacing:0.040320pt;}
.ls13{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.128640pt;}
.lsc{letter-spacing:0.138880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls24{letter-spacing:0.161067pt;}
.ls1b{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.183680pt;}
.lsf{letter-spacing:0.198933pt;}
.ls6{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.272640pt;}
.ls1f{letter-spacing:0.279467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls21{letter-spacing:2.720000pt;}
.ls14{letter-spacing:5.920000pt;}
.ls16{letter-spacing:9.120000pt;}
.ls18{letter-spacing:53.258667pt;}
.ls3{letter-spacing:58.811307pt;}
.lsa{letter-spacing:99.978667pt;}
.lse{letter-spacing:462.218667pt;}
.ls9{letter-spacing:595.498667pt;}
.lsb{letter-spacing:1159.978667pt;}
.ws14{word-spacing:-53.120000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.374933pt;}
.ws12{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wsf{word-spacing:-13.232640pt;}
.ws11{word-spacing:-13.185067pt;}
.ws10{word-spacing:-13.096533pt;}
.ws0{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws1d{word-spacing:-11.456000pt;}
.wsc{word-spacing:-11.040000pt;}
.ws18{word-spacing:-10.999467pt;}
.wse{word-spacing:-10.918933pt;}
.ws1c{word-spacing:-10.760320pt;}
.wsb{word-spacing:-10.720000pt;}
.ws15{word-spacing:-10.521067pt;}
.wsa{word-spacing:-10.480533pt;}
.wsd{word-spacing:-10.400000pt;}
.ws16{word-spacing:-10.319467pt;}
.ws19{word-spacing:-10.241067pt;}
.ws1b{word-spacing:-10.122667pt;}
.ws17{word-spacing:-9.840000pt;}
.ws1a{word-spacing:-9.760000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:-6.720000pt;}
.ws8{word-spacing:0.000000pt;}
._29{margin-left:-3.262293pt;}
._20{margin-left:-2.294400pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._1a{width:3.505920pt;}
._f{width:4.884480pt;}
._4{width:6.080000pt;}
._a{width:7.033387pt;}
._b{width:8.448000pt;}
._1b{width:10.106027pt;}
._1f{width:11.219200pt;}
._1c{width:12.111787pt;}
._9{width:13.248000pt;}
._8{width:14.256000pt;}
._12{width:15.312000pt;}
._18{width:16.224000pt;}
._26{width:17.242027pt;}
._15{width:18.192000pt;}
._19{width:19.264000pt;}
._17{width:20.640000pt;}
._25{width:21.765547pt;}
._c{width:22.944000pt;}
._d{width:23.882667pt;}
._6{width:25.968000pt;}
._7{width:26.863360pt;}
._e{width:28.225920pt;}
._27{width:30.012800pt;}
._28{width:30.982187pt;}
._2b{width:32.705280pt;}
._2d{width:34.991147pt;}
._11{width:37.096320pt;}
._10{width:38.400000pt;}
._14{width:39.308160pt;}
._13{width:40.320000pt;}
._2a{width:44.551040pt;}
._16{width:50.688000pt;}
._2e{width:51.918080pt;}
._2c{width:53.180587pt;}
._2f{width:54.403413pt;}
._30{width:62.384000pt;}
._31{width:63.520000pt;}
._24{width:90.920320pt;}
._5{width:138.400000pt;}
._23{width:309.947307pt;}
._1d{width:452.521387pt;}
._21{width:653.920000pt;}
._1e{width:769.499307pt;}
._22{width:953.866667pt;}
._3{width:979.477333pt;}
.fs3{font-size:26.880000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs7{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:2.240000pt;}
.y2f{bottom:2.560000pt;}
.y10{bottom:2.880000pt;}
.y14d{bottom:3.200000pt;}
.y14b{bottom:3.360000pt;}
.y37{bottom:8.000000pt;}
.y3d{bottom:10.880000pt;}
.yf5{bottom:14.400000pt;}
.y72{bottom:14.560000pt;}
.yeb{bottom:14.600000pt;}
.y2e{bottom:16.480000pt;}
.y15{bottom:18.240000pt;}
.y3c{bottom:26.240000pt;}
.yb2{bottom:26.720000pt;}
.ybb{bottom:26.880000pt;}
.y2d{bottom:30.240000pt;}
.y14{bottom:33.600000pt;}
.yba{bottom:39.040000pt;}
.y3b{bottom:41.640000pt;}
.y2c{bottom:44.000000pt;}
.y152{bottom:48.800000pt;}
.y13{bottom:48.960000pt;}
.yb9{bottom:51.360000pt;}
.y3a{bottom:57.000000pt;}
.y20b{bottom:57.160000pt;}
.y2b{bottom:57.760000pt;}
.y36{bottom:58.560000pt;}
.yb8{bottom:63.680000pt;}
.y151{bottom:64.160000pt;}
.y213{bottom:70.880000pt;}
.y20a{bottom:70.920000pt;}
.y2a{bottom:71.520000pt;}
.y12{bottom:72.320000pt;}
.ye8{bottom:75.880000pt;}
.y5{bottom:78.400000pt;}
.y39{bottom:80.200000pt;}
.y209{bottom:84.680000pt;}
.y212{bottom:84.800000pt;}
.y202{bottom:84.826667pt;}
.y29{bottom:85.466667pt;}
.y211{bottom:98.560000pt;}
.y201{bottom:98.586667pt;}
.y208{bottom:98.600000pt;}
.y28{bottom:99.226667pt;}
.y85{bottom:101.920000pt;}
.yde{bottom:103.360000pt;}
.y1b7{bottom:110.880000pt;}
.y117{bottom:111.840000pt;}
.y210{bottom:112.320000pt;}
.y207{bottom:112.360000pt;}
.y200{bottom:112.506667pt;}
.y27{bottom:112.986667pt;}
.y13d{bottom:114.560000pt;}
.y84{bottom:117.120000pt;}
.ydd{bottom:118.720000pt;}
.y1b6{bottom:123.232000pt;}
.y20f{bottom:126.080000pt;}
.y206{bottom:126.120000pt;}
.y1ff{bottom:126.266667pt;}
.y26{bottom:126.746667pt;}
.y116{bottom:127.232000pt;}
.y13c{bottom:129.952000pt;}
.y83{bottom:132.512000pt;}
.y173{bottom:132.832000pt;}
.ydc{bottom:134.106667pt;}
.y1f9{bottom:134.746667pt;}
.y1b5{bottom:135.386667pt;}
.yac{bottom:136.026667pt;}
.y48{bottom:136.506667pt;}
.y20e{bottom:139.840000pt;}
.y205{bottom:139.880000pt;}
.y1fe{bottom:140.026667pt;}
.y25{bottom:140.666667pt;}
.y115{bottom:142.586667pt;}
.y214{bottom:143.066667pt;}
.y172{bottom:144.986667pt;}
.y13b{bottom:145.306667pt;}
.y1f8{bottom:147.066667pt;}
.y1b4{bottom:147.706667pt;}
.y82{bottom:147.866667pt;}
.ydb{bottom:149.466667pt;}
.yab{bottom:151.386667pt;}
.y47{bottom:151.866667pt;}
.y24{bottom:154.426667pt;}
.y20d{bottom:155.546667pt;}
.y171{bottom:157.306667pt;}
.y114{bottom:157.946667pt;}
.y1f7{bottom:159.226667pt;}
.y1b3{bottom:160.026667pt;}
.y13a{bottom:160.666667pt;}
.y81{bottom:163.226667pt;}
.yda{bottom:164.666667pt;}
.yaa{bottom:166.586667pt;}
.y46{bottom:167.066667pt;}
.y23{bottom:168.186667pt;}
.y170{bottom:169.626667pt;}
.y1f6{bottom:171.546667pt;}
.y1b2{bottom:172.186667pt;}
.y113{bottom:173.306667pt;}
.y139{bottom:175.866667pt;}
.y80{bottom:178.586667pt;}
.yd9{bottom:180.026667pt;}
.y16f{bottom:181.786667pt;}
.y22{bottom:181.946667pt;}
.y45{bottom:182.426667pt;}
.y1f5{bottom:183.866667pt;}
.y1b1{bottom:184.506667pt;}
.y112{bottom:188.666667pt;}
.y138{bottom:191.226667pt;}
.y7f{bottom:193.946667pt;}
.y16e{bottom:194.106667pt;}
.yd8{bottom:195.386667pt;}
.y21{bottom:195.866667pt;}
.y1f4{bottom:196.026667pt;}
.y1b0{bottom:196.826667pt;}
.ya9{bottom:197.306667pt;}
.y44{bottom:197.786667pt;}
.y111{bottom:203.866667pt;}
.y35{bottom:205.306667pt;}
.y16d{bottom:206.426667pt;}
.y137{bottom:206.586667pt;}
.y1f3{bottom:208.346667pt;}
.y1af{bottom:208.986667pt;}
.y7e{bottom:209.146667pt;}
.y20{bottom:209.626667pt;}
.yd7{bottom:210.746667pt;}
.ya8{bottom:212.666667pt;}
.y43{bottom:213.146667pt;}
.y16c{bottom:218.586667pt;}
.y110{bottom:219.226667pt;}
.y34{bottom:220.666667pt;}
.y1ae{bottom:221.306667pt;}
.y136{bottom:221.946667pt;}
.y1f{bottom:223.386667pt;}
.y7d{bottom:224.506667pt;}
.yd6{bottom:226.106667pt;}
.ya7{bottom:228.026667pt;}
.y42{bottom:228.506667pt;}
.y16b{bottom:230.906667pt;}
.y1f2{bottom:232.826667pt;}
.y1ad{bottom:233.626667pt;}
.y10f{bottom:234.586667pt;}
.y33{bottom:236.026667pt;}
.y1e{bottom:237.146667pt;}
.y135{bottom:237.306667pt;}
.y7c{bottom:239.866667pt;}
.yd5{bottom:241.466667pt;}
.y16a{bottom:243.226667pt;}
.ya6{bottom:243.386667pt;}
.y41{bottom:243.866667pt;}
.y1f1{bottom:245.146667pt;}
.y1ac{bottom:245.786667pt;}
.y10e{bottom:249.946667pt;}
.y1d{bottom:251.066667pt;}
.y32{bottom:251.386667pt;}
.y134{bottom:252.666667pt;}
.y7b{bottom:255.226667pt;}
.y169{bottom:255.386667pt;}
.yd4{bottom:256.666667pt;}
.y1f0{bottom:257.466667pt;}
.y1ab{bottom:258.106667pt;}
.ya5{bottom:258.586667pt;}
.y40{bottom:259.066667pt;}
.y1c{bottom:264.826667pt;}
.y10d{bottom:265.306667pt;}
.y31{bottom:266.746667pt;}
.y168{bottom:267.706667pt;}
.y133{bottom:267.866667pt;}
.y1ef{bottom:269.626667pt;}
.y1aa{bottom:270.426667pt;}
.y7a{bottom:270.586667pt;}
.yd3{bottom:272.026667pt;}
.ya4{bottom:273.946667pt;}
.y3f{bottom:274.426667pt;}
.y1b{bottom:278.586667pt;}
.y167{bottom:280.026667pt;}
.y10c{bottom:280.666667pt;}
.y1ee{bottom:281.946667pt;}
.y1a9{bottom:282.586667pt;}
.y132{bottom:283.226667pt;}
.y79{bottom:285.146667pt;}
.yd2{bottom:287.386667pt;}
.ya3{bottom:288.986667pt;}
.y3e{bottom:289.786667pt;}
.y30{bottom:289.946667pt;}
.y166{bottom:292.186667pt;}
.y1a{bottom:292.346667pt;}
.y1ed{bottom:294.266667pt;}
.y1a8{bottom:294.906667pt;}
.y10b{bottom:295.866667pt;}
.y78{bottom:297.466667pt;}
.y131{bottom:298.586667pt;}
.ya2{bottom:302.746667pt;}
.y38{bottom:304.186667pt;}
.y165{bottom:304.506667pt;}
.y19{bottom:306.266667pt;}
.y1ec{bottom:306.426667pt;}
.y1a7{bottom:307.226667pt;}
.y20c{bottom:307.546667pt;}
.y77{bottom:308.186667pt;}
.y10a{bottom:311.226667pt;}
.y130{bottom:313.946667pt;}
.ya1{bottom:316.826667pt;}
.yd1{bottom:318.106667pt;}
.y1eb{bottom:318.746667pt;}
.y1a6{bottom:319.386667pt;}
.y204{bottom:319.866667pt;}
.y76{bottom:320.506667pt;}
.y109{bottom:326.586667pt;}
.y164{bottom:328.986667pt;}
.y12f{bottom:329.306667pt;}
.y1ea{bottom:331.066667pt;}
.ya0{bottom:331.546667pt;}
.y1a5{bottom:331.706667pt;}
.y75{bottom:332.666667pt;}
.yd0{bottom:333.466667pt;}
.y163{bottom:341.306667pt;}
.y9f{bottom:341.626667pt;}
.y108{bottom:341.946667pt;}
.y1e9{bottom:343.226667pt;}
.y1a4{bottom:344.026667pt;}
.y12e{bottom:344.706667pt;}
.y74{bottom:345.026667pt;}
.ycf{bottom:348.706667pt;}
.y162{bottom:353.666667pt;}
.y1e8{bottom:355.586667pt;}
.y1a3{bottom:356.226667pt;}
.y107{bottom:357.346667pt;}
.y12d{bottom:359.906667pt;}
.yce{bottom:364.066667pt;}
.y161{bottom:365.826667pt;}
.y1e7{bottom:367.906667pt;}
.y1a2{bottom:368.546667pt;}
.y73{bottom:369.506667pt;}
.y106{bottom:372.706667pt;}
.y12c{bottom:375.266667pt;}
.y160{bottom:378.146667pt;}
.ycd{bottom:379.426667pt;}
.y1e6{bottom:380.066667pt;}
.y1a1{bottom:380.866667pt;}
.y71{bottom:381.826667pt;}
.y17{bottom:383.386667pt;}
.y105{bottom:387.906667pt;}
.y15f{bottom:390.466667pt;}
.y12b{bottom:390.626667pt;}
.y1e5{bottom:392.386667pt;}
.y1a0{bottom:393.026667pt;}
.ycc{bottom:394.786667pt;}
.y15e{bottom:402.626667pt;}
.y104{bottom:403.266667pt;}
.y1e4{bottom:404.706667pt;}
.y19f{bottom:405.346667pt;}
.y16{bottom:405.666667pt;}
.y12a{bottom:405.986667pt;}
.y70{bottom:406.306667pt;}
.ycb{bottom:410.146667pt;}
.y15d{bottom:414.946667pt;}
.y1e3{bottom:416.866667pt;}
.y19e{bottom:417.666667pt;}
.y6f{bottom:418.626667pt;}
.y129{bottom:421.346667pt;}
.yca{bottom:425.346667pt;}
.y15c{bottom:427.106667pt;}
.y1e2{bottom:429.186667pt;}
.y19d{bottom:429.826667pt;}
.y6d{bottom:431.586667pt;}
.y103{bottom:433.986667pt;}
.y128{bottom:436.546667pt;}
.y15b{bottom:440.066667pt;}
.yc9{bottom:440.706667pt;}
.y1e1{bottom:441.506667pt;}
.y19c{bottom:442.146667pt;}
.y102{bottom:449.346667pt;}
.y127{bottom:451.906667pt;}
.y1e0{bottom:453.666667pt;}
.y19b{bottom:454.306667pt;}
.y15a{bottom:454.786667pt;}
.yc8{bottom:456.066667pt;}
.y6c{bottom:461.986667pt;}
.y101{bottom:464.546667pt;}
.y1df{bottom:465.986667pt;}
.y19a{bottom:466.626667pt;}
.y159{bottom:467.106667pt;}
.y126{bottom:467.266667pt;}
.yc7{bottom:471.426667pt;}
.y203{bottom:471.906667pt;}
.y6b{bottom:474.306667pt;}
.y1de{bottom:478.306667pt;}
.y199{bottom:478.946667pt;}
.y100{bottom:479.906667pt;}
.y125{bottom:482.626667pt;}
.y18{bottom:484.066667pt;}
.yc6{bottom:486.786667pt;}
.y6a{bottom:487.266667pt;}
.y1dd{bottom:490.466667pt;}
.y198{bottom:491.106667pt;}
.yff{bottom:495.266667pt;}
.y124{bottom:497.986667pt;}
.yc5{bottom:502.146667pt;}
.y69{bottom:502.626667pt;}
.y1dc{bottom:502.786667pt;}
.y197{bottom:503.426667pt;}
.yfe{bottom:510.626667pt;}
.y123{bottom:513.346667pt;}
.y1db{bottom:515.106667pt;}
.y196{bottom:515.746667pt;}
.yc4{bottom:517.346667pt;}
.y68{bottom:517.826667pt;}
.yfd{bottom:525.986667pt;}
.y1da{bottom:527.266667pt;}
.y195{bottom:527.906667pt;}
.y122{bottom:528.546667pt;}
.yc3{bottom:532.706667pt;}
.y67{bottom:533.186667pt;}
.y1d9{bottom:539.586667pt;}
.y194{bottom:540.226667pt;}
.y158{bottom:540.706667pt;}
.yfc{bottom:541.346667pt;}
.y121{bottom:543.906667pt;}
.yc2{bottom:548.066667pt;}
.y66{bottom:548.546667pt;}
.y1d8{bottom:551.906667pt;}
.y193{bottom:552.546667pt;}
.y157{bottom:552.866667pt;}
.yfb{bottom:556.546667pt;}
.y120{bottom:559.266667pt;}
.yc1{bottom:563.426667pt;}
.y65{bottom:563.906667pt;}
.y1d7{bottom:564.066667pt;}
.y192{bottom:564.706667pt;}
.y156{bottom:565.826667pt;}
.yfa{bottom:571.293333pt;}
.y11f{bottom:574.653333pt;}
.y1d6{bottom:576.413333pt;}
.y191{bottom:577.053333pt;}
.yc0{bottom:578.813333pt;}
.y64{bottom:579.293333pt;}
.y155{bottom:581.213333pt;}
.yf9{bottom:583.613333pt;}
.y1d5{bottom:588.733333pt;}
.y190{bottom:589.373333pt;}
.y11e{bottom:590.013333pt;}
.ybf{bottom:593.533333pt;}
.yf8{bottom:594.333333pt;}
.y63{bottom:594.493333pt;}
.y154{bottom:595.933333pt;}
.y1d4{bottom:600.893333pt;}
.y18f{bottom:601.533333pt;}
.y11d{bottom:605.373333pt;}
.ybe{bottom:605.693333pt;}
.yf7{bottom:606.493333pt;}
.y153{bottom:608.093333pt;}
.y62{bottom:610.333333pt;}
.y1d3{bottom:613.213333pt;}
.y18e{bottom:613.853333pt;}
.ybd{bottom:616.413333pt;}
.y150{bottom:618.173333pt;}
.yf6{bottom:618.813333pt;}
.y11c{bottom:620.573333pt;}
.y1d2{bottom:625.533333pt;}
.y18d{bottom:626.173333pt;}
.y61{bottom:626.813333pt;}
.ybc{bottom:628.733333pt;}
.y9e{bottom:628.893333pt;}
.yf4{bottom:631.133333pt;}
.y11b{bottom:635.933333pt;}
.y1d1{bottom:637.693333pt;}
.y18c{bottom:638.333333pt;}
.y1fd{bottom:638.973333pt;}
.yb7{bottom:640.893333pt;}
.y60{bottom:642.173333pt;}
.y1d0{bottom:650.013333pt;}
.y18b{bottom:650.653333pt;}
.y11a{bottom:651.293333pt;}
.y1fc{bottom:654.333333pt;}
.yf3{bottom:655.613333pt;}
.y9d{bottom:656.733333pt;}
.y5f{bottom:657.373333pt;}
.y1cf{bottom:662.333333pt;}
.y18a{bottom:662.973333pt;}
.y119{bottom:666.653333pt;}
.yf2{bottom:667.933333pt;}
.y1fb{bottom:669.693333pt;}
.y5e{bottom:672.093333pt;}
.y1ce{bottom:674.493333pt;}
.y189{bottom:675.133333pt;}
.yef{bottom:680.093333pt;}
.y118{bottom:682.013333pt;}
.y5d{bottom:684.413333pt;}
.y1fa{bottom:685.053333pt;}
.y1cd{bottom:686.813333pt;}
.y9c{bottom:687.453333pt;}
.yf1{bottom:692.413333pt;}
.y14f{bottom:697.053333pt;}
.y5c{bottom:697.373333pt;}
.y1cc{bottom:699.133333pt;}
.y188{bottom:699.773333pt;}
.y9b{bottom:702.813333pt;}
.yf0{bottom:704.733333pt;}
.y14e{bottom:707.773333pt;}
.y1cb{bottom:711.293333pt;}
.y187{bottom:711.933333pt;}
.y5b{bottom:712.573333pt;}
.yb6{bottom:714.493333pt;}
.y11{bottom:716.733333pt;}
.yee{bottom:716.893333pt;}
.y9a{bottom:718.173333pt;}
.y14c{bottom:723.133333pt;}
.y1ca{bottom:723.613333pt;}
.y186{bottom:724.253333pt;}
.yb5{bottom:726.813333pt;}
.y5a{bottom:727.933333pt;}
.yed{bottom:729.213333pt;}
.y99{bottom:733.373333pt;}
.y1c9{bottom:735.773333pt;}
.y185{bottom:736.573333pt;}
.y14a{bottom:738.333333pt;}
.yb4{bottom:739.133333pt;}
.y59{bottom:743.293333pt;}
.y98{bottom:748.093333pt;}
.y184{bottom:748.733333pt;}
.yb3{bottom:751.293333pt;}
.ye7{bottom:753.693333pt;}
.y149{bottom:754.333333pt;}
.y58{bottom:758.653333pt;}
.y97{bottom:760.413333pt;}
.y183{bottom:761.053333pt;}
.yb1{bottom:763.613333pt;}
.y148{bottom:772.573333pt;}
.y96{bottom:773.213333pt;}
.y182{bottom:773.373333pt;}
.y57{bottom:774.013333pt;}
.yec{bottom:778.333333pt;}
.y1c8{bottom:784.893333pt;}
.y147{bottom:785.533333pt;}
.y95{bottom:788.573333pt;}
.y56{bottom:789.213333pt;}
.yea{bottom:790.493333pt;}
.y1c7{bottom:797.253333pt;}
.y181{bottom:797.893333pt;}
.yb0{bottom:800.453333pt;}
.y146{bottom:800.933333pt;}
.y94{bottom:803.973333pt;}
.y55{bottom:804.613333pt;}
.y1c6{bottom:809.413333pt;}
.yf{bottom:810.213333pt;}
.yaf{bottom:812.773333pt;}
.ye9{bottom:815.173333pt;}
.y145{bottom:816.293333pt;}
.y93{bottom:819.333333pt;}
.y54{bottom:819.973333pt;}
.y1c5{bottom:821.733333pt;}
.y180{bottom:822.373333pt;}
.yae{bottom:825.573333pt;}
.ye6{bottom:827.333333pt;}
.y144{bottom:831.013333pt;}
.y1c4{bottom:834.053333pt;}
.y92{bottom:834.693333pt;}
.y53{bottom:835.333333pt;}
.ye{bottom:838.373333pt;}
.ye5{bottom:839.653333pt;}
.y143{bottom:843.173333pt;}
.y1c3{bottom:846.213333pt;}
.y17f{bottom:847.013333pt;}
.y91{bottom:850.053333pt;}
.y52{bottom:850.693333pt;}
.ye4{bottom:851.973333pt;}
.yd{bottom:853.733333pt;}
.y142{bottom:856.133333pt;}
.y1c2{bottom:858.533333pt;}
.y17e{bottom:859.173333pt;}
.ye3{bottom:864.133333pt;}
.y90{bottom:865.253333pt;}
.y51{bottom:866.053333pt;}
.y1c1{bottom:870.853333pt;}
.y141{bottom:871.493333pt;}
.yc{bottom:872.453333pt;}
.y8f{bottom:880.613333pt;}
.y50{bottom:881.253333pt;}
.yad{bottom:882.533333pt;}
.y1c0{bottom:883.013333pt;}
.y17d{bottom:883.813333pt;}
.yb{bottom:884.613333pt;}
.y140{bottom:886.853333pt;}
.ye2{bottom:888.773333pt;}
.ya{bottom:893.573333pt;}
.y1bf{bottom:895.333333pt;}
.y8e{bottom:895.973333pt;}
.y4f{bottom:896.613333pt;}
.y13f{bottom:901.413333pt;}
.ye1{bottom:901.573333pt;}
.y1be{bottom:907.653333pt;}
.y17c{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y8d{bottom:911.333333pt;}
.y4e{bottom:911.973333pt;}
.y13e{bottom:913.733333pt;}
.y1bd{bottom:919.813333pt;}
.y17b{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y8c{bottom:926.693333pt;}
.y4d{bottom:927.333333pt;}
.ye0{bottom:932.133333pt;}
.y17a{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y8b{bottom:942.053333pt;}
.y4c{bottom:942.693333pt;}
.ydf{bottom:944.453333pt;}
.y179{bottom:945.093333pt;}
.y1bc{bottom:956.613333pt;}
.y8a{bottom:957.253333pt;}
.y178{bottom:957.413333pt;}
.y4b{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.y1bb{bottom:968.933333pt;}
.y177{bottom:969.573333pt;}
.y89{bottom:972.613333pt;}
.y4a{bottom:973.253333pt;}
.y1ba{bottom:981.253333pt;}
.y176{bottom:981.893333pt;}
.y88{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.y1b9{bottom:993.413333pt;}
.y175{bottom:994.213333pt;}
.y87{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.y1b8{bottom:1005.733333pt;}
.y174{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y49{bottom:1031.680000pt;}
.y86{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h18{height:12.320000pt;}
.h1a{height:12.352000pt;}
.h1b{height:15.200000pt;}
.h13{height:15.360000pt;}
.h7{height:23.360000pt;}
.h19{height:24.480000pt;}
.h1c{height:24.640000pt;}
.h21{height:24.672000pt;}
.h6{height:26.381250pt;}
.h1f{height:36.800000pt;}
.h1d{height:36.832000pt;}
.h25{height:42.063437pt;}
.h14{height:42.084375pt;}
.hd{height:43.031250pt;}
.h23{height:43.215000pt;}
.h10{height:47.085938pt;}
.hc{height:47.109375pt;}
.h16{height:47.621250pt;}
.h27{height:48.375000pt;}
.h22{height:49.120000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h15{height:52.785000pt;}
.h2{height:53.535000pt;}
.h12{height:55.298750pt;}
.h8{height:62.812500pt;}
.h1e{height:73.600000pt;}
.h24{height:76.640000pt;}
.hf{height:77.760000pt;}
.h5{height:85.785000pt;}
.h20{height:85.952000pt;}
.h9{height:92.832000pt;}
.h11{height:100.672000pt;}
.h28{height:152.000000pt;}
.h26{height:152.026667pt;}
.he{height:310.426667pt;}
.hb{height:325.506667pt;}
.ha{height:403.906667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.880000pt;}
.wc{width:20.640000pt;}
.w22{width:23.200000pt;}
.w16{width:24.480000pt;}
.w7{width:26.560000pt;}
.wb{width:26.720000pt;}
.w23{width:28.320000pt;}
.w11{width:28.352000pt;}
.w24{width:28.480000pt;}
.w1c{width:31.840000pt;}
.w21{width:32.000000pt;}
.w1d{width:32.160000pt;}
.w1e{width:32.320000pt;}
.w20{width:32.512000pt;}
.w1f{width:32.800000pt;}
.w25{width:37.760000pt;}
.w10{width:37.920000pt;}
.w15{width:47.360000pt;}
.we{width:47.392000pt;}
.w17{width:50.400000pt;}
.w12{width:56.640000pt;}
.w13{width:56.800000pt;}
.wd{width:58.720000pt;}
.w14{width:84.992000pt;}
.w8{width:94.560000pt;}
.wf{width:103.840000pt;}
.w1a{width:113.440000pt;}
.w29{width:128.320000pt;}
.w18{width:133.946667pt;}
.w1b{width:142.266667pt;}
.w28{width:176.506667pt;}
.w3{width:185.786667pt;}
.w26{width:190.906667pt;}
.w27{width:217.146667pt;}
.wa{width:240.026667pt;}
.w9{width:255.106667pt;}
.w19{width:275.106667pt;}
.w5{width:385.026667pt;}
.w2a{width:471.933333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.920000pt;}
.x30{left:3.040000pt;}
.x21{left:4.160000pt;}
.x26{left:5.600000pt;}
.x9{left:7.200000pt;}
.x29{left:8.320000pt;}
.xb{left:9.440000pt;}
.x28{left:10.400000pt;}
.x1f{left:11.360000pt;}
.x2c{left:12.960000pt;}
.x45{left:14.720000pt;}
.x36{left:16.314667pt;}
.x2f{left:17.600000pt;}
.x2e{left:18.560000pt;}
.x23{left:22.240000pt;}
.x37{left:24.794667pt;}
.x14{left:28.954667pt;}
.x34{left:31.040000pt;}
.x4c{left:64.154667pt;}
.xd{left:94.720000pt;}
.x18{left:96.640000pt;}
.x16{left:105.800000pt;}
.x31{left:107.712000pt;}
.x8{left:111.552000pt;}
.x1{left:113.471988pt;}
.x4a{left:121.114667pt;}
.x2{left:129.951988pt;}
.x32{left:132.192000pt;}
.x1c{left:135.066667pt;}
.x10{left:137.466655pt;}
.x49{left:141.946655pt;}
.x11{left:153.786655pt;}
.x1e{left:155.706667pt;}
.x13{left:161.466655pt;}
.xf{left:170.266655pt;}
.x33{left:182.586667pt;}
.x15{left:208.026667pt;}
.x20{left:214.426667pt;}
.x7{left:216.826655pt;}
.x6{left:224.186655pt;}
.x1a{left:232.666655pt;}
.x4b{left:234.586667pt;}
.x5{left:246.266655pt;}
.x38{left:255.746667pt;}
.x22{left:261.826667pt;}
.x39{left:287.586667pt;}
.xa{left:297.346667pt;}
.x47{left:305.026667pt;}
.x1b{left:311.586655pt;}
.xc{left:316.226667pt;}
.x3{left:318.146655pt;}
.x3a{left:319.746667pt;}
.x3b{left:352.066667pt;}
.x24{left:365.666667pt;}
.xe{left:377.826667pt;}
.x3c{left:384.866667pt;}
.x25{left:403.586667pt;}
.x4{left:406.466655pt;}
.x3d{left:417.373333pt;}
.x27{left:431.933333pt;}
.x3e{left:449.373333pt;}
.x17{left:463.133333pt;}
.x3f{left:472.573333pt;}
.x2a{left:488.573333pt;}
.x40{left:500.893333pt;}
.x48{left:522.173333pt;}
.x41{left:529.373333pt;}
.x2b{left:545.373333pt;}
.x42{left:557.693333pt;}
.x43{left:586.053333pt;}
.x35{left:591.653333pt;}
.x19{left:620.933322pt;}
.x44{left:623.813333pt;}
.x2d{left:630.373333pt;}
.x46{left:661.733333pt;}
.x12{left:672.773333pt;}
}




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