
    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_4b389f694ae5957dabe84755.woff')format("woff");}.ff1{font-family:ff1;line-height:1.143111;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_6d41989fbc4c68865d4db5db.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_bb61a327dc79844b832b67de.woff')format("woff");}.ff3{font-family:ff3;line-height:1.166504;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_3d056b783bc63d22b9fb3db6.woff')format("woff");}.ff4{font-family:ff4;line-height:0.933105;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_2e6efb4f198de590dc37003d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.055111;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_e547149f5f868c970c98e3cc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026667;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_443badead618bc597d022284.woff')format("woff");}.ff7{font-family:ff7;line-height:1.125778;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_fce136608e7c984e75c098ce.woff')format("woff");}.ff8{font-family:ff8;line-height:1.108889;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_70842b13ee6eb796f43ee743.woff')format("woff");}.ff9{font-family:ff9;line-height:1.152889;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_cf47e73b2e53d773edee3d60.woff')format("woff");}.ffa{font-family:ffa;line-height:1.125778;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_fe24be96db1f0ef0cc4b4917.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_54f5e880d99b5704f9049222.woff')format("woff");}.ffc{font-family:ffc;line-height:0.960449;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_d406b7536475329a5e42481f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.108889;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_cea9a154633e0b1b07721e7d.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_6744351eca1ad7210e96647a.woff')format("woff");}.fff{font-family:fff;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-61.920000px;}
.v1{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.ls10{letter-spacing:-0.936000px;}
.ls25{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.432000px;}
.ls22{letter-spacing:-0.374400px;}
.lsd{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.322800px;}
.ls5{letter-spacing:-0.298200px;}
.ls16{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.247200px;}
.ls21{letter-spacing:-0.220800px;}
.ls15{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.123600px;}
.ls11{letter-spacing:-0.072000px;}
.ls20{letter-spacing:-0.064200px;}
.ls13{letter-spacing:-0.060600px;}
.ls23{letter-spacing:-0.058320px;}
.ls29{letter-spacing:-0.018000px;}
.ls18{letter-spacing:-0.000003px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.043200px;}
.ls2a{letter-spacing:0.054000px;}
.ls26{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.083400px;}
.lsb{letter-spacing:0.112200px;}
.ls24{letter-spacing:0.115200px;}
.ls8{letter-spacing:0.136800px;}
.ls17{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.166800px;}
.ls1f{letter-spacing:0.177600px;}
.ls1e{letter-spacing:0.197280px;}
.ls4{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.277200px;}
.ls1a{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.299400px;}
.ls9{letter-spacing:0.322800px;}
.ls14{letter-spacing:0.328200px;}
.ls1c{letter-spacing:0.357000px;}
.ls2{letter-spacing:0.360000px;}
.ls28{letter-spacing:0.648000px;}
.lsf{letter-spacing:32.382720px;}
.lse{letter-spacing:41.742720px;}
.ls1{letter-spacing:837.900000px;}
.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;}
}
.wse{word-spacing:-18.057480px;}
.wsc{word-spacing:-18.028680px;}
.ws8{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.668680px;}
.wsa{word-spacing:-16.776000px;}
.ws16{word-spacing:-16.704000px;}
.ws0{word-spacing:-16.632000px;}
.ws13{word-spacing:-16.560000px;}
.ws1f{word-spacing:-16.488000px;}
.ws10{word-spacing:-16.416000px;}
.ws14{word-spacing:-16.415997px;}
.wsb{word-spacing:-16.344000px;}
.ws15{word-spacing:-16.272000px;}
.wsf{word-spacing:-16.200000px;}
.ws12{word-spacing:-16.128000px;}
.ws11{word-spacing:-16.056000px;}
.ws20{word-spacing:-15.984000px;}
.ws7{word-spacing:-14.580000px;}
.ws17{word-spacing:-13.982280px;}
.ws19{word-spacing:-13.802880px;}
.ws1e{word-spacing:-13.740480px;}
.ws5{word-spacing:-13.737480px;}
.ws4{word-spacing:-13.708680px;}
.ws6{word-spacing:-13.625280px;}
.ws1d{word-spacing:-13.566960px;}
.ws1a{word-spacing:-13.561080px;}
.ws1{word-spacing:-13.505760px;}
.ws18{word-spacing:-13.501680px;}
.ws1b{word-spacing:-13.404480px;}
.ws1c{word-spacing:-13.250880px;}
.ws23{word-spacing:-12.366000px;}
.ws22{word-spacing:-12.312000px;}
.ws21{word-spacing:-12.294000px;}
.ws24{word-spacing:-12.240000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-4.682160px;}
._15{margin-left:-3.672000px;}
._6{margin-left:-2.301840px;}
._1{margin-left:-1.224000px;}
._0{width:1.260000px;}
._3{width:2.325600px;}
._4{width:4.222800px;}
._16{width:5.793120px;}
._8{width:7.111440px;}
._7{width:8.306640px;}
._2{width:9.336000px;}
._d{width:10.472400px;}
._5{width:11.712960px;}
._13{width:12.717840px;}
._12{width:13.896000px;}
._14{width:15.300000px;}
._f{width:16.369200px;}
._e{width:17.629200px;}
._a{width:18.943920px;}
._1c{width:19.955520px;}
._b{width:21.035520px;}
._c{width:22.165920px;}
._9{width:24.003120px;}
._18{width:25.416000px;}
._19{width:26.852880px;}
._1a{width:28.368000px;}
._1b{width:29.664000px;}
._10{width:39.561120px;}
._11{width:40.572720px;}
._21{width:42.048000px;}
._1e{width:56.352000px;}
._1d{width:57.816000px;}
._1f{width:70.920000px;}
._20{width:72.192000px;}
._22{width:73.440000px;}
.fc4{color:rgb(0,102,0);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(192,0,0);}
.fc1{color:rgb(0,51,0);}
.fc2{color:rgb(0,91,0);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs2{font-size:84.240000px;}
.fsb{font-size:95.760000px;}
.fs6{font-size:162.000000px;}
.y43{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y19{bottom:3.600000px;}
.y134{bottom:3.630000px;}
.y13{bottom:3.780000px;}
.y3{bottom:4.320000px;}
.y157{bottom:4.356000px;}
.ydb{bottom:4.365000px;}
.yff{bottom:4.500000px;}
.y42{bottom:12.600000px;}
.y36{bottom:22.320000px;}
.y147{bottom:22.365000px;}
.y12f{bottom:22.494000px;}
.y30{bottom:22.500000px;}
.y18{bottom:22.530000px;}
.y128{bottom:22.545000px;}
.y2{bottom:25.020000px;}
.yc5{bottom:26.814000px;}
.ybb{bottom:26.820000px;}
.yb8{bottom:26.850000px;}
.yc8{bottom:26.856000px;}
.yce{bottom:26.865000px;}
.ye0{bottom:27.000000px;}
.y41{bottom:32.580000px;}
.y13f{bottom:41.040000px;}
.y35{bottom:41.220000px;}
.y17{bottom:41.250000px;}
.y13c{bottom:41.265000px;}
.y2f{bottom:41.400000px;}
.yc4{bottom:49.314000px;}
.ybd{bottom:49.320000px;}
.ye6{bottom:49.350000px;}
.yc7{bottom:49.356000px;}
.yc0{bottom:49.365000px;}
.yd1{bottom:49.500000px;}
.y2e{bottom:58.500000px;}
.y13e{bottom:59.760000px;}
.y34{bottom:59.940000px;}
.y16{bottom:59.970000px;}
.y13b{bottom:59.985000px;}
.yc6{bottom:65.160000px;}
.y40{bottom:65.340000px;}
.y125{bottom:66.420000px;}
.yaf{bottom:67.140000px;}
.y17b{bottom:68.760000px;}
.y194{bottom:69.480000px;}
.y73{bottom:70.920000px;}
.y180{bottom:71.820000px;}
.y162{bottom:71.850000px;}
.y152{bottom:76.860000px;}
.y2d{bottom:77.220000px;}
.y33{bottom:78.660000px;}
.y15{bottom:78.690000px;}
.y3d{bottom:80.100000px;}
.y3f{bottom:80.820000px;}
.y131{bottom:83.880000px;}
.ye3{bottom:86.040000px;}
.yb6{bottom:86.760000px;}
.y156{bottom:87.660000px;}
.y124{bottom:88.920000px;}
.yae{bottom:89.640000px;}
.y17a{bottom:91.296000px;}
.y193{bottom:92.016000px;}
.y72{bottom:93.456000px;}
.y7f{bottom:93.816000px;}
.y17f{bottom:94.320000px;}
.y181{bottom:94.350000px;}
.y18a{bottom:94.500000px;}
.y2c{bottom:95.940000px;}
.y32{bottom:97.380000px;}
.y151{bottom:99.396000px;}
.y130{bottom:102.636000px;}
.y37{bottom:105.120000px;}
.ye2{bottom:108.576000px;}
.yb5{bottom:109.296000px;}
.y123{bottom:111.456000px;}
.yad{bottom:112.176000px;}
.y179{bottom:113.796000px;}
.y192{bottom:114.516000px;}
.y2b{bottom:114.705000px;}
.y71{bottom:115.956000px;}
.y17e{bottom:116.820000px;}
.y189{bottom:117.000000px;}
.y7e{bottom:118.296000px;}
.y150{bottom:121.896000px;}
.y3c{bottom:124.596000px;}
.y101{bottom:131.076000px;}
.yb4{bottom:131.796000px;}
.yc3{bottom:132.696000px;}
.y2a{bottom:133.425000px;}
.y122{bottom:133.956000px;}
.yac{bottom:134.676000px;}
.y178{bottom:136.296000px;}
.y191{bottom:137.016000px;}
.y70{bottom:138.456000px;}
.y17d{bottom:139.320000px;}
.y188{bottom:139.500000px;}
.y12e{bottom:140.076000px;}
.y7d{bottom:142.596000px;}
.y14f{bottom:144.396000px;}
.y3b{bottom:146.916000px;}
.y29{bottom:152.325000px;}
.ye1{bottom:153.570000px;}
.yb3{bottom:154.290000px;}
.y155{bottom:155.190000px;}
.y121{bottom:156.450000px;}
.yab{bottom:157.170000px;}
.y177{bottom:158.790000px;}
.y190{bottom:159.510000px;}
.y6f{bottom:160.950000px;}
.y183{bottom:161.820000px;}
.y187{bottom:162.000000px;}
.y3a{bottom:165.630000px;}
.y14e{bottom:166.890000px;}
.y7c{bottom:167.070000px;}
.y28{bottom:171.045000px;}
.y100{bottom:176.070000px;}
.yb2{bottom:176.790000px;}
.y12d{bottom:177.690000px;}
.y120{bottom:178.950000px;}
.yaa{bottom:179.670000px;}
.y176{bottom:181.290000px;}
.y18f{bottom:182.010000px;}
.y6e{bottom:183.450000px;}
.y39{bottom:184.350000px;}
.y186{bottom:184.500000px;}
.y14d{bottom:189.390000px;}
.y27{bottom:189.765000px;}
.y7b{bottom:191.370000px;}
.ydf{bottom:198.570000px;}
.yb1{bottom:199.290000px;}
.yc2{bottom:200.190000px;}
.y11f{bottom:201.450000px;}
.ya9{bottom:202.170000px;}
.y175{bottom:203.790000px;}
.y18e{bottom:204.510000px;}
.y6d{bottom:205.950000px;}
.y185{bottom:207.045000px;}
.y38{bottom:207.750000px;}
.y26{bottom:208.485000px;}
.y14c{bottom:212.070000px;}
.y12c{bottom:215.130000px;}
.y7a{bottom:215.850000px;}
.yb0{bottom:217.650000px;}
.yfe{bottom:221.070000px;}
.y154{bottom:222.690000px;}
.y11e{bottom:223.950000px;}
.ya8{bottom:224.670000px;}
.y174{bottom:226.290000px;}
.y18d{bottom:227.010000px;}
.y1a{bottom:227.190000px;}
.y25{bottom:227.205000px;}
.y6c{bottom:228.450000px;}
.y12b{bottom:233.850000px;}
.y14b{bottom:234.570000px;}
.y79{bottom:240.150000px;}
.yde{bottom:243.750000px;}
.yfd{bottom:244.470000px;}
.y24{bottom:246.105000px;}
.y11d{bottom:246.450000px;}
.ya7{bottom:247.170000px;}
.y173{bottom:248.790000px;}
.y18c{bottom:249.510000px;}
.y6b{bottom:250.950000px;}
.y14a{bottom:257.070000px;}
.y78{bottom:264.630000px;}
.y23{bottom:264.825000px;}
.ydd{bottom:266.250000px;}
.yc1{bottom:267.690000px;}
.y153{bottom:268.410000px;}
.y11c{bottom:268.950000px;}
.ya6{bottom:269.670000px;}
.y172{bottom:271.290000px;}
.y12a{bottom:271.470000px;}
.y18b{bottom:272.010000px;}
.y6a{bottom:273.450000px;}
.y149{bottom:279.570000px;}
.y22{bottom:283.545000px;}
.y77{bottom:288.930000px;}
.ybf{bottom:290.190000px;}
.y11b{bottom:291.450000px;}
.ya5{bottom:292.170000px;}
.y171{bottom:293.790000px;}
.yfc{bottom:294.510000px;}
.y69{bottom:295.950000px;}
.y148{bottom:302.070000px;}
.y21{bottom:302.265000px;}
.y129{bottom:308.910000px;}
.ydc{bottom:311.250000px;}
.y76{bottom:313.230000px;}
.y17c{bottom:313.410000px;}
.y11a{bottom:313.950000px;}
.ya4{bottom:314.670000px;}
.y170{bottom:316.290000px;}
.yfb{bottom:317.010000px;}
.y68{bottom:318.450000px;}
.y146{bottom:320.970000px;}
.y20{bottom:320.985000px;}
.y127{bottom:327.630000px;}
.yda{bottom:333.750000px;}
.y119{bottom:336.450000px;}
.ya3{bottom:337.215000px;}
.y75{bottom:337.755000px;}
.y16f{bottom:338.835000px;}
.yfa{bottom:339.555000px;}
.y1f{bottom:339.705000px;}
.y67{bottom:340.995000px;}
.yd9{bottom:357.015000px;}
.ybe{bottom:357.735000px;}
.y145{bottom:358.455000px;}
.y1e{bottom:358.635000px;}
.y118{bottom:358.995000px;}
.ya2{bottom:359.715000px;}
.y16e{bottom:361.335000px;}
.y74{bottom:362.055000px;}
.y66{bottom:363.495000px;}
.y126{bottom:366.015000px;}
.y1d{bottom:377.355000px;}
.y16d{bottom:380.235000px;}
.y117{bottom:381.495000px;}
.ya1{bottom:382.395000px;}
.yf9{bottom:384.555000px;}
.y65{bottom:385.995000px;}
.y1c{bottom:396.075000px;}
.y116{bottom:403.995000px;}
.ya0{bottom:404.895000px;}
.yd8{bottom:407.055000px;}
.y64{bottom:408.495000px;}
.y1b{bottom:414.795000px;}
.y164{bottom:423.795000px;}
.ybc{bottom:425.235000px;}
.y115{bottom:426.495000px;}
.y9f{bottom:427.395000px;}
.yd7{bottom:429.555000px;}
.y63{bottom:430.995000px;}
.y144{bottom:433.515000px;}
.y16c{bottom:447.735000px;}
.y114{bottom:448.995000px;}
.y9e{bottom:449.895000px;}
.y31{bottom:450.075000px;}
.yd6{bottom:452.055000px;}
.y62{bottom:453.495000px;}
.y113{bottom:468.075000px;}
.y163{bottom:468.795000px;}
.y1b3{bottom:469.155000px;}
.y16b{bottom:470.235000px;}
.yd5{bottom:470.955000px;}
.y9d{bottom:472.395000px;}
.yf8{bottom:474.555000px;}
.y61{bottom:475.995000px;}
.y112{bottom:490.575000px;}
.yba{bottom:492.735000px;}
.y9c{bottom:494.895000px;}
.yf7{bottom:497.055000px;}
.y60{bottom:498.495000px;}
.y143{bottom:508.575000px;}
.y111{bottom:513.075000px;}
.yd4{bottom:515.955000px;}
.y1b2{bottom:517.215000px;}
.y9b{bottom:517.395000px;}
.yf6{bottom:519.555000px;}
.y5f{bottom:520.995000px;}
.y110{bottom:536.295000px;}
.yb9{bottom:537.735000px;}
.y9a{bottom:539.895000px;}
.yf5{bottom:542.055000px;}
.y5e{bottom:543.675000px;}
.y142{bottom:546.015000px;}
.y16a{bottom:560.235000px;}
.yb7{bottom:560.955000px;}
.y99{bottom:562.395000px;}
.y14{bottom:563.295000px;}
.y10f{bottom:563.835000px;}
.yf4{bottom:564.555000px;}
.y5d{bottom:566.175000px;}
.y1b1{bottom:581.835000px;}
.yd3{bottom:583.485000px;}
.y98{bottom:584.925000px;}
.y10e{bottom:586.365000px;}
.yf3{bottom:587.085000px;}
.y5c{bottom:588.705000px;}
.y1b0{bottom:603.465000px;}
.y169{bottom:605.265000px;}
.yd2{bottom:605.985000px;}
.y97{bottom:607.425000px;}
.y10d{bottom:608.865000px;}
.yf2{bottom:609.585000px;}
.y5b{bottom:611.205000px;}
.y1af{bottom:620.205000px;}
.y141{bottom:621.105000px;}
.y161{bottom:626.325000px;}
.y168{bottom:627.765000px;}
.y184{bottom:628.485000px;}
.y96{bottom:629.925000px;}
.y10c{bottom:631.365000px;}
.yf1{bottom:632.085000px;}
.y5a{bottom:633.705000px;}
.y1ae{bottom:637.125000px;}
.y140{bottom:639.825000px;}
.y95{bottom:652.425000px;}
.y10b{bottom:653.865000px;}
.y1ad{bottom:654.045000px;}
.yf0{bottom:654.585000px;}
.y59{bottom:656.205000px;}
.y12{bottom:657.825000px;}
.y1ac{bottom:670.965000px;}
.yd0{bottom:673.485000px;}
.y94{bottom:674.925000px;}
.y10a{bottom:676.365000px;}
.yef{bottom:677.085000px;}
.y58{bottom:678.705000px;}
.y11{bottom:681.405000px;}
.y1ab{bottom:687.885000px;}
.y160{bottom:694.545000px;}
.y167{bottom:695.265000px;}
.y93{bottom:697.425000px;}
.y109{bottom:698.865000px;}
.yee{bottom:699.585000px;}
.y57{bottom:701.205000px;}
.y10{bottom:702.105000px;}
.y1aa{bottom:704.625000px;}
.y13d{bottom:714.885000px;}
.y92{bottom:719.925000px;}
.y108{bottom:721.365000px;}
.y1a9{bottom:721.545000px;}
.yed{bottom:722.085000px;}
.y56{bottom:723.705000px;}
.yf{bottom:728.745000px;}
.y1a8{bottom:738.465000px;}
.ycf{bottom:741.165000px;}
.y91{bottom:742.425000px;}
.ye{bottom:743.325000px;}
.y107{bottom:743.865000px;}
.yec{bottom:744.585000px;}
.y55{bottom:746.205000px;}
.y1a7{bottom:755.385000px;}
.y166{bottom:762.765000px;}
.y90{bottom:764.925000px;}
.y106{bottom:766.365000px;}
.yeb{bottom:767.085000px;}
.y54{bottom:768.705000px;}
.yd{bottom:769.965000px;}
.y1a6{bottom:772.125000px;}
.yc{bottom:784.545000px;}
.y105{bottom:785.265000px;}
.y8f{bottom:787.425000px;}
.y1a5{bottom:789.045000px;}
.yea{bottom:789.585000px;}
.y13a{bottom:789.765000px;}
.y53{bottom:791.205000px;}
.y1a4{bottom:805.965000px;}
.y104{bottom:807.765000px;}
.ycd{bottom:808.665000px;}
.y8e{bottom:809.925000px;}
.yb{bottom:811.185000px;}
.ye9{bottom:812.085000px;}
.y52{bottom:813.705000px;}
.y1a3{bottom:822.885000px;}
.ya{bottom:825.945000px;}
.y103{bottom:830.310000px;}
.y165{bottom:831.210000px;}
.y8d{bottom:832.470000px;}
.ye8{bottom:834.630000px;}
.y51{bottom:836.250000px;}
.y1a2{bottom:839.670000px;}
.y9{bottom:852.450000px;}
.y102{bottom:852.810000px;}
.y182{bottom:853.710000px;}
.y8c{bottom:854.970000px;}
.y1a1{bottom:856.590000px;}
.ye7{bottom:857.130000px;}
.y50{bottom:858.750000px;}
.y139{bottom:864.870000px;}
.y1a0{bottom:873.510000px;}
.ycc{bottom:876.210000px;}
.y8{bottom:876.930000px;}
.y8b{bottom:877.470000px;}
.y15f{bottom:879.810000px;}
.y4f{bottom:881.250000px;}
.y7{bottom:893.310000px;}
.y8a{bottom:899.970000px;}
.y15e{bottom:902.310000px;}
.y138{bottom:902.490000px;}
.y4e{bottom:903.750000px;}
.y19f{bottom:908.070000px;}
.y6{bottom:916.710000px;}
.y89{bottom:922.470000px;}
.y15d{bottom:924.810000px;}
.y4d{bottom:926.250000px;}
.y19e{bottom:928.050000px;}
.y137{bottom:939.930000px;}
.y5{bottom:942.990000px;}
.ycb{bottom:943.710000px;}
.y88{bottom:944.970000px;}
.y15c{bottom:947.310000px;}
.y4c{bottom:948.750000px;}
.y19d{bottom:950.550000px;}
.y87{bottom:967.470000px;}
.y15b{bottom:969.810000px;}
.y4b{bottom:971.250000px;}
.y19c{bottom:973.050000px;}
.y3e{bottom:973.770000px;}
.y136{bottom:977.370000px;}
.y15a{bottom:988.710000px;}
.y86{bottom:989.970000px;}
.y4a{bottom:993.750000px;}
.y19b{bottom:995.550000px;}
.yca{bottom:1011.210000px;}
.y85{bottom:1012.470000px;}
.y135{bottom:1014.990000px;}
.y49{bottom:1016.250000px;}
.y19a{bottom:1018.050000px;}
.ye5{bottom:1033.710000px;}
.y84{bottom:1034.970000px;}
.y48{bottom:1038.750000px;}
.y199{bottom:1040.550000px;}
.y159{bottom:1056.210000px;}
.y83{bottom:1057.470000px;}
.y47{bottom:1061.250000px;}
.y198{bottom:1063.050000px;}
.y133{bottom:1071.150000px;}
.yc9{bottom:1078.740000px;}
.y82{bottom:1080.000000px;}
.y46{bottom:1083.780000px;}
.y197{bottom:1085.580000px;}
.ye4{bottom:1101.240000px;}
.y81{bottom:1103.040000px;}
.y45{bottom:1106.280000px;}
.y196{bottom:1108.080000px;}
.y132{bottom:1108.800000px;}
.y158{bottom:1123.740000px;}
.y80{bottom:1127.340000px;}
.y4{bottom:1127.520000px;}
.y44{bottom:1128.780000px;}
.y195{bottom:1130.400000px;}
.y1{bottom:1159.020000px;}
.h27{height:18.720000px;}
.h29{height:18.756000px;}
.h9{height:18.900000px;}
.h1d{height:22.500000px;}
.h22{height:22.536000px;}
.h24{height:22.680000px;}
.h16{height:29.678906px;}
.h7{height:35.152640px;}
.h25{height:37.440000px;}
.h2d{height:37.476000px;}
.h28{height:37.620000px;}
.h26{height:37.656000px;}
.h6{height:40.607360px;}
.h36{height:43.512000px;}
.h35{height:44.760000px;}
.h1e{height:45.000000px;}
.h1c{height:45.036000px;}
.h23{height:45.180000px;}
.hc{height:48.153280px;}
.ha{height:49.534400px;}
.hf{height:49.587520px;}
.h11{height:50.437440px;}
.h8{height:53.875200px;}
.h18{height:58.016000px;}
.h5{height:58.560000px;}
.he{height:58.651172px;}
.h13{height:59.680000px;}
.h1b{height:59.744000px;}
.h1{height:60.768000px;}
.h3{height:61.189805px;}
.h1a{height:62.657280px;}
.h1f{height:67.500000px;}
.h20{height:67.536000px;}
.h21{height:67.680000px;}
.h34{height:67.837500px;}
.h17{height:68.554688px;}
.h2{height:70.664062px;}
.h4{height:70.911360px;}
.h2b{height:74.880000px;}
.h33{height:74.953125px;}
.h2c{height:75.060000px;}
.h2a{height:75.096000px;}
.h19{height:79.925027px;}
.h2e{height:90.036000px;}
.hb{height:93.816000px;}
.h37{height:99.687656px;}
.h10{height:112.500000px;}
.h30{height:112.536000px;}
.h14{height:118.476000px;}
.h2f{height:157.500000px;}
.h15{height:158.915039px;}
.h31{height:180.000000px;}
.h12{height:222.150000px;}
.h32{height:225.210000px;}
.hd{height:429.915000px;}
.h0{height:1188.000000px;}
.w2a{width:58.860000px;}
.w2b{width:59.580000px;}
.w28{width:60.300000px;}
.w1d{width:61.776000px;}
.w27{width:67.176000px;}
.w3a{width:74.160000px;}
.w36{width:74.376000px;}
.w25{width:75.456000px;}
.w20{width:77.976000px;}
.w29{width:81.036000px;}
.w30{width:90.900000px;}
.w31{width:90.936000px;}
.w2f{width:94.536000px;}
.w22{width:100.440000px;}
.w34{width:100.836000px;}
.w19{width:101.196000px;}
.w1a{width:101.340000px;}
.w3e{width:102.276000px;}
.w2c{width:103.716000px;}
.w26{width:105.120000px;}
.w7{width:108.000000px;}
.w1b{width:108.036000px;}
.we{width:114.300000px;}
.w1c{width:114.660000px;}
.wf{width:117.216000px;}
.w8{width:120.996000px;}
.w35{width:121.500000px;}
.w33{width:121.896000px;}
.w2e{width:128.916000px;}
.w23{width:129.636000px;}
.w18{width:135.036000px;}
.w10{width:147.816000px;}
.w2d{width:147.960000px;}
.w1e{width:148.500000px;}
.w9{width:149.976000px;}
.w17{width:154.980000px;}
.w39{width:155.730000px;}
.w21{width:158.430000px;}
.w1f{width:162.030000px;}
.w24{width:166.500000px;}
.w38{width:175.140000px;}
.w3c{width:175.530000px;}
.w5{width:185.970000px;}
.wc{width:193.170000px;}
.w37{width:203.430000px;}
.wd{width:205.230000px;}
.w6{width:212.070000px;}
.w32{width:223.770000px;}
.w15{width:229.530000px;}
.w2{width:236.370000px;}
.w16{width:250.815000px;}
.w3b{width:277.455000px;}
.w14{width:296.670000px;}
.w3d{width:344.235000px;}
.wa{width:398.055000px;}
.w11{width:398.415000px;}
.wb{width:506.055000px;}
.w12{width:512.715000px;}
.w3{width:541.365000px;}
.w4{width:674.070000px;}
.w13{width:777.750000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x8{left:36.540000px;}
.x3{left:85.355986px;}
.xc{left:112.355986px;}
.xd{left:139.355986px;}
.x7{left:195.690000px;}
.xa{left:197.505000px;}
.x9{left:227.565000px;}
.x1e{left:233.850000px;}
.x18{left:240.330000px;}
.x23{left:251.850000px;}
.x1{left:254.189986px;}
.x32{left:260.490000px;}
.xf{left:271.335000px;}
.x13{left:278.535000px;}
.x4{left:285.014986px;}
.x6{left:321.735000px;}
.x24{left:327.315000px;}
.xb{left:337.035000px;}
.x2b{left:362.235000px;}
.x19{left:375.375000px;}
.x16{left:382.035000px;}
.x1f{left:395.895000px;}
.x33{left:416.235000px;}
.x25{left:432.435000px;}
.x2c{left:456.765000px;}
.x2f{left:463.065000px;}
.x20{left:473.865000px;}
.x1a{left:476.565000px;}
.x10{left:483.405000px;}
.x26{left:499.605000px;}
.x34{left:510.765000px;}
.x2d{left:547.665000px;}
.x27{left:559.905000px;}
.x1b{left:577.905000px;}
.x30{left:584.565000px;}
.x11{left:591.405000px;}
.x14{left:598.065000px;}
.x17{left:611.565000px;}
.x21{left:632.310000px;}
.x2e{left:638.610000px;}
.x28{left:640.950000px;}
.x31{left:658.950000px;}
.x1c{left:685.950000px;}
.x29{left:699.810000px;}
.x12{left:712.410000px;}
.x15{left:715.290000px;}
.x22{left:732.750000px;}
.x2a{left:759.390000px;}
.xe{left:781.349986px;}
.x1d{left:800.610000px;}
.x2{left:836.099986px;}
@media print{
.v3{vertical-align:-55.040000pt;}
.v1{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.384000pt;}
.ls22{letter-spacing:-0.332800pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.286933pt;}
.ls5{letter-spacing:-0.265067pt;}
.ls16{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.219733pt;}
.ls21{letter-spacing:-0.196267pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.109867pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls20{letter-spacing:-0.057067pt;}
.ls13{letter-spacing:-0.053867pt;}
.ls23{letter-spacing:-0.051840pt;}
.ls29{letter-spacing:-0.016000pt;}
.ls18{letter-spacing:-0.000003pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.038400pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls26{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.074133pt;}
.lsb{letter-spacing:0.099733pt;}
.ls24{letter-spacing:0.102400pt;}
.ls8{letter-spacing:0.121600pt;}
.ls17{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.148267pt;}
.ls1f{letter-spacing:0.157867pt;}
.ls1e{letter-spacing:0.175360pt;}
.ls4{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.246400pt;}
.ls1a{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.266133pt;}
.ls9{letter-spacing:0.286933pt;}
.ls14{letter-spacing:0.291733pt;}
.ls1c{letter-spacing:0.317333pt;}
.ls2{letter-spacing:0.320000pt;}
.ls28{letter-spacing:0.576000pt;}
.lsf{letter-spacing:28.784640pt;}
.lse{letter-spacing:37.104640pt;}
.ls1{letter-spacing:744.800000pt;}
.wse{word-spacing:-16.051093pt;}
.wsc{word-spacing:-16.025493pt;}
.ws8{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.705493pt;}
.wsa{word-spacing:-14.912000pt;}
.ws16{word-spacing:-14.848000pt;}
.ws0{word-spacing:-14.784000pt;}
.ws13{word-spacing:-14.720000pt;}
.ws1f{word-spacing:-14.656000pt;}
.ws10{word-spacing:-14.592000pt;}
.ws14{word-spacing:-14.591997pt;}
.wsb{word-spacing:-14.528000pt;}
.ws15{word-spacing:-14.464000pt;}
.wsf{word-spacing:-14.400000pt;}
.ws12{word-spacing:-14.336000pt;}
.ws11{word-spacing:-14.272000pt;}
.ws20{word-spacing:-14.208000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws17{word-spacing:-12.428693pt;}
.ws19{word-spacing:-12.269227pt;}
.ws1e{word-spacing:-12.213760pt;}
.ws5{word-spacing:-12.211093pt;}
.ws4{word-spacing:-12.185493pt;}
.ws6{word-spacing:-12.111360pt;}
.ws1d{word-spacing:-12.059520pt;}
.ws1a{word-spacing:-12.054293pt;}
.ws1{word-spacing:-12.005120pt;}
.ws18{word-spacing:-12.001493pt;}
.ws1b{word-spacing:-11.915093pt;}
.ws1c{word-spacing:-11.778560pt;}
.ws23{word-spacing:-10.992000pt;}
.ws22{word-spacing:-10.944000pt;}
.ws21{word-spacing:-10.928000pt;}
.ws24{word-spacing:-10.880000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-4.161920pt;}
._15{margin-left:-3.264000pt;}
._6{margin-left:-2.046080pt;}
._1{margin-left:-1.088000pt;}
._0{width:1.120000pt;}
._3{width:2.067200pt;}
._4{width:3.753600pt;}
._16{width:5.149440pt;}
._8{width:6.321280pt;}
._7{width:7.383680pt;}
._2{width:8.298667pt;}
._d{width:9.308800pt;}
._5{width:10.411520pt;}
._13{width:11.304747pt;}
._12{width:12.352000pt;}
._14{width:13.600000pt;}
._f{width:14.550400pt;}
._e{width:15.670400pt;}
._a{width:16.839040pt;}
._1c{width:17.738240pt;}
._b{width:18.698240pt;}
._c{width:19.703040pt;}
._9{width:21.336107pt;}
._18{width:22.592000pt;}
._19{width:23.869227pt;}
._1a{width:25.216000pt;}
._1b{width:26.368000pt;}
._10{width:35.165440pt;}
._11{width:36.064640pt;}
._21{width:37.376000pt;}
._1e{width:50.090667pt;}
._1d{width:51.392000pt;}
._1f{width:63.040000pt;}
._20{width:64.170667pt;}
._22{width:65.280000pt;}
.fs7{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs2{font-size:74.880000pt;}
.fsb{font-size:85.120000pt;}
.fs6{font-size:144.000000pt;}
.y43{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:3.200000pt;}
.y134{bottom:3.226667pt;}
.y13{bottom:3.360000pt;}
.y3{bottom:3.840000pt;}
.y157{bottom:3.872000pt;}
.ydb{bottom:3.880000pt;}
.yff{bottom:4.000000pt;}
.y42{bottom:11.200000pt;}
.y36{bottom:19.840000pt;}
.y147{bottom:19.880000pt;}
.y12f{bottom:19.994667pt;}
.y30{bottom:20.000000pt;}
.y18{bottom:20.026667pt;}
.y128{bottom:20.040000pt;}
.y2{bottom:22.240000pt;}
.yc5{bottom:23.834667pt;}
.ybb{bottom:23.840000pt;}
.yb8{bottom:23.866667pt;}
.yc8{bottom:23.872000pt;}
.yce{bottom:23.880000pt;}
.ye0{bottom:24.000000pt;}
.y41{bottom:28.960000pt;}
.y13f{bottom:36.480000pt;}
.y35{bottom:36.640000pt;}
.y17{bottom:36.666667pt;}
.y13c{bottom:36.680000pt;}
.y2f{bottom:36.800000pt;}
.yc4{bottom:43.834667pt;}
.ybd{bottom:43.840000pt;}
.ye6{bottom:43.866667pt;}
.yc7{bottom:43.872000pt;}
.yc0{bottom:43.880000pt;}
.yd1{bottom:44.000000pt;}
.y2e{bottom:52.000000pt;}
.y13e{bottom:53.120000pt;}
.y34{bottom:53.280000pt;}
.y16{bottom:53.306667pt;}
.y13b{bottom:53.320000pt;}
.yc6{bottom:57.920000pt;}
.y40{bottom:58.080000pt;}
.y125{bottom:59.040000pt;}
.yaf{bottom:59.680000pt;}
.y17b{bottom:61.120000pt;}
.y194{bottom:61.760000pt;}
.y73{bottom:63.040000pt;}
.y180{bottom:63.840000pt;}
.y162{bottom:63.866667pt;}
.y152{bottom:68.320000pt;}
.y2d{bottom:68.640000pt;}
.y33{bottom:69.920000pt;}
.y15{bottom:69.946667pt;}
.y3d{bottom:71.200000pt;}
.y3f{bottom:71.840000pt;}
.y131{bottom:74.560000pt;}
.ye3{bottom:76.480000pt;}
.yb6{bottom:77.120000pt;}
.y156{bottom:77.920000pt;}
.y124{bottom:79.040000pt;}
.yae{bottom:79.680000pt;}
.y17a{bottom:81.152000pt;}
.y193{bottom:81.792000pt;}
.y72{bottom:83.072000pt;}
.y7f{bottom:83.392000pt;}
.y17f{bottom:83.840000pt;}
.y181{bottom:83.866667pt;}
.y18a{bottom:84.000000pt;}
.y2c{bottom:85.280000pt;}
.y32{bottom:86.560000pt;}
.y151{bottom:88.352000pt;}
.y130{bottom:91.232000pt;}
.y37{bottom:93.440000pt;}
.ye2{bottom:96.512000pt;}
.yb5{bottom:97.152000pt;}
.y123{bottom:99.072000pt;}
.yad{bottom:99.712000pt;}
.y179{bottom:101.152000pt;}
.y192{bottom:101.792000pt;}
.y2b{bottom:101.960000pt;}
.y71{bottom:103.072000pt;}
.y17e{bottom:103.840000pt;}
.y189{bottom:104.000000pt;}
.y7e{bottom:105.152000pt;}
.y150{bottom:108.352000pt;}
.y3c{bottom:110.752000pt;}
.y101{bottom:116.512000pt;}
.yb4{bottom:117.152000pt;}
.yc3{bottom:117.952000pt;}
.y2a{bottom:118.600000pt;}
.y122{bottom:119.072000pt;}
.yac{bottom:119.712000pt;}
.y178{bottom:121.152000pt;}
.y191{bottom:121.792000pt;}
.y70{bottom:123.072000pt;}
.y17d{bottom:123.840000pt;}
.y188{bottom:124.000000pt;}
.y12e{bottom:124.512000pt;}
.y7d{bottom:126.752000pt;}
.y14f{bottom:128.352000pt;}
.y3b{bottom:130.592000pt;}
.y29{bottom:135.400000pt;}
.ye1{bottom:136.506667pt;}
.yb3{bottom:137.146667pt;}
.y155{bottom:137.946667pt;}
.y121{bottom:139.066667pt;}
.yab{bottom:139.706667pt;}
.y177{bottom:141.146667pt;}
.y190{bottom:141.786667pt;}
.y6f{bottom:143.066667pt;}
.y183{bottom:143.840000pt;}
.y187{bottom:144.000000pt;}
.y3a{bottom:147.226667pt;}
.y14e{bottom:148.346667pt;}
.y7c{bottom:148.506667pt;}
.y28{bottom:152.040000pt;}
.y100{bottom:156.506667pt;}
.yb2{bottom:157.146667pt;}
.y12d{bottom:157.946667pt;}
.y120{bottom:159.066667pt;}
.yaa{bottom:159.706667pt;}
.y176{bottom:161.146667pt;}
.y18f{bottom:161.786667pt;}
.y6e{bottom:163.066667pt;}
.y39{bottom:163.866667pt;}
.y186{bottom:164.000000pt;}
.y14d{bottom:168.346667pt;}
.y27{bottom:168.680000pt;}
.y7b{bottom:170.106667pt;}
.ydf{bottom:176.506667pt;}
.yb1{bottom:177.146667pt;}
.yc2{bottom:177.946667pt;}
.y11f{bottom:179.066667pt;}
.ya9{bottom:179.706667pt;}
.y175{bottom:181.146667pt;}
.y18e{bottom:181.786667pt;}
.y6d{bottom:183.066667pt;}
.y185{bottom:184.040000pt;}
.y38{bottom:184.666667pt;}
.y26{bottom:185.320000pt;}
.y14c{bottom:188.506667pt;}
.y12c{bottom:191.226667pt;}
.y7a{bottom:191.866667pt;}
.yb0{bottom:193.466667pt;}
.yfe{bottom:196.506667pt;}
.y154{bottom:197.946667pt;}
.y11e{bottom:199.066667pt;}
.ya8{bottom:199.706667pt;}
.y174{bottom:201.146667pt;}
.y18d{bottom:201.786667pt;}
.y1a{bottom:201.946667pt;}
.y25{bottom:201.960000pt;}
.y6c{bottom:203.066667pt;}
.y12b{bottom:207.866667pt;}
.y14b{bottom:208.506667pt;}
.y79{bottom:213.466667pt;}
.yde{bottom:216.666667pt;}
.yfd{bottom:217.306667pt;}
.y24{bottom:218.760000pt;}
.y11d{bottom:219.066667pt;}
.ya7{bottom:219.706667pt;}
.y173{bottom:221.146667pt;}
.y18c{bottom:221.786667pt;}
.y6b{bottom:223.066667pt;}
.y14a{bottom:228.506667pt;}
.y78{bottom:235.226667pt;}
.y23{bottom:235.400000pt;}
.ydd{bottom:236.666667pt;}
.yc1{bottom:237.946667pt;}
.y153{bottom:238.586667pt;}
.y11c{bottom:239.066667pt;}
.ya6{bottom:239.706667pt;}
.y172{bottom:241.146667pt;}
.y12a{bottom:241.306667pt;}
.y18b{bottom:241.786667pt;}
.y6a{bottom:243.066667pt;}
.y149{bottom:248.506667pt;}
.y22{bottom:252.040000pt;}
.y77{bottom:256.826667pt;}
.ybf{bottom:257.946667pt;}
.y11b{bottom:259.066667pt;}
.ya5{bottom:259.706667pt;}
.y171{bottom:261.146667pt;}
.yfc{bottom:261.786667pt;}
.y69{bottom:263.066667pt;}
.y148{bottom:268.506667pt;}
.y21{bottom:268.680000pt;}
.y129{bottom:274.586667pt;}
.ydc{bottom:276.666667pt;}
.y76{bottom:278.426667pt;}
.y17c{bottom:278.586667pt;}
.y11a{bottom:279.066667pt;}
.ya4{bottom:279.706667pt;}
.y170{bottom:281.146667pt;}
.yfb{bottom:281.786667pt;}
.y68{bottom:283.066667pt;}
.y146{bottom:285.306667pt;}
.y20{bottom:285.320000pt;}
.y127{bottom:291.226667pt;}
.yda{bottom:296.666667pt;}
.y119{bottom:299.066667pt;}
.ya3{bottom:299.746667pt;}
.y75{bottom:300.226667pt;}
.y16f{bottom:301.186667pt;}
.yfa{bottom:301.826667pt;}
.y1f{bottom:301.960000pt;}
.y67{bottom:303.106667pt;}
.yd9{bottom:317.346667pt;}
.ybe{bottom:317.986667pt;}
.y145{bottom:318.626667pt;}
.y1e{bottom:318.786667pt;}
.y118{bottom:319.106667pt;}
.ya2{bottom:319.746667pt;}
.y16e{bottom:321.186667pt;}
.y74{bottom:321.826667pt;}
.y66{bottom:323.106667pt;}
.y126{bottom:325.346667pt;}
.y1d{bottom:335.426667pt;}
.y16d{bottom:337.986667pt;}
.y117{bottom:339.106667pt;}
.ya1{bottom:339.906667pt;}
.yf9{bottom:341.826667pt;}
.y65{bottom:343.106667pt;}
.y1c{bottom:352.066667pt;}
.y116{bottom:359.106667pt;}
.ya0{bottom:359.906667pt;}
.yd8{bottom:361.826667pt;}
.y64{bottom:363.106667pt;}
.y1b{bottom:368.706667pt;}
.y164{bottom:376.706667pt;}
.ybc{bottom:377.986667pt;}
.y115{bottom:379.106667pt;}
.y9f{bottom:379.906667pt;}
.yd7{bottom:381.826667pt;}
.y63{bottom:383.106667pt;}
.y144{bottom:385.346667pt;}
.y16c{bottom:397.986667pt;}
.y114{bottom:399.106667pt;}
.y9e{bottom:399.906667pt;}
.y31{bottom:400.066667pt;}
.yd6{bottom:401.826667pt;}
.y62{bottom:403.106667pt;}
.y113{bottom:416.066667pt;}
.y163{bottom:416.706667pt;}
.y1b3{bottom:417.026667pt;}
.y16b{bottom:417.986667pt;}
.yd5{bottom:418.626667pt;}
.y9d{bottom:419.906667pt;}
.yf8{bottom:421.826667pt;}
.y61{bottom:423.106667pt;}
.y112{bottom:436.066667pt;}
.yba{bottom:437.986667pt;}
.y9c{bottom:439.906667pt;}
.yf7{bottom:441.826667pt;}
.y60{bottom:443.106667pt;}
.y143{bottom:452.066667pt;}
.y111{bottom:456.066667pt;}
.yd4{bottom:458.626667pt;}
.y1b2{bottom:459.746667pt;}
.y9b{bottom:459.906667pt;}
.yf6{bottom:461.826667pt;}
.y5f{bottom:463.106667pt;}
.y110{bottom:476.706667pt;}
.yb9{bottom:477.986667pt;}
.y9a{bottom:479.906667pt;}
.yf5{bottom:481.826667pt;}
.y5e{bottom:483.266667pt;}
.y142{bottom:485.346667pt;}
.y16a{bottom:497.986667pt;}
.yb7{bottom:498.626667pt;}
.y99{bottom:499.906667pt;}
.y14{bottom:500.706667pt;}
.y10f{bottom:501.186667pt;}
.yf4{bottom:501.826667pt;}
.y5d{bottom:503.266667pt;}
.y1b1{bottom:517.186667pt;}
.yd3{bottom:518.653333pt;}
.y98{bottom:519.933333pt;}
.y10e{bottom:521.213333pt;}
.yf3{bottom:521.853333pt;}
.y5c{bottom:523.293333pt;}
.y1b0{bottom:536.413333pt;}
.y169{bottom:538.013333pt;}
.yd2{bottom:538.653333pt;}
.y97{bottom:539.933333pt;}
.y10d{bottom:541.213333pt;}
.yf2{bottom:541.853333pt;}
.y5b{bottom:543.293333pt;}
.y1af{bottom:551.293333pt;}
.y141{bottom:552.093333pt;}
.y161{bottom:556.733333pt;}
.y168{bottom:558.013333pt;}
.y184{bottom:558.653333pt;}
.y96{bottom:559.933333pt;}
.y10c{bottom:561.213333pt;}
.yf1{bottom:561.853333pt;}
.y5a{bottom:563.293333pt;}
.y1ae{bottom:566.333333pt;}
.y140{bottom:568.733333pt;}
.y95{bottom:579.933333pt;}
.y10b{bottom:581.213333pt;}
.y1ad{bottom:581.373333pt;}
.yf0{bottom:581.853333pt;}
.y59{bottom:583.293333pt;}
.y12{bottom:584.733333pt;}
.y1ac{bottom:596.413333pt;}
.yd0{bottom:598.653333pt;}
.y94{bottom:599.933333pt;}
.y10a{bottom:601.213333pt;}
.yef{bottom:601.853333pt;}
.y58{bottom:603.293333pt;}
.y11{bottom:605.693333pt;}
.y1ab{bottom:611.453333pt;}
.y160{bottom:617.373333pt;}
.y167{bottom:618.013333pt;}
.y93{bottom:619.933333pt;}
.y109{bottom:621.213333pt;}
.yee{bottom:621.853333pt;}
.y57{bottom:623.293333pt;}
.y10{bottom:624.093333pt;}
.y1aa{bottom:626.333333pt;}
.y13d{bottom:635.453333pt;}
.y92{bottom:639.933333pt;}
.y108{bottom:641.213333pt;}
.y1a9{bottom:641.373333pt;}
.yed{bottom:641.853333pt;}
.y56{bottom:643.293333pt;}
.yf{bottom:647.773333pt;}
.y1a8{bottom:656.413333pt;}
.ycf{bottom:658.813333pt;}
.y91{bottom:659.933333pt;}
.ye{bottom:660.733333pt;}
.y107{bottom:661.213333pt;}
.yec{bottom:661.853333pt;}
.y55{bottom:663.293333pt;}
.y1a7{bottom:671.453333pt;}
.y166{bottom:678.013333pt;}
.y90{bottom:679.933333pt;}
.y106{bottom:681.213333pt;}
.yeb{bottom:681.853333pt;}
.y54{bottom:683.293333pt;}
.yd{bottom:684.413333pt;}
.y1a6{bottom:686.333333pt;}
.yc{bottom:697.373333pt;}
.y105{bottom:698.013333pt;}
.y8f{bottom:699.933333pt;}
.y1a5{bottom:701.373333pt;}
.yea{bottom:701.853333pt;}
.y13a{bottom:702.013333pt;}
.y53{bottom:703.293333pt;}
.y1a4{bottom:716.413333pt;}
.y104{bottom:718.013333pt;}
.ycd{bottom:718.813333pt;}
.y8e{bottom:719.933333pt;}
.yb{bottom:721.053333pt;}
.ye9{bottom:721.853333pt;}
.y52{bottom:723.293333pt;}
.y1a3{bottom:731.453333pt;}
.ya{bottom:734.173333pt;}
.y103{bottom:738.053333pt;}
.y165{bottom:738.853333pt;}
.y8d{bottom:739.973333pt;}
.ye8{bottom:741.893333pt;}
.y51{bottom:743.333333pt;}
.y1a2{bottom:746.373333pt;}
.y9{bottom:757.733333pt;}
.y102{bottom:758.053333pt;}
.y182{bottom:758.853333pt;}
.y8c{bottom:759.973333pt;}
.y1a1{bottom:761.413333pt;}
.ye7{bottom:761.893333pt;}
.y50{bottom:763.333333pt;}
.y139{bottom:768.773333pt;}
.y1a0{bottom:776.453333pt;}
.ycc{bottom:778.853333pt;}
.y8{bottom:779.493333pt;}
.y8b{bottom:779.973333pt;}
.y15f{bottom:782.053333pt;}
.y4f{bottom:783.333333pt;}
.y7{bottom:794.053333pt;}
.y8a{bottom:799.973333pt;}
.y15e{bottom:802.053333pt;}
.y138{bottom:802.213333pt;}
.y4e{bottom:803.333333pt;}
.y19f{bottom:807.173333pt;}
.y6{bottom:814.853333pt;}
.y89{bottom:819.973333pt;}
.y15d{bottom:822.053333pt;}
.y4d{bottom:823.333333pt;}
.y19e{bottom:824.933333pt;}
.y137{bottom:835.493333pt;}
.y5{bottom:838.213333pt;}
.ycb{bottom:838.853333pt;}
.y88{bottom:839.973333pt;}
.y15c{bottom:842.053333pt;}
.y4c{bottom:843.333333pt;}
.y19d{bottom:844.933333pt;}
.y87{bottom:859.973333pt;}
.y15b{bottom:862.053333pt;}
.y4b{bottom:863.333333pt;}
.y19c{bottom:864.933333pt;}
.y3e{bottom:865.573333pt;}
.y136{bottom:868.773333pt;}
.y15a{bottom:878.853333pt;}
.y86{bottom:879.973333pt;}
.y4a{bottom:883.333333pt;}
.y19b{bottom:884.933333pt;}
.yca{bottom:898.853333pt;}
.y85{bottom:899.973333pt;}
.y135{bottom:902.213333pt;}
.y49{bottom:903.333333pt;}
.y19a{bottom:904.933333pt;}
.ye5{bottom:918.853333pt;}
.y84{bottom:919.973333pt;}
.y48{bottom:923.333333pt;}
.y199{bottom:924.933333pt;}
.y159{bottom:938.853333pt;}
.y83{bottom:939.973333pt;}
.y47{bottom:943.333333pt;}
.y198{bottom:944.933333pt;}
.y133{bottom:952.133333pt;}
.yc9{bottom:958.880000pt;}
.y82{bottom:960.000000pt;}
.y46{bottom:963.360000pt;}
.y197{bottom:964.960000pt;}
.ye4{bottom:978.880000pt;}
.y81{bottom:980.480000pt;}
.y45{bottom:983.360000pt;}
.y196{bottom:984.960000pt;}
.y132{bottom:985.600000pt;}
.y158{bottom:998.880000pt;}
.y80{bottom:1002.080000pt;}
.y4{bottom:1002.240000pt;}
.y44{bottom:1003.360000pt;}
.y195{bottom:1004.800000pt;}
.y1{bottom:1030.240000pt;}
.h27{height:16.640000pt;}
.h29{height:16.672000pt;}
.h9{height:16.800000pt;}
.h1d{height:20.000000pt;}
.h22{height:20.032000pt;}
.h24{height:20.160000pt;}
.h16{height:26.381250pt;}
.h7{height:31.246791pt;}
.h25{height:33.280000pt;}
.h2d{height:33.312000pt;}
.h28{height:33.440000pt;}
.h26{height:33.472000pt;}
.h6{height:36.095431pt;}
.h36{height:38.677333pt;}
.h35{height:39.786667pt;}
.h1e{height:40.000000pt;}
.h1c{height:40.032000pt;}
.h23{height:40.160000pt;}
.hc{height:42.802916pt;}
.ha{height:44.030578pt;}
.hf{height:44.077796pt;}
.h11{height:44.833280pt;}
.h8{height:47.889067pt;}
.h18{height:51.569778pt;}
.h5{height:52.053333pt;}
.he{height:52.134375pt;}
.h13{height:53.048889pt;}
.h1b{height:53.105778pt;}
.h1{height:54.016000pt;}
.h3{height:54.390938pt;}
.h1a{height:55.695360pt;}
.h1f{height:60.000000pt;}
.h20{height:60.032000pt;}
.h21{height:60.160000pt;}
.h34{height:60.300000pt;}
.h17{height:60.937500pt;}
.h2{height:62.812500pt;}
.h4{height:63.032320pt;}
.h2b{height:66.560000pt;}
.h33{height:66.625000pt;}
.h2c{height:66.720000pt;}
.h2a{height:66.752000pt;}
.h19{height:71.044468pt;}
.h2e{height:80.032000pt;}
.hb{height:83.392000pt;}
.h37{height:88.611250pt;}
.h10{height:100.000000pt;}
.h30{height:100.032000pt;}
.h14{height:105.312000pt;}
.h2f{height:140.000000pt;}
.h15{height:141.257812pt;}
.h31{height:160.000000pt;}
.h12{height:197.466667pt;}
.h32{height:200.186667pt;}
.hd{height:382.146667pt;}
.h0{height:1056.000000pt;}
.w2a{width:52.320000pt;}
.w2b{width:52.960000pt;}
.w28{width:53.600000pt;}
.w1d{width:54.912000pt;}
.w27{width:59.712000pt;}
.w3a{width:65.920000pt;}
.w36{width:66.112000pt;}
.w25{width:67.072000pt;}
.w20{width:69.312000pt;}
.w29{width:72.032000pt;}
.w30{width:80.800000pt;}
.w31{width:80.832000pt;}
.w2f{width:84.032000pt;}
.w22{width:89.280000pt;}
.w34{width:89.632000pt;}
.w19{width:89.952000pt;}
.w1a{width:90.080000pt;}
.w3e{width:90.912000pt;}
.w2c{width:92.192000pt;}
.w26{width:93.440000pt;}
.w7{width:96.000000pt;}
.w1b{width:96.032000pt;}
.we{width:101.600000pt;}
.w1c{width:101.920000pt;}
.wf{width:104.192000pt;}
.w8{width:107.552000pt;}
.w35{width:108.000000pt;}
.w33{width:108.352000pt;}
.w2e{width:114.592000pt;}
.w23{width:115.232000pt;}
.w18{width:120.032000pt;}
.w10{width:131.392000pt;}
.w2d{width:131.520000pt;}
.w1e{width:132.000000pt;}
.w9{width:133.312000pt;}
.w17{width:137.760000pt;}
.w39{width:138.426667pt;}
.w21{width:140.826667pt;}
.w1f{width:144.026667pt;}
.w24{width:148.000000pt;}
.w38{width:155.680000pt;}
.w3c{width:156.026667pt;}
.w5{width:165.306667pt;}
.wc{width:171.706667pt;}
.w37{width:180.826667pt;}
.wd{width:182.426667pt;}
.w6{width:188.506667pt;}
.w32{width:198.906667pt;}
.w15{width:204.026667pt;}
.w2{width:210.106667pt;}
.w16{width:222.946667pt;}
.w3b{width:246.626667pt;}
.w14{width:263.706667pt;}
.w3d{width:305.986667pt;}
.wa{width:353.826667pt;}
.w11{width:354.146667pt;}
.wb{width:449.826667pt;}
.w12{width:455.746667pt;}
.w3{width:481.213333pt;}
.w4{width:599.173333pt;}
.w13{width:691.333333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x8{left:32.480000pt;}
.x3{left:75.871988pt;}
.xc{left:99.871988pt;}
.xd{left:123.871988pt;}
.x7{left:173.946667pt;}
.xa{left:175.560000pt;}
.x9{left:202.280000pt;}
.x1e{left:207.866667pt;}
.x18{left:213.626667pt;}
.x23{left:223.866667pt;}
.x1{left:225.946655pt;}
.x32{left:231.546667pt;}
.xf{left:241.186667pt;}
.x13{left:247.586667pt;}
.x4{left:253.346655pt;}
.x6{left:285.986667pt;}
.x24{left:290.946667pt;}
.xb{left:299.586667pt;}
.x2b{left:321.986667pt;}
.x19{left:333.666667pt;}
.x16{left:339.586667pt;}
.x1f{left:351.906667pt;}
.x33{left:369.986667pt;}
.x25{left:384.386667pt;}
.x2c{left:406.013333pt;}
.x2f{left:411.613333pt;}
.x20{left:421.213333pt;}
.x1a{left:423.613333pt;}
.x10{left:429.693333pt;}
.x26{left:444.093333pt;}
.x34{left:454.013333pt;}
.x2d{left:486.813333pt;}
.x27{left:497.693333pt;}
.x1b{left:513.693333pt;}
.x30{left:519.613333pt;}
.x11{left:525.693333pt;}
.x14{left:531.613333pt;}
.x17{left:543.613333pt;}
.x21{left:562.053333pt;}
.x2e{left:567.653333pt;}
.x28{left:569.733333pt;}
.x31{left:585.733333pt;}
.x1c{left:609.733333pt;}
.x29{left:622.053333pt;}
.x12{left:633.253333pt;}
.x15{left:635.813333pt;}
.x22{left:651.333333pt;}
.x2a{left:675.013333pt;}
.xe{left:694.533321pt;}
.x1d{left:711.653333pt;}
.x2{left:743.199988pt;}
}




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