
    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_c2abe9164aa8ec9e61e6ef8a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_129d2775c8967189bbc5ca21.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_378ec49edc489a6b60248f30.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_77ef59866ec30d07bf5af428.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_d4a7060f469a0ab460e0d28a.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_702283d2c45f88c3391e3903.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_739db26a5a715e8181525b6e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4cb30570ac687cc31a0aa7a8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.v1{vertical-align:-107.280000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls15{letter-spacing:-0.936000px;}
.ls13{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls29{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.216000px;}
.ls21{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.109200px;}
.lsf{letter-spacing:-0.072000px;}
.ls9{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls1a{letter-spacing:0.109200px;}
.ls22{letter-spacing:0.120000px;}
.ls1{letter-spacing:0.144000px;}
.ls28{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.180000px;}
.ls1b{letter-spacing:0.262200px;}
.ls18{letter-spacing:0.269400px;}
.ls2{letter-spacing:0.305280px;}
.ls1d{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.432000px;}
.ls16{letter-spacing:0.672000px;}
.ls6{letter-spacing:0.900000px;}
.lsb{letter-spacing:1.440000px;}
.ls11{letter-spacing:4.320000px;}
.ls24{letter-spacing:5.760000px;}
.ls27{letter-spacing:6.480000px;}
.ls20{letter-spacing:7.380000px;}
.ls25{letter-spacing:7.920000px;}
.lsd{letter-spacing:9.360000px;}
.ls26{letter-spacing:10.080000px;}
.lse{letter-spacing:11.664000px;}
.ls1f{letter-spacing:12.240000px;}
.ls1c{letter-spacing:12.545280px;}
.ls23{letter-spacing:13.680000px;}
.ls12{letter-spacing:15.240000px;}
.lsa{letter-spacing:15.840000px;}
.ls19{letter-spacing:16.145280px;}
.ls3{letter-spacing:1335.756000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.064000px;}
.ws12{word-spacing:-16.865400px;}
.ws11{word-spacing:-16.822200px;}
.ws16{word-spacing:-16.712400px;}
.ws10{word-spacing:-16.669200px;}
.wsf{word-spacing:-16.560000px;}
.ws13{word-spacing:-16.450800px;}
.ws15{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.220000px;}
.wsc{word-spacing:-12.732000px;}
.wse{word-spacing:-12.329400px;}
.wsd{word-spacing:-11.836200px;}
.ws4{word-spacing:-11.340000px;}
.ws2{word-spacing:-0.383760px;}
.ws7{word-spacing:0.000000px;}
._1c{margin-left:-10.104000px;}
._d{margin-left:-2.226000px;}
._1{margin-left:-1.197120px;}
._0{width:1.434240px;}
._6{width:3.111840px;}
._b{width:4.242960px;}
._c{width:5.738880px;}
._3{width:7.194480px;}
._2{width:8.246880px;}
._7{width:9.322560px;}
._8{width:11.122080px;}
._9{width:12.141840px;}
._a{width:13.848000px;}
._14{width:15.480000px;}
._4{width:17.151120px;}
._5{width:18.824400px;}
._19{width:19.983600px;}
._1d{width:21.724080px;}
._1a{width:22.968000px;}
._12{width:24.336000px;}
._13{width:25.349760px;}
._e{width:26.712000px;}
._f{width:27.912000px;}
._10{width:29.021760px;}
._1b{width:30.306240px;}
._20{width:31.998240px;}
._15{width:35.976000px;}
._21{width:37.690560px;}
._22{width:38.692080px;}
._16{width:41.832000px;}
._17{width:42.978000px;}
._18{width:44.598000px;}
._1e{width:49.877760px;}
._1f{width:63.969120px;}
._11{width:151.896000px;}
.fc2{color:rgb(0,51,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs5{font-size:95.760000px;}
.fs2{font-size:239.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:0.900000px;}
.y42{bottom:3.600000px;}
.y6e{bottom:3.780000px;}
.yc{bottom:3.960000px;}
.yd{bottom:4.320000px;}
.ya9{bottom:5.580000px;}
.y217{bottom:6.294000px;}
.y1f7{bottom:6.300000px;}
.y1f9{bottom:6.480000px;}
.yaf{bottom:7.020000px;}
.yb0{bottom:7.380000px;}
.y152{bottom:7.740000px;}
.y154{bottom:8.100000px;}
.y13e{bottom:8.640000px;}
.y12d{bottom:8.670000px;}
.yac{bottom:10.080000px;}
.yec{bottom:10.260000px;}
.yad{bottom:10.440000px;}
.y13f{bottom:12.570000px;}
.y113{bottom:12.960000px;}
.y10f{bottom:13.140000px;}
.y114{bottom:13.320000px;}
.yaa{bottom:15.120000px;}
.y116{bottom:15.300000px;}
.y117{bottom:15.660000px;}
.yf4{bottom:16.380000px;}
.y12e{bottom:17.280000px;}
.y146{bottom:19.800000px;}
.y14b{bottom:21.420000px;}
.yb{bottom:21.600000px;}
.y111{bottom:22.500000px;}
.y1f5{bottom:22.680000px;}
.yf1{bottom:23.580000px;}
.ya{bottom:24.480000px;}
.ya8{bottom:24.660000px;}
.ya7{bottom:26.820000px;}
.y144{bottom:29.520000px;}
.y148{bottom:29.880000px;}
.yf5{bottom:30.240000px;}
.y14c{bottom:31.320000px;}
.y10e{bottom:32.040000px;}
.yeb{bottom:37.080000px;}
.ye9{bottom:37.440000px;}
.y6c{bottom:37.620000px;}
.y4{bottom:38.340000px;}
.y145{bottom:38.700000px;}
.y14a{bottom:40.530000px;}
.y1f1{bottom:41.580000px;}
.y110{bottom:41.610000px;}
.y9{bottom:41.760000px;}
.y10d{bottom:41.970000px;}
.yf3{bottom:43.380000px;}
.yef{bottom:50.580000px;}
.y1f2{bottom:51.120000px;}
.y6b{bottom:54.900000px;}
.y3{bottom:58.320000px;}
.y8{bottom:59.040000px;}
.y1f4{bottom:60.480000px;}
.yf7{bottom:63.900000px;}
.yed{bottom:64.080000px;}
.yf8{bottom:64.260000px;}
.ye8{bottom:64.440000px;}
.y137{bottom:67.680000px;}
.y6a{bottom:72.216000px;}
.y2{bottom:75.636000px;}
.yf0{bottom:77.400000px;}
.y1f3{bottom:79.560000px;}
.y132{bottom:82.650000px;}
.yee{bottom:90.945000px;}
.ye7{bottom:91.305000px;}
.y122{bottom:92.670000px;}
.y1{bottom:92.916000px;}
.y130{bottom:108.510000px;}
.yd9{bottom:112.356000px;}
.yb1{bottom:113.796000px;}
.y123{bottom:114.840000px;}
.y1b8{bottom:115.416000px;}
.y9b{bottom:115.596000px;}
.y95{bottom:115.956000px;}
.ye6{bottom:118.305000px;}
.yc6{bottom:118.476000px;}
.y138{bottom:119.415000px;}
.y3e{bottom:121.356000px;}
.y127{bottom:121.785000px;}
.y99{bottom:124.956000px;}
.y1ee{bottom:125.676000px;}
.yae{bottom:129.456000px;}
.y218{bottom:130.716000px;}
.yd8{bottom:131.256000px;}
.y1b7{bottom:134.316000px;}
.y131{bottom:134.385000px;}
.y15e{bottom:135.036000px;}
.y124{bottom:137.010000px;}
.y3d{bottom:138.456000px;}
.y94{bottom:142.956000px;}
.y1ed{bottom:144.756000px;}
.yc5{bottom:145.296000px;}
.ye5{bottom:145.845000px;}
.y216{bottom:146.376000px;}
.y10b{bottom:146.736000px;}
.yd7{bottom:150.330000px;}
.y98{bottom:151.950000px;}
.y1b6{bottom:153.390000px;}
.y18e{bottom:154.110000px;}
.y126{bottom:154.875000px;}
.yab{bottom:156.090000px;}
.y3c{bottom:156.450000px;}
.y134{bottom:160.020000px;}
.y136{bottom:160.095000px;}
.y120{bottom:160.590000px;}
.y68{bottom:160.950000px;}
.y15d{bottom:161.850000px;}
.y1ec{bottom:163.650000px;}
.y128{bottom:166.140000px;}
.yd6{bottom:169.230000px;}
.y93{bottom:169.770000px;}
.y215{bottom:170.850000px;}
.y139{bottom:171.105000px;}
.yc4{bottom:172.290000px;}
.y18d{bottom:173.010000px;}
.y10a{bottom:173.730000px;}
.y97{bottom:175.350000px;}
.y3b{bottom:176.430000px;}
.y163{bottom:178.770000px;}
.y11f{bottom:180.930000px;}
.y1eb{bottom:182.730000px;}
.y67{bottom:187.770000px;}
.yd5{bottom:188.130000px;}
.ya6{bottom:188.490000px;}
.y15c{bottom:188.850000px;}
.y1b5{bottom:191.370000px;}
.y18c{bottom:191.910000px;}
.y3a{bottom:193.710000px;}
.y214{bottom:195.150000px;}
.y92{bottom:196.410000px;}
.y96{bottom:196.770000px;}
.yc3{bottom:199.470000px;}
.y109{bottom:200.550000px;}
.y1ea{bottom:201.630000px;}
.y11e{bottom:202.170000px;}
.y12f{bottom:203.220000px;}
.y162{bottom:205.770000px;}
.yd4{bottom:207.210000px;}
.y1b4{bottom:210.270000px;}
.y129{bottom:210.525000px;}
.y39{bottom:210.630000px;}
.y18b{bottom:210.990000px;}
.y66{bottom:214.770000px;}
.y15b{bottom:215.670000px;}
.y213{bottom:219.630000px;}
.y1e9{bottom:220.710000px;}
.y13a{bottom:222.810000px;}
.y91{bottom:223.590000px;}
.yc2{bottom:226.470000px;}
.y108{bottom:227.550000px;}
.y38{bottom:227.910000px;}
.y1b3{bottom:229.170000px;}
.y18a{bottom:229.890000px;}
.yd3{bottom:232.590000px;}
.y15a{bottom:236.190000px;}
.y1e8{bottom:239.610000px;}
.y65{bottom:241.590000px;}
.y212{bottom:244.110000px;}
.y37{bottom:245.370000px;}
.y1b2{bottom:248.250000px;}
.y189{bottom:248.970000px;}
.y90{bottom:250.590000px;}
.y159{bottom:251.850000px;}
.yc1{bottom:253.290000px;}
.y13d{bottom:254.340000px;}
.y107{bottom:254.370000px;}
.y12a{bottom:254.880000px;}
.y135{bottom:255.060000px;}
.y1e7{bottom:258.510000px;}
.yd2{bottom:259.590000px;}
.y36{bottom:262.650000px;}
.y1b1{bottom:267.150000px;}
.y188{bottom:267.870000px;}
.y64{bottom:268.590000px;}
.y13b{bottom:274.530000px;}
.y8f{bottom:277.410000px;}
.y1e6{bottom:277.590000px;}
.y158{bottom:279.570000px;}
.y35{bottom:279.930000px;}
.yc0{bottom:280.290000px;}
.y133{bottom:280.980000px;}
.y106{bottom:281.190000px;}
.y1b0{bottom:286.230000px;}
.yd1{bottom:286.410000px;}
.y187{bottom:286.770000px;}
.y211{bottom:293.070000px;}
.y63{bottom:295.410000px;}
.y1e5{bottom:296.490000px;}
.y34{bottom:297.210000px;}
.y12b{bottom:299.265000px;}
.y8e{bottom:304.410000px;}
.y1af{bottom:305.130000px;}
.y186{bottom:305.850000px;}
.ybf{bottom:307.110000px;}
.y157{bottom:307.470000px;}
.y105{bottom:308.190000px;}
.yd0{bottom:313.410000px;}
.y33{bottom:314.490000px;}
.y1e4{bottom:315.570000px;}
.y210{bottom:317.550000px;}
.y62{bottom:322.050000px;}
.ya5{bottom:322.410000px;}
.y1ae{bottom:324.030000px;}
.y185{bottom:324.750000px;}
.y13c{bottom:326.235000px;}
.y8d{bottom:331.275000px;}
.y32{bottom:331.815000px;}
.ybe{bottom:334.155000px;}
.y1e3{bottom:334.515000px;}
.y156{bottom:335.235000px;}
.y104{bottom:337.395000px;}
.ycf{bottom:340.275000px;}
.y20f{bottom:341.895000px;}
.y1ad{bottom:343.155000px;}
.y184{bottom:343.875000px;}
.y31{bottom:348.915000px;}
.y61{bottom:349.275000px;}
.y1e2{bottom:353.415000px;}
.y8c{bottom:358.275000px;}
.ybd{bottom:360.975000px;}
.y1ac{bottom:362.055000px;}
.y183{bottom:362.775000px;}
.y155{bottom:363.135000px;}
.y103{bottom:364.215000px;}
.y30{bottom:366.195000px;}
.y20e{bottom:366.375000px;}
.yce{bottom:367.275000px;}
.y1e1{bottom:372.495000px;}
.y60{bottom:376.275000px;}
.y1ab{bottom:381.135000px;}
.y182{bottom:381.855000px;}
.y2f{bottom:383.475000px;}
.y8b{bottom:385.095000px;}
.ybc{bottom:387.975000px;}
.y20d{bottom:390.855000px;}
.y102{bottom:391.035000px;}
.y1e0{bottom:391.395000px;}
.ycd{bottom:394.095000px;}
.y1aa{bottom:400.035000px;}
.y2e{bottom:400.755000px;}
.y5f{bottom:403.095000px;}
.y1df{bottom:410.475000px;}
.y8a{bottom:412.095000px;}
.ybb{bottom:414.795000px;}
.y20c{bottom:415.335000px;}
.y2d{bottom:417.675000px;}
.y101{bottom:418.035000px;}
.y153{bottom:418.755000px;}
.y1a9{bottom:419.115000px;}
.y181{bottom:419.655000px;}
.ycc{bottom:421.095000px;}
.y1de{bottom:429.375000px;}
.y5e{bottom:430.095000px;}
.y2c{bottom:435.315000px;}
.y1a8{bottom:438.015000px;}
.y180{bottom:438.735000px;}
.y89{bottom:438.915000px;}
.y20b{bottom:439.815000px;}
.yba{bottom:441.795000px;}
.y100{bottom:444.855000px;}
.y151{bottom:446.655000px;}
.ycb{bottom:447.555000px;}
.y161{bottom:447.915000px;}
.y1dd{bottom:448.275000px;}
.y2b{bottom:452.415000px;}
.y17f{bottom:456.375000px;}
.y5d{bottom:456.915000px;}
.yb9{bottom:462.135000px;}
.y20a{bottom:464.295000px;}
.y88{bottom:465.915000px;}
.y1dc{bottom:466.995000px;}
.y2a{bottom:469.695000px;}
.yff{bottom:471.855000px;}
.yca{bottom:474.915000px;}
.y1a7{bottom:475.995000px;}
.y17e{bottom:476.715000px;}
.y5c{bottom:480.495000px;}
.yb8{bottom:481.035000px;}
.ya4{bottom:483.735000px;}
.y150{bottom:484.995000px;}
.y1db{bottom:486.255000px;}
.y29{bottom:486.975000px;}
.y209{bottom:488.595000px;}
.y87{bottom:492.735000px;}
.y1a6{bottom:494.895000px;}
.yfe{bottom:498.675000px;}
.yb7{bottom:500.115000px;}
.y5b{bottom:501.375000px;}
.yc9{bottom:501.735000px;}
.y17d{bottom:502.635000px;}
.y28{bottom:504.255000px;}
.y1da{bottom:504.975000px;}
.y14f{bottom:505.335000px;}
.ya3{bottom:510.735000px;}
.y208{bottom:513.075000px;}
.y1a5{bottom:513.975000px;}
.yb6{bottom:518.655000px;}
.y86{bottom:519.735000px;}
.y27{bottom:521.535000px;}
.y1d9{bottom:524.235000px;}
.y14e{bottom:524.415000px;}
.yfd{bottom:525.675000px;}
.y5a{bottom:528.375000px;}
.yc8{bottom:528.735000px;}
.y17c{bottom:529.455000px;}
.y1a4{bottom:532.875000px;}
.ya2{bottom:537.555000px;}
.yb5{bottom:538.095000px;}
.y26{bottom:538.635000px;}
.y1d8{bottom:542.055000px;}
.y14d{bottom:543.315000px;}
.y85{bottom:546.555000px;}
.y17b{bottom:549.975000px;}
.y1a3{bottom:551.775000px;}
.yfc{bottom:552.495000px;}
.y59{bottom:555.195000px;}
.yc7{bottom:555.555000px;}
.y25{bottom:555.915000px;}
.y1d7{bottom:556.635000px;}
.yb4{bottom:556.995000px;}
.y149{bottom:558.975000px;}
.y207{bottom:562.035000px;}
.ya1{bottom:564.555000px;}
.y11d{bottom:566.715000px;}
.y17a{bottom:568.875000px;}
.y1a2{bottom:570.855000px;}
.y24{bottom:573.195000px;}
.y84{bottom:573.555000px;}
.y1d6{bottom:576.075000px;}
.yfb{bottom:579.135000px;}
.y58{bottom:582.195000px;}
.yb3{bottom:582.555000px;}
.y206{bottom:586.515000px;}
.y11c{bottom:587.235000px;}
.y179{bottom:587.955000px;}
.ya0{bottom:588.135000px;}
.y1a1{bottom:589.755000px;}
.y23{bottom:590.475000px;}
.y1d5{bottom:594.975000px;}
.yfa{bottom:599.865000px;}
.y83{bottom:600.405000px;}
.y178{bottom:606.885000px;}
.y22{bottom:607.785000px;}
.y11b{bottom:608.325000px;}
.y121{bottom:608.400000px;}
.y1a0{bottom:608.865000px;}
.y57{bottom:609.045000px;}
.yb2{bottom:609.405000px;}
.y205{bottom:611.025000px;}
.y125{bottom:612.720000px;}
.y1d4{bottom:613.905000px;}
.yf9{bottom:618.945000px;}
.y21{bottom:625.065000px;}
.y177{bottom:625.785000px;}
.y82{bottom:627.405000px;}
.y19f{bottom:627.765000px;}
.y1d3{bottom:632.985000px;}
.y147{bottom:633.165000px;}
.yf6{bottom:634.605000px;}
.y204{bottom:635.325000px;}
.y9f{bottom:636.045000px;}
.y56{bottom:636.405000px;}
.y12c{bottom:640.800000px;}
.y20{bottom:642.165000px;}
.y176{bottom:644.865000px;}
.y19e{bottom:646.665000px;}
.y1d2{bottom:651.885000px;}
.y81{bottom:654.225000px;}
.y1f{bottom:659.445000px;}
.y165{bottom:659.805000px;}
.y9e{bottom:662.865000px;}
.y55{bottom:663.225000px;}
.y175{bottom:663.765000px;}
.y19d{bottom:665.745000px;}
.y1d1{bottom:670.965000px;}
.y1e{bottom:676.725000px;}
.y164{bottom:680.865000px;}
.y80{bottom:681.225000px;}
.y174{bottom:682.845000px;}
.y203{bottom:684.285000px;}
.y19c{bottom:684.645000px;}
.y1d0{bottom:689.865000px;}
.y54{bottom:690.225000px;}
.y1d{bottom:694.005000px;}
.y173{bottom:701.745000px;}
.y19b{bottom:703.725000px;}
.y143{bottom:705.345000px;}
.y7f{bottom:708.045000px;}
.y1cf{bottom:708.765000px;}
.y1c{bottom:710.925000px;}
.yf2{bottom:716.145000px;}
.y53{bottom:717.045000px;}
.y172{bottom:720.645000px;}
.y19a{bottom:722.625000px;}
.y1ce{bottom:727.845000px;}
.y1b{bottom:729.285000px;}
.y202{bottom:733.245000px;}
.y9a{bottom:734.685000px;}
.y7e{bottom:735.045000px;}
.y171{bottom:739.725000px;}
.y199{bottom:741.525000px;}
.y52{bottom:744.045000px;}
.y1cd{bottom:746.745000px;}
.y1a{bottom:749.985000px;}
.y201{bottom:757.725000px;}
.y170{bottom:758.625000px;}
.y198{bottom:760.605000px;}
.y7d{bottom:761.865000px;}
.y1cc{bottom:765.465000px;}
.y19{bottom:769.965000px;}
.y51{bottom:770.865000px;}
.y16f{bottom:777.705000px;}
.y197{bottom:779.505000px;}
.y200{bottom:782.025000px;}
.ye4{bottom:783.285000px;}
.y1cb{bottom:784.725000px;}
.y142{bottom:786.705000px;}
.y18{bottom:787.965000px;}
.y7c{bottom:788.865000px;}
.y16e{bottom:796.605000px;}
.y50{bottom:797.685000px;}
.y196{bottom:798.585000px;}
.y1ca{bottom:803.625000px;}
.y1ff{bottom:806.505000px;}
.y17{bottom:808.665000px;}
.y141{bottom:813.525000px;}
.y7b{bottom:815.685000px;}
.y195{bottom:817.485000px;}
.y1c9{bottom:822.345000px;}
.y4f{bottom:824.685000px;}
.y16{bottom:829.365000px;}
.y1fe{bottom:830.985000px;}
.y16d{bottom:833.505000px;}
.y194{bottom:836.385000px;}
.y140{bottom:840.525000px;}
.y1c8{bottom:841.605000px;}
.y7a{bottom:842.685000px;}
.y15{bottom:850.065000px;}
.y4e{bottom:851.505000px;}
.y16c{bottom:853.665000px;}
.y193{bottom:855.465000px;}
.y1c7{bottom:860.685000px;}
.y79{bottom:869.550000px;}
.y14{bottom:870.810000px;}
.y192{bottom:874.410000px;}
.y4d{bottom:878.550000px;}
.y1c6{bottom:879.270000px;}
.y16b{bottom:879.630000px;}
.y1fd{bottom:879.990000px;}
.y13{bottom:891.330000px;}
.yea{bottom:891.690000px;}
.y191{bottom:893.490000px;}
.y78{bottom:896.550000px;}
.y1c5{bottom:898.530000px;}
.y1fc{bottom:904.470000px;}
.y4c{bottom:905.370000px;}
.y16a{bottom:906.450000px;}
.y12{bottom:911.670000px;}
.y190{bottom:912.390000px;}
.y1c4{bottom:917.250000px;}
.y77{bottom:923.370000px;}
.y169{bottom:926.970000px;}
.y1fb{bottom:928.770000px;}
.y18f{bottom:931.470000px;}
.y4b{bottom:932.370000px;}
.y11{bottom:933.630000px;}
.y1c3{bottom:936.510000px;}
.y168{bottom:945.870000px;}
.y76{bottom:950.370000px;}
.y1fa{bottom:953.250000px;}
.y1c2{bottom:955.230000px;}
.y9d{bottom:955.950000px;}
.y4a{bottom:959.190000px;}
.y10{bottom:961.170000px;}
.y11a{bottom:961.350000px;}
.y167{bottom:963.870000px;}
.ye3{bottom:969.270000px;}
.y1c1{bottom:974.490000px;}
.y9c{bottom:976.830000px;}
.y75{bottom:977.190000px;}
.y1f8{bottom:977.730000px;}
.y166{bottom:978.270000px;}
.y119{bottom:981.870000px;}
.y160{bottom:982.770000px;}
.y49{bottom:986.190000px;}
.ye2{bottom:988.350000px;}
.yf{bottom:989.250000px;}
.y1c0{bottom:993.030000px;}
.y118{bottom:1000.770000px;}
.y1f6{bottom:1002.210000px;}
.y15f{bottom:1003.830000px;}
.y74{bottom:1004.190000px;}
.ye1{bottom:1007.250000px;}
.y1bf{bottom:1012.470000px;}
.y48{bottom:1013.010000px;}
.y115{bottom:1016.430000px;}
.ye0{bottom:1026.330000px;}
.y1f0{bottom:1026.690000px;}
.y73{bottom:1031.010000px;}
.y47{bottom:1040.010000px;}
.ye{bottom:1043.250000px;}
.ydf{bottom:1045.230000px;}
.y1be{bottom:1050.450000px;}
.y72{bottom:1058.010000px;}
.y112{bottom:1059.270000px;}
.y7{bottom:1060.170000px;}
.yde{bottom:1064.130000px;}
.y46{bottom:1066.830000px;}
.y1bd{bottom:1069.350000px;}
.y5{bottom:1079.430000px;}
.ydd{bottom:1083.210000px;}
.y71{bottom:1084.830000px;}
.y1bc{bottom:1088.430000px;}
.y45{bottom:1093.830000px;}
.y10c{bottom:1097.430000px;}
.ydc{bottom:1102.110000px;}
.y1bb{bottom:1106.250000px;}
.y70{bottom:1111.830000px;}
.y44{bottom:1117.410000px;}
.y1ba{bottom:1120.830000px;}
.ydb{bottom:1121.190000px;}
.y1ef{bottom:1125.150000px;}
.y43{bottom:1138.320000px;}
.y6f{bottom:1138.680000px;}
.y1b9{bottom:1139.760000px;}
.yda{bottom:1140.120000px;}
.y69{bottom:1171.980000px;}
.y40{bottom:1174.680000px;}
.y6d{bottom:1190.340000px;}
.y41{bottom:1190.520000px;}
.y3f{bottom:1194.300000px;}
.h10{height:17.100000px;}
.h14{height:17.280000px;}
.h8{height:18.540000px;}
.h3c{height:23.580000px;}
.h3e{height:23.616000px;}
.h3b{height:23.760000px;}
.h3d{height:23.796000px;}
.h1a{height:25.740000px;}
.h36{height:27.000000px;}
.h38{height:27.036000px;}
.h37{height:27.180000px;}
.h32{height:28.980000px;}
.h19{height:31.680000px;}
.h2b{height:33.660000px;}
.h22{height:37.260000px;}
.h17{height:41.760000px;}
.h23{height:42.120000px;}
.h12{height:47.344922px;}
.h39{height:48.616875px;}
.hf{height:53.573906px;}
.h1d{height:53.820000px;}
.h21{height:56.916000px;}
.h9{height:57.324375px;}
.h6{height:58.621992px;}
.h2{height:58.651172px;}
.he{height:60.226875px;}
.h29{height:62.184375px;}
.h16{height:64.546875px;}
.h11{height:65.010937px;}
.h1f{height:66.420000px;}
.h18{height:66.757500px;}
.h1b{height:68.084282px;}
.h33{height:70.020000px;}
.hd{height:70.628906px;}
.h3{height:70.664062px;}
.h34{height:71.460000px;}
.hc{height:72.562500px;}
.h35{height:73.476000px;}
.h15{height:74.004654px;}
.h4{height:74.916000px;}
.h13{height:80.464922px;}
.h20{height:80.640000px;}
.ha{height:93.983203px;}
.h5{height:94.176000px;}
.h3a{height:94.860000px;}
.hb{height:96.508125px;}
.h2e{height:99.000000px;}
.h1e{height:107.676000px;}
.h24{height:109.080000px;}
.h2c{height:124.920000px;}
.h25{height:131.220000px;}
.h2d{height:150.840000px;}
.h26{height:153.360000px;}
.h7{height:159.800977px;}
.h1c{height:162.210000px;}
.h27{height:171.180000px;}
.h2f{height:176.400000px;}
.h30{height:176.580000px;}
.h2a{height:244.800000px;}
.h28{height:342.540000px;}
.h31{height:353.160000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:15.120000px;}
.w14{width:24.660000px;}
.w13{width:24.840000px;}
.w9{width:73.620000px;}
.w24{width:93.420000px;}
.w27{width:93.780000px;}
.w25{width:93.816000px;}
.w26{width:93.960000px;}
.w1c{width:104.796000px;}
.w1b{width:110.700000px;}
.w17{width:110.880000px;}
.wa{width:114.876000px;}
.we{width:115.020000px;}
.wd{width:117.936000px;}
.wf{width:118.476000px;}
.wc{width:119.880000px;}
.w6{width:122.616000px;}
.w8{width:122.760000px;}
.w7{width:122.796000px;}
.w11{width:129.456000px;}
.w12{width:129.600000px;}
.w19{width:129.780000px;}
.w16{width:133.560000px;}
.w1a{width:142.740000px;}
.w1f{width:143.676000px;}
.w10{width:144.540000px;}
.w1e{width:149.076000px;}
.w1d{width:149.400000px;}
.w5{width:156.060000px;}
.w21{width:179.310000px;}
.w22{width:188.490000px;}
.w2{width:225.390000px;}
.w3{width:225.570000px;}
.w20{width:293.610000px;}
.w23{width:368.535000px;}
.wb{width:473.475000px;}
.w18{width:648.720000px;}
.w15{width:667.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:4.140000px;}
.x79{left:5.940000px;}
.x19{left:7.740000px;}
.x36{left:9.180000px;}
.x7d{left:10.260000px;}
.x44{left:11.700000px;}
.x31{left:14.760000px;}
.x46{left:15.840000px;}
.x27{left:17.280000px;}
.x2d{left:18.540000px;}
.x41{left:20.340000px;}
.x1b{left:22.905000px;}
.x42{left:24.480000px;}
.x3f{left:26.280000px;}
.x47{left:28.800000px;}
.x22{left:30.240000px;}
.x1c{left:31.905000px;}
.x23{left:34.734000px;}
.x2c{left:36.900000px;}
.x20{left:38.700000px;}
.x39{left:40.140000px;}
.x45{left:42.660000px;}
.x34{left:43.920000px;}
.x5{left:45.000000px;}
.x1e{left:47.520000px;}
.x26{left:49.005000px;}
.x24{left:52.965000px;}
.x70{left:55.254000px;}
.x25{left:57.060000px;}
.x33{left:59.040000px;}
.x73{left:62.280000px;}
.x7{left:64.260000px;}
.x74{left:66.270000px;}
.xb{left:75.420000px;}
.x9{left:77.220000px;}
.x38{left:80.100000px;}
.x3{left:85.494000px;}
.x6{left:106.560000px;}
.x1{left:108.036000px;}
.x3c{left:113.796000px;}
.x2a{left:114.876000px;}
.x6f{left:116.316000px;}
.x5c{left:119.520000px;}
.x18{left:121.716000px;}
.x6d{left:124.020000px;}
.x17{left:134.136000px;}
.x3d{left:136.614000px;}
.x16{left:140.076000px;}
.x4c{left:143.676000px;}
.xd{left:144.756000px;}
.x30{left:149.220000px;}
.x14{left:150.510000px;}
.x3a{left:158.610000px;}
.x15{left:171.930000px;}
.x77{left:174.270000px;}
.x48{left:176.610000px;}
.x4d{left:181.980000px;}
.x2b{left:189.210000px;}
.x29{left:192.990000px;}
.x78{left:210.990000px;}
.x5e{left:212.940000px;}
.x4e{left:214.380000px;}
.x75{left:216.930000px;}
.x28{left:221.970000px;}
.x71{left:227.730000px;}
.x2f{left:236.730000px;}
.x5f{left:244.260000px;}
.x4f{left:246.600000px;}
.x3e{left:259.050000px;}
.x60{left:275.580000px;}
.x1a{left:278.490000px;}
.x2{left:298.335000px;}
.x2e{left:304.815000px;}
.x76{left:306.975000px;}
.x3b{left:308.055000px;}
.x50{left:311.040000px;}
.xe{left:328.755000px;}
.x4{left:333.795000px;}
.x61{left:338.400000px;}
.xf{left:342.975000px;}
.x49{left:348.915000px;}
.x10{left:356.475000px;}
.x62{left:369.900000px;}
.x51{left:375.660000px;}
.x6e{left:382.680000px;}
.x40{left:389.235000px;}
.x7a{left:399.495000px;}
.x1d{left:401.835000px;}
.x52{left:407.880000px;}
.x5d{left:410.220000px;}
.x32{left:425.415000px;}
.x63{left:432.720000px;}
.x53{left:440.100000px;}
.xc{left:446.475000px;}
.x64{left:464.040000px;}
.x54{left:472.500000px;}
.x72{left:483.375000px;}
.x7b{left:493.635000px;}
.x65{left:495.540000px;}
.x55{left:504.720000px;}
.x43{left:519.405000px;}
.x1f{left:525.345000px;}
.x66{left:526.860000px;}
.x56{left:536.940000px;}
.x35{left:544.065000px;}
.x67{left:558.360000px;}
.x8{left:559.365000px;}
.x57{left:569.160000px;}
.x7c{left:587.805000px;}
.x68{left:589.680000px;}
.x58{left:601.560000px;}
.x69{left:621.180000px;}
.x11{left:634.065000px;}
.x21{left:648.825000px;}
.x6a{left:652.500000px;}
.x37{left:659.805000px;}
.x59{left:666.000000px;}
.x7e{left:682.125000px;}
.x6b{left:683.820000px;}
.x5a{left:698.220000px;}
.x6c{left:715.320000px;}
.x5b{left:730.620000px;}
.x4b{left:756.690000px;}
.x13{left:770.190000px;}
.x4a{left:777.030000px;}
.x12{left:785.130000px;}
@media print{
.v1{vertical-align:-95.360000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls15{letter-spacing:-0.832000pt;}
.ls13{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls29{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.097067pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls1a{letter-spacing:0.097067pt;}
.ls22{letter-spacing:0.106667pt;}
.ls1{letter-spacing:0.128000pt;}
.ls28{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.160000pt;}
.ls1b{letter-spacing:0.233067pt;}
.ls18{letter-spacing:0.239467pt;}
.ls2{letter-spacing:0.271360pt;}
.ls1d{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.384000pt;}
.ls16{letter-spacing:0.597333pt;}
.ls6{letter-spacing:0.800000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls11{letter-spacing:3.840000pt;}
.ls24{letter-spacing:5.120000pt;}
.ls27{letter-spacing:5.760000pt;}
.ls20{letter-spacing:6.560000pt;}
.ls25{letter-spacing:7.040000pt;}
.lsd{letter-spacing:8.320000pt;}
.ls26{letter-spacing:8.960000pt;}
.lse{letter-spacing:10.368000pt;}
.ls1f{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:11.151360pt;}
.ls23{letter-spacing:12.160000pt;}
.ls12{letter-spacing:13.546667pt;}
.lsa{letter-spacing:14.080000pt;}
.ls19{letter-spacing:14.351360pt;}
.ls3{letter-spacing:1187.338667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws12{word-spacing:-14.991467pt;}
.ws11{word-spacing:-14.953067pt;}
.ws16{word-spacing:-14.855467pt;}
.ws10{word-spacing:-14.817067pt;}
.wsf{word-spacing:-14.720000pt;}
.ws13{word-spacing:-14.622933pt;}
.ws15{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.640000pt;}
.wsc{word-spacing:-11.317333pt;}
.wse{word-spacing:-10.959467pt;}
.wsd{word-spacing:-10.521067pt;}
.ws4{word-spacing:-10.080000pt;}
.ws2{word-spacing:-0.341120pt;}
.ws7{word-spacing:0.000000pt;}
._1c{margin-left:-8.981333pt;}
._d{margin-left:-1.978667pt;}
._1{margin-left:-1.064107pt;}
._0{width:1.274880pt;}
._6{width:2.766080pt;}
._b{width:3.771520pt;}
._c{width:5.101227pt;}
._3{width:6.395093pt;}
._2{width:7.330560pt;}
._7{width:8.286720pt;}
._8{width:9.886293pt;}
._9{width:10.792747pt;}
._a{width:12.309333pt;}
._14{width:13.760000pt;}
._4{width:15.245440pt;}
._5{width:16.732800pt;}
._19{width:17.763200pt;}
._1d{width:19.310293pt;}
._1a{width:20.416000pt;}
._12{width:21.632000pt;}
._13{width:22.533120pt;}
._e{width:23.744000pt;}
._f{width:24.810667pt;}
._10{width:25.797120pt;}
._1b{width:26.938880pt;}
._20{width:28.442880pt;}
._15{width:31.978667pt;}
._21{width:33.502720pt;}
._22{width:34.392960pt;}
._16{width:37.184000pt;}
._17{width:38.202667pt;}
._18{width:39.642667pt;}
._1e{width:44.335787pt;}
._1f{width:56.861440pt;}
._11{width:135.018667pt;}
.fs4{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs5{font-size:85.120000pt;}
.fs2{font-size:213.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:0.800000pt;}
.y42{bottom:3.200000pt;}
.y6e{bottom:3.360000pt;}
.yc{bottom:3.520000pt;}
.yd{bottom:3.840000pt;}
.ya9{bottom:4.960000pt;}
.y217{bottom:5.594667pt;}
.y1f7{bottom:5.600000pt;}
.y1f9{bottom:5.760000pt;}
.yaf{bottom:6.240000pt;}
.yb0{bottom:6.560000pt;}
.y152{bottom:6.880000pt;}
.y154{bottom:7.200000pt;}
.y13e{bottom:7.680000pt;}
.y12d{bottom:7.706667pt;}
.yac{bottom:8.960000pt;}
.yec{bottom:9.120000pt;}
.yad{bottom:9.280000pt;}
.y13f{bottom:11.173333pt;}
.y113{bottom:11.520000pt;}
.y10f{bottom:11.680000pt;}
.y114{bottom:11.840000pt;}
.yaa{bottom:13.440000pt;}
.y116{bottom:13.600000pt;}
.y117{bottom:13.920000pt;}
.yf4{bottom:14.560000pt;}
.y12e{bottom:15.360000pt;}
.y146{bottom:17.600000pt;}
.y14b{bottom:19.040000pt;}
.yb{bottom:19.200000pt;}
.y111{bottom:20.000000pt;}
.y1f5{bottom:20.160000pt;}
.yf1{bottom:20.960000pt;}
.ya{bottom:21.760000pt;}
.ya8{bottom:21.920000pt;}
.ya7{bottom:23.840000pt;}
.y144{bottom:26.240000pt;}
.y148{bottom:26.560000pt;}
.yf5{bottom:26.880000pt;}
.y14c{bottom:27.840000pt;}
.y10e{bottom:28.480000pt;}
.yeb{bottom:32.960000pt;}
.ye9{bottom:33.280000pt;}
.y6c{bottom:33.440000pt;}
.y4{bottom:34.080000pt;}
.y145{bottom:34.400000pt;}
.y14a{bottom:36.026667pt;}
.y1f1{bottom:36.960000pt;}
.y110{bottom:36.986667pt;}
.y9{bottom:37.120000pt;}
.y10d{bottom:37.306667pt;}
.yf3{bottom:38.560000pt;}
.yef{bottom:44.960000pt;}
.y1f2{bottom:45.440000pt;}
.y6b{bottom:48.800000pt;}
.y3{bottom:51.840000pt;}
.y8{bottom:52.480000pt;}
.y1f4{bottom:53.760000pt;}
.yf7{bottom:56.800000pt;}
.yed{bottom:56.960000pt;}
.yf8{bottom:57.120000pt;}
.ye8{bottom:57.280000pt;}
.y137{bottom:60.160000pt;}
.y6a{bottom:64.192000pt;}
.y2{bottom:67.232000pt;}
.yf0{bottom:68.800000pt;}
.y1f3{bottom:70.720000pt;}
.y132{bottom:73.466667pt;}
.yee{bottom:80.840000pt;}
.ye7{bottom:81.160000pt;}
.y122{bottom:82.373333pt;}
.y1{bottom:82.592000pt;}
.y130{bottom:96.453333pt;}
.yd9{bottom:99.872000pt;}
.yb1{bottom:101.152000pt;}
.y123{bottom:102.080000pt;}
.y1b8{bottom:102.592000pt;}
.y9b{bottom:102.752000pt;}
.y95{bottom:103.072000pt;}
.ye6{bottom:105.160000pt;}
.yc6{bottom:105.312000pt;}
.y138{bottom:106.146667pt;}
.y3e{bottom:107.872000pt;}
.y127{bottom:108.253333pt;}
.y99{bottom:111.072000pt;}
.y1ee{bottom:111.712000pt;}
.yae{bottom:115.072000pt;}
.y218{bottom:116.192000pt;}
.yd8{bottom:116.672000pt;}
.y1b7{bottom:119.392000pt;}
.y131{bottom:119.453333pt;}
.y15e{bottom:120.032000pt;}
.y124{bottom:121.786667pt;}
.y3d{bottom:123.072000pt;}
.y94{bottom:127.072000pt;}
.y1ed{bottom:128.672000pt;}
.yc5{bottom:129.152000pt;}
.ye5{bottom:129.640000pt;}
.y216{bottom:130.112000pt;}
.y10b{bottom:130.432000pt;}
.yd7{bottom:133.626667pt;}
.y98{bottom:135.066667pt;}
.y1b6{bottom:136.346667pt;}
.y18e{bottom:136.986667pt;}
.y126{bottom:137.666667pt;}
.yab{bottom:138.746667pt;}
.y3c{bottom:139.066667pt;}
.y134{bottom:142.240000pt;}
.y136{bottom:142.306667pt;}
.y120{bottom:142.746667pt;}
.y68{bottom:143.066667pt;}
.y15d{bottom:143.866667pt;}
.y1ec{bottom:145.466667pt;}
.y128{bottom:147.680000pt;}
.yd6{bottom:150.426667pt;}
.y93{bottom:150.906667pt;}
.y215{bottom:151.866667pt;}
.y139{bottom:152.093333pt;}
.yc4{bottom:153.146667pt;}
.y18d{bottom:153.786667pt;}
.y10a{bottom:154.426667pt;}
.y97{bottom:155.866667pt;}
.y3b{bottom:156.826667pt;}
.y163{bottom:158.906667pt;}
.y11f{bottom:160.826667pt;}
.y1eb{bottom:162.426667pt;}
.y67{bottom:166.906667pt;}
.yd5{bottom:167.226667pt;}
.ya6{bottom:167.546667pt;}
.y15c{bottom:167.866667pt;}
.y1b5{bottom:170.106667pt;}
.y18c{bottom:170.586667pt;}
.y3a{bottom:172.186667pt;}
.y214{bottom:173.466667pt;}
.y92{bottom:174.586667pt;}
.y96{bottom:174.906667pt;}
.yc3{bottom:177.306667pt;}
.y109{bottom:178.266667pt;}
.y1ea{bottom:179.226667pt;}
.y11e{bottom:179.706667pt;}
.y12f{bottom:180.640000pt;}
.y162{bottom:182.906667pt;}
.yd4{bottom:184.186667pt;}
.y1b4{bottom:186.906667pt;}
.y129{bottom:187.133333pt;}
.y39{bottom:187.226667pt;}
.y18b{bottom:187.546667pt;}
.y66{bottom:190.906667pt;}
.y15b{bottom:191.706667pt;}
.y213{bottom:195.226667pt;}
.y1e9{bottom:196.186667pt;}
.y13a{bottom:198.053333pt;}
.y91{bottom:198.746667pt;}
.yc2{bottom:201.306667pt;}
.y108{bottom:202.266667pt;}
.y38{bottom:202.586667pt;}
.y1b3{bottom:203.706667pt;}
.y18a{bottom:204.346667pt;}
.yd3{bottom:206.746667pt;}
.y15a{bottom:209.946667pt;}
.y1e8{bottom:212.986667pt;}
.y65{bottom:214.746667pt;}
.y212{bottom:216.986667pt;}
.y37{bottom:218.106667pt;}
.y1b2{bottom:220.666667pt;}
.y189{bottom:221.306667pt;}
.y90{bottom:222.746667pt;}
.y159{bottom:223.866667pt;}
.yc1{bottom:225.146667pt;}
.y13d{bottom:226.080000pt;}
.y107{bottom:226.106667pt;}
.y12a{bottom:226.560000pt;}
.y135{bottom:226.720000pt;}
.y1e7{bottom:229.786667pt;}
.yd2{bottom:230.746667pt;}
.y36{bottom:233.466667pt;}
.y1b1{bottom:237.466667pt;}
.y188{bottom:238.106667pt;}
.y64{bottom:238.746667pt;}
.y13b{bottom:244.026667pt;}
.y8f{bottom:246.586667pt;}
.y1e6{bottom:246.746667pt;}
.y158{bottom:248.506667pt;}
.y35{bottom:248.826667pt;}
.yc0{bottom:249.146667pt;}
.y133{bottom:249.760000pt;}
.y106{bottom:249.946667pt;}
.y1b0{bottom:254.426667pt;}
.yd1{bottom:254.586667pt;}
.y187{bottom:254.906667pt;}
.y211{bottom:260.506667pt;}
.y63{bottom:262.586667pt;}
.y1e5{bottom:263.546667pt;}
.y34{bottom:264.186667pt;}
.y12b{bottom:266.013333pt;}
.y8e{bottom:270.586667pt;}
.y1af{bottom:271.226667pt;}
.y186{bottom:271.866667pt;}
.ybf{bottom:272.986667pt;}
.y157{bottom:273.306667pt;}
.y105{bottom:273.946667pt;}
.yd0{bottom:278.586667pt;}
.y33{bottom:279.546667pt;}
.y1e4{bottom:280.506667pt;}
.y210{bottom:282.266667pt;}
.y62{bottom:286.266667pt;}
.ya5{bottom:286.586667pt;}
.y1ae{bottom:288.026667pt;}
.y185{bottom:288.666667pt;}
.y13c{bottom:289.986667pt;}
.y8d{bottom:294.466667pt;}
.y32{bottom:294.946667pt;}
.ybe{bottom:297.026667pt;}
.y1e3{bottom:297.346667pt;}
.y156{bottom:297.986667pt;}
.y104{bottom:299.906667pt;}
.ycf{bottom:302.466667pt;}
.y20f{bottom:303.906667pt;}
.y1ad{bottom:305.026667pt;}
.y184{bottom:305.666667pt;}
.y31{bottom:310.146667pt;}
.y61{bottom:310.466667pt;}
.y1e2{bottom:314.146667pt;}
.y8c{bottom:318.466667pt;}
.ybd{bottom:320.866667pt;}
.y1ac{bottom:321.826667pt;}
.y183{bottom:322.466667pt;}
.y155{bottom:322.786667pt;}
.y103{bottom:323.746667pt;}
.y30{bottom:325.506667pt;}
.y20e{bottom:325.666667pt;}
.yce{bottom:326.466667pt;}
.y1e1{bottom:331.106667pt;}
.y60{bottom:334.466667pt;}
.y1ab{bottom:338.786667pt;}
.y182{bottom:339.426667pt;}
.y2f{bottom:340.866667pt;}
.y8b{bottom:342.306667pt;}
.ybc{bottom:344.866667pt;}
.y20d{bottom:347.426667pt;}
.y102{bottom:347.586667pt;}
.y1e0{bottom:347.906667pt;}
.ycd{bottom:350.306667pt;}
.y1aa{bottom:355.586667pt;}
.y2e{bottom:356.226667pt;}
.y5f{bottom:358.306667pt;}
.y1df{bottom:364.866667pt;}
.y8a{bottom:366.306667pt;}
.ybb{bottom:368.706667pt;}
.y20c{bottom:369.186667pt;}
.y2d{bottom:371.266667pt;}
.y101{bottom:371.586667pt;}
.y153{bottom:372.226667pt;}
.y1a9{bottom:372.546667pt;}
.y181{bottom:373.026667pt;}
.ycc{bottom:374.306667pt;}
.y1de{bottom:381.666667pt;}
.y5e{bottom:382.306667pt;}
.y2c{bottom:386.946667pt;}
.y1a8{bottom:389.346667pt;}
.y180{bottom:389.986667pt;}
.y89{bottom:390.146667pt;}
.y20b{bottom:390.946667pt;}
.yba{bottom:392.706667pt;}
.y100{bottom:395.426667pt;}
.y151{bottom:397.026667pt;}
.ycb{bottom:397.826667pt;}
.y161{bottom:398.146667pt;}
.y1dd{bottom:398.466667pt;}
.y2b{bottom:402.146667pt;}
.y17f{bottom:405.666667pt;}
.y5d{bottom:406.146667pt;}
.yb9{bottom:410.786667pt;}
.y20a{bottom:412.706667pt;}
.y88{bottom:414.146667pt;}
.y1dc{bottom:415.106667pt;}
.y2a{bottom:417.506667pt;}
.yff{bottom:419.426667pt;}
.yca{bottom:422.146667pt;}
.y1a7{bottom:423.106667pt;}
.y17e{bottom:423.746667pt;}
.y5c{bottom:427.106667pt;}
.yb8{bottom:427.586667pt;}
.ya4{bottom:429.986667pt;}
.y150{bottom:431.106667pt;}
.y1db{bottom:432.226667pt;}
.y29{bottom:432.866667pt;}
.y209{bottom:434.306667pt;}
.y87{bottom:437.986667pt;}
.y1a6{bottom:439.906667pt;}
.yfe{bottom:443.266667pt;}
.yb7{bottom:444.546667pt;}
.y5b{bottom:445.666667pt;}
.yc9{bottom:445.986667pt;}
.y17d{bottom:446.786667pt;}
.y28{bottom:448.226667pt;}
.y1da{bottom:448.866667pt;}
.y14f{bottom:449.186667pt;}
.ya3{bottom:453.986667pt;}
.y208{bottom:456.066667pt;}
.y1a5{bottom:456.866667pt;}
.yb6{bottom:461.026667pt;}
.y86{bottom:461.986667pt;}
.y27{bottom:463.586667pt;}
.y1d9{bottom:465.986667pt;}
.y14e{bottom:466.146667pt;}
.yfd{bottom:467.266667pt;}
.y5a{bottom:469.666667pt;}
.yc8{bottom:469.986667pt;}
.y17c{bottom:470.626667pt;}
.y1a4{bottom:473.666667pt;}
.ya2{bottom:477.826667pt;}
.yb5{bottom:478.306667pt;}
.y26{bottom:478.786667pt;}
.y1d8{bottom:481.826667pt;}
.y14d{bottom:482.946667pt;}
.y85{bottom:485.826667pt;}
.y17b{bottom:488.866667pt;}
.y1a3{bottom:490.466667pt;}
.yfc{bottom:491.106667pt;}
.y59{bottom:493.506667pt;}
.yc7{bottom:493.826667pt;}
.y25{bottom:494.146667pt;}
.y1d7{bottom:494.786667pt;}
.yb4{bottom:495.106667pt;}
.y149{bottom:496.866667pt;}
.y207{bottom:499.586667pt;}
.ya1{bottom:501.826667pt;}
.y11d{bottom:503.746667pt;}
.y17a{bottom:505.666667pt;}
.y1a2{bottom:507.426667pt;}
.y24{bottom:509.506667pt;}
.y84{bottom:509.826667pt;}
.y1d6{bottom:512.066667pt;}
.yfb{bottom:514.786667pt;}
.y58{bottom:517.506667pt;}
.yb3{bottom:517.826667pt;}
.y206{bottom:521.346667pt;}
.y11c{bottom:521.986667pt;}
.y179{bottom:522.626667pt;}
.ya0{bottom:522.786667pt;}
.y1a1{bottom:524.226667pt;}
.y23{bottom:524.866667pt;}
.y1d5{bottom:528.866667pt;}
.yfa{bottom:533.213333pt;}
.y83{bottom:533.693333pt;}
.y178{bottom:539.453333pt;}
.y22{bottom:540.253333pt;}
.y11b{bottom:540.733333pt;}
.y121{bottom:540.800000pt;}
.y1a0{bottom:541.213333pt;}
.y57{bottom:541.373333pt;}
.yb2{bottom:541.693333pt;}
.y205{bottom:543.133333pt;}
.y125{bottom:544.640000pt;}
.y1d4{bottom:545.693333pt;}
.yf9{bottom:550.173333pt;}
.y21{bottom:555.613333pt;}
.y177{bottom:556.253333pt;}
.y82{bottom:557.693333pt;}
.y19f{bottom:558.013333pt;}
.y1d3{bottom:562.653333pt;}
.y147{bottom:562.813333pt;}
.yf6{bottom:564.093333pt;}
.y204{bottom:564.733333pt;}
.y9f{bottom:565.373333pt;}
.y56{bottom:565.693333pt;}
.y12c{bottom:569.600000pt;}
.y20{bottom:570.813333pt;}
.y176{bottom:573.213333pt;}
.y19e{bottom:574.813333pt;}
.y1d2{bottom:579.453333pt;}
.y81{bottom:581.533333pt;}
.y1f{bottom:586.173333pt;}
.y165{bottom:586.493333pt;}
.y9e{bottom:589.213333pt;}
.y55{bottom:589.533333pt;}
.y175{bottom:590.013333pt;}
.y19d{bottom:591.773333pt;}
.y1d1{bottom:596.413333pt;}
.y1e{bottom:601.533333pt;}
.y164{bottom:605.213333pt;}
.y80{bottom:605.533333pt;}
.y174{bottom:606.973333pt;}
.y203{bottom:608.253333pt;}
.y19c{bottom:608.573333pt;}
.y1d0{bottom:613.213333pt;}
.y54{bottom:613.533333pt;}
.y1d{bottom:616.893333pt;}
.y173{bottom:623.773333pt;}
.y19b{bottom:625.533333pt;}
.y143{bottom:626.973333pt;}
.y7f{bottom:629.373333pt;}
.y1cf{bottom:630.013333pt;}
.y1c{bottom:631.933333pt;}
.yf2{bottom:636.573333pt;}
.y53{bottom:637.373333pt;}
.y172{bottom:640.573333pt;}
.y19a{bottom:642.333333pt;}
.y1ce{bottom:646.973333pt;}
.y1b{bottom:648.253333pt;}
.y202{bottom:651.773333pt;}
.y9a{bottom:653.053333pt;}
.y7e{bottom:653.373333pt;}
.y171{bottom:657.533333pt;}
.y199{bottom:659.133333pt;}
.y52{bottom:661.373333pt;}
.y1cd{bottom:663.773333pt;}
.y1a{bottom:666.653333pt;}
.y201{bottom:673.533333pt;}
.y170{bottom:674.333333pt;}
.y198{bottom:676.093333pt;}
.y7d{bottom:677.213333pt;}
.y1cc{bottom:680.413333pt;}
.y19{bottom:684.413333pt;}
.y51{bottom:685.213333pt;}
.y16f{bottom:691.293333pt;}
.y197{bottom:692.893333pt;}
.y200{bottom:695.133333pt;}
.ye4{bottom:696.253333pt;}
.y1cb{bottom:697.533333pt;}
.y142{bottom:699.293333pt;}
.y18{bottom:700.413333pt;}
.y7c{bottom:701.213333pt;}
.y16e{bottom:708.093333pt;}
.y50{bottom:709.053333pt;}
.y196{bottom:709.853333pt;}
.y1ca{bottom:714.333333pt;}
.y1ff{bottom:716.893333pt;}
.y17{bottom:718.813333pt;}
.y141{bottom:723.133333pt;}
.y7b{bottom:725.053333pt;}
.y195{bottom:726.653333pt;}
.y1c9{bottom:730.973333pt;}
.y4f{bottom:733.053333pt;}
.y16{bottom:737.213333pt;}
.y1fe{bottom:738.653333pt;}
.y16d{bottom:740.893333pt;}
.y194{bottom:743.453333pt;}
.y140{bottom:747.133333pt;}
.y1c8{bottom:748.093333pt;}
.y7a{bottom:749.053333pt;}
.y15{bottom:755.613333pt;}
.y4e{bottom:756.893333pt;}
.y16c{bottom:758.813333pt;}
.y193{bottom:760.413333pt;}
.y1c7{bottom:765.053333pt;}
.y79{bottom:772.933333pt;}
.y14{bottom:774.053333pt;}
.y192{bottom:777.253333pt;}
.y4d{bottom:780.933333pt;}
.y1c6{bottom:781.573333pt;}
.y16b{bottom:781.893333pt;}
.y1fd{bottom:782.213333pt;}
.y13{bottom:792.293333pt;}
.yea{bottom:792.613333pt;}
.y191{bottom:794.213333pt;}
.y78{bottom:796.933333pt;}
.y1c5{bottom:798.693333pt;}
.y1fc{bottom:803.973333pt;}
.y4c{bottom:804.773333pt;}
.y16a{bottom:805.733333pt;}
.y12{bottom:810.373333pt;}
.y190{bottom:811.013333pt;}
.y1c4{bottom:815.333333pt;}
.y77{bottom:820.773333pt;}
.y169{bottom:823.973333pt;}
.y1fb{bottom:825.573333pt;}
.y18f{bottom:827.973333pt;}
.y4b{bottom:828.773333pt;}
.y11{bottom:829.893333pt;}
.y1c3{bottom:832.453333pt;}
.y168{bottom:840.773333pt;}
.y76{bottom:844.773333pt;}
.y1fa{bottom:847.333333pt;}
.y1c2{bottom:849.093333pt;}
.y9d{bottom:849.733333pt;}
.y4a{bottom:852.613333pt;}
.y10{bottom:854.373333pt;}
.y11a{bottom:854.533333pt;}
.y167{bottom:856.773333pt;}
.ye3{bottom:861.573333pt;}
.y1c1{bottom:866.213333pt;}
.y9c{bottom:868.293333pt;}
.y75{bottom:868.613333pt;}
.y1f8{bottom:869.093333pt;}
.y166{bottom:869.573333pt;}
.y119{bottom:872.773333pt;}
.y160{bottom:873.573333pt;}
.y49{bottom:876.613333pt;}
.ye2{bottom:878.533333pt;}
.yf{bottom:879.333333pt;}
.y1c0{bottom:882.693333pt;}
.y118{bottom:889.573333pt;}
.y1f6{bottom:890.853333pt;}
.y15f{bottom:892.293333pt;}
.y74{bottom:892.613333pt;}
.ye1{bottom:895.333333pt;}
.y1bf{bottom:899.973333pt;}
.y48{bottom:900.453333pt;}
.y115{bottom:903.493333pt;}
.ye0{bottom:912.293333pt;}
.y1f0{bottom:912.613333pt;}
.y73{bottom:916.453333pt;}
.y47{bottom:924.453333pt;}
.ye{bottom:927.333333pt;}
.ydf{bottom:929.093333pt;}
.y1be{bottom:933.733333pt;}
.y72{bottom:940.453333pt;}
.y112{bottom:941.573333pt;}
.y7{bottom:942.373333pt;}
.yde{bottom:945.893333pt;}
.y46{bottom:948.293333pt;}
.y1bd{bottom:950.533333pt;}
.y5{bottom:959.493333pt;}
.ydd{bottom:962.853333pt;}
.y71{bottom:964.293333pt;}
.y1bc{bottom:967.493333pt;}
.y45{bottom:972.293333pt;}
.y10c{bottom:975.493333pt;}
.ydc{bottom:979.653333pt;}
.y1bb{bottom:983.333333pt;}
.y70{bottom:988.293333pt;}
.y44{bottom:993.253333pt;}
.y1ba{bottom:996.293333pt;}
.ydb{bottom:996.613333pt;}
.y1ef{bottom:1000.133333pt;}
.y43{bottom:1011.840000pt;}
.y6f{bottom:1012.160000pt;}
.y1b9{bottom:1013.120000pt;}
.yda{bottom:1013.440000pt;}
.y69{bottom:1041.760000pt;}
.y40{bottom:1044.160000pt;}
.y6d{bottom:1058.080000pt;}
.y41{bottom:1058.240000pt;}
.y3f{bottom:1061.600000pt;}
.h10{height:15.200000pt;}
.h14{height:15.360000pt;}
.h8{height:16.480000pt;}
.h3c{height:20.960000pt;}
.h3e{height:20.992000pt;}
.h3b{height:21.120000pt;}
.h3d{height:21.152000pt;}
.h1a{height:22.880000pt;}
.h36{height:24.000000pt;}
.h38{height:24.032000pt;}
.h37{height:24.160000pt;}
.h32{height:25.760000pt;}
.h19{height:28.160000pt;}
.h2b{height:29.920000pt;}
.h22{height:33.120000pt;}
.h17{height:37.120000pt;}
.h23{height:37.440000pt;}
.h12{height:42.084375pt;}
.h39{height:43.215000pt;}
.hf{height:47.621250pt;}
.h1d{height:47.840000pt;}
.h21{height:50.592000pt;}
.h9{height:50.955000pt;}
.h6{height:52.108438pt;}
.h2{height:52.134375pt;}
.he{height:53.535000pt;}
.h29{height:55.275000pt;}
.h16{height:57.375000pt;}
.h11{height:57.787500pt;}
.h1f{height:59.040000pt;}
.h18{height:59.340000pt;}
.h1b{height:60.519362pt;}
.h33{height:62.240000pt;}
.hd{height:62.781250pt;}
.h3{height:62.812500pt;}
.h34{height:63.520000pt;}
.hc{height:64.500000pt;}
.h35{height:65.312000pt;}
.h15{height:65.781915pt;}
.h4{height:66.592000pt;}
.h13{height:71.524375pt;}
.h20{height:71.680000pt;}
.ha{height:83.540625pt;}
.h5{height:83.712000pt;}
.h3a{height:84.320000pt;}
.hb{height:85.785000pt;}
.h2e{height:88.000000pt;}
.h1e{height:95.712000pt;}
.h24{height:96.960000pt;}
.h2c{height:111.040000pt;}
.h25{height:116.640000pt;}
.h2d{height:134.080000pt;}
.h26{height:136.320000pt;}
.h7{height:142.045312pt;}
.h1c{height:144.186667pt;}
.h27{height:152.160000pt;}
.h2f{height:156.800000pt;}
.h30{height:156.960000pt;}
.h2a{height:217.600000pt;}
.h28{height:304.480000pt;}
.h31{height:313.920000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:13.440000pt;}
.w14{width:21.920000pt;}
.w13{width:22.080000pt;}
.w9{width:65.440000pt;}
.w24{width:83.040000pt;}
.w27{width:83.360000pt;}
.w25{width:83.392000pt;}
.w26{width:83.520000pt;}
.w1c{width:93.152000pt;}
.w1b{width:98.400000pt;}
.w17{width:98.560000pt;}
.wa{width:102.112000pt;}
.we{width:102.240000pt;}
.wd{width:104.832000pt;}
.wf{width:105.312000pt;}
.wc{width:106.560000pt;}
.w6{width:108.992000pt;}
.w8{width:109.120000pt;}
.w7{width:109.152000pt;}
.w11{width:115.072000pt;}
.w12{width:115.200000pt;}
.w19{width:115.360000pt;}
.w16{width:118.720000pt;}
.w1a{width:126.880000pt;}
.w1f{width:127.712000pt;}
.w10{width:128.480000pt;}
.w1e{width:132.512000pt;}
.w1d{width:132.800000pt;}
.w5{width:138.720000pt;}
.w21{width:159.386667pt;}
.w22{width:167.546667pt;}
.w2{width:200.346667pt;}
.w3{width:200.506667pt;}
.w20{width:260.986667pt;}
.w23{width:327.586667pt;}
.wb{width:420.866667pt;}
.w18{width:576.640000pt;}
.w15{width:593.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.680000pt;}
.x79{left:5.280000pt;}
.x19{left:6.880000pt;}
.x36{left:8.160000pt;}
.x7d{left:9.120000pt;}
.x44{left:10.400000pt;}
.x31{left:13.120000pt;}
.x46{left:14.080000pt;}
.x27{left:15.360000pt;}
.x2d{left:16.480000pt;}
.x41{left:18.080000pt;}
.x1b{left:20.360000pt;}
.x42{left:21.760000pt;}
.x3f{left:23.360000pt;}
.x47{left:25.600000pt;}
.x22{left:26.880000pt;}
.x1c{left:28.360000pt;}
.x23{left:30.874667pt;}
.x2c{left:32.800000pt;}
.x20{left:34.400000pt;}
.x39{left:35.680000pt;}
.x45{left:37.920000pt;}
.x34{left:39.040000pt;}
.x5{left:40.000000pt;}
.x1e{left:42.240000pt;}
.x26{left:43.560000pt;}
.x24{left:47.080000pt;}
.x70{left:49.114667pt;}
.x25{left:50.720000pt;}
.x33{left:52.480000pt;}
.x73{left:55.360000pt;}
.x7{left:57.120000pt;}
.x74{left:58.906667pt;}
.xb{left:67.040000pt;}
.x9{left:68.640000pt;}
.x38{left:71.200000pt;}
.x3{left:75.994667pt;}
.x6{left:94.720000pt;}
.x1{left:96.032000pt;}
.x3c{left:101.152000pt;}
.x2a{left:102.112000pt;}
.x6f{left:103.392000pt;}
.x5c{left:106.240000pt;}
.x18{left:108.192000pt;}
.x6d{left:110.240000pt;}
.x17{left:119.232000pt;}
.x3d{left:121.434667pt;}
.x16{left:124.512000pt;}
.x4c{left:127.712000pt;}
.xd{left:128.672000pt;}
.x30{left:132.640000pt;}
.x14{left:133.786667pt;}
.x3a{left:140.986667pt;}
.x15{left:152.826667pt;}
.x77{left:154.906667pt;}
.x48{left:156.986667pt;}
.x4d{left:161.760000pt;}
.x2b{left:168.186667pt;}
.x29{left:171.546667pt;}
.x78{left:187.546667pt;}
.x5e{left:189.280000pt;}
.x4e{left:190.560000pt;}
.x75{left:192.826667pt;}
.x28{left:197.306667pt;}
.x71{left:202.426667pt;}
.x2f{left:210.426667pt;}
.x5f{left:217.120000pt;}
.x4f{left:219.200000pt;}
.x3e{left:230.266667pt;}
.x60{left:244.960000pt;}
.x1a{left:247.546667pt;}
.x2{left:265.186667pt;}
.x2e{left:270.946667pt;}
.x76{left:272.866667pt;}
.x3b{left:273.826667pt;}
.x50{left:276.480000pt;}
.xe{left:292.226667pt;}
.x4{left:296.706667pt;}
.x61{left:300.800000pt;}
.xf{left:304.866667pt;}
.x49{left:310.146667pt;}
.x10{left:316.866667pt;}
.x62{left:328.800000pt;}
.x51{left:333.920000pt;}
.x6e{left:340.160000pt;}
.x40{left:345.986667pt;}
.x7a{left:355.106667pt;}
.x1d{left:357.186667pt;}
.x52{left:362.560000pt;}
.x5d{left:364.640000pt;}
.x32{left:378.146667pt;}
.x63{left:384.640000pt;}
.x53{left:391.200000pt;}
.xc{left:396.866667pt;}
.x64{left:412.480000pt;}
.x54{left:420.000000pt;}
.x72{left:429.666667pt;}
.x7b{left:438.786667pt;}
.x65{left:440.480000pt;}
.x55{left:448.640000pt;}
.x43{left:461.693333pt;}
.x1f{left:466.973333pt;}
.x66{left:468.320000pt;}
.x56{left:477.280000pt;}
.x35{left:483.613333pt;}
.x67{left:496.320000pt;}
.x8{left:497.213333pt;}
.x57{left:505.920000pt;}
.x7c{left:522.493333pt;}
.x68{left:524.160000pt;}
.x58{left:534.720000pt;}
.x69{left:552.160000pt;}
.x11{left:563.613333pt;}
.x21{left:576.733333pt;}
.x6a{left:580.000000pt;}
.x37{left:586.493333pt;}
.x59{left:592.000000pt;}
.x7e{left:606.333333pt;}
.x6b{left:607.840000pt;}
.x5a{left:620.640000pt;}
.x6c{left:635.840000pt;}
.x5b{left:649.440000pt;}
.x4b{left:672.613333pt;}
.x13{left:684.613333pt;}
.x4a{left:690.693333pt;}
.x12{left:697.893333pt;}
}




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