
    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_7835b1e8047451c4f02f2395.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973145;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_2759f1617dadf79b3b47a0bb.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_517cf1df274dc8b4bde8cda9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.936523;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_1f062aff41cac9044e53feac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973145;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_e437204951948c8a57f5f246.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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_bbcaba962725a94509f6789d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_079514b02c844e41ec7192f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_cb48de30a3dbe723d1b49ad7.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ab8378bdace6c10908ef421f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cbd4e4faf336e49ebade9254.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938965;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:ffc;src:url('chunks/assets/font_3d274d9ccfd8409fa09852fb.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_1f83532f108fece8f815be23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.955078;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:ffe;src:url('chunks/assets/font_1b67769bb44ebfcc747eddd8.woff2')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v7{vertical-align:-137.520000px;}
.v1{vertical-align:-82.800000px;}
.v8{vertical-align:-75.600000px;}
.v2{vertical-align:-72.000000px;}
.v6{vertical-align:-69.120000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:30.240000px;}
.v3{vertical-align:35.280000px;}
.ls26{letter-spacing:-0.774000px;}
.ls2e{letter-spacing:-0.540000px;}
.ls27{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.303600px;}
.ls33{letter-spacing:-0.269400px;}
.ls10{letter-spacing:-0.206400px;}
.ls30{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.053280px;}
.ls20{letter-spacing:-0.051840px;}
.ls2f{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.018000px;}
.ls2c{letter-spacing:0.036000px;}
.ls2{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.089400px;}
.ls1f{letter-spacing:0.106800px;}
.ls32{letter-spacing:0.108000px;}
.ls1e{letter-spacing:0.126000px;}
.ls0{letter-spacing:0.131040px;}
.ls3{letter-spacing:0.149760px;}
.ls22{letter-spacing:0.180000px;}
.ls2a{letter-spacing:0.198000px;}
.ls8{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.276480px;}
.ls4{letter-spacing:0.298800px;}
.lsb{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.360000px;}
.ls2d{letter-spacing:0.468000px;}
.lse{letter-spacing:0.513600px;}
.ls2b{letter-spacing:0.540000px;}
.ls25{letter-spacing:0.666000px;}
.ls21{letter-spacing:0.924000px;}
.lsf{letter-spacing:2.160000px;}
.ls29{letter-spacing:3.060000px;}
.ls1d{letter-spacing:8.100000px;}
.ls24{letter-spacing:15.066720px;}
.ls5{letter-spacing:43.200000px;}
.ls23{letter-spacing:44.562720px;}
.ls14{letter-spacing:70.020000px;}
.ls28{letter-spacing:160.716000px;}
.ls19{letter-spacing:222.636000px;}
.ls1c{letter-spacing:322.716000px;}
.ls1b{letter-spacing:357.996000px;}
.ls18{letter-spacing:410.556000px;}
.ls1a{letter-spacing:414.876000px;}
.ls12{letter-spacing:558.876000px;}
.ls17{letter-spacing:632.496000px;}
.ls13{letter-spacing:672.816000px;}
.ls6{letter-spacing:981.660000px;}
.ls15{letter-spacing:1302.816000px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-16.269240px;}
.ws11{word-spacing:-15.912000px;}
.ws12{word-spacing:-15.864000px;}
.ws14{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.046800px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws13{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.ws16{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.166000px;}
.ws17{word-spacing:-13.968000px;}
.wsd{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.482000px;}
.ws1a{word-spacing:-13.392000px;}
.ws19{word-spacing:-13.140000px;}
.ws1b{word-spacing:-11.790600px;}
.ws0{word-spacing:-11.625840px;}
.wsc{word-spacing:-10.529400px;}
.wsb{word-spacing:-10.440000px;}
.ws2{word-spacing:-10.064160px;}
.ws1{word-spacing:-9.760560px;}
.ws7{word-spacing:-9.000000px;}
.ws9{word-spacing:0.000000px;}
.wsf{word-spacing:58.284000px;}
.wse{word-spacing:77.682000px;}
._c{margin-left:-3.525840px;}
._6{margin-left:-2.409120px;}
._1{margin-left:-1.153440px;}
._0{width:1.041360px;}
._b{width:2.557440px;}
._3{width:4.356000px;}
._2{width:5.508000px;}
._4{width:6.556080px;}
._7{width:7.777440px;}
._d{width:9.262800px;}
._a{width:10.454640px;}
._21{width:11.505600px;}
._5{width:12.637440px;}
._19{width:13.679280px;}
._e{width:16.912080px;}
._15{width:18.167040px;}
._18{width:19.396560px;}
._9{width:20.851680px;}
._8{width:22.031760px;}
._1a{width:23.165280px;}
._f{width:24.202800px;}
._10{width:25.347120px;}
._1d{width:26.499120px;}
._2b{width:27.967680px;}
._1b{width:29.504880px;}
._1c{width:30.511920px;}
._14{width:31.852080px;}
._13{width:32.987520px;}
._29{width:34.541280px;}
._28{width:36.095040px;}
._27{width:37.230480px;}
._17{width:39.023280px;}
._16{width:40.338000px;}
._24{width:42.369840px;}
._31{width:43.413120px;}
._11{width:44.436000px;}
._30{width:45.716400px;}
._12{width:46.792080px;}
._2c{width:48.405600px;}
._32{width:49.421520px;}
._1e{width:50.676480px;}
._23{width:52.101120px;}
._22{width:53.425440px;}
._20{width:54.595200px;}
._1f{width:55.756080px;}
._2f{width:57.606960px;}
._2e{width:58.923360px;}
._33{width:60.058800px;}
._34{width:61.399920px;}
._2a{width:63.584640px;}
._2d{width:72.249840px;}
._25{width:90.522000px;}
._26{width:92.730000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,0);}
.fsc{font-size:5.760000px;}
.fs9{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fs8{font-size:30.240000px;}
.fs4{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fsb{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:1.980000px;}
.y1a1{bottom:2.880000px;}
.y1a9{bottom:3.060000px;}
.y75{bottom:3.600000px;}
.y3{bottom:4.320000px;}
.yf4{bottom:5.760000px;}
.y2{bottom:5.940000px;}
.y7{bottom:6.300000px;}
.yb3{bottom:8.100000px;}
.yb4{bottom:11.880000px;}
.y77{bottom:12.240000px;}
.yb2{bottom:15.660000px;}
.ye7{bottom:16.455000px;}
.yf2{bottom:16.590000px;}
.y11a{bottom:16.635000px;}
.y1a6{bottom:18.390000px;}
.y1ae{bottom:18.540000px;}
.yec{bottom:22.395000px;}
.y8{bottom:32.940000px;}
.y1ad{bottom:34.020000px;}
.y1a5{bottom:34.050000px;}
.y6{bottom:48.600000px;}
.y1ac{bottom:49.500000px;}
.y1a4{bottom:49.530000px;}
.y1ab{bottom:64.980000px;}
.y1a3{bottom:65.010000px;}
.yea{bottom:71.430000px;}
.y5{bottom:72.900000px;}
.yef{bottom:78.375000px;}
.y162{bottom:88.200000px;}
.y19d{bottom:91.260000px;}
.y1c9{bottom:93.060000px;}
.ye4{bottom:93.990000px;}
.y118{bottom:94.170000px;}
.ye2{bottom:94.320000px;}
.y1c8{bottom:94.860000px;}
.y1c7{bottom:96.300000px;}
.y14e{bottom:96.840000px;}
.yc8{bottom:102.420000px;}
.y73{bottom:102.780000px;}
.y57{bottom:104.040000px;}
.y161{bottom:105.480000px;}
.y19c{bottom:108.540000px;}
.ye0{bottom:111.420000px;}
.ye5{bottom:111.990000px;}
.y119{bottom:112.170000px;}
.y56{bottom:114.120000px;}
.ye9{bottom:117.570000px;}
.yeb{bottom:118.695000px;}
.yee{bottom:118.875000px;}
.yc7{bottom:119.700000px;}
.y72{bottom:120.060000px;}
.yf0{bottom:121.140000px;}
.y160{bottom:122.760000px;}
.y55{bottom:124.200000px;}
.y19b{bottom:125.640000px;}
.ydf{bottom:128.700000px;}
.y14d{bottom:131.400000px;}
.y1c6{bottom:132.120000px;}
.y54{bottom:134.280000px;}
.ya5{bottom:136.980000px;}
.y71{bottom:137.340000px;}
.yc6{bottom:137.880000px;}
.y15f{bottom:140.040000px;}
.y19a{bottom:142.920000px;}
.y53{bottom:144.360000px;}
.yde{bottom:145.980000px;}
.y14c{bottom:148.680000px;}
.y1c5{bottom:149.400000px;}
.y52{bottom:154.260000px;}
.y116{bottom:154.440000px;}
.y70{bottom:154.620000px;}
.yc5{bottom:155.160000px;}
.y15e{bottom:157.140000px;}
.y199{bottom:160.200000px;}
.ydd{bottom:163.260000px;}
.y51{bottom:164.340000px;}
.y14b{bottom:165.960000px;}
.y1c4{bottom:166.680000px;}
.ya4{bottom:171.540000px;}
.y115{bottom:171.720000px;}
.y6f{bottom:171.900000px;}
.yc4{bottom:172.440000px;}
.y50{bottom:174.420000px;}
.y198{bottom:177.480000px;}
.yf1{bottom:178.125000px;}
.ydc{bottom:180.540000px;}
.y14a{bottom:183.270000px;}
.y1c3{bottom:183.990000px;}
.y4f{bottom:184.530000px;}
.ye6{bottom:185.940000px;}
.ya3{bottom:188.670000px;}
.y114{bottom:189.030000px;}
.y6e{bottom:189.210000px;}
.yc3{bottom:189.750000px;}
.y15d{bottom:191.730000px;}
.y152{bottom:193.170000px;}
.y4e{bottom:194.610000px;}
.y197{bottom:194.790000px;}
.ydb{bottom:197.670000px;}
.y149{bottom:200.370000px;}
.y1c2{bottom:201.270000px;}
.y4d{bottom:204.690000px;}
.ya2{bottom:205.950000px;}
.y6d{bottom:206.310000px;}
.yc2{bottom:207.030000px;}
.y15c{bottom:209.010000px;}
.y196{bottom:212.070000px;}
.y4c{bottom:214.590000px;}
.yda{bottom:214.950000px;}
.y148{bottom:217.650000px;}
.y1c1{bottom:218.370000px;}
.ya1{bottom:223.230000px;}
.y6c{bottom:223.590000px;}
.yc1{bottom:224.310000px;}
.y4b{bottom:224.670000px;}
.y15b{bottom:226.290000px;}
.y195{bottom:229.170000px;}
.yd9{bottom:232.230000px;}
.y4a{bottom:234.750000px;}
.y147{bottom:234.930000px;}
.y1c0{bottom:235.650000px;}
.ya0{bottom:240.510000px;}
.y113{bottom:240.690000px;}
.y6b{bottom:240.870000px;}
.yc0{bottom:241.410000px;}
.y15a{bottom:243.570000px;}
.y49{bottom:244.830000px;}
.y194{bottom:246.450000px;}
.yd8{bottom:249.510000px;}
.y146{bottom:249.690000px;}
.y1bf{bottom:252.930000px;}
.y48{bottom:254.910000px;}
.y9f{bottom:257.790000px;}
.y112{bottom:257.970000px;}
.y6a{bottom:258.150000px;}
.ybf{bottom:258.690000px;}
.y159{bottom:260.670000px;}
.y193{bottom:263.730000px;}
.y47{bottom:264.810000px;}
.yd7{bottom:266.790000px;}
.y1be{bottom:270.210000px;}
.y145{bottom:271.650000px;}
.y46{bottom:274.890000px;}
.y9e{bottom:275.070000px;}
.y111{bottom:275.250000px;}
.y69{bottom:275.430000px;}
.ybe{bottom:275.970000px;}
.y158{bottom:277.950000px;}
.y192{bottom:281.010000px;}
.ye1{bottom:284.070000px;}
.y45{bottom:284.970000px;}
.y1bd{bottom:287.490000px;}
.y110{bottom:290.010000px;}
.y9d{bottom:292.170000px;}
.y68{bottom:292.710000px;}
.ybd{bottom:293.250000px;}
.y44{bottom:295.050000px;}
.y157{bottom:295.230000px;}
.y191{bottom:298.290000px;}
.yd6{bottom:301.170000px;}
.y1bc{bottom:304.770000px;}
.y43{bottom:305.130000px;}
.y9c{bottom:309.450000px;}
.y67{bottom:309.810000px;}
.ybc{bottom:310.530000px;}
.y144{bottom:311.790000px;}
.y10f{bottom:311.970000px;}
.y156{bottom:312.510000px;}
.y42{bottom:315.210000px;}
.y190{bottom:315.570000px;}
.yd5{bottom:318.450000px;}
.y1bb{bottom:321.870000px;}
.y41{bottom:323.670000px;}
.y9b{bottom:326.730000px;}
.y66{bottom:327.090000px;}
.ybb{bottom:327.630000px;}
.y40{bottom:328.530000px;}
.y155{bottom:329.790000px;}
.y18f{bottom:332.670000px;}
.y151{bottom:335.730000px;}
.y3f{bottom:338.610000px;}
.y1ba{bottom:339.150000px;}
.ye8{bottom:342.900000px;}
.y9a{bottom:344.010000px;}
.y65{bottom:344.370000px;}
.yba{bottom:344.910000px;}
.y143{bottom:346.350000px;}
.y154{bottom:347.070000px;}
.y3e{bottom:348.690000px;}
.y10e{bottom:349.590000px;}
.y18e{bottom:349.950000px;}
.yd4{bottom:353.010000px;}
.y1b9{bottom:356.430000px;}
.y3d{bottom:358.590000px;}
.y99{bottom:361.290000px;}
.y64{bottom:361.650000px;}
.yb9{bottom:362.190000px;}
.y142{bottom:363.630000px;}
.y18d{bottom:367.230000px;}
.y3c{bottom:368.670000px;}
.y150{bottom:370.290000px;}
.y10d{bottom:371.550000px;}
.y1b8{bottom:373.710000px;}
.y98{bottom:378.570000px;}
.y3b{bottom:378.750000px;}
.y63{bottom:378.930000px;}
.yb8{bottom:379.470000px;}
.y141{bottom:380.910000px;}
.y18c{bottom:384.510000px;}
.y14f{bottom:387.570000px;}
.y3a{bottom:388.830000px;}
.y1b7{bottom:390.990000px;}
.y97{bottom:395.670000px;}
.y62{bottom:396.030000px;}
.yb7{bottom:396.750000px;}
.y140{bottom:398.190000px;}
.y39{bottom:398.910000px;}
.y153{bottom:401.790000px;}
.yd3{bottom:404.670000px;}
.y10c{bottom:406.110000px;}
.y1b6{bottom:408.270000px;}
.y38{bottom:408.990000px;}
.y96{bottom:412.950000px;}
.y61{bottom:413.310000px;}
.yb6{bottom:414.030000px;}
.y13f{bottom:415.290000px;}
.y37{bottom:418.890000px;}
.y18b{bottom:419.070000px;}
.yd2{bottom:421.950000px;}
.y10b{bottom:423.390000px;}
.y1b5{bottom:425.415000px;}
.y36{bottom:429.015000px;}
.y95{bottom:430.275000px;}
.y60{bottom:430.635000px;}
.yb5{bottom:431.175000px;}
.y13e{bottom:432.615000px;}
.y18a{bottom:436.215000px;}
.y35{bottom:439.095000px;}
.yd1{bottom:439.275000px;}
.y10a{bottom:440.535000px;}
.y1b4{bottom:442.695000px;}
.yb1{bottom:445.215000px;}
.y94{bottom:447.555000px;}
.y5f{bottom:447.915000px;}
.y34{bottom:449.175000px;}
.y13d{bottom:449.895000px;}
.y189{bottom:453.495000px;}
.yd0{bottom:456.555000px;}
.y109{bottom:457.815000px;}
.y33{bottom:459.255000px;}
.y1b3{bottom:459.975000px;}
.y93{bottom:464.835000px;}
.y5e{bottom:465.195000px;}
.y13c{bottom:467.175000px;}
.y32{bottom:469.155000px;}
.y188{bottom:470.775000px;}
.ycf{bottom:473.835000px;}
.y108{bottom:475.095000px;}
.y1b2{bottom:477.255000px;}
.y31{bottom:479.235000px;}
.y92{bottom:481.935000px;}
.y5d{bottom:482.475000px;}
.y13b{bottom:484.455000px;}
.y187{bottom:488.055000px;}
.y30{bottom:489.315000px;}
.yce{bottom:490.935000px;}
.y107{bottom:492.375000px;}
.y1b1{bottom:494.535000px;}
.y91{bottom:499.215000px;}
.y2f{bottom:499.395000px;}
.y5c{bottom:499.575000px;}
.y13a{bottom:501.735000px;}
.y186{bottom:505.335000px;}
.ycd{bottom:508.215000px;}
.y2e{bottom:509.475000px;}
.y106{bottom:509.655000px;}
.y1b0{bottom:511.635000px;}
.y90{bottom:516.495000px;}
.y5b{bottom:516.855000px;}
.y139{bottom:518.835000px;}
.y2d{bottom:519.555000px;}
.y185{bottom:522.435000px;}
.y74{bottom:525.315000px;}
.ycc{bottom:525.495000px;}
.y105{bottom:526.935000px;}
.y1af{bottom:528.915000px;}
.y2c{bottom:529.455000px;}
.y138{bottom:533.595000px;}
.y8f{bottom:533.775000px;}
.y5a{bottom:534.135000px;}
.y2b{bottom:539.535000px;}
.y184{bottom:539.715000px;}
.ycb{bottom:542.775000px;}
.y1aa{bottom:542.955000px;}
.y104{bottom:544.035000px;}
.y2a{bottom:549.615000px;}
.y8e{bottom:551.055000px;}
.y59{bottom:551.415000px;}
.y137{bottom:555.555000px;}
.y183{bottom:556.995000px;}
.y29{bottom:559.695000px;}
.yca{bottom:560.055000px;}
.y103{bottom:561.315000px;}
.y8d{bottom:568.335000px;}
.y58{bottom:568.695000px;}
.y28{bottom:571.395000px;}
.y182{bottom:574.275000px;}
.y102{bottom:576.075000px;}
.yc9{bottom:577.335000px;}
.y27{bottom:584.355000px;}
.y8c{bottom:585.435000px;}
.y181{bottom:591.555000px;}
.y26{bottom:594.435000px;}
.y136{bottom:595.875000px;}
.y101{bottom:598.035000px;}
.y8b{bottom:602.715000px;}
.y180{bottom:608.835000px;}
.y25{bottom:611.715000px;}
.y8a{bottom:619.995000px;}
.y1a8{bottom:620.535000px;}
.y17f{bottom:625.935000px;}
.y24{bottom:628.995000px;}
.y135{bottom:630.435000px;}
.y1a7{bottom:636.195000px;}
.y89{bottom:637.275000px;}
.y17e{bottom:643.215000px;}
.y23{bottom:646.275000px;}
.y134{bottom:647.535000px;}
.y1a2{bottom:651.675000px;}
.y88{bottom:654.555000px;}
.y100{bottom:655.635000px;}
.y17d{bottom:660.495000px;}
.y22{bottom:663.555000px;}
.y133{bottom:664.815000px;}
.yb0{bottom:671.865000px;}
.yff{bottom:672.765000px;}
.y87{bottom:676.185000px;}
.y17c{bottom:677.805000px;}
.y21{bottom:680.865000px;}
.y132{bottom:682.125000px;}
.yaf{bottom:688.965000px;}
.yfe{bottom:690.045000px;}
.y17b{bottom:695.085000px;}
.y20{bottom:697.965000px;}
.y131{bottom:699.405000px;}
.yae{bottom:706.245000px;}
.yfd{bottom:707.325000px;}
.y17a{bottom:712.365000px;}
.y1f{bottom:715.245000px;}
.y130{bottom:716.685000px;}
.yed{bottom:723.060000px;}
.yad{bottom:723.525000px;}
.yfc{bottom:724.605000px;}
.y1a0{bottom:729.285000px;}
.y179{bottom:729.465000px;}
.y1e{bottom:732.525000px;}
.y12f{bottom:733.785000px;}
.yac{bottom:740.805000px;}
.yfb{bottom:741.885000px;}
.y178{bottom:746.745000px;}
.y19f{bottom:748.005000px;}
.y1d{bottom:749.805000px;}
.y12e{bottom:751.065000px;}
.yab{bottom:758.085000px;}
.yfa{bottom:759.165000px;}
.y177{bottom:764.025000px;}
.y1c{bottom:767.085000px;}
.y12d{bottom:768.345000px;}
.yaa{bottom:775.365000px;}
.yf9{bottom:776.265000px;}
.y176{bottom:781.305000px;}
.y19e{bottom:784.185000px;}
.y1b{bottom:784.365000px;}
.y12c{bottom:785.625000px;}
.ya9{bottom:792.465000px;}
.yf8{bottom:793.545000px;}
.y175{bottom:798.585000px;}
.y1a{bottom:801.465000px;}
.y12b{bottom:802.905000px;}
.ya8{bottom:809.745000px;}
.yf7{bottom:810.825000px;}
.y174{bottom:815.685000px;}
.y19{bottom:818.745000px;}
.y12a{bottom:820.185000px;}
.ya7{bottom:827.025000px;}
.yf6{bottom:828.105000px;}
.y173{bottom:832.965000px;}
.y129{bottom:834.945000px;}
.y18{bottom:836.025000px;}
.yf5{bottom:842.865000px;}
.ya6{bottom:848.805000px;}
.y172{bottom:850.245000px;}
.y17{bottom:853.305000px;}
.y128{bottom:856.905000px;}
.yf3{bottom:864.825000px;}
.y171{bottom:867.525000px;}
.y16{bottom:870.585000px;}
.y170{bottom:884.805000px;}
.y86{bottom:887.685000px;}
.y16f{bottom:902.085000px;}
.y85{bottom:904.965000px;}
.y15{bottom:905.685000px;}
.y127{bottom:914.370000px;}
.y16e{bottom:919.230000px;}
.y84{bottom:922.290000px;}
.y14{bottom:926.430000px;}
.y126{bottom:931.650000px;}
.y16d{bottom:936.510000px;}
.y83{bottom:939.570000px;}
.y13{bottom:947.130000px;}
.y125{bottom:948.930000px;}
.y16c{bottom:953.790000px;}
.y82{bottom:956.850000px;}
.y117{bottom:965.880000px;}
.y124{bottom:966.030000px;}
.y12{bottom:967.830000px;}
.y16b{bottom:971.070000px;}
.y81{bottom:974.130000px;}
.ye3{bottom:975.960000px;}
.y123{bottom:983.310000px;}
.y16a{bottom:988.350000px;}
.y11{bottom:988.530000px;}
.y80{bottom:991.230000px;}
.y122{bottom:1000.590000px;}
.y169{bottom:1005.630000px;}
.y7f{bottom:1008.510000px;}
.y10{bottom:1009.230000px;}
.y121{bottom:1017.870000px;}
.y168{bottom:1022.730000px;}
.y7e{bottom:1025.790000px;}
.yf{bottom:1029.930000px;}
.y120{bottom:1035.150000px;}
.y167{bottom:1040.010000px;}
.y7d{bottom:1043.070000px;}
.ye{bottom:1050.630000px;}
.y11f{bottom:1052.430000px;}
.y166{bottom:1057.290000px;}
.y7c{bottom:1060.350000px;}
.y11e{bottom:1069.530000px;}
.y165{bottom:1074.570000px;}
.y7b{bottom:1077.630000px;}
.y11d{bottom:1086.810000px;}
.y164{bottom:1091.850000px;}
.yd{bottom:1092.030000px;}
.y7a{bottom:1094.730000px;}
.y11c{bottom:1101.570000px;}
.y163{bottom:1109.130000px;}
.yc{bottom:1112.010000px;}
.y11b{bottom:1123.530000px;}
.yb{bottom:1129.290000px;}
.ya{bottom:1146.570000px;}
.y9{bottom:1163.880000px;}
.y4{bottom:1184.940000px;}
.y79{bottom:1187.820000px;}
.y76{bottom:1199.880000px;}
.y1{bottom:1200.060000px;}
.h25{height:5.729063px;}
.h16{height:12.012891px;}
.h28{height:15.480000px;}
.h2c{height:15.660000px;}
.h7{height:17.903320px;}
.h2{height:20.340000px;}
.h1a{height:20.520000px;}
.h24{height:21.240000px;}
.h8{height:21.420000px;}
.h14{height:26.033203px;}
.h1c{height:27.210938px;}
.h1b{height:27.228516px;}
.h12{height:29.671875px;}
.h10{height:30.476250px;}
.h2e{height:32.580000px;}
.h1f{height:33.480000px;}
.h13{height:35.314453px;}
.h15{height:35.332031px;}
.h5{height:36.462656px;}
.h17{height:38.158594px;}
.h3{height:40.964766px;}
.h2f{height:40.985156px;}
.h26{height:43.215117px;}
.h11{height:47.321367px;}
.h1d{height:47.344922px;}
.h30{height:48.616875px;}
.h9{height:50.068125px;}
.h29{height:52.971680px;}
.h4{height:52.998047px;}
.h2b{height:53.709961px;}
.hf{height:58.621992px;}
.hb{height:58.651172px;}
.h6{height:59.439023px;}
.h1e{height:60.226875px;}
.h27{height:61.423863px;}
.he{height:62.261719px;}
.h20{height:65.478516px;}
.ha{height:65.884219px;}
.hc{height:70.664062px;}
.hd{height:72.562500px;}
.h18{height:73.080000px;}
.h2d{height:77.580000px;}
.h2a{height:77.616000px;}
.h21{height:88.891172px;}
.h22{height:212.400000px;}
.h23{height:212.580000px;}
.h19{height:290.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:21.060000px;}
.wd{width:32.040000px;}
.w7{width:65.736000px;}
.w17{width:84.960000px;}
.w13{width:158.430000px;}
.w14{width:162.930000px;}
.w11{width:172.620000px;}
.w12{width:182.730000px;}
.w4{width:223.230000px;}
.w3{width:228.450000px;}
.w2{width:228.630000px;}
.w8{width:229.350000px;}
.wc{width:295.455000px;}
.w15{width:344.520000px;}
.wf{width:350.100000px;}
.we{width:379.800000px;}
.w10{width:384.480000px;}
.wa{width:434.235000px;}
.w18{width:595.545000px;}
.wb{width:680.325000px;}
.w16{width:680.505000px;}
.w6{width:690.945000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4b{left:1.980000px;}
.x2{left:8.100000px;}
.x1e{left:9.180000px;}
.x1b{left:12.240000px;}
.x20{left:31.860000px;}
.x21{left:40.140000px;}
.x36{left:45.534000px;}
.x38{left:47.385000px;}
.x3c{left:50.625000px;}
.x40{left:51.885000px;}
.x4a{left:55.074000px;}
.x3a{left:58.530000px;}
.x3d{left:62.094000px;}
.x3f{left:63.930000px;}
.x45{left:67.854000px;}
.x4{left:70.740000px;}
.x46{left:72.765000px;}
.x41{left:73.845000px;}
.x3e{left:76.185000px;}
.x30{left:89.670000px;}
.x6{left:95.796000px;}
.x35{left:99.435000px;}
.x1c{left:104.256000px;}
.x1{left:106.416000px;}
.x4c{left:114.516000px;}
.x23{left:117.750000px;}
.xc{left:119.735987px;}
.x2a{left:124.305000px;}
.x17{left:127.655987px;}
.x44{left:131.685000px;}
.x49{left:133.235987px;}
.x2e{left:137.520000px;}
.x24{left:143.670000px;}
.x29{left:149.685000px;}
.x2f{left:154.950000px;}
.x33{left:156.345000px;}
.x2d{left:158.910000px;}
.x32{left:167.580000px;}
.x34{left:179.790000px;}
.x43{left:186.810000px;}
.x2c{left:188.130000px;}
.xd{left:194.249987px;}
.x4d{left:199.470000px;}
.x8{left:200.909987px;}
.x28{left:203.730000px;}
.xa{left:222.509987px;}
.x9{left:239.969987px;}
.x31{left:254.160000px;}
.x27{left:256.500000px;}
.x42{left:274.140000px;}
.x37{left:280.470000px;}
.x2b{left:281.520000px;}
.x47{left:308.414987px;}
.x22{left:331.059000px;}
.x1d{left:333.615000px;}
.x3{left:335.055000px;}
.x7{left:336.639000px;}
.x26{left:344.594987px;}
.x1f{left:354.675000px;}
.x48{left:418.574987px;}
.xb{left:446.474987px;}
.x16{left:450.074987px;}
.x19{left:459.254987px;}
.x39{left:463.935000px;}
.x1a{left:480.524987px;}
.xe{left:488.804987px;}
.x18{left:515.804987px;}
.x5{left:563.505000px;}
.xf{left:595.364987px;}
.x12{left:596.984987px;}
.x3b{left:623.085000px;}
.x14{left:640.004987px;}
.x13{left:655.844987px;}
.x15{left:661.244987px;}
.x11{left:740.129987px;}
.x25{left:754.710000px;}
.x10{left:786.749987px;}
@media print{
.v7{vertical-align:-122.240000pt;}
.v1{vertical-align:-73.600000pt;}
.v8{vertical-align:-67.200000pt;}
.v2{vertical-align:-64.000000pt;}
.v6{vertical-align:-61.440000pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:26.880000pt;}
.v3{vertical-align:31.360000pt;}
.ls26{letter-spacing:-0.688000pt;}
.ls2e{letter-spacing:-0.480000pt;}
.ls27{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.269867pt;}
.ls33{letter-spacing:-0.239467pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls30{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.047360pt;}
.ls20{letter-spacing:-0.046080pt;}
.ls2f{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.016000pt;}
.ls2c{letter-spacing:0.032000pt;}
.ls2{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.079467pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls32{letter-spacing:0.096000pt;}
.ls1e{letter-spacing:0.112000pt;}
.ls0{letter-spacing:0.116480pt;}
.ls3{letter-spacing:0.133120pt;}
.ls22{letter-spacing:0.160000pt;}
.ls2a{letter-spacing:0.176000pt;}
.ls8{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.245760pt;}
.ls4{letter-spacing:0.265600pt;}
.lsb{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2d{letter-spacing:0.416000pt;}
.lse{letter-spacing:0.456533pt;}
.ls2b{letter-spacing:0.480000pt;}
.ls25{letter-spacing:0.592000pt;}
.ls21{letter-spacing:0.821333pt;}
.lsf{letter-spacing:1.920000pt;}
.ls29{letter-spacing:2.720000pt;}
.ls1d{letter-spacing:7.200000pt;}
.ls24{letter-spacing:13.392640pt;}
.ls5{letter-spacing:38.400000pt;}
.ls23{letter-spacing:39.611307pt;}
.ls14{letter-spacing:62.240000pt;}
.ls28{letter-spacing:142.858667pt;}
.ls19{letter-spacing:197.898667pt;}
.ls1c{letter-spacing:286.858667pt;}
.ls1b{letter-spacing:318.218667pt;}
.ls18{letter-spacing:364.938667pt;}
.ls1a{letter-spacing:368.778667pt;}
.ls12{letter-spacing:496.778667pt;}
.ls17{letter-spacing:562.218667pt;}
.ls13{letter-spacing:598.058667pt;}
.ls6{letter-spacing:872.586667pt;}
.ls15{letter-spacing:1158.058667pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-14.461547pt;}
.ws11{word-spacing:-14.144000pt;}
.ws12{word-spacing:-14.101333pt;}
.ws14{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws13{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.ws16{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.592000pt;}
.ws17{word-spacing:-12.416000pt;}
.wsd{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.984000pt;}
.ws1a{word-spacing:-11.904000pt;}
.ws19{word-spacing:-11.680000pt;}
.ws1b{word-spacing:-10.480533pt;}
.ws0{word-spacing:-10.334080pt;}
.wsc{word-spacing:-9.359467pt;}
.wsb{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.945920pt;}
.ws1{word-spacing:-8.676053pt;}
.ws7{word-spacing:-8.000000pt;}
.ws9{word-spacing:0.000000pt;}
.wsf{word-spacing:51.808000pt;}
.wse{word-spacing:69.050667pt;}
._c{margin-left:-3.134080pt;}
._6{margin-left:-2.141440pt;}
._1{margin-left:-1.025280pt;}
._0{width:0.925653pt;}
._b{width:2.273280pt;}
._3{width:3.872000pt;}
._2{width:4.896000pt;}
._4{width:5.827627pt;}
._7{width:6.913280pt;}
._d{width:8.233600pt;}
._a{width:9.293013pt;}
._21{width:10.227200pt;}
._5{width:11.233280pt;}
._19{width:12.159360pt;}
._e{width:15.032960pt;}
._15{width:16.148480pt;}
._18{width:17.241387pt;}
._9{width:18.534827pt;}
._8{width:19.583787pt;}
._1a{width:20.591360pt;}
._f{width:21.513600pt;}
._10{width:22.530773pt;}
._1d{width:23.554773pt;}
._2b{width:24.860160pt;}
._1b{width:26.226560pt;}
._1c{width:27.121707pt;}
._14{width:28.312960pt;}
._13{width:29.322240pt;}
._29{width:30.703360pt;}
._28{width:32.084480pt;}
._27{width:33.093760pt;}
._17{width:34.687360pt;}
._16{width:35.856000pt;}
._24{width:37.662080pt;}
._31{width:38.589440pt;}
._11{width:39.498667pt;}
._30{width:40.636800pt;}
._12{width:41.592960pt;}
._2c{width:43.027200pt;}
._32{width:43.930240pt;}
._1e{width:45.045760pt;}
._23{width:46.312107pt;}
._22{width:47.489280pt;}
._20{width:48.529067pt;}
._1f{width:49.560960pt;}
._2f{width:51.206187pt;}
._2e{width:52.376320pt;}
._33{width:53.385600pt;}
._34{width:54.577707pt;}
._2a{width:56.519680pt;}
._2d{width:64.222080pt;}
._25{width:80.464000pt;}
._26{width:82.426667pt;}
.fsc{font-size:5.120000pt;}
.fs9{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:26.880000pt;}
.fs4{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fsb{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:1.760000pt;}
.y1a1{bottom:2.560000pt;}
.y1a9{bottom:2.720000pt;}
.y75{bottom:3.200000pt;}
.y3{bottom:3.840000pt;}
.yf4{bottom:5.120000pt;}
.y2{bottom:5.280000pt;}
.y7{bottom:5.600000pt;}
.yb3{bottom:7.200000pt;}
.yb4{bottom:10.560000pt;}
.y77{bottom:10.880000pt;}
.yb2{bottom:13.920000pt;}
.ye7{bottom:14.626667pt;}
.yf2{bottom:14.746667pt;}
.y11a{bottom:14.786667pt;}
.y1a6{bottom:16.346667pt;}
.y1ae{bottom:16.480000pt;}
.yec{bottom:19.906667pt;}
.y8{bottom:29.280000pt;}
.y1ad{bottom:30.240000pt;}
.y1a5{bottom:30.266667pt;}
.y6{bottom:43.200000pt;}
.y1ac{bottom:44.000000pt;}
.y1a4{bottom:44.026667pt;}
.y1ab{bottom:57.760000pt;}
.y1a3{bottom:57.786667pt;}
.yea{bottom:63.493333pt;}
.y5{bottom:64.800000pt;}
.yef{bottom:69.666667pt;}
.y162{bottom:78.400000pt;}
.y19d{bottom:81.120000pt;}
.y1c9{bottom:82.720000pt;}
.ye4{bottom:83.546667pt;}
.y118{bottom:83.706667pt;}
.ye2{bottom:83.840000pt;}
.y1c8{bottom:84.320000pt;}
.y1c7{bottom:85.600000pt;}
.y14e{bottom:86.080000pt;}
.yc8{bottom:91.040000pt;}
.y73{bottom:91.360000pt;}
.y57{bottom:92.480000pt;}
.y161{bottom:93.760000pt;}
.y19c{bottom:96.480000pt;}
.ye0{bottom:99.040000pt;}
.ye5{bottom:99.546667pt;}
.y119{bottom:99.706667pt;}
.y56{bottom:101.440000pt;}
.ye9{bottom:104.506667pt;}
.yeb{bottom:105.506667pt;}
.yee{bottom:105.666667pt;}
.yc7{bottom:106.400000pt;}
.y72{bottom:106.720000pt;}
.yf0{bottom:107.680000pt;}
.y160{bottom:109.120000pt;}
.y55{bottom:110.400000pt;}
.y19b{bottom:111.680000pt;}
.ydf{bottom:114.400000pt;}
.y14d{bottom:116.800000pt;}
.y1c6{bottom:117.440000pt;}
.y54{bottom:119.360000pt;}
.ya5{bottom:121.760000pt;}
.y71{bottom:122.080000pt;}
.yc6{bottom:122.560000pt;}
.y15f{bottom:124.480000pt;}
.y19a{bottom:127.040000pt;}
.y53{bottom:128.320000pt;}
.yde{bottom:129.760000pt;}
.y14c{bottom:132.160000pt;}
.y1c5{bottom:132.800000pt;}
.y52{bottom:137.120000pt;}
.y116{bottom:137.280000pt;}
.y70{bottom:137.440000pt;}
.yc5{bottom:137.920000pt;}
.y15e{bottom:139.680000pt;}
.y199{bottom:142.400000pt;}
.ydd{bottom:145.120000pt;}
.y51{bottom:146.080000pt;}
.y14b{bottom:147.520000pt;}
.y1c4{bottom:148.160000pt;}
.ya4{bottom:152.480000pt;}
.y115{bottom:152.640000pt;}
.y6f{bottom:152.800000pt;}
.yc4{bottom:153.280000pt;}
.y50{bottom:155.040000pt;}
.y198{bottom:157.760000pt;}
.yf1{bottom:158.333333pt;}
.ydc{bottom:160.480000pt;}
.y14a{bottom:162.906667pt;}
.y1c3{bottom:163.546667pt;}
.y4f{bottom:164.026667pt;}
.ye6{bottom:165.280000pt;}
.ya3{bottom:167.706667pt;}
.y114{bottom:168.026667pt;}
.y6e{bottom:168.186667pt;}
.yc3{bottom:168.666667pt;}
.y15d{bottom:170.426667pt;}
.y152{bottom:171.706667pt;}
.y4e{bottom:172.986667pt;}
.y197{bottom:173.146667pt;}
.ydb{bottom:175.706667pt;}
.y149{bottom:178.106667pt;}
.y1c2{bottom:178.906667pt;}
.y4d{bottom:181.946667pt;}
.ya2{bottom:183.066667pt;}
.y6d{bottom:183.386667pt;}
.yc2{bottom:184.026667pt;}
.y15c{bottom:185.786667pt;}
.y196{bottom:188.506667pt;}
.y4c{bottom:190.746667pt;}
.yda{bottom:191.066667pt;}
.y148{bottom:193.466667pt;}
.y1c1{bottom:194.106667pt;}
.ya1{bottom:198.426667pt;}
.y6c{bottom:198.746667pt;}
.yc1{bottom:199.386667pt;}
.y4b{bottom:199.706667pt;}
.y15b{bottom:201.146667pt;}
.y195{bottom:203.706667pt;}
.yd9{bottom:206.426667pt;}
.y4a{bottom:208.666667pt;}
.y147{bottom:208.826667pt;}
.y1c0{bottom:209.466667pt;}
.ya0{bottom:213.786667pt;}
.y113{bottom:213.946667pt;}
.y6b{bottom:214.106667pt;}
.yc0{bottom:214.586667pt;}
.y15a{bottom:216.506667pt;}
.y49{bottom:217.626667pt;}
.y194{bottom:219.066667pt;}
.yd8{bottom:221.786667pt;}
.y146{bottom:221.946667pt;}
.y1bf{bottom:224.826667pt;}
.y48{bottom:226.586667pt;}
.y9f{bottom:229.146667pt;}
.y112{bottom:229.306667pt;}
.y6a{bottom:229.466667pt;}
.ybf{bottom:229.946667pt;}
.y159{bottom:231.706667pt;}
.y193{bottom:234.426667pt;}
.y47{bottom:235.386667pt;}
.yd7{bottom:237.146667pt;}
.y1be{bottom:240.186667pt;}
.y145{bottom:241.466667pt;}
.y46{bottom:244.346667pt;}
.y9e{bottom:244.506667pt;}
.y111{bottom:244.666667pt;}
.y69{bottom:244.826667pt;}
.ybe{bottom:245.306667pt;}
.y158{bottom:247.066667pt;}
.y192{bottom:249.786667pt;}
.ye1{bottom:252.506667pt;}
.y45{bottom:253.306667pt;}
.y1bd{bottom:255.546667pt;}
.y110{bottom:257.786667pt;}
.y9d{bottom:259.706667pt;}
.y68{bottom:260.186667pt;}
.ybd{bottom:260.666667pt;}
.y44{bottom:262.266667pt;}
.y157{bottom:262.426667pt;}
.y191{bottom:265.146667pt;}
.yd6{bottom:267.706667pt;}
.y1bc{bottom:270.906667pt;}
.y43{bottom:271.226667pt;}
.y9c{bottom:275.066667pt;}
.y67{bottom:275.386667pt;}
.ybc{bottom:276.026667pt;}
.y144{bottom:277.146667pt;}
.y10f{bottom:277.306667pt;}
.y156{bottom:277.786667pt;}
.y42{bottom:280.186667pt;}
.y190{bottom:280.506667pt;}
.yd5{bottom:283.066667pt;}
.y1bb{bottom:286.106667pt;}
.y41{bottom:287.706667pt;}
.y9b{bottom:290.426667pt;}
.y66{bottom:290.746667pt;}
.ybb{bottom:291.226667pt;}
.y40{bottom:292.026667pt;}
.y155{bottom:293.146667pt;}
.y18f{bottom:295.706667pt;}
.y151{bottom:298.426667pt;}
.y3f{bottom:300.986667pt;}
.y1ba{bottom:301.466667pt;}
.ye8{bottom:304.800000pt;}
.y9a{bottom:305.786667pt;}
.y65{bottom:306.106667pt;}
.yba{bottom:306.586667pt;}
.y143{bottom:307.866667pt;}
.y154{bottom:308.506667pt;}
.y3e{bottom:309.946667pt;}
.y10e{bottom:310.746667pt;}
.y18e{bottom:311.066667pt;}
.yd4{bottom:313.786667pt;}
.y1b9{bottom:316.826667pt;}
.y3d{bottom:318.746667pt;}
.y99{bottom:321.146667pt;}
.y64{bottom:321.466667pt;}
.yb9{bottom:321.946667pt;}
.y142{bottom:323.226667pt;}
.y18d{bottom:326.426667pt;}
.y3c{bottom:327.706667pt;}
.y150{bottom:329.146667pt;}
.y10d{bottom:330.266667pt;}
.y1b8{bottom:332.186667pt;}
.y98{bottom:336.506667pt;}
.y3b{bottom:336.666667pt;}
.y63{bottom:336.826667pt;}
.yb8{bottom:337.306667pt;}
.y141{bottom:338.586667pt;}
.y18c{bottom:341.786667pt;}
.y14f{bottom:344.506667pt;}
.y3a{bottom:345.626667pt;}
.y1b7{bottom:347.546667pt;}
.y97{bottom:351.706667pt;}
.y62{bottom:352.026667pt;}
.yb7{bottom:352.666667pt;}
.y140{bottom:353.946667pt;}
.y39{bottom:354.586667pt;}
.y153{bottom:357.146667pt;}
.yd3{bottom:359.706667pt;}
.y10c{bottom:360.986667pt;}
.y1b6{bottom:362.906667pt;}
.y38{bottom:363.546667pt;}
.y96{bottom:367.066667pt;}
.y61{bottom:367.386667pt;}
.yb6{bottom:368.026667pt;}
.y13f{bottom:369.146667pt;}
.y37{bottom:372.346667pt;}
.y18b{bottom:372.506667pt;}
.yd2{bottom:375.066667pt;}
.y10b{bottom:376.346667pt;}
.y1b5{bottom:378.146667pt;}
.y36{bottom:381.346667pt;}
.y95{bottom:382.466667pt;}
.y60{bottom:382.786667pt;}
.yb5{bottom:383.266667pt;}
.y13e{bottom:384.546667pt;}
.y18a{bottom:387.746667pt;}
.y35{bottom:390.306667pt;}
.yd1{bottom:390.466667pt;}
.y10a{bottom:391.586667pt;}
.y1b4{bottom:393.506667pt;}
.yb1{bottom:395.746667pt;}
.y94{bottom:397.826667pt;}
.y5f{bottom:398.146667pt;}
.y34{bottom:399.266667pt;}
.y13d{bottom:399.906667pt;}
.y189{bottom:403.106667pt;}
.yd0{bottom:405.826667pt;}
.y109{bottom:406.946667pt;}
.y33{bottom:408.226667pt;}
.y1b3{bottom:408.866667pt;}
.y93{bottom:413.186667pt;}
.y5e{bottom:413.506667pt;}
.y13c{bottom:415.266667pt;}
.y32{bottom:417.026667pt;}
.y188{bottom:418.466667pt;}
.ycf{bottom:421.186667pt;}
.y108{bottom:422.306667pt;}
.y1b2{bottom:424.226667pt;}
.y31{bottom:425.986667pt;}
.y92{bottom:428.386667pt;}
.y5d{bottom:428.866667pt;}
.y13b{bottom:430.626667pt;}
.y187{bottom:433.826667pt;}
.y30{bottom:434.946667pt;}
.yce{bottom:436.386667pt;}
.y107{bottom:437.666667pt;}
.y1b1{bottom:439.586667pt;}
.y91{bottom:443.746667pt;}
.y2f{bottom:443.906667pt;}
.y5c{bottom:444.066667pt;}
.y13a{bottom:445.986667pt;}
.y186{bottom:449.186667pt;}
.ycd{bottom:451.746667pt;}
.y2e{bottom:452.866667pt;}
.y106{bottom:453.026667pt;}
.y1b0{bottom:454.786667pt;}
.y90{bottom:459.106667pt;}
.y5b{bottom:459.426667pt;}
.y139{bottom:461.186667pt;}
.y2d{bottom:461.826667pt;}
.y185{bottom:464.386667pt;}
.y74{bottom:466.946667pt;}
.ycc{bottom:467.106667pt;}
.y105{bottom:468.386667pt;}
.y1af{bottom:470.146667pt;}
.y2c{bottom:470.626667pt;}
.y138{bottom:474.306667pt;}
.y8f{bottom:474.466667pt;}
.y5a{bottom:474.786667pt;}
.y2b{bottom:479.586667pt;}
.y184{bottom:479.746667pt;}
.ycb{bottom:482.466667pt;}
.y1aa{bottom:482.626667pt;}
.y104{bottom:483.586667pt;}
.y2a{bottom:488.546667pt;}
.y8e{bottom:489.826667pt;}
.y59{bottom:490.146667pt;}
.y137{bottom:493.826667pt;}
.y183{bottom:495.106667pt;}
.y29{bottom:497.506667pt;}
.yca{bottom:497.826667pt;}
.y103{bottom:498.946667pt;}
.y8d{bottom:505.186667pt;}
.y58{bottom:505.506667pt;}
.y28{bottom:507.906667pt;}
.y182{bottom:510.466667pt;}
.y102{bottom:512.066667pt;}
.yc9{bottom:513.186667pt;}
.y27{bottom:519.426667pt;}
.y8c{bottom:520.386667pt;}
.y181{bottom:525.826667pt;}
.y26{bottom:528.386667pt;}
.y136{bottom:529.666667pt;}
.y101{bottom:531.586667pt;}
.y8b{bottom:535.746667pt;}
.y180{bottom:541.186667pt;}
.y25{bottom:543.746667pt;}
.y8a{bottom:551.106667pt;}
.y1a8{bottom:551.586667pt;}
.y17f{bottom:556.386667pt;}
.y24{bottom:559.106667pt;}
.y135{bottom:560.386667pt;}
.y1a7{bottom:565.506667pt;}
.y89{bottom:566.466667pt;}
.y17e{bottom:571.746667pt;}
.y23{bottom:574.466667pt;}
.y134{bottom:575.586667pt;}
.y1a2{bottom:579.266667pt;}
.y88{bottom:581.826667pt;}
.y100{bottom:582.786667pt;}
.y17d{bottom:587.106667pt;}
.y22{bottom:589.826667pt;}
.y133{bottom:590.946667pt;}
.yb0{bottom:597.213333pt;}
.yff{bottom:598.013333pt;}
.y87{bottom:601.053333pt;}
.y17c{bottom:602.493333pt;}
.y21{bottom:605.213333pt;}
.y132{bottom:606.333333pt;}
.yaf{bottom:612.413333pt;}
.yfe{bottom:613.373333pt;}
.y17b{bottom:617.853333pt;}
.y20{bottom:620.413333pt;}
.y131{bottom:621.693333pt;}
.yae{bottom:627.773333pt;}
.yfd{bottom:628.733333pt;}
.y17a{bottom:633.213333pt;}
.y1f{bottom:635.773333pt;}
.y130{bottom:637.053333pt;}
.yed{bottom:642.720000pt;}
.yad{bottom:643.133333pt;}
.yfc{bottom:644.093333pt;}
.y1a0{bottom:648.253333pt;}
.y179{bottom:648.413333pt;}
.y1e{bottom:651.133333pt;}
.y12f{bottom:652.253333pt;}
.yac{bottom:658.493333pt;}
.yfb{bottom:659.453333pt;}
.y178{bottom:663.773333pt;}
.y19f{bottom:664.893333pt;}
.y1d{bottom:666.493333pt;}
.y12e{bottom:667.613333pt;}
.yab{bottom:673.853333pt;}
.yfa{bottom:674.813333pt;}
.y177{bottom:679.133333pt;}
.y1c{bottom:681.853333pt;}
.y12d{bottom:682.973333pt;}
.yaa{bottom:689.213333pt;}
.yf9{bottom:690.013333pt;}
.y176{bottom:694.493333pt;}
.y19e{bottom:697.053333pt;}
.y1b{bottom:697.213333pt;}
.y12c{bottom:698.333333pt;}
.ya9{bottom:704.413333pt;}
.yf8{bottom:705.373333pt;}
.y175{bottom:709.853333pt;}
.y1a{bottom:712.413333pt;}
.y12b{bottom:713.693333pt;}
.ya8{bottom:719.773333pt;}
.yf7{bottom:720.733333pt;}
.y174{bottom:725.053333pt;}
.y19{bottom:727.773333pt;}
.y12a{bottom:729.053333pt;}
.ya7{bottom:735.133333pt;}
.yf6{bottom:736.093333pt;}
.y173{bottom:740.413333pt;}
.y129{bottom:742.173333pt;}
.y18{bottom:743.133333pt;}
.yf5{bottom:749.213333pt;}
.ya6{bottom:754.493333pt;}
.y172{bottom:755.773333pt;}
.y17{bottom:758.493333pt;}
.y128{bottom:761.693333pt;}
.yf3{bottom:768.733333pt;}
.y171{bottom:771.133333pt;}
.y16{bottom:773.853333pt;}
.y170{bottom:786.493333pt;}
.y86{bottom:789.053333pt;}
.y16f{bottom:801.853333pt;}
.y85{bottom:804.413333pt;}
.y15{bottom:805.053333pt;}
.y127{bottom:812.773333pt;}
.y16e{bottom:817.093333pt;}
.y84{bottom:819.813333pt;}
.y14{bottom:823.493333pt;}
.y126{bottom:828.133333pt;}
.y16d{bottom:832.453333pt;}
.y83{bottom:835.173333pt;}
.y13{bottom:841.893333pt;}
.y125{bottom:843.493333pt;}
.y16c{bottom:847.813333pt;}
.y82{bottom:850.533333pt;}
.y117{bottom:858.560000pt;}
.y124{bottom:858.693333pt;}
.y12{bottom:860.293333pt;}
.y16b{bottom:863.173333pt;}
.y81{bottom:865.893333pt;}
.ye3{bottom:867.520000pt;}
.y123{bottom:874.053333pt;}
.y16a{bottom:878.533333pt;}
.y11{bottom:878.693333pt;}
.y80{bottom:881.093333pt;}
.y122{bottom:889.413333pt;}
.y169{bottom:893.893333pt;}
.y7f{bottom:896.453333pt;}
.y10{bottom:897.093333pt;}
.y121{bottom:904.773333pt;}
.y168{bottom:909.093333pt;}
.y7e{bottom:911.813333pt;}
.yf{bottom:915.493333pt;}
.y120{bottom:920.133333pt;}
.y167{bottom:924.453333pt;}
.y7d{bottom:927.173333pt;}
.ye{bottom:933.893333pt;}
.y11f{bottom:935.493333pt;}
.y166{bottom:939.813333pt;}
.y7c{bottom:942.533333pt;}
.y11e{bottom:950.693333pt;}
.y165{bottom:955.173333pt;}
.y7b{bottom:957.893333pt;}
.y11d{bottom:966.053333pt;}
.y164{bottom:970.533333pt;}
.yd{bottom:970.693333pt;}
.y7a{bottom:973.093333pt;}
.y11c{bottom:979.173333pt;}
.y163{bottom:985.893333pt;}
.yc{bottom:988.453333pt;}
.y11b{bottom:998.693333pt;}
.yb{bottom:1003.813333pt;}
.ya{bottom:1019.173333pt;}
.y9{bottom:1034.560000pt;}
.y4{bottom:1053.280000pt;}
.y79{bottom:1055.840000pt;}
.y76{bottom:1066.560000pt;}
.y1{bottom:1066.720000pt;}
.h25{height:5.092500pt;}
.h16{height:10.678125pt;}
.h28{height:13.760000pt;}
.h2c{height:13.920000pt;}
.h7{height:15.914062pt;}
.h2{height:18.080000pt;}
.h1a{height:18.240000pt;}
.h24{height:18.880000pt;}
.h8{height:19.040000pt;}
.h14{height:23.140625pt;}
.h1c{height:24.187500pt;}
.h1b{height:24.203125pt;}
.h12{height:26.375000pt;}
.h10{height:27.090000pt;}
.h2e{height:28.960000pt;}
.h1f{height:29.760000pt;}
.h13{height:31.390625pt;}
.h15{height:31.406250pt;}
.h5{height:32.411250pt;}
.h17{height:33.918750pt;}
.h3{height:36.413125pt;}
.h2f{height:36.431250pt;}
.h26{height:38.413438pt;}
.h11{height:42.063437pt;}
.h1d{height:42.084375pt;}
.h30{height:43.215000pt;}
.h9{height:44.505000pt;}
.h29{height:47.085938pt;}
.h4{height:47.109375pt;}
.h2b{height:47.742188pt;}
.hf{height:52.108438pt;}
.hb{height:52.134375pt;}
.h6{height:52.834688pt;}
.h1e{height:53.535000pt;}
.h27{height:54.598989pt;}
.he{height:55.343750pt;}
.h20{height:58.203125pt;}
.ha{height:58.563750pt;}
.hc{height:62.812500pt;}
.hd{height:64.500000pt;}
.h18{height:64.960000pt;}
.h2d{height:68.960000pt;}
.h2a{height:68.992000pt;}
.h21{height:79.014375pt;}
.h22{height:188.800000pt;}
.h23{height:188.960000pt;}
.h19{height:258.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:18.720000pt;}
.wd{width:28.480000pt;}
.w7{width:58.432000pt;}
.w17{width:75.520000pt;}
.w13{width:140.826667pt;}
.w14{width:144.826667pt;}
.w11{width:153.440000pt;}
.w12{width:162.426667pt;}
.w4{width:198.426667pt;}
.w3{width:203.066667pt;}
.w2{width:203.226667pt;}
.w8{width:203.866667pt;}
.wc{width:262.626667pt;}
.w15{width:306.240000pt;}
.wf{width:311.200000pt;}
.we{width:337.600000pt;}
.w10{width:341.760000pt;}
.wa{width:385.986667pt;}
.w18{width:529.373333pt;}
.wb{width:604.733333pt;}
.w16{width:604.893333pt;}
.w6{width:614.173333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4b{left:1.760000pt;}
.x2{left:7.200000pt;}
.x1e{left:8.160000pt;}
.x1b{left:10.880000pt;}
.x20{left:28.320000pt;}
.x21{left:35.680000pt;}
.x36{left:40.474667pt;}
.x38{left:42.120000pt;}
.x3c{left:45.000000pt;}
.x40{left:46.120000pt;}
.x4a{left:48.954667pt;}
.x3a{left:52.026667pt;}
.x3d{left:55.194667pt;}
.x3f{left:56.826667pt;}
.x45{left:60.314667pt;}
.x4{left:62.880000pt;}
.x46{left:64.680000pt;}
.x41{left:65.640000pt;}
.x3e{left:67.720000pt;}
.x30{left:79.706667pt;}
.x6{left:85.152000pt;}
.x35{left:88.386667pt;}
.x1c{left:92.672000pt;}
.x1{left:94.592000pt;}
.x4c{left:101.792000pt;}
.x23{left:104.666667pt;}
.xc{left:106.431988pt;}
.x2a{left:110.493333pt;}
.x17{left:113.471988pt;}
.x44{left:117.053333pt;}
.x49{left:118.431988pt;}
.x2e{left:122.240000pt;}
.x24{left:127.706667pt;}
.x29{left:133.053333pt;}
.x2f{left:137.733333pt;}
.x33{left:138.973333pt;}
.x2d{left:141.253333pt;}
.x32{left:148.960000pt;}
.x34{left:159.813333pt;}
.x43{left:166.053333pt;}
.x2c{left:167.226667pt;}
.xd{left:172.666655pt;}
.x4d{left:177.306667pt;}
.x8{left:178.586655pt;}
.x28{left:181.093333pt;}
.xa{left:197.786655pt;}
.x9{left:213.306655pt;}
.x31{left:225.920000pt;}
.x27{left:228.000000pt;}
.x42{left:243.680000pt;}
.x37{left:249.306667pt;}
.x2b{left:250.240000pt;}
.x47{left:274.146655pt;}
.x22{left:294.274667pt;}
.x1d{left:296.546667pt;}
.x3{left:297.826667pt;}
.x7{left:299.234667pt;}
.x26{left:306.306655pt;}
.x1f{left:315.266667pt;}
.x48{left:372.066655pt;}
.xb{left:396.866655pt;}
.x16{left:400.066655pt;}
.x19{left:408.226655pt;}
.x39{left:412.386667pt;}
.x1a{left:427.133322pt;}
.xe{left:434.493322pt;}
.x18{left:458.493322pt;}
.x5{left:500.893333pt;}
.xf{left:529.213322pt;}
.x12{left:530.653322pt;}
.x3b{left:553.853333pt;}
.x14{left:568.893322pt;}
.x13{left:582.973322pt;}
.x15{left:587.773322pt;}
.x11{left:657.893322pt;}
.x25{left:670.853333pt;}
.x10{left:699.333322pt;}
}




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