
    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_ebd94e7881142eb79e234eca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_8f656c47bc00aec629755b11.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_85f4976cedd902b82b8bf2db.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_6df3c4a803b3973ba25e0ea8.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_6ce634ed5394a7ac2f79bef6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.877441;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_0d1f61ad3147324d4f122413.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls14{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.360000px;}
.lsc{letter-spacing:-0.106800px;}
.ls6{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.ls3{letter-spacing:0.306720px;}
.ls8{letter-spacing:0.360000px;}
.ls13{letter-spacing:1.620000px;}
.ls11{letter-spacing:16.506720px;}
.ls10{letter-spacing:19.620000px;}
.lsf{letter-spacing:46.026720px;}
.lse{letter-spacing:46.170720px;}
.ls12{letter-spacing:71.460000px;}
.lsd{letter-spacing:90.810720px;}
.ls2{letter-spacing:91.386720px;}
.ls7{letter-spacing:91.530720px;}
.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;}
}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._29{margin-left:-2.406960px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._7{width:2.854560px;}
._8{width:3.949440px;}
._9{width:5.094960px;}
._a{width:6.812640px;}
._d{width:8.447760px;}
._c{width:9.681120px;}
._b{width:11.000880px;}
._11{width:12.375360px;}
._e{width:13.919520px;}
._20{width:16.210080px;}
._26{width:17.330400px;}
._1f{width:18.645120px;}
._10{width:19.725840px;}
._f{width:20.975760px;}
._1e{width:22.111200px;}
._1c{width:24.083280px;}
._1d{width:25.462800px;}
._21{width:27.305280px;}
._15{width:28.809360px;}
._23{width:30.912480px;}
._22{width:32.688720px;}
._34{width:33.932160px;}
._19{width:34.975440px;}
._13{width:36.871920px;}
._14{width:38.007360px;}
._12{width:39.202560px;}
._2d{width:40.283280px;}
._30{width:42.863040px;}
._2c{width:44.386560px;}
._25{width:45.482400px;}
._24{width:46.792080px;}
._1b{width:48.704400px;}
._1a{width:49.899600px;}
._27{width:51.393600px;}
._28{width:53.604720px;}
._35{width:55.848240px;}
._17{width:58.026960px;}
._16{width:59.401440px;}
._32{width:62.150400px;}
._31{width:63.226080px;}
._37{width:68.783760px;}
._36{width:72.369360px;}
._18{width:76.497840px;}
._33{width:88.922880px;}
._2a{width:96.093840px;}
._2b{width:103.867920px;}
._39{width:114.380640px;}
._38{width:115.516080px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._2e{width:564.636000px;}
._3{width:631.448160px;}
._2f{width:641.160000px;}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yc5{bottom:5.760000px;}
.ye0{bottom:5.790000px;}
.yd2{bottom:5.805000px;}
.yf6{bottom:5.934000px;}
.yd5{bottom:5.940000px;}
.y8{bottom:6.300000px;}
.y7{bottom:6.480000px;}
.y122{bottom:8.640000px;}
.y14a{bottom:9.180000px;}
.y10f{bottom:9.540000px;}
.y15c{bottom:10.080000px;}
.y10d{bottom:10.260000px;}
.y124{bottom:17.460000px;}
.y12f{bottom:18.720000px;}
.y12d{bottom:22.500000px;}
.y146{bottom:23.760000px;}
.yc7{bottom:25.560000px;}
.y173{bottom:25.590000px;}
.ye6{bottom:25.740000px;}
.y18d{bottom:25.770000px;}
.yc9{bottom:28.620000px;}
.y144{bottom:29.700000px;}
.y15b{bottom:29.880000px;}
.y171{bottom:32.040000px;}
.y190{bottom:45.540000px;}
.y1b4{bottom:45.585000px;}
.y9{bottom:51.120000px;}
.yf2{bottom:51.474000px;}
.y111{bottom:51.510000px;}
.yc3{bottom:57.420000px;}
.yd0{bottom:62.820000px;}
.ye8{bottom:62.865000px;}
.ydc{bottom:63.000000px;}
.y1b3{bottom:65.385000px;}
.y6{bottom:66.816000px;}
.yc2{bottom:73.116000px;}
.y193{bottom:85.140000px;}
.y1b2{bottom:85.185000px;}
.y148{bottom:91.485000px;}
.ya9{bottom:93.456000px;}
.y38{bottom:95.796000px;}
.y44{bottom:97.776000px;}
.yf1{bottom:99.936000px;}
.y158{bottom:102.096000px;}
.yc1{bottom:102.456000px;}
.y12b{bottom:104.436000px;}
.y1be{bottom:106.956000px;}
.y15e{bottom:108.720000px;}
.y126{bottom:111.414000px;}
.y7b{bottom:111.456000px;}
.y131{bottom:112.500000px;}
.y175{bottom:113.040000px;}
.ya8{bottom:113.256000px;}
.y1c1{bottom:115.236000px;}
.y37{bottom:115.776000px;}
.y43{bottom:117.576000px;}
.y1f8{bottom:119.196000px;}
.y125{bottom:119.376000px;}
.y157{bottom:121.896000px;}
.yc0{bottom:122.256000px;}
.yf7{bottom:122.796000px;}
.y1bd{bottom:126.756000px;}
.y18b{bottom:127.476000px;}
.y7a{bottom:131.256000px;}
.ya7{bottom:133.236000px;}
.y1c0{bottom:133.776000px;}
.y36{bottom:135.576000px;}
.y42{bottom:137.376000px;}
.y1f7{bottom:137.736000px;}
.y12a{bottom:139.896000px;}
.y156{bottom:141.696000px;}
.ybf{bottom:142.236000px;}
.yf5{bottom:145.476000px;}
.y1bc{bottom:146.736000px;}
.y18a{bottom:147.276000px;}
.y79{bottom:151.230000px;}
.y1bf{bottom:152.310000px;}
.ya6{bottom:153.030000px;}
.y35{bottom:155.370000px;}
.y1f6{bottom:156.450000px;}
.y41{bottom:157.170000px;}
.y129{bottom:160.410000px;}
.y155{bottom:161.490000px;}
.ybe{bottom:162.030000px;}
.y1bb{bottom:166.530000px;}
.y189{bottom:167.250000px;}
.yf4{bottom:168.330000px;}
.y78{bottom:171.030000px;}
.ya5{bottom:172.830000px;}
.y1f5{bottom:174.990000px;}
.y34{bottom:175.170000px;}
.y40{bottom:176.970000px;}
.y128{bottom:181.110000px;}
.y154{bottom:181.290000px;}
.ybd{bottom:181.830000px;}
.y1ba{bottom:186.330000px;}
.y188{bottom:187.050000px;}
.y77{bottom:190.830000px;}
.yf3{bottom:191.190000px;}
.ya4{bottom:192.630000px;}
.y1f4{bottom:193.710000px;}
.y33{bottom:194.970000px;}
.y3f{bottom:196.950000px;}
.y153{bottom:201.270000px;}
.ybc{bottom:201.630000px;}
.y1b9{bottom:206.130000px;}
.y187{bottom:206.850000px;}
.y76{bottom:210.630000px;}
.y1f3{bottom:212.250000px;}
.ya3{bottom:212.430000px;}
.yf0{bottom:214.050000px;}
.y32{bottom:214.950000px;}
.y3e{bottom:216.750000px;}
.y152{bottom:221.070000px;}
.ybb{bottom:221.430000px;}
.y127{bottom:222.150000px;}
.y1b8{bottom:225.930000px;}
.y186{bottom:226.650000px;}
.y75{bottom:230.430000px;}
.y1f2{bottom:230.790000px;}
.ya2{bottom:232.410000px;}
.y31{bottom:234.750000px;}
.y3d{bottom:236.550000px;}
.y151{bottom:240.870000px;}
.yba{bottom:241.410000px;}
.y123{bottom:244.830000px;}
.y1b7{bottom:245.910000px;}
.y185{bottom:246.450000px;}
.y1f1{bottom:249.510000px;}
.y74{bottom:250.410000px;}
.ya1{bottom:252.210000px;}
.y30{bottom:254.550000px;}
.yef{bottom:256.710000px;}
.y150{bottom:260.670000px;}
.yb9{bottom:261.210000px;}
.y3c{bottom:265.350000px;}
.y1b6{bottom:265.710000px;}
.y184{bottom:266.430000px;}
.y1f0{bottom:268.050000px;}
.y73{bottom:270.210000px;}
.ya0{bottom:272.010000px;}
.y2f{bottom:274.350000px;}
.y121{bottom:277.050000px;}
.y14f{bottom:280.470000px;}
.yb8{bottom:281.010000px;}
.yee{bottom:282.270000px;}
.y3b{bottom:285.150000px;}
.y1b5{bottom:285.510000px;}
.y183{bottom:286.230000px;}
.y1ef{bottom:286.770000px;}
.y72{bottom:290.010000px;}
.y9f{bottom:291.810000px;}
.y2e{bottom:294.150000px;}
.ye7{bottom:299.370000px;}
.y1b1{bottom:300.270000px;}
.y14e{bottom:300.450000px;}
.yb7{bottom:300.810000px;}
.y3a{bottom:305.130000px;}
.y1ee{bottom:305.310000px;}
.y120{bottom:305.490000px;}
.y182{bottom:306.030000px;}
.y71{bottom:309.810000px;}
.y9e{bottom:311.610000px;}
.y2d{bottom:314.130000px;}
.y147{bottom:315.210000px;}
.yb6{bottom:320.610000px;}
.yed{bottom:322.230000px;}
.y1ed{bottom:323.850000px;}
.y39{bottom:324.930000px;}
.y11f{bottom:325.470000px;}
.y181{bottom:325.830000px;}
.y70{bottom:329.655000px;}
.y9d{bottom:331.635000px;}
.y2c{bottom:333.975000px;}
.y14d{bottom:335.775000px;}
.yb5{bottom:340.635000px;}
.y1ec{bottom:342.615000px;}
.yec{bottom:345.135000px;}
.y11e{bottom:345.315000px;}
.y180{bottom:345.675000px;}
.y6f{bottom:349.635000px;}
.y9c{bottom:351.435000px;}
.y2b{bottom:353.775000px;}
.y14c{bottom:356.475000px;}
.yb4{bottom:360.435000px;}
.y1eb{bottom:361.155000px;}
.y11d{bottom:365.115000px;}
.y17f{bottom:365.655000px;}
.yeb{bottom:367.995000px;}
.y6e{bottom:369.435000px;}
.y9b{bottom:371.235000px;}
.y2a{bottom:373.575000px;}
.y14b{bottom:376.995000px;}
.y1ea{bottom:379.875000px;}
.yb3{bottom:380.235000px;}
.y11c{bottom:384.915000px;}
.y17e{bottom:385.455000px;}
.y6d{bottom:389.235000px;}
.yea{bottom:390.855000px;}
.y9a{bottom:391.035000px;}
.y29{bottom:393.375000px;}
.y149{bottom:397.515000px;}
.y1e9{bottom:398.415000px;}
.yb2{bottom:400.035000px;}
.y1b0{bottom:400.215000px;}
.y11b{bottom:404.715000px;}
.y17d{bottom:405.255000px;}
.y6c{bottom:409.035000px;}
.y99{bottom:410.835000px;}
.y28{bottom:413.355000px;}
.ye9{bottom:413.535000px;}
.y1e8{bottom:416.955000px;}
.yb1{bottom:419.835000px;}
.y145{bottom:420.735000px;}
.y1af{bottom:420.915000px;}
.y11a{bottom:424.695000px;}
.y17c{bottom:425.055000px;}
.y6b{bottom:428.835000px;}
.y98{bottom:430.815000px;}
.y27{bottom:433.155000px;}
.y1e7{bottom:435.675000px;}
.ye5{bottom:436.395000px;}
.yb0{bottom:439.815000px;}
.y119{bottom:444.495000px;}
.y17b{bottom:444.855000px;}
.y6a{bottom:448.815000px;}
.y97{bottom:450.615000px;}
.y26{bottom:452.955000px;}
.y1e6{bottom:454.215000px;}
.y143{bottom:459.435000px;}
.yaf{bottom:459.615000px;}
.y174{bottom:459.795000px;}
.y118{bottom:464.295000px;}
.y1ae{bottom:466.995000px;}
.y69{bottom:468.615000px;}
.y96{bottom:470.415000px;}
.y25{bottom:472.755000px;}
.y1e5{bottom:472.935000px;}
.ye4{bottom:479.055000px;}
.yae{bottom:479.415000px;}
.y17a{bottom:480.315000px;}
.y117{bottom:484.095000px;}
.y1ad{bottom:486.975000px;}
.y68{bottom:488.415000px;}
.y95{bottom:490.215000px;}
.y1e4{bottom:491.475000px;}
.y24{bottom:492.555000px;}
.yad{bottom:499.215000px;}
.y179{bottom:500.835000px;}
.y116{bottom:503.895000px;}
.ye3{bottom:504.795000px;}
.y1ac{bottom:506.775000px;}
.y67{bottom:508.215000px;}
.y142{bottom:509.115000px;}
.y94{bottom:510.015000px;}
.y1e3{bottom:510.195000px;}
.y23{bottom:512.535000px;}
.yac{bottom:519.015000px;}
.y178{bottom:521.535000px;}
.ydb{bottom:521.715000px;}
.y115{bottom:523.875000px;}
.y1ab{bottom:526.575000px;}
.y66{bottom:528.015000px;}
.y1e2{bottom:528.735000px;}
.y141{bottom:528.915000px;}
.y93{bottom:529.995000px;}
.y22{bottom:532.335000px;}
.yab{bottom:538.995000px;}
.y177{bottom:542.055000px;}
.y114{bottom:543.675000px;}
.ye2{bottom:544.575000px;}
.y1aa{bottom:546.375000px;}
.y1e1{bottom:547.275000px;}
.y65{bottom:547.995000px;}
.y140{bottom:548.715000px;}
.y92{bottom:549.795000px;}
.y21{bottom:552.135000px;}
.y110{bottom:558.435000px;}
.yaa{bottom:558.795000px;}
.y176{bottom:562.575000px;}
.y1e0{bottom:565.995000px;}
.y1a9{bottom:566.175000px;}
.ye1{bottom:567.435000px;}
.y64{bottom:567.795000px;}
.y13f{bottom:568.515000px;}
.y20{bottom:571.935000px;}
.y91{bottom:578.595000px;}
.y113{bottom:578.955000px;}
.y1df{bottom:584.535000px;}
.y1a8{bottom:586.155000px;}
.y172{bottom:586.875000px;}
.y63{bottom:587.595000px;}
.y13e{bottom:588.315000px;}
.ydf{bottom:590.295000px;}
.y1f{bottom:594.075000px;}
.y90{bottom:598.425000px;}
.y112{bottom:599.685000px;}
.y1de{bottom:603.285000px;}
.y1a7{bottom:605.985000px;}
.y62{bottom:607.425000px;}
.y13d{bottom:608.325000px;}
.yde{bottom:613.185000px;}
.y1e{bottom:613.905000px;}
.y8f{bottom:618.225000px;}
.y1dd{bottom:621.825000px;}
.y10e{bottom:623.985000px;}
.y1a6{bottom:625.785000px;}
.y61{bottom:627.225000px;}
.y170{bottom:627.405000px;}
.y13c{bottom:628.125000px;}
.y1d{bottom:633.705000px;}
.ydd{bottom:636.045000px;}
.y8e{bottom:638.205000px;}
.y1dc{bottom:640.365000px;}
.y1a5{bottom:645.585000px;}
.y60{bottom:647.205000px;}
.y13b{bottom:647.925000px;}
.y10c{bottom:648.465000px;}
.y1c{bottom:653.505000px;}
.y8d{bottom:658.005000px;}
.yda{bottom:658.905000px;}
.y1db{bottom:659.085000px;}
.y1a4{bottom:665.385000px;}
.y5f{bottom:667.005000px;}
.y13a{bottom:667.725000px;}
.y1b{bottom:673.485000px;}
.y1da{bottom:677.625000px;}
.y8c{bottom:677.805000px;}
.y10b{bottom:678.525000px;}
.y16f{bottom:679.245000px;}
.y1a3{bottom:685.365000px;}
.y5e{bottom:686.805000px;}
.y139{bottom:687.525000px;}
.y1a{bottom:693.285000px;}
.y1d9{bottom:696.345000px;}
.y8b{bottom:697.605000px;}
.y10a{bottom:698.325000px;}
.y16e{bottom:699.045000px;}
.yd9{bottom:701.565000px;}
.y1a2{bottom:705.165000px;}
.y5d{bottom:706.605000px;}
.y138{bottom:707.505000px;}
.y19{bottom:713.085000px;}
.y1d8{bottom:714.885000px;}
.y8a{bottom:717.405000px;}
.y109{bottom:718.125000px;}
.y16d{bottom:718.845000px;}
.y1a1{bottom:724.965000px;}
.y5c{bottom:726.405000px;}
.yd8{bottom:727.125000px;}
.y137{bottom:727.305000px;}
.y18{bottom:732.885000px;}
.y1d7{bottom:733.425000px;}
.y103{bottom:735.225000px;}
.y89{bottom:737.385000px;}
.y16c{bottom:738.825000px;}
.y130{bottom:742.065000px;}
.ycf{bottom:744.225000px;}
.y1a0{bottom:744.765000px;}
.y5b{bottom:746.385000px;}
.y1d6{bottom:752.145000px;}
.y17{bottom:752.685000px;}
.y88{bottom:757.185000px;}
.y108{bottom:758.085000px;}
.y16b{bottom:758.625000px;}
.y200{bottom:760.965000px;}
.y136{bottom:762.585000px;}
.y19f{bottom:764.565000px;}
.y5a{bottom:766.185000px;}
.yd7{bottom:767.085000px;}
.y1d5{bottom:770.685000px;}
.y16{bottom:772.665000px;}
.y87{bottom:776.985000px;}
.y16a{bottom:778.425000px;}
.y1ff{bottom:780.765000px;}
.y107{bottom:780.945000px;}
.y135{bottom:783.285000px;}
.y19e{bottom:784.545000px;}
.y59{bottom:785.985000px;}
.y1d4{bottom:789.405000px;}
.yd6{bottom:789.945000px;}
.y15{bottom:792.465000px;}
.y86{bottom:796.785000px;}
.y169{bottom:798.225000px;}
.y1fe{bottom:800.565000px;}
.y106{bottom:803.625000px;}
.y134{bottom:803.805000px;}
.y19d{bottom:804.345000px;}
.y58{bottom:805.785000px;}
.y1d3{bottom:807.945000px;}
.y14{bottom:812.085000px;}
.yd4{bottom:812.625000px;}
.y85{bottom:816.585000px;}
.y168{bottom:818.025000px;}
.y19c{bottom:818.385000px;}
.y1fd{bottom:820.545000px;}
.y133{bottom:824.325000px;}
.y57{bottom:825.585000px;}
.y105{bottom:826.485000px;}
.y1d2{bottom:826.665000px;}
.y13{bottom:834.405000px;}
.yd3{bottom:835.485000px;}
.y84{bottom:836.565000px;}
.y167{bottom:838.005000px;}
.y19b{bottom:838.185000px;}
.y1fc{bottom:840.345000px;}
.y132{bottom:845.025000px;}
.y1d1{bottom:845.205000px;}
.y56{bottom:845.565000px;}
.y104{bottom:849.345000px;}
.y83{bottom:856.365000px;}
.y166{bottom:857.805000px;}
.y19a{bottom:857.985000px;}
.yd1{bottom:858.345000px;}
.y12{bottom:859.425000px;}
.y1fb{bottom:860.145000px;}
.y1d0{bottom:863.790000px;}
.y55{bottom:865.410000px;}
.y12e{bottom:868.650000px;}
.y102{bottom:872.250000px;}
.y11{bottom:874.050000px;}
.y82{bottom:876.210000px;}
.y165{bottom:877.650000px;}
.y199{bottom:878.730000px;}
.y1fa{bottom:879.990000px;}
.yce{bottom:881.250000px;}
.y1cf{bottom:882.510000px;}
.y54{bottom:885.210000px;}
.y81{bottom:896.010000px;}
.y164{bottom:897.450000px;}
.y198{bottom:898.530000px;}
.y10{bottom:899.070000px;}
.y1f9{bottom:899.790000px;}
.y1ce{bottom:901.050000px;}
.y12c{bottom:902.310000px;}
.y53{bottom:905.010000px;}
.y15d{bottom:912.210000px;}
.yf{bottom:913.650000px;}
.y101{bottom:914.910000px;}
.y80{bottom:915.810000px;}
.y1cd{bottom:919.770000px;}
.ycd{bottom:923.910000px;}
.y52{bottom:924.810000px;}
.y163{bottom:932.190000px;}
.y7f{bottom:935.790000px;}
.y192{bottom:938.130000px;}
.y1cc{bottom:938.310000px;}
.ye{bottom:938.850000px;}
.y100{bottom:940.470000px;}
.y51{bottom:944.790000px;}
.ycc{bottom:949.470000px;}
.y162{bottom:951.990000px;}
.yd{bottom:953.970000px;}
.y7e{bottom:955.590000px;}
.y1cb{bottom:956.850000px;}
.yfa{bottom:957.570000px;}
.y197{bottom:957.930000px;}
.y50{bottom:964.590000px;}
.yc8{bottom:966.570000px;}
.y161{bottom:971.790000px;}
.y7d{bottom:975.390000px;}
.y1ca{bottom:975.570000px;}
.yc{bottom:975.750000px;}
.y196{bottom:977.910000px;}
.yff{bottom:980.430000px;}
.y4f{bottom:984.390000px;}
.ycb{bottom:989.430000px;}
.y160{bottom:991.590000px;}
.y1c9{bottom:994.110000px;}
.y7c{bottom:995.190000px;}
.y195{bottom:997.710000px;}
.yb{bottom:1000.590000px;}
.yfe{bottom:1003.290000px;}
.y4e{bottom:1004.190000px;}
.y15f{bottom:1011.390000px;}
.yca{bottom:1012.290000px;}
.y1c8{bottom:1012.830000px;}
.y194{bottom:1017.510000px;}
.y4d{bottom:1023.990000px;}
.yfd{bottom:1026.150000px;}
.y1c7{bottom:1031.370000px;}
.ya{bottom:1032.450000px;}
.y15a{bottom:1034.970000px;}
.yc6{bottom:1035.150000px;}
.y18f{bottom:1038.030000px;}
.y4c{bottom:1043.970000px;}
.yfc{bottom:1049.010000px;}
.y1c6{bottom:1050.090000px;}
.y191{bottom:1058.010000px;}
.y4b{bottom:1063.770000px;}
.y5{bottom:1068.270000px;}
.y1c5{bottom:1068.630000px;}
.yfb{bottom:1071.690000px;}
.yc4{bottom:1077.810000px;}
.y159{bottom:1079.610000px;}
.y4a{bottom:1083.570000px;}
.y1c4{bottom:1087.170000px;}
.yf9{bottom:1094.550000px;}
.y18e{bottom:1097.610000px;}
.y49{bottom:1103.370000px;}
.y4{bottom:1103.730000px;}
.y1c3{bottom:1105.890000px;}
.y18c{bottom:1117.410000px;}
.y48{bottom:1123.170000px;}
.y1c2{bottom:1124.430000px;}
.y3{bottom:1132.200000px;}
.yf8{bottom:1137.240000px;}
.y47{bottom:1143.180000px;}
.y2{bottom:1160.640000px;}
.y46{bottom:1172.520000px;}
.y1{bottom:1191.420000px;}
.y45{bottom:1194.300000px;}
.he{height:19.800000px;}
.h12{height:19.836000px;}
.h13{height:19.980000px;}
.h1c{height:20.016000px;}
.h6{height:21.780000px;}
.h1e{height:22.680000px;}
.h28{height:23.220000px;}
.h1a{height:23.580000px;}
.h24{height:23.616000px;}
.h19{height:24.300000px;}
.ha{height:27.147656px;}
.h1f{height:31.500000px;}
.h22{height:32.760000px;}
.h21{height:36.540000px;}
.h26{height:37.800000px;}
.hf{height:39.600000px;}
.h2c{height:39.636000px;}
.h15{height:39.780000px;}
.h17{height:39.816000px;}
.hc{height:41.726953px;}
.hb{height:42.164648px;}
.hd{height:43.506914px;}
.h25{height:43.740000px;}
.h29{height:43.920000px;}
.h1d{height:45.461953px;}
.h2b{height:46.080000px;}
.h7{height:46.251562px;}
.h3{height:46.736719px;}
.h30{height:48.027656px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.h2e{height:59.580000px;}
.h10{height:65.520000px;}
.h1b{height:65.556000px;}
.h5{height:65.884219px;}
.h9{height:67.565039px;}
.h2f{height:99.180000px;}
.h31{height:99.216000px;}
.h27{height:105.516000px;}
.h16{height:111.060000px;}
.h2a{height:122.760000px;}
.h20{height:125.460000px;}
.h23{height:126.576000px;}
.h2d{height:127.080000px;}
.h11{height:133.956000px;}
.h18{height:134.100000px;}
.h14{height:134.136000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5c{width:47.916000px;}
.w5f{width:48.276000px;}
.w3{width:51.336000px;}
.wb{width:59.580000px;}
.w1b{width:59.760000px;}
.w38{width:60.480000px;}
.w58{width:63.576000px;}
.w46{width:67.140000px;}
.w3f{width:67.860000px;}
.w4d{width:69.480000px;}
.w31{width:71.460000px;}
.w29{width:73.260000px;}
.wc{width:74.916000px;}
.w52{width:77.580000px;}
.w53{width:77.616000px;}
.w3c{width:81.036000px;}
.w13{width:82.476000px;}
.w8{width:82.656000px;}
.w18{width:85.176000px;}
.w57{width:85.680000px;}
.w59{width:89.280000px;}
.w2a{width:91.800000px;}
.w43{width:92.376000px;}
.w15{width:92.736000px;}
.w7{width:93.240000px;}
.w4a{width:95.796000px;}
.w2e{width:98.496000px;}
.w26{width:100.836000px;}
.w39{width:101.160000px;}
.w3b{width:101.340000px;}
.w56{width:102.240000px;}
.w55{width:102.456000px;}
.w42{width:104.760000px;}
.w35{width:108.036000px;}
.w49{width:108.540000px;}
.w2d{width:111.780000px;}
.w51{width:112.716000px;}
.w14{width:113.040000px;}
.w9{width:113.220000px;}
.w25{width:114.696000px;}
.w34{width:114.876000px;}
.w10{width:115.776000px;}
.wa{width:120.096000px;}
.wf{width:120.276000px;}
.w22{width:120.996000px;}
.w3d{width:121.500000px;}
.w44{width:126.000000px;}
.w1f{width:129.636000px;}
.w4b{width:130.320000px;}
.w45{width:134.316000px;}
.w2f{width:134.460000px;}
.w6{width:134.496000px;}
.w32{width:137.376000px;}
.w27{width:137.520000px;}
.w4c{width:139.176000px;}
.w36{width:141.660000px;}
.w30{width:143.316000px;}
.w1c{width:143.676000px;}
.w47{width:144.216000px;}
.w17{width:144.756000px;}
.w28{width:147.096000px;}
.w12{width:152.310000px;}
.w4f{width:152.850000px;}
.w40{width:154.470000px;}
.w33{width:161.640000px;}
.w54{width:163.260000px;}
.w24{width:165.060000px;}
.w3e{width:166.350000px;}
.w37{width:173.730000px;}
.we{width:175.350000px;}
.w21{width:180.570000px;}
.w1e{width:189.390000px;}
.w5e{width:201.810000px;}
.w62{width:202.530000px;}
.w1a{width:203.430000px;}
.w50{width:204.690000px;}
.w48{width:208.650000px;}
.w2c{width:208.830000px;}
.w61{width:209.370000px;}
.w41{width:211.350000px;}
.w3a{width:222.330000px;}
.w5d{width:309.810000px;}
.w60{width:310.530000px;}
.w5a{width:318.450000px;}
.w5{width:554.325000px;}
.w16{width:564.405000px;}
.w11{width:571.965000px;}
.wd{width:595.005000px;}
.w20{width:600.045000px;}
.w1d{width:609.045000px;}
.w19{width:623.085000px;}
.w23{width:665.205000px;}
.w2b{width:696.885000px;}
.w5b{width:725.145000px;}
.w4{width:733.065000px;}
.w4e{width:788.730000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:4.500000px;}
.x3{left:8.100000px;}
.x5{left:10.080000px;}
.x41{left:12.600000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.x64{left:61.380000px;}
.x17{left:64.799987px;}
.x16{left:68.939987px;}
.x14{left:73.079987px;}
.x12{left:75.239987px;}
.xe{left:76.859987px;}
.x6{left:78.839987px;}
.x67{left:80.999987px;}
.x4b{left:96.516000px;}
.x46{left:98.136000px;}
.x50{left:100.296000px;}
.x4{left:106.056000px;}
.x15{left:108.035987px;}
.xa{left:109.835987px;}
.x55{left:112.176000px;}
.x40{left:113.976000px;}
.x63{left:115.776000px;}
.x32{left:135.036000px;}
.x33{left:136.476000px;}
.x39{left:146.556000px;}
.x3a{left:147.996000px;}
.x20{left:149.076000px;}
.x21{left:150.510000px;}
.x4f{left:156.990000px;}
.x27{left:160.590000px;}
.x28{left:162.030000px;}
.x9{left:165.089987px;}
.x54{left:168.150000px;}
.x19{left:169.410000px;}
.x1b{left:171.030000px;}
.x5d{left:174.810000px;}
.x59{left:179.310000px;}
.x7{left:188.129987px;}
.xc{left:192.449987px;}
.x38{left:196.230000px;}
.x5e{left:205.050000px;}
.x3f{left:207.570000px;}
.x26{left:210.090000px;}
.x2d{left:221.610000px;}
.x31{left:225.390000px;}
.x1f{left:230.610000px;}
.x4c{left:258.150000px;}
.x42{left:279.030000px;}
.xd{left:301.574987px;}
.x47{left:306.975000px;}
.x1c{left:308.595000px;}
.x2e{left:313.635000px;}
.x29{left:317.415000px;}
.x51{left:322.635000px;}
.x22{left:328.935000px;}
.x3b{left:331.455000px;}
.x34{left:342.975000px;}
.x4d{left:373.035000px;}
.xb{left:386.714987px;}
.x43{left:393.735000px;}
.x1d{left:403.275000px;}
.x13{left:405.794987px;}
.x2f{left:408.315000px;}
.x5f{left:409.755000px;}
.x2a{left:412.275000px;}
.x48{left:418.755000px;}
.x65{left:420.555000px;}
.x5a{left:422.535000px;}
.x23{left:423.615000px;}
.x3c{left:426.135000px;}
.x56{left:428.295000px;}
.x35{left:437.655000px;}
.x8{left:446.474987px;}
.xf{left:473.144987px;}
.x4e{left:481.065000px;}
.x18{left:488.084987px;}
.x10{left:492.224987px;}
.x44{left:494.565000px;}
.x2b{left:496.365000px;}
.x68{left:500.144987px;}
.x52{left:505.005000px;}
.x24{left:507.705000px;}
.x3d{left:510.405000px;}
.x49{left:517.245000px;}
.x5b{left:518.325000px;}
.x57{left:520.665000px;}
.x36{left:521.745000px;}
.x11{left:527.144987px;}
.x60{left:600.045000px;}
.x1e{left:602.025000px;}
.x30{left:607.065000px;}
.x2c{left:611.025000px;}
.x25{left:622.365000px;}
.x3e{left:625.065000px;}
.x53{left:626.505000px;}
.x66{left:629.925000px;}
.x45{left:632.085000px;}
.x37{left:636.405000px;}
.x58{left:646.665000px;}
.x5c{left:648.645000px;}
.x4a{left:651.705000px;}
.x61{left:677.670000px;}
.x62{left:763.350000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.320000pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.ls3{letter-spacing:0.272640pt;}
.ls8{letter-spacing:0.320000pt;}
.ls13{letter-spacing:1.440000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls10{letter-spacing:17.440000pt;}
.lsf{letter-spacing:40.912640pt;}
.lse{letter-spacing:41.040640pt;}
.ls12{letter-spacing:63.520000pt;}
.lsd{letter-spacing:80.720640pt;}
.ls2{letter-spacing:81.232640pt;}
.ls7{letter-spacing:81.360640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._29{margin-left:-2.139520pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._7{width:2.537387pt;}
._8{width:3.510613pt;}
._9{width:4.528853pt;}
._a{width:6.055680pt;}
._d{width:7.509120pt;}
._c{width:8.605440pt;}
._b{width:9.778560pt;}
._11{width:11.000320pt;}
._e{width:12.372907pt;}
._20{width:14.408960pt;}
._26{width:15.404800pt;}
._1f{width:16.573440pt;}
._10{width:17.534080pt;}
._f{width:18.645120pt;}
._1e{width:19.654400pt;}
._1c{width:21.407360pt;}
._1d{width:22.633600pt;}
._21{width:24.271360pt;}
._15{width:25.608320pt;}
._23{width:27.477760pt;}
._22{width:29.056640pt;}
._34{width:30.161920pt;}
._19{width:31.089280pt;}
._13{width:32.775040pt;}
._14{width:33.784320pt;}
._12{width:34.846720pt;}
._2d{width:35.807360pt;}
._30{width:38.100480pt;}
._2c{width:39.454720pt;}
._25{width:40.428800pt;}
._24{width:41.592960pt;}
._1b{width:43.292800pt;}
._1a{width:44.355200pt;}
._27{width:45.683200pt;}
._28{width:47.648640pt;}
._35{width:49.642880pt;}
._17{width:51.579520pt;}
._16{width:52.801280pt;}
._32{width:55.244800pt;}
._31{width:56.200960pt;}
._37{width:61.141120pt;}
._36{width:64.328320pt;}
._18{width:67.998080pt;}
._33{width:79.042560pt;}
._2a{width:85.416747pt;}
._2b{width:92.327040pt;}
._39{width:101.671680pt;}
._38{width:102.680960pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._2e{width:501.898667pt;}
._3{width:561.287253pt;}
._2f{width:569.920000pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yc5{bottom:5.120000pt;}
.ye0{bottom:5.146667pt;}
.yd2{bottom:5.160000pt;}
.yf6{bottom:5.274667pt;}
.yd5{bottom:5.280000pt;}
.y8{bottom:5.600000pt;}
.y7{bottom:5.760000pt;}
.y122{bottom:7.680000pt;}
.y14a{bottom:8.160000pt;}
.y10f{bottom:8.480000pt;}
.y15c{bottom:8.960000pt;}
.y10d{bottom:9.120000pt;}
.y124{bottom:15.520000pt;}
.y12f{bottom:16.640000pt;}
.y12d{bottom:20.000000pt;}
.y146{bottom:21.120000pt;}
.yc7{bottom:22.720000pt;}
.y173{bottom:22.746667pt;}
.ye6{bottom:22.880000pt;}
.y18d{bottom:22.906667pt;}
.yc9{bottom:25.440000pt;}
.y144{bottom:26.400000pt;}
.y15b{bottom:26.560000pt;}
.y171{bottom:28.480000pt;}
.y190{bottom:40.480000pt;}
.y1b4{bottom:40.520000pt;}
.y9{bottom:45.440000pt;}
.yf2{bottom:45.754667pt;}
.y111{bottom:45.786667pt;}
.yc3{bottom:51.040000pt;}
.yd0{bottom:55.840000pt;}
.ye8{bottom:55.880000pt;}
.ydc{bottom:56.000000pt;}
.y1b3{bottom:58.120000pt;}
.y6{bottom:59.392000pt;}
.yc2{bottom:64.992000pt;}
.y193{bottom:75.680000pt;}
.y1b2{bottom:75.720000pt;}
.y148{bottom:81.320000pt;}
.ya9{bottom:83.072000pt;}
.y38{bottom:85.152000pt;}
.y44{bottom:86.912000pt;}
.yf1{bottom:88.832000pt;}
.y158{bottom:90.752000pt;}
.yc1{bottom:91.072000pt;}
.y12b{bottom:92.832000pt;}
.y1be{bottom:95.072000pt;}
.y15e{bottom:96.640000pt;}
.y126{bottom:99.034667pt;}
.y7b{bottom:99.072000pt;}
.y131{bottom:100.000000pt;}
.y175{bottom:100.480000pt;}
.ya8{bottom:100.672000pt;}
.y1c1{bottom:102.432000pt;}
.y37{bottom:102.912000pt;}
.y43{bottom:104.512000pt;}
.y1f8{bottom:105.952000pt;}
.y125{bottom:106.112000pt;}
.y157{bottom:108.352000pt;}
.yc0{bottom:108.672000pt;}
.yf7{bottom:109.152000pt;}
.y1bd{bottom:112.672000pt;}
.y18b{bottom:113.312000pt;}
.y7a{bottom:116.672000pt;}
.ya7{bottom:118.432000pt;}
.y1c0{bottom:118.912000pt;}
.y36{bottom:120.512000pt;}
.y42{bottom:122.112000pt;}
.y1f7{bottom:122.432000pt;}
.y12a{bottom:124.352000pt;}
.y156{bottom:125.952000pt;}
.ybf{bottom:126.432000pt;}
.yf5{bottom:129.312000pt;}
.y1bc{bottom:130.432000pt;}
.y18a{bottom:130.912000pt;}
.y79{bottom:134.426667pt;}
.y1bf{bottom:135.386667pt;}
.ya6{bottom:136.026667pt;}
.y35{bottom:138.106667pt;}
.y1f6{bottom:139.066667pt;}
.y41{bottom:139.706667pt;}
.y129{bottom:142.586667pt;}
.y155{bottom:143.546667pt;}
.ybe{bottom:144.026667pt;}
.y1bb{bottom:148.026667pt;}
.y189{bottom:148.666667pt;}
.yf4{bottom:149.626667pt;}
.y78{bottom:152.026667pt;}
.ya5{bottom:153.626667pt;}
.y1f5{bottom:155.546667pt;}
.y34{bottom:155.706667pt;}
.y40{bottom:157.306667pt;}
.y128{bottom:160.986667pt;}
.y154{bottom:161.146667pt;}
.ybd{bottom:161.626667pt;}
.y1ba{bottom:165.626667pt;}
.y188{bottom:166.266667pt;}
.y77{bottom:169.626667pt;}
.yf3{bottom:169.946667pt;}
.ya4{bottom:171.226667pt;}
.y1f4{bottom:172.186667pt;}
.y33{bottom:173.306667pt;}
.y3f{bottom:175.066667pt;}
.y153{bottom:178.906667pt;}
.ybc{bottom:179.226667pt;}
.y1b9{bottom:183.226667pt;}
.y187{bottom:183.866667pt;}
.y76{bottom:187.226667pt;}
.y1f3{bottom:188.666667pt;}
.ya3{bottom:188.826667pt;}
.yf0{bottom:190.266667pt;}
.y32{bottom:191.066667pt;}
.y3e{bottom:192.666667pt;}
.y152{bottom:196.506667pt;}
.ybb{bottom:196.826667pt;}
.y127{bottom:197.466667pt;}
.y1b8{bottom:200.826667pt;}
.y186{bottom:201.466667pt;}
.y75{bottom:204.826667pt;}
.y1f2{bottom:205.146667pt;}
.ya2{bottom:206.586667pt;}
.y31{bottom:208.666667pt;}
.y3d{bottom:210.266667pt;}
.y151{bottom:214.106667pt;}
.yba{bottom:214.586667pt;}
.y123{bottom:217.626667pt;}
.y1b7{bottom:218.586667pt;}
.y185{bottom:219.066667pt;}
.y1f1{bottom:221.786667pt;}
.y74{bottom:222.586667pt;}
.ya1{bottom:224.186667pt;}
.y30{bottom:226.266667pt;}
.yef{bottom:228.186667pt;}
.y150{bottom:231.706667pt;}
.yb9{bottom:232.186667pt;}
.y3c{bottom:235.866667pt;}
.y1b6{bottom:236.186667pt;}
.y184{bottom:236.826667pt;}
.y1f0{bottom:238.266667pt;}
.y73{bottom:240.186667pt;}
.ya0{bottom:241.786667pt;}
.y2f{bottom:243.866667pt;}
.y121{bottom:246.266667pt;}
.y14f{bottom:249.306667pt;}
.yb8{bottom:249.786667pt;}
.yee{bottom:250.906667pt;}
.y3b{bottom:253.466667pt;}
.y1b5{bottom:253.786667pt;}
.y183{bottom:254.426667pt;}
.y1ef{bottom:254.906667pt;}
.y72{bottom:257.786667pt;}
.y9f{bottom:259.386667pt;}
.y2e{bottom:261.466667pt;}
.ye7{bottom:266.106667pt;}
.y1b1{bottom:266.906667pt;}
.y14e{bottom:267.066667pt;}
.yb7{bottom:267.386667pt;}
.y3a{bottom:271.226667pt;}
.y1ee{bottom:271.386667pt;}
.y120{bottom:271.546667pt;}
.y182{bottom:272.026667pt;}
.y71{bottom:275.386667pt;}
.y9e{bottom:276.986667pt;}
.y2d{bottom:279.226667pt;}
.y147{bottom:280.186667pt;}
.yb6{bottom:284.986667pt;}
.yed{bottom:286.426667pt;}
.y1ed{bottom:287.866667pt;}
.y39{bottom:288.826667pt;}
.y11f{bottom:289.306667pt;}
.y181{bottom:289.626667pt;}
.y70{bottom:293.026667pt;}
.y9d{bottom:294.786667pt;}
.y2c{bottom:296.866667pt;}
.y14d{bottom:298.466667pt;}
.yb5{bottom:302.786667pt;}
.y1ec{bottom:304.546667pt;}
.yec{bottom:306.786667pt;}
.y11e{bottom:306.946667pt;}
.y180{bottom:307.266667pt;}
.y6f{bottom:310.786667pt;}
.y9c{bottom:312.386667pt;}
.y2b{bottom:314.466667pt;}
.y14c{bottom:316.866667pt;}
.yb4{bottom:320.386667pt;}
.y1eb{bottom:321.026667pt;}
.y11d{bottom:324.546667pt;}
.y17f{bottom:325.026667pt;}
.yeb{bottom:327.106667pt;}
.y6e{bottom:328.386667pt;}
.y9b{bottom:329.986667pt;}
.y2a{bottom:332.066667pt;}
.y14b{bottom:335.106667pt;}
.y1ea{bottom:337.666667pt;}
.yb3{bottom:337.986667pt;}
.y11c{bottom:342.146667pt;}
.y17e{bottom:342.626667pt;}
.y6d{bottom:345.986667pt;}
.yea{bottom:347.426667pt;}
.y9a{bottom:347.586667pt;}
.y29{bottom:349.666667pt;}
.y149{bottom:353.346667pt;}
.y1e9{bottom:354.146667pt;}
.yb2{bottom:355.586667pt;}
.y1b0{bottom:355.746667pt;}
.y11b{bottom:359.746667pt;}
.y17d{bottom:360.226667pt;}
.y6c{bottom:363.586667pt;}
.y99{bottom:365.186667pt;}
.y28{bottom:367.426667pt;}
.ye9{bottom:367.586667pt;}
.y1e8{bottom:370.626667pt;}
.yb1{bottom:373.186667pt;}
.y145{bottom:373.986667pt;}
.y1af{bottom:374.146667pt;}
.y11a{bottom:377.506667pt;}
.y17c{bottom:377.826667pt;}
.y6b{bottom:381.186667pt;}
.y98{bottom:382.946667pt;}
.y27{bottom:385.026667pt;}
.y1e7{bottom:387.266667pt;}
.ye5{bottom:387.906667pt;}
.yb0{bottom:390.946667pt;}
.y119{bottom:395.106667pt;}
.y17b{bottom:395.426667pt;}
.y6a{bottom:398.946667pt;}
.y97{bottom:400.546667pt;}
.y26{bottom:402.626667pt;}
.y1e6{bottom:403.746667pt;}
.y143{bottom:408.386667pt;}
.yaf{bottom:408.546667pt;}
.y174{bottom:408.706667pt;}
.y118{bottom:412.706667pt;}
.y1ae{bottom:415.106667pt;}
.y69{bottom:416.546667pt;}
.y96{bottom:418.146667pt;}
.y25{bottom:420.226667pt;}
.y1e5{bottom:420.386667pt;}
.ye4{bottom:425.826667pt;}
.yae{bottom:426.146667pt;}
.y17a{bottom:426.946667pt;}
.y117{bottom:430.306667pt;}
.y1ad{bottom:432.866667pt;}
.y68{bottom:434.146667pt;}
.y95{bottom:435.746667pt;}
.y1e4{bottom:436.866667pt;}
.y24{bottom:437.826667pt;}
.yad{bottom:443.746667pt;}
.y179{bottom:445.186667pt;}
.y116{bottom:447.906667pt;}
.ye3{bottom:448.706667pt;}
.y1ac{bottom:450.466667pt;}
.y67{bottom:451.746667pt;}
.y142{bottom:452.546667pt;}
.y94{bottom:453.346667pt;}
.y1e3{bottom:453.506667pt;}
.y23{bottom:455.586667pt;}
.yac{bottom:461.346667pt;}
.y178{bottom:463.586667pt;}
.ydb{bottom:463.746667pt;}
.y115{bottom:465.666667pt;}
.y1ab{bottom:468.066667pt;}
.y66{bottom:469.346667pt;}
.y1e2{bottom:469.986667pt;}
.y141{bottom:470.146667pt;}
.y93{bottom:471.106667pt;}
.y22{bottom:473.186667pt;}
.yab{bottom:479.106667pt;}
.y177{bottom:481.826667pt;}
.y114{bottom:483.266667pt;}
.ye2{bottom:484.066667pt;}
.y1aa{bottom:485.666667pt;}
.y1e1{bottom:486.466667pt;}
.y65{bottom:487.106667pt;}
.y140{bottom:487.746667pt;}
.y92{bottom:488.706667pt;}
.y21{bottom:490.786667pt;}
.y110{bottom:496.386667pt;}
.yaa{bottom:496.706667pt;}
.y176{bottom:500.066667pt;}
.y1e0{bottom:503.106667pt;}
.y1a9{bottom:503.266667pt;}
.ye1{bottom:504.386667pt;}
.y64{bottom:504.706667pt;}
.y13f{bottom:505.346667pt;}
.y20{bottom:508.386667pt;}
.y91{bottom:514.306667pt;}
.y113{bottom:514.626667pt;}
.y1df{bottom:519.586667pt;}
.y1a8{bottom:521.026667pt;}
.y172{bottom:521.666667pt;}
.y63{bottom:522.306667pt;}
.y13e{bottom:522.946667pt;}
.ydf{bottom:524.706667pt;}
.y1f{bottom:528.066667pt;}
.y90{bottom:531.933333pt;}
.y112{bottom:533.053333pt;}
.y1de{bottom:536.253333pt;}
.y1a7{bottom:538.653333pt;}
.y62{bottom:539.933333pt;}
.y13d{bottom:540.733333pt;}
.yde{bottom:545.053333pt;}
.y1e{bottom:545.693333pt;}
.y8f{bottom:549.533333pt;}
.y1dd{bottom:552.733333pt;}
.y10e{bottom:554.653333pt;}
.y1a6{bottom:556.253333pt;}
.y61{bottom:557.533333pt;}
.y170{bottom:557.693333pt;}
.y13c{bottom:558.333333pt;}
.y1d{bottom:563.293333pt;}
.ydd{bottom:565.373333pt;}
.y8e{bottom:567.293333pt;}
.y1dc{bottom:569.213333pt;}
.y1a5{bottom:573.853333pt;}
.y60{bottom:575.293333pt;}
.y13b{bottom:575.933333pt;}
.y10c{bottom:576.413333pt;}
.y1c{bottom:580.893333pt;}
.y8d{bottom:584.893333pt;}
.yda{bottom:585.693333pt;}
.y1db{bottom:585.853333pt;}
.y1a4{bottom:591.453333pt;}
.y5f{bottom:592.893333pt;}
.y13a{bottom:593.533333pt;}
.y1b{bottom:598.653333pt;}
.y1da{bottom:602.333333pt;}
.y8c{bottom:602.493333pt;}
.y10b{bottom:603.133333pt;}
.y16f{bottom:603.773333pt;}
.y1a3{bottom:609.213333pt;}
.y5e{bottom:610.493333pt;}
.y139{bottom:611.133333pt;}
.y1a{bottom:616.253333pt;}
.y1d9{bottom:618.973333pt;}
.y8b{bottom:620.093333pt;}
.y10a{bottom:620.733333pt;}
.y16e{bottom:621.373333pt;}
.yd9{bottom:623.613333pt;}
.y1a2{bottom:626.813333pt;}
.y5d{bottom:628.093333pt;}
.y138{bottom:628.893333pt;}
.y19{bottom:633.853333pt;}
.y1d8{bottom:635.453333pt;}
.y8a{bottom:637.693333pt;}
.y109{bottom:638.333333pt;}
.y16d{bottom:638.973333pt;}
.y1a1{bottom:644.413333pt;}
.y5c{bottom:645.693333pt;}
.yd8{bottom:646.333333pt;}
.y137{bottom:646.493333pt;}
.y18{bottom:651.453333pt;}
.y1d7{bottom:651.933333pt;}
.y103{bottom:653.533333pt;}
.y89{bottom:655.453333pt;}
.y16c{bottom:656.733333pt;}
.y130{bottom:659.613333pt;}
.ycf{bottom:661.533333pt;}
.y1a0{bottom:662.013333pt;}
.y5b{bottom:663.453333pt;}
.y1d6{bottom:668.573333pt;}
.y17{bottom:669.053333pt;}
.y88{bottom:673.053333pt;}
.y108{bottom:673.853333pt;}
.y16b{bottom:674.333333pt;}
.y200{bottom:676.413333pt;}
.y136{bottom:677.853333pt;}
.y19f{bottom:679.613333pt;}
.y5a{bottom:681.053333pt;}
.yd7{bottom:681.853333pt;}
.y1d5{bottom:685.053333pt;}
.y16{bottom:686.813333pt;}
.y87{bottom:690.653333pt;}
.y16a{bottom:691.933333pt;}
.y1ff{bottom:694.013333pt;}
.y107{bottom:694.173333pt;}
.y135{bottom:696.253333pt;}
.y19e{bottom:697.373333pt;}
.y59{bottom:698.653333pt;}
.y1d4{bottom:701.693333pt;}
.yd6{bottom:702.173333pt;}
.y15{bottom:704.413333pt;}
.y86{bottom:708.253333pt;}
.y169{bottom:709.533333pt;}
.y1fe{bottom:711.613333pt;}
.y106{bottom:714.333333pt;}
.y134{bottom:714.493333pt;}
.y19d{bottom:714.973333pt;}
.y58{bottom:716.253333pt;}
.y1d3{bottom:718.173333pt;}
.y14{bottom:721.853333pt;}
.yd4{bottom:722.333333pt;}
.y85{bottom:725.853333pt;}
.y168{bottom:727.133333pt;}
.y19c{bottom:727.453333pt;}
.y1fd{bottom:729.373333pt;}
.y133{bottom:732.733333pt;}
.y57{bottom:733.853333pt;}
.y105{bottom:734.653333pt;}
.y1d2{bottom:734.813333pt;}
.y13{bottom:741.693333pt;}
.yd3{bottom:742.653333pt;}
.y84{bottom:743.613333pt;}
.y167{bottom:744.893333pt;}
.y19b{bottom:745.053333pt;}
.y1fc{bottom:746.973333pt;}
.y132{bottom:751.133333pt;}
.y1d1{bottom:751.293333pt;}
.y56{bottom:751.613333pt;}
.y104{bottom:754.973333pt;}
.y83{bottom:761.213333pt;}
.y166{bottom:762.493333pt;}
.y19a{bottom:762.653333pt;}
.yd1{bottom:762.973333pt;}
.y12{bottom:763.933333pt;}
.y1fb{bottom:764.573333pt;}
.y1d0{bottom:767.813333pt;}
.y55{bottom:769.253333pt;}
.y12e{bottom:772.133333pt;}
.y102{bottom:775.333333pt;}
.y11{bottom:776.933333pt;}
.y82{bottom:778.853333pt;}
.y165{bottom:780.133333pt;}
.y199{bottom:781.093333pt;}
.y1fa{bottom:782.213333pt;}
.yce{bottom:783.333333pt;}
.y1cf{bottom:784.453333pt;}
.y54{bottom:786.853333pt;}
.y81{bottom:796.453333pt;}
.y164{bottom:797.733333pt;}
.y198{bottom:798.693333pt;}
.y10{bottom:799.173333pt;}
.y1f9{bottom:799.813333pt;}
.y1ce{bottom:800.933333pt;}
.y12c{bottom:802.053333pt;}
.y53{bottom:804.453333pt;}
.y15d{bottom:810.853333pt;}
.yf{bottom:812.133333pt;}
.y101{bottom:813.253333pt;}
.y80{bottom:814.053333pt;}
.y1cd{bottom:817.573333pt;}
.ycd{bottom:821.253333pt;}
.y52{bottom:822.053333pt;}
.y163{bottom:828.613333pt;}
.y7f{bottom:831.813333pt;}
.y192{bottom:833.893333pt;}
.y1cc{bottom:834.053333pt;}
.ye{bottom:834.533333pt;}
.y100{bottom:835.973333pt;}
.y51{bottom:839.813333pt;}
.ycc{bottom:843.973333pt;}
.y162{bottom:846.213333pt;}
.yd{bottom:847.973333pt;}
.y7e{bottom:849.413333pt;}
.y1cb{bottom:850.533333pt;}
.yfa{bottom:851.173333pt;}
.y197{bottom:851.493333pt;}
.y50{bottom:857.413333pt;}
.yc8{bottom:859.173333pt;}
.y161{bottom:863.813333pt;}
.y7d{bottom:867.013333pt;}
.y1ca{bottom:867.173333pt;}
.yc{bottom:867.333333pt;}
.y196{bottom:869.253333pt;}
.yff{bottom:871.493333pt;}
.y4f{bottom:875.013333pt;}
.ycb{bottom:879.493333pt;}
.y160{bottom:881.413333pt;}
.y1c9{bottom:883.653333pt;}
.y7c{bottom:884.613333pt;}
.y195{bottom:886.853333pt;}
.yb{bottom:889.413333pt;}
.yfe{bottom:891.813333pt;}
.y4e{bottom:892.613333pt;}
.y15f{bottom:899.013333pt;}
.yca{bottom:899.813333pt;}
.y1c8{bottom:900.293333pt;}
.y194{bottom:904.453333pt;}
.y4d{bottom:910.213333pt;}
.yfd{bottom:912.133333pt;}
.y1c7{bottom:916.773333pt;}
.ya{bottom:917.733333pt;}
.y15a{bottom:919.973333pt;}
.yc6{bottom:920.133333pt;}
.y18f{bottom:922.693333pt;}
.y4c{bottom:927.973333pt;}
.yfc{bottom:932.453333pt;}
.y1c6{bottom:933.413333pt;}
.y191{bottom:940.453333pt;}
.y4b{bottom:945.573333pt;}
.y5{bottom:949.573333pt;}
.y1c5{bottom:949.893333pt;}
.yfb{bottom:952.613333pt;}
.yc4{bottom:958.053333pt;}
.y159{bottom:959.653333pt;}
.y4a{bottom:963.173333pt;}
.y1c4{bottom:966.373333pt;}
.yf9{bottom:972.933333pt;}
.y18e{bottom:975.653333pt;}
.y49{bottom:980.773333pt;}
.y4{bottom:981.093333pt;}
.y1c3{bottom:983.013333pt;}
.y18c{bottom:993.253333pt;}
.y48{bottom:998.373333pt;}
.y1c2{bottom:999.493333pt;}
.y3{bottom:1006.400000pt;}
.yf8{bottom:1010.880000pt;}
.y47{bottom:1016.160000pt;}
.y2{bottom:1031.680000pt;}
.y46{bottom:1042.240000pt;}
.y1{bottom:1059.040000pt;}
.y45{bottom:1061.600000pt;}
.he{height:17.600000pt;}
.h12{height:17.632000pt;}
.h13{height:17.760000pt;}
.h1c{height:17.792000pt;}
.h6{height:19.360000pt;}
.h1e{height:20.160000pt;}
.h28{height:20.640000pt;}
.h1a{height:20.960000pt;}
.h24{height:20.992000pt;}
.h19{height:21.600000pt;}
.ha{height:24.131250pt;}
.h1f{height:28.000000pt;}
.h22{height:29.120000pt;}
.h21{height:32.480000pt;}
.h26{height:33.600000pt;}
.hf{height:35.200000pt;}
.h2c{height:35.232000pt;}
.h15{height:35.360000pt;}
.h17{height:35.392000pt;}
.hc{height:37.090625pt;}
.hb{height:37.479688pt;}
.hd{height:38.672812pt;}
.h25{height:38.880000pt;}
.h29{height:39.040000pt;}
.h1d{height:40.410625pt;}
.h2b{height:40.960000pt;}
.h7{height:41.112500pt;}
.h3{height:41.543750pt;}
.h30{height:42.691250pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.h2e{height:52.960000pt;}
.h10{height:58.240000pt;}
.h1b{height:58.272000pt;}
.h5{height:58.563750pt;}
.h9{height:60.057813pt;}
.h2f{height:88.160000pt;}
.h31{height:88.192000pt;}
.h27{height:93.792000pt;}
.h16{height:98.720000pt;}
.h2a{height:109.120000pt;}
.h20{height:111.520000pt;}
.h23{height:112.512000pt;}
.h2d{height:112.960000pt;}
.h11{height:119.072000pt;}
.h18{height:119.200000pt;}
.h14{height:119.232000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5c{width:42.592000pt;}
.w5f{width:42.912000pt;}
.w3{width:45.632000pt;}
.wb{width:52.960000pt;}
.w1b{width:53.120000pt;}
.w38{width:53.760000pt;}
.w58{width:56.512000pt;}
.w46{width:59.680000pt;}
.w3f{width:60.320000pt;}
.w4d{width:61.760000pt;}
.w31{width:63.520000pt;}
.w29{width:65.120000pt;}
.wc{width:66.592000pt;}
.w52{width:68.960000pt;}
.w53{width:68.992000pt;}
.w3c{width:72.032000pt;}
.w13{width:73.312000pt;}
.w8{width:73.472000pt;}
.w18{width:75.712000pt;}
.w57{width:76.160000pt;}
.w59{width:79.360000pt;}
.w2a{width:81.600000pt;}
.w43{width:82.112000pt;}
.w15{width:82.432000pt;}
.w7{width:82.880000pt;}
.w4a{width:85.152000pt;}
.w2e{width:87.552000pt;}
.w26{width:89.632000pt;}
.w39{width:89.920000pt;}
.w3b{width:90.080000pt;}
.w56{width:90.880000pt;}
.w55{width:91.072000pt;}
.w42{width:93.120000pt;}
.w35{width:96.032000pt;}
.w49{width:96.480000pt;}
.w2d{width:99.360000pt;}
.w51{width:100.192000pt;}
.w14{width:100.480000pt;}
.w9{width:100.640000pt;}
.w25{width:101.952000pt;}
.w34{width:102.112000pt;}
.w10{width:102.912000pt;}
.wa{width:106.752000pt;}
.wf{width:106.912000pt;}
.w22{width:107.552000pt;}
.w3d{width:108.000000pt;}
.w44{width:112.000000pt;}
.w1f{width:115.232000pt;}
.w4b{width:115.840000pt;}
.w45{width:119.392000pt;}
.w2f{width:119.520000pt;}
.w6{width:119.552000pt;}
.w32{width:122.112000pt;}
.w27{width:122.240000pt;}
.w4c{width:123.712000pt;}
.w36{width:125.920000pt;}
.w30{width:127.392000pt;}
.w1c{width:127.712000pt;}
.w47{width:128.192000pt;}
.w17{width:128.672000pt;}
.w28{width:130.752000pt;}
.w12{width:135.386667pt;}
.w4f{width:135.866667pt;}
.w40{width:137.306667pt;}
.w33{width:143.680000pt;}
.w54{width:145.120000pt;}
.w24{width:146.720000pt;}
.w3e{width:147.866667pt;}
.w37{width:154.426667pt;}
.we{width:155.866667pt;}
.w21{width:160.506667pt;}
.w1e{width:168.346667pt;}
.w5e{width:179.386667pt;}
.w62{width:180.026667pt;}
.w1a{width:180.826667pt;}
.w50{width:181.946667pt;}
.w48{width:185.466667pt;}
.w2c{width:185.626667pt;}
.w61{width:186.106667pt;}
.w41{width:187.866667pt;}
.w3a{width:197.626667pt;}
.w5d{width:275.386667pt;}
.w60{width:276.026667pt;}
.w5a{width:283.066667pt;}
.w5{width:492.733333pt;}
.w16{width:501.693333pt;}
.w11{width:508.413333pt;}
.wd{width:528.893333pt;}
.w20{width:533.373333pt;}
.w1d{width:541.373333pt;}
.w19{width:553.853333pt;}
.w23{width:591.293333pt;}
.w2b{width:619.453333pt;}
.w5b{width:644.573333pt;}
.w4{width:651.613333pt;}
.w4e{width:701.093333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:4.000000pt;}
.x3{left:7.200000pt;}
.x5{left:8.960000pt;}
.x41{left:11.200000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.x64{left:54.560000pt;}
.x17{left:57.599988pt;}
.x16{left:61.279988pt;}
.x14{left:64.959988pt;}
.x12{left:66.879988pt;}
.xe{left:68.319988pt;}
.x6{left:70.079988pt;}
.x67{left:71.999988pt;}
.x4b{left:85.792000pt;}
.x46{left:87.232000pt;}
.x50{left:89.152000pt;}
.x4{left:94.272000pt;}
.x15{left:96.031988pt;}
.xa{left:97.631988pt;}
.x55{left:99.712000pt;}
.x40{left:101.312000pt;}
.x63{left:102.912000pt;}
.x32{left:120.032000pt;}
.x33{left:121.312000pt;}
.x39{left:130.272000pt;}
.x3a{left:131.552000pt;}
.x20{left:132.512000pt;}
.x21{left:133.786667pt;}
.x4f{left:139.546667pt;}
.x27{left:142.746667pt;}
.x28{left:144.026667pt;}
.x9{left:146.746655pt;}
.x54{left:149.466667pt;}
.x19{left:150.586667pt;}
.x1b{left:152.026667pt;}
.x5d{left:155.386667pt;}
.x59{left:159.386667pt;}
.x7{left:167.226655pt;}
.xc{left:171.066655pt;}
.x38{left:174.426667pt;}
.x5e{left:182.266667pt;}
.x3f{left:184.506667pt;}
.x26{left:186.746667pt;}
.x2d{left:196.986667pt;}
.x31{left:200.346667pt;}
.x1f{left:204.986667pt;}
.x4c{left:229.466667pt;}
.x42{left:248.026667pt;}
.xd{left:268.066655pt;}
.x47{left:272.866667pt;}
.x1c{left:274.306667pt;}
.x2e{left:278.786667pt;}
.x29{left:282.146667pt;}
.x51{left:286.786667pt;}
.x22{left:292.386667pt;}
.x3b{left:294.626667pt;}
.x34{left:304.866667pt;}
.x4d{left:331.586667pt;}
.xb{left:343.746655pt;}
.x43{left:349.986667pt;}
.x1d{left:358.466667pt;}
.x13{left:360.706655pt;}
.x2f{left:362.946667pt;}
.x5f{left:364.226667pt;}
.x2a{left:366.466667pt;}
.x48{left:372.226667pt;}
.x65{left:373.826667pt;}
.x5a{left:375.586667pt;}
.x23{left:376.546667pt;}
.x3c{left:378.786667pt;}
.x56{left:380.706667pt;}
.x35{left:389.026667pt;}
.x8{left:396.866655pt;}
.xf{left:420.573322pt;}
.x4e{left:427.613333pt;}
.x18{left:433.853322pt;}
.x10{left:437.533322pt;}
.x44{left:439.613333pt;}
.x2b{left:441.213333pt;}
.x68{left:444.573322pt;}
.x52{left:448.893333pt;}
.x24{left:451.293333pt;}
.x3d{left:453.693333pt;}
.x49{left:459.773333pt;}
.x5b{left:460.733333pt;}
.x57{left:462.813333pt;}
.x36{left:463.773333pt;}
.x11{left:468.573322pt;}
.x60{left:533.373333pt;}
.x1e{left:535.133333pt;}
.x30{left:539.613333pt;}
.x2c{left:543.133333pt;}
.x25{left:553.213333pt;}
.x3e{left:555.613333pt;}
.x53{left:556.893333pt;}
.x66{left:559.933333pt;}
.x45{left:561.853333pt;}
.x37{left:565.693333pt;}
.x58{left:574.813333pt;}
.x5c{left:576.573333pt;}
.x4a{left:579.293333pt;}
.x61{left:602.373333pt;}
.x62{left:678.533333pt;}
}




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